mirror of
https://github.com/reactos/CMake.git
synced 2024-12-13 14:27:23 +00:00
71a11252e9
Don't store a mapping of the directory to the ui file. The directory will be a unique key, allowing only one ui file to be specified. Use the source file name instead as the mapping key.
20 lines
219 B
C++
20 lines
219 B
C++
|
|
#include <QWidget>
|
|
|
|
namespace Ui
|
|
{
|
|
class SecondWidget;
|
|
}
|
|
|
|
class SecondWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit SecondWidget(QWidget *parent = 0);
|
|
|
|
~SecondWidget();
|
|
|
|
private:
|
|
Ui::SecondWidget* ui;
|
|
};
|