I haven’t written any C++ in years and now I’m trying to get back into it. I then ran across this and thought about giving up:
typedef enum TokenType
{
blah1 = 0x00000000,
blah2 = 0X01000000,
blah3 = 0X02000000
} TokenType;
What is this? Why is the typedef
keyword used here? Why does the name TokenType
appear twice in this declaration? How are the semantics different from this:
enum TokenType
{
blah1 = 0x00000000,
blah2=0x01000000,
blah3=0x02000000
};