mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-10 20:29:10 +01:00
22 lines
297 B
C++
22 lines
297 B
C++
// Thomas Nagy, 2011-2016
|
|
|
|
#include "foo.h"
|
|
|
|
Foo::Foo() : QWidget(NULL) {
|
|
|
|
}
|
|
|
|
class Bar_private : public QWidget {
|
|
Q_OBJECT
|
|
signals:
|
|
void test();
|
|
public:
|
|
Bar_private();
|
|
};
|
|
|
|
Bar_private::Bar_private() : QWidget(NULL) {
|
|
}
|
|
|
|
#include "foo.moc"
|
|
|