summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/sub/uiconly.h
blob: 9b0b1b42301167fc87ba97c3e175d70c55975052 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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