]> SALOME platform Git repositories - modules/gui.git/blob - tools/dlgfactory/__QDIALOG__.hxx
Salome HOME
3865e170b3e28b48209e9c09bad9dffca7765cbe
[modules/gui.git] / tools / dlgfactory / __QDIALOG__.hxx
1 #ifndef ___CLASSNAME___HXX
2 #define ___CLASSNAME___HXX
3
4 #include <QtGui>
5 #include "ui___CLASSNAME__.hxx"
6
7 class __CLASSNAME__ : public QDialog
8 {
9   Q_OBJECT
10     
11  public:
12   __CLASSNAME__(QDialog *parent = 0);
13
14  protected slots:    
15     void accept();
16   //void reject();
17   
18  private:
19   Ui___CLASSNAME__ ui; // instance of the class defined in ui___CLASSNAME__.hxx
20 };
21
22
23 #endif // ___CLASSNAME___HXX