073_typed_enum.cpp unsigned short E A strongly-typed enum. unsigned char Mem Bottom = 0 NotMem = 1U << 0 Ptr = 1U << 1 Lval = 1U << 2 Mem = Ptr | Lval Top = NotMem | Mem Strongly types enum when values that has the same name as the enum. @0 Unnamed1 @1 Unnamed2