changeset 27:7ee8ad9d593b

Update documentation, fix name conflict
author daedric <d43dr1c@gmail.com>
date Sun, 21 Mar 2010 15:55:27 +0100
parents c0213ec8ab71
children d82cf6b99c5f
files src/include/handler/INetworkHandler.hpp src/include/http/IHeader.hpp
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/include/handler/INetworkHandler.hpp	Sun Mar 21 14:52:15 2010 +0100
+++ b/src/include/handler/INetworkHandler.hpp	Sun Mar 21 15:55:27 2010 +0100
@@ -74,7 +74,7 @@
          ** @return a copy of a structure
          ** @see sPtrFunc
          */
-        virtual sPtrFunc getHandlers(void) = 0;
+        virtual sPtrFunc getNetworkHandlers(void) = 0;
 
 };
 
--- a/src/include/http/IHeader.hpp	Sun Mar 21 14:52:15 2010 +0100
+++ b/src/include/http/IHeader.hpp	Sun Mar 21 15:55:27 2010 +0100
@@ -46,6 +46,7 @@
 
     /**
      * @brief operator overloading to facilitate header access.
+     * If the key does not exists, it will be created.
      * @see IHeader::getValue
      */
     virtual const Value &       operator[](const Key & k) const = 0;
@@ -53,6 +54,7 @@
     /**
      * @brief operator overloading to facilitate header access.
      * @see IHeader::setValue
+     * @throw std::exception if the key does not exists.
      */
     virtual Value &             operator[](const Key & k) = 0;
 };