| Header: | #include <Class> | 
| enum class | MoreValues { Something, Else } | 
| enum | Values { One, Two, Three } | 
| Constant | Value | Description | 
|---|---|---|
| Class::MoreValues::Something | 0 | something | 
| Class::MoreValues::Else | 1 | entirely | 
Try now these exciting values in your C++ code:
| Constant | Value | Description | 
|---|---|---|
| Class::One | 0 | One value | 
Wait, that's not all!
| Constant | Value | Description | 
|---|---|---|
| Class::Two | 1 | 2nd value | 
| Class::Three | 2 | 3rd value |