so I want to create a class with a utilty method that takes as a parameter a pointer to another method in the same class.
How do I go about
1) declaring said parameter,
2) making the call to said method and passing in the argument and
3) using the method pointer to (invoke the call within the utility method)
many thanks for the help, oh one more thing, if the method is a const method and I want a pointer to it, I would also have to add the const in the pointer declaration right?