summaryrefslogtreecommitdiff
path: root/Tests/QtAutogen/multiplewidgets.h
blob: 6ae6ad125894ccf7f25f8338cd96e928ee9e9fe6 (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

#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