waf

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

foo.cpp (297B)


      1 // Thomas Nagy, 2011-2016
      2 
      3 #include "foo.h"
      4 
      5 Foo::Foo() : QWidget(NULL) {
      6 
      7 }
      8 
      9 class Bar_private : public QWidget {
     10         Q_OBJECT
     11         signals:
     12                 void test();
     13         public:
     14                 Bar_private();
     15 };
     16 
     17 Bar_private::Bar_private() : QWidget(NULL) {
     18 }
     19 
     20 #include "foo.moc"
     21