waf

FORK: waf with some random patches
git clone https://git.neptards.moe/neptards/waf.git
Log | Files | Refs | README

foo.cpp (228B)


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