##// END OF EJS Templates
Fixed test order, on RegsExplorer::addDev, must check pointer before members.
Fixed test order, on RegsExplorer::addDev, must check pointer before members.

File last commit:

r0:1aa783210b8e default
r111:f5779f536b0f 0.6
Show More
unixpluginloader.h
18 lines | 316 B | text/x-c | CLexer
#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