]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/include/plaqui/server/string.h
Se arreglan algunos bugs. Ahora compila.
[z.facultad/75.42/plaqui.git] / Server / include / plaqui / server / string.h
index 53752e444cefbb791b2ccd8a24ab35ed045be8ea..ecd253a8bc53e251aadcb34ab35fbee9112dbe4c 100644 (file)
@@ -29,6 +29,7 @@
 #define PLAQUI_STRING_H
 
 #include <string>
 #define PLAQUI_STRING_H
 
 #include <string>
+#include <vector>
 
 namespace PlaQui {
 
 
 namespace PlaQui {
 
@@ -47,6 +48,11 @@ namespace Server {
                         */
                        virtual ~String(void);
 
                         */
                        virtual ~String(void);
 
+                       /**
+                        * Constructor.
+                        */
+                       String(void);
+
                        /**
                         * Constructor.
                         *
                        /**
                         * Constructor.
                         *
@@ -54,6 +60,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 +88,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);
+
        };
 
 }
        };
 
 }