summaryrefslogtreecommitdiff
path: root/Tests/QtAutogen/Complex/multiplewidgets.h
blob: a4d0a50218afe418e297955b81f9d2df18c5bcee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35

#ifndef MULTIPLEWIDGETS_H
#define MULTIPLEWIDGETS_H

#include <QWidget>

namespace Ui {
class Widget1;
}

class Widget1 : public QWidget
{
  Q_OBJECT
public:
  Widget1(QWidget* parent = 0);

private:
  Ui::Widget1* ui;
};

namespace Ui {
class Widget2;
}

class Widget2 : public QWidget
{
  Q_OBJECT
public:
  Widget2(QWidget* parent = 0);

private:
  Ui::Widget2* ui;
};

#endif