00001 #ifndef ERIS_TYPES_H
00002 #define ERIS_TYPES_H
00003
00004
00005 #include <string>
00006 #include <list>
00007 #include <set>
00008
00009 namespace Atlas { namespace Message { class Element; } }
00010
00011 namespace Eris
00012 {
00013
00014 typedef std::list<std::string> StringList;
00015 typedef std::set<std::string> StringSet;
00016
00017 typedef std::list<Atlas::Message::Element> MessageList;
00018
00019
00020 class Entity;
00021 typedef Entity* EntityPtr;
00022
00023 }
00024
00025 #endif