this->y = _y;
}
-int CItem::get_position_x()
+void CItem::set_id(int _id)
{
- return x;
+ ID = _id;
}
-int CItem::get_position_y()
+void CItem::set_caudal(double _caudal)
{
- return y;
+ caudal_max = _caudal;
}
-bool CItem::is_occupied_area(int _a, int _b)
-{
- if ( ( _a >= x ) && ( _a < x+image->get_width()) && (_b >= y) && (_b < y+image->get_height()) )
- return true;
- else return false;
+void CItem::set_name(Glib::ustring _name)
+{
+ name = _name;
}
-void CItem::set_id(int _id)
+void CItem::set_conector_in(int _in)
{
- ID = _id;
+ conector_in = _in;
}
-int CItem::get_id()
+void CItem::set_conector_out(int _out)
{
- return ID;
+ conector_out = _out;
}
-void CItem::set_caudal(double _caudal)
+int CItem::get_position_x()
{
- caudal_max = _caudal;
+ return x;
}
-double CItem::get_caudal()
+int CItem::get_position_y()
{
- return caudal_max;
+ return y;
}
-void CItem::set_name(Glib::ustring _name)
+int CItem::get_id()
{
- name = _name;
+ return ID;
}
+double CItem::get_caudal()
+{
+ return caudal_max;
+}
+
+
Glib::ustring CItem::get_name()
{
return name;
}
+
+int CItem::get_conector_in()
+{
+ return conector_in;
+}
+
+int CItem::get_conector_out()
+{
+ return conector_out;
+}
+
+bool CItem::is_occupied_area(int _a, int _b)
+{
+ if ( ( _a >= x ) && ( _a < x+image->get_width()) && (_b >= y) && (_b < y+image->get_height()) )
+ return true;
+ else return false;
+}