##// END OF EJS Templates
Étiquette socexplorer-0.7-1 ajoutée à la révision dddb880123c9
Étiquette socexplorer-0.7-1 ajoutée à la révision dddb880123c9

File last commit:

r0:1aa783210b8e default
r113:c84a505e16a9 0.6
Show More
unixpluginloader.h
18 lines | 316 B | text/x-c | CLexer
Jeandet Alexis
First init of SocExplorer Repository.
r0 #ifndef UNIXPLUGINLOADER_H
#define UNIXPLUGINLOADER_H
#include <dlfcn.h>
#include <QString>
class unixPluginLoader
{
public:
unixPluginLoader(const QString& libPath);
void* resolve(const QString& symbol);
void close();
private:
void* dlHandle;
QString libPath;
};
#endif // UNIXPLUGINLOADER_H