homepagefactory.h 253 B

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