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

# · C++ Header · 12 lines · 8 code · 4 blank · 0 comment · 0 complexity · 406e45761514282be39eae6c755c5429 MD5 · raw file

  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(); }