Basically I have the following class:
class StateMachine {
...
StateMethod stateA();
StateMethod stateB();
...
};
The methods stateA() and stateB() should be able return pointers to stateA() and stateB(). How to typedef the StateMethod?
|
Basically I have the following class:
The methods stateA() and stateB() should be able return pointers to stateA() and stateB(). How to typedef the StateMethod?
| ||||
feedback
|
|
GotW #57 says to use a proxy class with an implicit conversion for this very purpose.
| |||||||||||
feedback
|
|
Using just typedef:
| |||
|
feedback
|
|
EDIT: njsf proved me wrong here. You might find static casting simpler to maintain, however, so I will leave the rest here.
Your best bet is to use PS: | |||||
feedback
|
|
My philosophy is don't use raw member function pointers. I don't even really know how to do what you want using raw pointer typedef's the syntax is so horrible. I like using boost::function. This is
This problem is definitely a lot harder than first meets the eye | |||||||||||
feedback
|
|
I can never remember the horrible C++ function declspec, so whenever I have to find out the syntax that describes a member function, for example, I just induce an intentional compiler error which usually displays the correct syntax for me. So given:
What's the syntax for stateA's typedef? No idea.. so let's try to assign to it something unrelated and see what the compiler says:
Compiler says:
There it is: "bool (StateMachine::*)(int)" is our typedef. | ||||
|
feedback
|