diff options
Diffstat (limited to 'Tests/QtAutogen/uicOnlySource/uiconly.h')
-rw-r--r-- | Tests/QtAutogen/uicOnlySource/uiconly.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Tests/QtAutogen/uicOnlySource/uiconly.h b/Tests/QtAutogen/uicOnlySource/uiconly.h new file mode 100644 index 0000000..9b0b1b4 --- /dev/null +++ b/Tests/QtAutogen/uicOnlySource/uiconly.h @@ -0,0 +1,20 @@ + +#ifndef UIC_ONLY_H +#define UIC_ONLY_H + +#include <QWidget> +#include <memory> + +#include "ui_uiconly.h" + +class UicOnly : public QWidget +{ + Q_OBJECT +public: + explicit UicOnly(QWidget* parent = 0); + +private: + const std::auto_ptr<Ui::UicOnly> ui; +}; + +#endif |