00001
00002
00003
00004 #ifndef standard_stl_h
00005 #define standard_stl_h 1
00006
00007 #include <string>
00008 #include <map>
00009 #include <vector>
00010 #include <list>
00011
00012 typedef std::map<std::string,std::string > MAP_string_string;
00013
00014 typedef std::vector<std::string> VECTOR_string;
00015
00016 typedef std::vector<int> VECTOR_int;
00017
00018 typedef std::map<char,std::string,std::less<char> > MAP_char_string;
00019
00020 typedef std::list<bool> ListBool;
00021
00022 #endif