trunk: backport eventing from 1.4.3

This commit is contained in:
Marian Krivos
2012-02-05 12:16:58 +00:00
parent 59fe68edbe
commit 7d7c02c579
412 changed files with 3564 additions and 3634 deletions

View File

@@ -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);
}