Hi I have files called MyCode.h and MyCode.cpp
In MyCode.h I have declared
enum MyEnum {Something = 0, SomethingElse = 1}; class MyClass { MyEnum e
Indeed, C++0x allows that feature. I could enable it successfully in gcc using this command line flag: -std=c++0x
This was with gcc version 4.4.5