X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/f5a1e732bf3907cabd004932aba3256b31d9d282..cafdb587ee6e195e5a917cea7570c2ea7e22a003:/Model/include/plantitem.h diff --git a/Model/include/plantitem.h b/Model/include/plantitem.h index 8808641..2cfb5b6 100644 --- a/Model/include/plantitem.h +++ b/Model/include/plantitem.h @@ -6,6 +6,7 @@ #include #include "iconector.h" #include "rgb.h" +#include namespace PlaQui { @@ -47,9 +48,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 * @@ -70,7 +71,7 @@ public: /// Retorna el flujo actual que maneja el objeto. float get_actual_flow() { return actual_flow; } - virtual void get_state_as_xml(std::stringstream &out) { } + virtual void get_state_as_xml(std::stringstream &out); protected: RGB fluid_color; // es de solo lectura