Is there any way to do this?<BR><BR>I define a class as follows:<BR><BR>class CClass {<BR>public:<BR> CClass();<BR> virtual ~CClass();<BR> LRESULT CALLBACK DialogProc ...
class C { void f(int(*a)(int)) { //... does stuff } void f(bool(*a)(bool)) { //does stuff } int x(int i) { //stuff } bool x(bool b) { //stuff } void resolve() { this ...