QTfrontend/HWApplication.h
changeset 6616 f77bb02b669f
parent 6185 a6aa2d44f390
child 6700 e04da46ee43c
equal deleted inserted replaced
6615:65602f1ef0f8 6616:f77bb02b669f
    33  *
    33  *
    34  * @see http://doc.qt.nokia.com/4.5/stylesheet.html
    34  * @see http://doc.qt.nokia.com/4.5/stylesheet.html
    35  */
    35  */
    36 class HWApplication : public QApplication
    36 class HWApplication : public QApplication
    37 {
    37 {
    38     Q_OBJECT
    38         Q_OBJECT
    39 public:
    39     public:
    40     HWApplication(int &argc, char **argv);
    40         HWApplication(int &argc, char **argv);
    41     ~HWApplication() {};
    41         ~HWApplication() {};
    42 
    42 
    43     HWForm *form;
    43         HWForm *form;
    44 protected:
    44     protected:
    45     bool event(QEvent *);
    45         bool event(QEvent *);
    46 };
    46 };
    47 
    47 
    48 #endif
    48 #endif
    49 
    49