blastoperationfactory.h 297 B

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