]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/src/string.cpp
Se agrega generacion de XML para dar el estado actual de la planta simulada.
[z.facultad/75.42/plaqui.git] / Server / src / string.cpp
index 97dd19f5123eee3d9de4fd23ed59ef1ca38c983c..8f9b2dbe6b410677fced804480a3fa37ea7a9d8a 100644 (file)
@@ -93,6 +93,21 @@ String String::join(const vector<string>& v, const string& sep) {
        return ss.str();
 }
 
        return ss.str();
 }
 
+/*
+template < class T > T& String::to(T& p) const {
+       stringstream ss(*this);
+       ss >> p;
+       return p;
+}
+
+template < class T > String& String::from(const T& p) {
+       stringstream ss;
+       ss << p;
+       ss >> (*this);
+       return *this;
+}
+*/
+
 } // namespace Server
 
 } // namespace PlaQui
 } // namespace Server
 
 } // namespace PlaQui