mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-28 11:31:53 +01:00
backport SharedLibrary changes from 1.4.2-p1
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user