okular/kprinterwrapper.h
Stefan Kebekus 8bd18f31d6 fixes name clash with the kdeprint subsystem; patch by Luciano Montanaro
svn path=/trunk/kdegraphics/kdvi/; revision=360391
2004-11-04 15:47:41 +00:00

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