]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/include/plaqui/server/httpheaders.h
- Se agrega el objeto Command que encapsula un comando enviado al servidor.
[z.facultad/75.42/plaqui.git] / Server / include / plaqui / server / httpheaders.h
index bc4ce02351f459c698038c7346b75ae15bcdeb1f..1a9c5aaebf67a55f8253dbada1bb26df687b1621 100644 (file)
@@ -30,6 +30,8 @@
 
 #include <map>
 #include <string>
+#include <istream>
+#include <ostream>
 
 namespace PlaQui {
 
@@ -48,8 +50,7 @@ namespace Server {
                        /**
                         * Obtiene los datos de las cabeceras HTTP desde un texto.
                         */
-                       friend std::istream& operator>>(std::istream& is,
-                                       const HTTPHeaders& h);
+                       friend std::istream& operator>>(std::istream& is, HTTPHeaders& h);
 
                        /**
                         * Convierte las cabeceras HTTP a texto.
@@ -57,6 +58,9 @@ namespace Server {
                        friend std::ostream& operator<<(std::ostream& os,
                                        const HTTPHeaders& h);
 
+       };
+
+}
 
 }