You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
433 B
C
25 lines
433 B
C
15 years ago
|
// -*- 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() : KPrinter(true, QPrinter::ScreenResolution) {; };
|
||
|
|
||
|
void doPreparePrinting() { preparePrinting(); };
|
||
|
};
|
||
|
|
||
|
#endif
|