currently I have a class function:
class MyClass{
static int E(int A,int B, int C){
//function code
}
};
//and I call it like this :
MyClass::E(1,2,3);
//what I would like to do is call it in this way:
E(1,2,3);
//my current macro definition is this
#define E(a,b,c) Myclass::E((a),(b),(c))
how do I correct my macro definition to generate the corect code?