containerpool.h 313 B

12345678910111213141516171819202122
  1. #ifndef CONTAINERPOOL_H
  2. #define CONTAINERPOOL_H
  3. #include <QWidget>
  4. namespace Ui {
  5. class ContainerPool;
  6. }
  7. class ContainerPool : public QWidget
  8. {
  9. Q_OBJECT
  10. public:
  11. explicit ContainerPool(QWidget *parent = nullptr);
  12. ~ContainerPool();
  13. private:
  14. Ui::ContainerPool *ui;
  15. };
  16. #endif // CONTAINERPOOL_H