a.h 240 B

123456789101112131415161718192021222324
  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. public:
  12. /*!
  13. * i love comments such as "this is a constructor"
  14. */
  15. foo();
  16. /*!
  17. * float y, tadam
  18. */
  19. float y;
  20. };