Hey all,
I've tried many times to write a C++ class around a C library to make a nice
clean interface to that library.
Now I keep on getting the same problem:
Once in the class, I initialize the C library, and then the C library complains that
EG:
error converting:
void (*)(int example) to
void (MyClass:: *) (int example)
I've been stuck on this one for a good 2 months now, anybody out there had the same problem? I'd appreciate any suggestions!
Cheers, -Harry