waf/demos/qt5/foo.h

24 lines
298 B
C
Raw Normal View History

2016-05-01 13:21:06 +02:00
// Thomas Nagy, 2011-2016
2011-09-10 11:13:51 +02:00
#ifndef _FOO
#define _FOO
#include <QWidget>
#include <QPushButton>
2011-09-10 11:13:51 +02:00
class Foo : public QWidget {
Q_OBJECT
signals:
void test();
private slots:
void handleButton();
2011-09-10 11:13:51 +02:00
public:
Foo();
int FortyTwo();
QPushButton *m_button;
public:
bool myToggle;
2011-09-10 11:13:51 +02:00
};
#endif