backport SharedLibrary changes from 1.4.2-p1

This commit is contained in:
Marian Krivos
2011-11-04 18:56:08 +00:00
parent 5084562770
commit 97ec3f5bf6
16 changed files with 155 additions and 96 deletions

View File

@@ -63,7 +63,13 @@ SharedLibrary::SharedLibrary()
SharedLibrary::SharedLibrary(const std::string& path)
{
loadImpl(path);
loadImpl(path, 0);
}
SharedLibrary::SharedLibrary(const std::string& path, int flags)
{
loadImpl(path, flags);
}
@@ -74,7 +80,13 @@ SharedLibrary::~SharedLibrary()
void SharedLibrary::load(const std::string& path)
{
loadImpl(path);
loadImpl(path, 0);
}
void SharedLibrary::load(const std::string& path, int flags)
{
loadImpl(path, flags);
}