i dont really get what u just said......what can i do that i cant do with just a function. i could call it again if i wanted to right?
and use this example...
class test
{
public:
void func();
//do i put the function pointers signature here?
};
void main()
{
//or do i put it here?
//and how do i call it
test (*x)();
}