6 // Hago una clase porque despues van a tener comportamientos distintos!
7 class ViewTank:public ViewItem {
9 ViewTank(Glib::ustring _name, int orientacion);
12 virtual std::string get_cap_flow() { return "Capacidad :"; }
13 virtual std::string get_cap_extra() { return "Liquido :"; }
14 virtual std::string get_extra();
15 bool on_image_expose_event(GdkEventExpose *e);
17 void set_out_sup(bool b) { out_sup = b; }
18 bool get_out_sup() { return out_sup; }
19 void set_out_inf(bool b) { out_inf = b; }
20 bool get_out_inf() { return out_inf; }
23 /* Salida logica superior e inferior respectivamente */
24 bool out_sup, out_inf;