- #ifndef HOMEPAGEFACTORY_H
- #define HOMEPAGEFACTORY_H
- #include "PageFactory.h"
- #include "homepage.h"
- class HomepageFactory : public PageFactory {
- public:
- HomepageFactory();
- QWidget* createPage(QWidget* parent) const override;
- };
- #endif // HOMEPAGEFACTORY_H
|