2011-02-17から1日間の記事一覧

enum classのエミュレーション

C++

【C++0x】 Emulation of scoped enums scoped enum相当のことは、C++03では以下のように書けるわけですが struct color { enum enum_t { green, yellow, red }; }; const color::enum_t c = color::green; switch (c) { case color::green: case color::yell…