homepagefactory.h 272 B

123456789101112
  1. #ifndef HOMEPAGEFACTORY_H
  2. #define HOMEPAGEFACTORY_H
  3. #include "PageFactory.h"
  4. #include "homepage.h"
  5. class HomepageFactory : public PageFactory {
  6. public:
  7. HomepageFactory();
  8. QWidget* createPage(QWidget* parent) const override;
  9. };
  10. #endif // HOMEPAGEFACTORY_H