// Version: $Id: 10c5247cbbd2d3163b078be335c288bfd77295df $ // // // Commentary: // // // Change Log: // // // Code: #pragma once #include namespace Ui { class dtkPluginGeneratorPage; } class dtkPluginGeneratorPage : public QWizardPage { Q_OBJECT public: dtkPluginGeneratorPage(QWidget *parent = 0); ~dtkPluginGeneratorPage(void); protected: void initializePage(void); public slots: void refresh(void); private: Ui::dtkPluginGeneratorPage *ui; }; // // dtkPluginGeneratorPage.h ends here