diff -r 9f739222ee8c -r 7ba1c04d96d5 attributedialog.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/attributedialog.h Fri Nov 09 12:07:20 2007 +0000 @@ -0,0 +1,22 @@ +#ifndef ATTRIBUTEDIALOG_H +#define ATTRIBUTEDIALOG_H + +#include "ui_attributedialog.h" + +#include +#include + +class AttributeDialog:public QDialog +{ + Q_OBJECT +public: + AttributeDialog (QWidget *parent=0 ); +signals: + void windowClosed(); +protected: + void closeEvent(QCloseEvent*); +private: + Ui::AttributeDialog ui; +}; + +#endif