1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef TYPEDEFS_H #define TYPEDEFS_H #include <string> #include <set> #include <map> #include <list> typedef std::wstring mystring; typedef std::set<mystring> stringSet; typedef std::map<mystring, mystring> stringMap; typedef std::list<mystring> stringList; #endif