This may kind of odd but I do have this case in my job.
Say I have a function:
A->fucntion();
And this function will be passed as a parameter to another function
(func(A->function);)
My question is how to get variable A
in the func()?
I am new to c++, thank you for any advice!