用宏定义成员函数,VC6的类视图显示错误,实际函数可以使用。
VC7没此问题。
#define ConstGetMemFunMac2(varName,funName,retType)\ retType funName()const{return varName;}; class A { public: ConstGetMemFunMac2(m_x,GetX,int); int m_x;
用宏定义成员函数,VC6的类视图显示错误,实际函数可以使用。
VC7没此问题。
#define ConstGetMemFunMac2(varName,funName,retType)\ retType funName()const{return varName;}; class A { public: ConstGetMemFunMac2(m_x,GetX,int); int m_x;