// Include file prive pour NamedObjMgr (nobmgr.cc) // LAL-IN2P3/CNRS DAPNIA-CEA // Reza Aout 97 #ifndef NOMAPSTR_H_SEEN #define NOMAPSTR_H_SEEN #include #include #include "ppersist.h" struct nobj_item { PPersist* obj; int num; list wrsid; bool operator==(nobj_item const& b) const { return (this->obj == b.obj); } }; typedef map > NObjList; #endif