changeset 76:5e96f1aa291d

On sort le ziaGetModuleInstance des namesapces zia::api pour eviter des soucis de compile idiots avec g++
author David Pineau <dav.pineau@gmail.com>
date Thu, 01 Apr 2010 19:45:26 +0200
parents d9a923a961e7
children b08270288b34
files include/IModule.hpp
diffstat 1 files changed, 12 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/include/IModule.hpp	Wed Mar 31 18:18:15 2010 +0200
+++ b/include/IModule.hpp	Thu Apr 01 19:45:26 2010 +0200
@@ -72,19 +72,19 @@
              */
             virtual bool                                        configure(IConfig* conf = NULL) = 0;
         };
-
-        extern "C"
-        {
-            /**
-             * @brief Entry point of the module.
-             *
-             * @return The module instance.
-             *
-             * @see IModule
-             */
-            IModule *     ziaGetModuleInstance(void);
-        }
     };
 };
 
+extern "C"
+{
+    /**
+     * @brief Entry point of the module.
+     *
+     * @return The module instance.
+     *
+     * @see IModule
+     */
+    zia::api::IModule *     ziaGetModuleInstance(void);
+}
+
 #endif	/* ! __ZIA_API_IMODULE_HPP__ */