aboutsummaryrefslogblamecommitdiffstats
path: root/test/cxxmethoddecl.cpp
blob: 55e1e2f380cfd25009dbbd18fc3cf7a6901c76f8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                       
namespace cxxmethoddecl_ns{
#define cxxmethoddeclmacro cxxMethodTwo
class testClass {
public:
  testClass();
  virtual ~testClass();

  void cxxMethodOne(void);
  void cxxMethodOne(int a);
  void cxxmethoddeclmacro(void);

private:
};
}; // namespace