waf/demos/qt5/foo.cpp

22 lines
297 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
#include "foo.h"
Foo::Foo() : QWidget(NULL) {
}
2011-12-31 14:32:38 +01:00
class Bar_private : public QWidget {
Q_OBJECT
signals:
void test();
public:
Bar_private();
};
Bar_private::Bar_private() : QWidget(NULL) {
}
2011-09-10 11:13:51 +02:00
#include "foo.moc"