pagefactory.h 180 B

12345678910
  1. #ifndef PAGEFACTORY_H
  2. #define PAGEFACTORY_H
  3. #include <QWidget>
  4. class PageFactory {
  5. public:
  6. virtual QWidget* createPage(QWidget* parent) const = 0;
  7. };
  8. #endif // PAGEFACTORY_H