mirror of
https://github.com/pocoproject/poco.git
synced 2025-11-27 09:39:08 +01:00
DateTime binding & I/O parameters fix
This commit is contained in:
@@ -41,9 +41,7 @@ namespace Poco {
|
||||
namespace Data {
|
||||
|
||||
|
||||
AbstractBinder::AbstractBinder():
|
||||
_inBound(true),
|
||||
_outBound(false)
|
||||
AbstractBinder::AbstractBinder()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
@@ -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