#include <QtGui/qabstractprintdialog.h>
#ifndef QABSTRACTPRINTDIALOG_H
#ifndef QT_NO_PRINTDIALOG
class QAbstractPrintDialog: public QDialog{
public: enum PrintDialogOption{
None = 0,
PrintToFile = 1,
PrintSelection = 2,
PrintPageRange = 4,
PrintCollateCopies = 16,
};
};
#endif // QT_NO_PRINTDIALOG
#endif // QABSTRACTPRINTDIALOG_H