X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/70d2e24643727ab1ea48e1793d609d27b7d21fed..a8803d96a8a33195ae9234b5e6ea84d7eefa0fd9:/Model/include/plantitem.h diff --git a/Model/include/plantitem.h b/Model/include/plantitem.h index 70fd6ac..5c3e762 100644 --- a/Model/include/plantitem.h +++ b/Model/include/plantitem.h @@ -47,9 +47,9 @@ public: virtual void simulate() = 0; /// Setea el nuevo color del fluido - void setColor(const RGB &c) { fluid_color = c; } + void set_color(const RGB &c) { fluid_color = c; } /// Retorna el actual color del fluido - const RGB &getColor() { return fluid_color; } + const RGB &get_color() { return fluid_color; } /** Recive un mensage y lo procesa * @@ -67,11 +67,16 @@ public: /// Devuelve el nombre de la instancia std::string get_name() const { return name; } + + /// Retorna el flujo actual que maneja el objeto. + float get_actual_flow() { return actual_flow; } + virtual void get_state_as_xml(std::stringstream &out) { } protected: RGB fluid_color; // es de solo lectura std::string name; bool updated; + float actual_flow; private: // Hago que no se puedan copiar objetos ElementosPlanta PlantItem(const PlantItem &):IConector(0,0) {}