changeset 26:c0213ec8ab71

Update documentation on IModule::configure
author daedric <d43dr1c@gmail.com>
date Sun, 21 Mar 2010 14:52:15 +0100
parents 27de48562b2c
children 7ee8ad9d593b
files src/include/IModule.hpp
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/include/IModule.hpp	Sun Mar 21 14:35:03 2010 +0100
+++ b/src/include/IModule.hpp	Sun Mar 21 14:52:15 2010 +0100
@@ -49,10 +49,12 @@
 
     /**
      * @brief Update module configuration
+     * @param [in] conf the pointer on IConfig which hold the configuration
      * @return true if the configuration was successfully loaded
      * if the configure module return false, it will be unload.
+     * @see IConfig
      */
-    virtual bool configure(IConfig *) = 0;
+    virtual bool configure(IConfig* conf = NULL) = 0;
 
 };