00001 /* -*- mode: c++; c-basic-offset: 4; -*- */ 00002 #ifndef ATTRLIST_HH 00003 #define ATTRLIST_HH 00004 00005 #include <map> 00006 #include <string> 00007 00008 // This is the definition of an attribute list. 00009 namespace xsil { 00013 typedef std::map<std::string, std::string> attr_list; 00014 typedef attr_list::iterator attr_iter; 00015 typedef attr_list::const_iterator const_attr_iter; 00016 } 00017 00018 #endif // ATTRLIST_HH
1.5.4