changeset 54:b3ccbe25ab75

Fix comment inversion
author daedric <d43dr1c@gmail.com>
date Sun, 28 Mar 2010 13:27:39 +0200
parents e16869cd9773
children 3b8469fa0fd7
files include/http/IHeader.hpp
diffstat 1 files changed, 9 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/include/http/IHeader.hpp	Thu Mar 25 21:36:16 2010 +0100
+++ b/include/http/IHeader.hpp	Sun Mar 28 13:27:39 2010 +0200
@@ -40,14 +40,6 @@
                  */
                 virtual void            setValue(const Key & k, const Value & value) = 0;
 
-                /**
-                 * @brief Operator overloading to ease header access.
-                 *
-                 * If the key does not exists, it will be created.
-                 *
-                 * @see IHeader::getValue
-                 */
-                virtual const Value &   operator[](const Key & k) const = 0;
 
                 /**
                  * @brief Operator overloading to ease header access.
@@ -56,6 +48,15 @@
                  *
                  * @throw std::exception if the key does not exists.
                  */
+                virtual const Value &   operator[](const Key & k) const = 0;
+
+                /**
+                 * @brief Operator overloading to ease header access.
+                 *
+                 * If the key does not exists, it will be created.
+                 *
+                 * @see IHeader::getValue
+                 */
                 virtual Value &         operator[](const Key & k) = 0;
 
                 /**