waf

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

foo.h (167B)


      1 // Thomas Nagy, 2011-2016
      2 
      3 #ifndef _FOO
      4 #define _FOO
      5 
      6 #include <QWidget>
      7 
      8 class Foo : public QWidget {
      9 	Q_OBJECT
     10 	signals:
     11 		void test();
     12 	public:
     13 		Foo();
     14 };
     15 
     16 #endif