changeset 77:b08270288b34

Backed out changeset 5e96f1aa291d
author David Pineau <dav.pineau@gmail.com>
date Fri, 02 Apr 2010 12:20:44 +0200
parents 5e96f1aa291d
children fc82e57437df
files include/IModule.hpp
diffstat 1 files changed, 12 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/include/IModule.hpp	Thu Apr 01 19:45:26 2010 +0200
+++ b/include/IModule.hpp	Fri Apr 02 12:20:44 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__ */