mirror of
https://invent.kde.org/graphics/okular
synced 2024-11-05 18:34:53 +00:00
8bd18f31d6
svn path=/trunk/kdegraphics/kdvi/; revision=360391
22 lines
421 B
C++
22 lines
421 B
C++
// kprinterwrapper.h
|
|
//
|
|
// Part of KDVI - A DVI previewer for the KDE desktop environemt
|
|
//
|
|
// (C) 2003 Stefan Kebekus
|
|
// Distributed under the GPL
|
|
|
|
|
|
#ifndef _PRINTERWRAPPER_H
|
|
#define _PRINTERWRAPPER_H
|
|
|
|
#include "kprinter.h"
|
|
|
|
class KDVIPrinterWrapper : public KPrinter
|
|
{
|
|
public:
|
|
KDVIPrinterWrapper(void) : KPrinter(true, QPrinter::ScreenResolution) {; };
|
|
|
|
void doPreparePrinting() { preparePrinting(); };
|
|
};
|
|
|
|
#endif
|