6053ce22f6
Modify the includedUis to store the path to the file which includes the ui file. Reuse that path to generate the output file from the uic process.
21 lines
256 B
C++
21 lines
256 B
C++
|
|
#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
|