mirror of
https://github.com/reactos/CMake.git
synced 2024-12-17 16:46:37 +00:00
e3c97a1914
Use a vector to store a list of matched ui_ includes, instead of overwriting the previous match.
34 lines
379 B
C++
34 lines
379 B
C++
|
|
#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
|