12345678910111213141516171819202122 |
- #ifndef CONTAINERPOOL_H
- #define CONTAINERPOOL_H
- #include <QWidget>
- namespace Ui {
- class ContainerPool;
- }
- class ContainerPool : public QWidget
- {
- Q_OBJECT
- public:
- explicit ContainerPool(QWidget *parent = nullptr);
- ~ContainerPool();
- private:
- Ui::ContainerPool *ui;
- };
- #endif // CONTAINERPOOL_H
|