Subj : Re: Typecasting question To : borland.public.cpp.borlandcpp From : Rick Date : Tue Dec 14 2004 11:44 pm I see, thanks for the example! If you don't mind, I have another question related to this a little bit. I'm trying to make function pointers on class functions but I'm having difficulties. This code for example: int (TMyClass::*pt2Member)(float, char, char); This function pointer can point to a function (with the suitable arguments) in class TMyClass. But, what if I don't know which class will use it? The function could be in TMyClass but I also want it to use for other classes. In other words, the declaration should not depend on any class. I red somewhere this wasn't possible at all in C++ but maybe you guys know better ;) Greetings and thanks for helping, Rick .