waf

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

a.h (240B)


      1 /*!
      2  * Unused class for demo a.h
      3  */
      4 class foo
      5 {
      6 	private:
      7 		/*!
      8 		 * attribute x, hmmm :-)
      9 		 */
     10 		int x;
     11 
     12 	public:
     13 		/*!
     14 		 * i love comments such as "this is a constructor"
     15 		 */
     16 		foo();
     17 
     18 		/*!
     19 		 * float y, tadam
     20 		 */
     21 		float y;
     22 };
     23 
     24