cmake/Tests/QtAutogen/sub/uiconly.h

21 lines
256 B
C
Raw Normal View History

2014-08-03 19:52:23 +02:00
#ifndef UIC_ONLY_H
#define UIC_ONLY_H
#include <QWidget>
#include <memory>
#include "ui_uiconly.h"
class UicOnly : public QWidget
{
Q_OBJECT
public:
2016-07-09 11:21:54 +02:00
explicit UicOnly(QWidget* parent = 0);
2014-08-03 19:52:23 +02:00
private:
const std::auto_ptr<Ui::UicOnly> ui;
};
#endif