blastprojectfactory.h 300 B

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