PageRenderTime 47ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

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

#
C++ Header | 6 lines | 5 code | 1 blank | 0 comment | 0 complexity | dc45f9bff07ea33470b790b9df00302e MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. struct Base {
  2. virtual int vmethod() { return 1; }
  3. int basemethod() { return 1; }
  4. virtual ~Base() {}
  5. };