]> Creatis software - cpPlugins.git/blob - lib/cpPlugins/LoadDynamicLibrariesFunctions.h
...
[cpPlugins.git] / lib / cpPlugins / LoadDynamicLibrariesFunctions.h
1 #ifndef __CPPLUGINS__LOADDYNAMICLIBRARIESFUNCTIONS__H__
2 #define __CPPLUGINS__LOADDYNAMICLIBRARIESFUNCTIONS__H__
3
4 #include <cpPlugins/Config.h>
5
6 namespace cpPlugins
7 {
8   /**
9    */
10   class cpPlugins_EXPORT DLLManager
11   {
12   public:
13     static void* Load( const std::string& fname, std::string& error );
14     static void UnLoad( void* hnd );
15     static void* GetFunctionHandle( void* hnd, const std::string& function );
16   };
17
18 } // ecapseman
19
20 #endif // __CPPLUGINS__LOADDYNAMICLIBRARIESFUNCTIONS__H__
21
22 // eof - $RCSfile$