You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
waf/playground/slow_qt_example/foo.cpp

24 lines
236 B
C++

// Thomas Nagy, 2011
#include <QObject>
#include "foo.h"
Foo::Foo() : QWidget(NULL) {
}
class FooP : public QWidget {
Q_OBJECT
signals:
void test();
public:
FooP();
};
FooP::FooP() {
}
#include "foo_cpp_mywindow_moc.cpp"