hi all,
I have a class A that has a char* var, operator and methods.
In addition I have a global func(char*s). I would like to run this code from the main function by adding operators to my class, I need help writing them.
A* pA;
...
A** ppA = pA;
func(*ppA);
thanks...