blastprojectfactory.h 295 B

1234567891011121314
  1. #ifndef BLASTPROJECTFACTORY_H
  2. #define BLASTPROJECTFACTORY_H
  3. #include "../PageFactory.h"
  4. #include "blastprojectpage.h"
  5. class BlastProjectFactory:public PageFactory
  6. {
  7. public:
  8. BlastProjectFactory();
  9. QWidget* createPage(QWidget* parent) const override;
  10. };
  11. #endif // BLASTPROJECTFACTORY_H