foo.cpp 228 B

123456789101112131415161718192021222324
  1. // Thomas Nagy, 2011
  2. #include <QObject>
  3. #include "foo.h"
  4. Foo::Foo() : QWidget(NULL) {
  5. }
  6. class FooP : public QWidget {
  7. Q_OBJECT
  8. signals:
  9. void test();
  10. public:
  11. FooP();
  12. };
  13. FooP::FooP() {
  14. }
  15. #include "foo_cpp_moc.cpp"