#ifndef DIALOG_H
#define DIALOG_H
#include <QtGui/QDialog>
namespace Ui
{
class Dialog;
}
{
Q_OBJECT
public:
~Dialog();
private:
Ui::Dialog *ui;
};
#endif // DIALOG_H
#ifndef DIALOG_H
#define DIALOG_H
#include <QtGui/QDialog>
namespace Ui
{
class Dialog;
}
class Dialog : public QDialog
{
Q_OBJECT
public:
Dialog(QWidget *parent = 0);
~Dialog();
private:
Ui::Dialog *ui;
};
#endif // DIALOG_H
To copy to clipboard, switch view to plain text mode
This is the header file for a form I created using Qt 4 creator, on the form i have two push Button and a Lable, in the ui file, but none of the widgets are shown in the header file, nor the source file. Please help, i am using qt 4 creator,
Bookmarks