/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 2class A { 3 public: 4 void fA() {} 5}; 6 7typedef A tA; 8 9void test_A(A *a) {} 10void test_tA(tA *a) {} 11 12tA *new_tA() { return new tA(); }