]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Model/src/plantitem.cpp
Se agrega XML para otros items (no todos ya implementados en el cliente).
[z.facultad/75.42/plaqui.git] / Model / src / plantitem.cpp
index 1ce56f8734174220a302a07c29d439f4b43b5156..efca4c18ef1ca0835399761e2a6c2ebf9dd1ddc4 100644 (file)
@@ -31,3 +31,9 @@ void PlantItem::recieve_msg(int msg, IConector *who, void *data)
        }
 }
 
+void PlantItem::get_state_as_xml(std::stringstream &out)
+{
+       out << "\t<float name=\"" << name << "\">" << std::endl;
+       out << "\t\t<actual_flow>" << actual_flow << "</actual_flow>" << std::endl;
+       out << "\t</float>" << std::endl;
+}