12345678910111213141516171819202122232425 |
- #ifndef EXAMPLE_G2_H
- #define EXAMPLE_G2_H
- #include <qwidget.h>
- class QPushButton;
- class MyWindow : public QWidget {
- Q_OBJECT
- public:
- MyWindow(QWidget *parent = 0, const char *name = 0);
- ~MyWindow();
- private:
- QPushButton *hello;
- void createHelloButton();
- private slots:
- void helloClicked();
- };
- #endif // !EXAMPLE_G2_H
|