blob: d276abb4d49c569cc8c0ccd28644bceb8341b86f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// 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() : KPrinter(true, TQPrinter::ScreenResolution) {; };
void doPreparePrinting() { preparePrinting(); };
};
#endif
|