Newer
Older
#include "MantidKernel/LibraryWrapper.h"
namespace Mantid {
namespace Kernel {
LibraryWrapper::LibraryWrapper() : module(0) {}
LibraryWrapper::~LibraryWrapper() {
// Close lib
if (module) {
Gigg, Martyn Anthony
committed
DllOpen::CloseDll(module);
module = 0;
}
* @param libName :: The name of the file to open (not including the
* lib/so/dll).
Janik Zikovsky
committed
* @return True if DLL is opened or already open.
bool LibraryWrapper::OpenLibrary(const std::string &libName) {
if (!module) {
// Load dynamically loaded library
Gigg, Martyn Anthony
committed
module = DllOpen::OpenDll(libName);
Gigg, Martyn Anthony
committed
return false;
}
}
Gigg, Martyn Anthony
committed
return true;
}
/** Opens a DLL.
* @param libName :: The name of the file to open (not including the
* lib/so/dll).
Janik Zikovsky
committed
* @param filePath :: The filepath to the directory where the library is.
* @return True if DLL is opened or already open
bool LibraryWrapper::OpenLibrary(const std::string &libName,
const std::string &filePath) {
if (!module) {
// Load dynamically loaded library
Gigg, Martyn Anthony
committed
module = DllOpen::OpenDll(libName, filePath);
Gigg, Martyn Anthony
committed
return false;
}
}
Gigg, Martyn Anthony
committed
return true;
} // namespace Kernel
} // namespace Mantid