mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-24 10:49:42 +01:00
24 lines
298 B
C++
24 lines
298 B
C++
// Thomas Nagy, 2011-2016
|
|
|
|
#ifndef _FOO
|
|
#define _FOO
|
|
|
|
#include <QWidget>
|
|
#include <QPushButton>
|
|
|
|
class Foo : public QWidget {
|
|
Q_OBJECT
|
|
signals:
|
|
void test();
|
|
private slots:
|
|
void handleButton();
|
|
public:
|
|
Foo();
|
|
int FortyTwo();
|
|
QPushButton *m_button;
|
|
public:
|
|
bool myToggle;
|
|
};
|
|
|
|
#endif
|