okular/kprinterwrapper.h
Angus Leeming 9154aba7e4 More info to emacs on how to retain the current style.
svn path=/trunk/KDE/kdegraphics/kviewshell/plugins/dvi/; revision=488778
2005-12-15 21:34:10 +00:00

25 lines
501 B
C++

// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; c-brace-offset: 0; -*-
// kprinterwrapper.h
//
// Part of KDVI - A DVI previewer for the KDE desktop environment
//
// (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