mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-28 11:31:53 +01:00
trunk: backport eventing from 1.4.3
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
//
|
||||
// SharedLibrary.cpp
|
||||
//
|
||||
// $Id: //poco/svn/Foundation/src/SharedLibrary.cpp#2 $
|
||||
// $Id: //poco/1.4/Foundation/src/SharedLibrary.cpp#3 $
|
||||
//
|
||||
// Library: Foundation
|
||||
// Package: SharedLibrary
|
||||
@@ -63,13 +63,13 @@ SharedLibrary::SharedLibrary()
|
||||
|
||||
SharedLibrary::SharedLibrary(const std::string& path)
|
||||
{
|
||||
loadImpl(path, 0);
|
||||
loadImpl(path, 0);
|
||||
}
|
||||
|
||||
|
||||
SharedLibrary::SharedLibrary(const std::string& path, int flags)
|
||||
{
|
||||
loadImpl(path, flags);
|
||||
loadImpl(path, flags);
|
||||
}
|
||||
|
||||
|
||||
@@ -80,13 +80,13 @@ SharedLibrary::~SharedLibrary()
|
||||
|
||||
void SharedLibrary::load(const std::string& path)
|
||||
{
|
||||
loadImpl(path, 0);
|
||||
loadImpl(path, 0);
|
||||
}
|
||||
|
||||
|
||||
void SharedLibrary::load(const std::string& path, int flags)
|
||||
{
|
||||
loadImpl(path, flags);
|
||||
loadImpl(path, flags);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user