PageRenderTime 42ms CodeModel.GetById 18ms RepoModel.GetById 1ms app.codeStats 0ms

/trunk/Examples/test-suite/multi_import.h

#
C++ Header | 17 lines | 15 code | 2 blank | 0 comment | 0 complexity | b2def8328b074b36312219a98f5f8346 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. class XXX
  2. {
  3. public:
  4. int testx() { return 0;}
  5. };
  6. class YYY : public XXX
  7. {
  8. public:
  9. int testy() { return 1;}
  10. };
  11. class ZZZ : public XXX
  12. {
  13. public:
  14. int testz() { return 2;}
  15. };