blob: 55e1e2f380cfd25009dbbd18fc3cf7a6901c76f8 (
plain) (
tree)
|
|
namespace cxxmethoddecl_ns{
#define cxxmethoddeclmacro cxxMethodTwo
class testClass {
public:
testClass();
virtual ~testClass();
void cxxMethodOne(void);
void cxxMethodOne(int a);
void cxxmethoddeclmacro(void);
private:
};
}; // namespace
|