A typedef declaration creates a synonym for an existing type. It does not create a new type (as class and enum do). Exampletypedef unsigned int UINT; typedef map<string,string> dictionary; See Alsoclass, declaration, enum, struct, typeid, union, Chapter 2 |