]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/include/plaqui/server/string.h
- Se agrega el objeto Command que encapsula un comando enviado al servidor.
[z.facultad/75.42/plaqui.git] / Server / include / plaqui / server / string.h
index 53752e444cefbb791b2ccd8a24ab35ed045be8ea..74c27cd96c175742f8c856ccc107cd9ae6ca7697 100644 (file)
@@ -29,6 +29,7 @@
 #define PLAQUI_STRING_H
 
 #include <string>
 #define PLAQUI_STRING_H
 
 #include <string>
+#include <vector>
 
 namespace PlaQui {
 
 
 namespace PlaQui {
 
@@ -54,6 +55,17 @@ namespace Server {
                         */
                        String(const std::string& str);
 
                         */
                        String(const std::string& str);
 
+                       /**
+                        * Constructor a partir de un vector.
+                        * Convierte el vector en string uniendo sus componentes a traves
+                        * del separador.
+                        *
+                        * \param v   Vector.
+                        * \param sep Separador.
+                        */
+                       String(const std::vector<std::string>& v,
+                                       const std::string& sep);
+
                        /**
                         * Elmina caracteres al inicio y fin de un string.
                         *
                        /**
                         * Elmina caracteres al inicio y fin de un string.
                         *
@@ -71,6 +83,22 @@ namespace Server {
                         */
                        String& to_lower(void);
 
                         */
                        String& to_lower(void);
 
+                       /**
+                        * Fracciona una cadena convirtiendola en un vector.
+                        *
+                        * \param sep Caracter usado como separador.
+                        */
+                       std::vector<std::string> split(char sep) const;
+
+                       /**
+                        * Concatena los elementos de un vector.
+                        *
+                        * \param v   Vector.
+                        * \param sep Separador.
+                        */
+                       static String join(const std::vector<std::string>& v,
+                                       const std::string& sep);
+
        };
 
 }
        };
 
 }