PageRenderTime 37ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

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

#
C++ Header | 12 lines | 8 code | 4 blank | 0 comment | 0 complexity | 406e45761514282be39eae6c755c5429 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. class A {
  2. public:
  3. void fA() {}
  4. };
  5. typedef A tA;
  6. void test_A(A *a) {}
  7. void test_tA(tA *a) {}
  8. tA *new_tA() { return new tA(); }