mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-13 06:44:13 +02:00
DateTime binding & I/O parameters fix
This commit is contained in:
@@ -41,10 +41,10 @@ namespace Poco {
|
||||
namespace Data {
|
||||
|
||||
|
||||
AbstractBinding::AbstractBinding():
|
||||
AbstractBinding::AbstractBinding(const std::string& name, Direction direction):
|
||||
_pBinder(0),
|
||||
_inBound(true),
|
||||
_outBound(false)
|
||||
_name(name),
|
||||
_direction(direction)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -54,4 +54,11 @@ AbstractBinding::~AbstractBinding()
|
||||
}
|
||||
|
||||
|
||||
void AbstractBinding::setBinder(AbstractBinder* pBinder)
|
||||
{
|
||||
poco_check_ptr (pBinder);
|
||||
_pBinder = pBinder;
|
||||
}
|
||||
|
||||
|
||||
} } // namespace Poco::Data
|
||||
|
Reference in New Issue
Block a user