mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
20 lines
442 B
C++
20 lines
442 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <QtWidgets/QWidget>
|
||
|
|
#include "ui_QHContainerWidget.h"
|
||
|
|
|
||
|
|
class QHContainerWidget : public QWidget, protected Ui::QHContainerWidgetForm {
|
||
|
|
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
explicit QHContainerWidget (QWidget* parent = 0);
|
||
|
|
~QHContainerWidget ();
|
||
|
|
|
||
|
|
void addWidget (QWidget* widget);
|
||
|
|
void removeWidget (QWidget* widget);
|
||
|
|
|
||
|
|
private:
|
||
|
|
};
|
||
|
|
|