+int CItem::get_position_x()
+{
+ return x;
+}
+
+int CItem::get_position_y()
+{
+ return y;
+}
+
+int CItem::get_id()
+{
+ return ID;
+}
+
+double CItem::get_caudal()
+{
+ return caudal_max;
+}
+
+
+Glib::ustring CItem::get_name()
+{
+ return name;
+}
+
+Glib::ustring CItem::get_other_name(int _id)
+{
+ std::list<CItem *>::iterator i = listaItems->begin();
+ while ( i != listaItems->end() ) {
+ if ( (*i)->get_id() == _id )
+ return (*i)->get_name();
+ i++;
+ }
+ return name;
+}
+
+int CItem::get_img_actual()
+{
+ return imgActual;
+}
+