You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
347 B
C
23 lines
347 B
C
12 years ago
|
#ifndef ADDPROPERTYDIALOG_H
|
||
|
#define ADDPROPERTYDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class AddPropertyDialog;
|
||
|
}
|
||
|
|
||
|
class AddPropertyDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit AddPropertyDialog(QWidget *parent = 0);
|
||
|
~AddPropertyDialog();
|
||
|
|
||
|
private:
|
||
|
Ui::AddPropertyDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // ADDPROPERTYDIALOG_H
|