diff options
Diffstat (limited to 'templatelayout.h')
-rw-r--r-- | templatelayout.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templatelayout.h b/templatelayout.h index d8ada1c86..21eae1b80 100644 --- a/templatelayout.h +++ b/templatelayout.h @@ -3,18 +3,20 @@ #include <grantlee_templates.h> #include "mainwindow.h" +#include "printoptions.h" int getTotalWork(); class TemplateLayout : public QObject { Q_OBJECT public: - TemplateLayout(); + TemplateLayout(print_options *PrintOptions); ~TemplateLayout(); QString generate(); private: Grantlee::Engine *m_engine; + print_options *PrintOptions; signals: void progressUpdated(int value); |