changeset 64:17fad87d0ed1

Add non const version
author daedric <d43dr1c@gmail.com>
date Tue, 30 Mar 2010 20:37:02 +0200
parents 112b00938a3d
children 769d5793f550
files include/http/IResponse.hpp
diffstat 1 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/include/http/IResponse.hpp	Tue Mar 30 20:21:34 2010 +0200
+++ b/include/http/IResponse.hpp	Tue Mar 30 20:37:02 2010 +0200
@@ -85,6 +85,15 @@
                  * @see IHeader
                  */
                 virtual IHeader &           getHeaders(void) const = 0;
+
+                /**
+                 * @brief Get HTTP headers.
+                 *
+                 * @return the HTTP headers.
+                 *
+                 * @see IHeader
+                 */
+                virtual IHeader &           getHeaders(void) = 0;
             };
         };
     };