]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Model/src/exclusa.cpp
Se agrega XML para otros items (no todos ya implementados en el cliente).
[z.facultad/75.42/plaqui.git] / Model / src / exclusa.cpp
index 34b2fab6164207dc6255ceb03cdbccd1712a7da8..8e64bc3be8130297ae1d4f749f7ac3521fd40bdb 100644 (file)
@@ -50,3 +50,14 @@ void Exclusa::recieve_msg(int msg, IConector *who, void *data)
        }
 }
        
+void Exclusa::get_state_as_xml(std::stringstream &out)
+{
+       // Datos comunes
+       // hack to avoid output problems :-)
+       actual_flow = temp;
+       PlantItem::get_state_as_xml(out);
+       out << "\t<exclusa name=\"" << name << "\">" << std::endl;
+       out << "\t\t<active>" << ((is_open)?"true":"false") << "</active>" << std::endl;
+       out << "\t</exclusa>" << std::endl;
+}
+