30 #ifndef MapCasosActivos_h 31 #define MapCasosActivos_h 33 #include "xc_utils/src/nucleo/EntCmd.h" 42 typedef std::map<int, T *> t_map;
43 typedef typename t_map::iterator iterator;
44 typedef typename t_map::const_iterator const_iterator;
45 typedef typename t_map::reference reference;
46 typedef typename t_map::const_reference const_reference;
47 typedef typename t_map::value_type value_type;
49 void Print(std::ostream &s,
int flag =0);
56 : EntCmd(owr), t_map(*this) {}
62 const_iterator p = this->begin();
65 ((*p).second)->Print(s, flag);
Definition: MapCasosActivos.h:39
================================================================================
Definition: ContinuaReprComponent.h:34
MapCasosActivos(EntCmd *)
Constructor.
Definition: MapCasosActivos.h:54