You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
256 B
21 lines
256 B
11 years ago
|
|
||
|
#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
|