I have code similar to the following:
class B { } class A { enum { EOne, ETwo } EMyEnum; B myB; }
I want to declare a mem
The current C++ standard does not allow forward declarations of enums, although they will be coming in the upcoming C++0x standard.
enum
See here for more info.