c++ Programming Glossary: my_enum
“enum class” emulation or solid alternative for MSVC 10.0 http://stackoverflow.com/questions/4980280/enum-class-emulation-or-solid-alternative-for-msvc-10-0 problem GCC 4.4 accepts the following c 0x code enum class my_enum value1 value2 Which allows the use like this my_enum e my_enum.. class my_enum value1 value2 Which allows the use like this my_enum e my_enum value1 with all the bells and whistles this brings... value1 value2 Which allows the use like this my_enum e my_enum value1 with all the bells and whistles this brings. I would..
|