I believe the new C++ standard allows for an extra “scope” for enumerated types:
enum E { e1, e2 };
E var = E::e1;
Since I know lots of source files containing the old C-style enum typedef, I wondered if the new standard would allow using the typedef for these otherwise anonymous enumerated types:
typedef enum { d1, d2 } D;
D var = D::d1; // error?
The new standard will add a new type of strong enum, but the syntax will be slightly different, and old style enums will be compatible (valid code in C++03 will be valid C++0x code) so you will not need to do anything to keep legacy code valid (not the typedef, not anything else).
There is a C++ FAQ here that deals with this particular issue.