Program listing for file kernel/src/utils/SiconosSharedLibrary/SSLH.hpp

Program listing for file kernel/src/utils/SiconosSharedLibrary/SSLH.hpp#

 1#ifndef SSLH_H
 2#define SSLH_H
 3
 4#include <string>
 5
 6namespace SSLH
 7{
 8
 9
10
11
12
13
14
15
16
17  const std::string getSharedLibraryExtension(void);
18
19  const std::string getPluginName(const std::string& s);
20
21  const std::string getPluginFunctionName(const std::string& s);
22
23  void setFunction(void* fPtr, const std::string& pluginPath, const std::string& fName);
24
25  void closePlugin(const std::string& pluginPath);
26}
27
28#endif