detinfofactory.h 267 B

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