mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-29 12:18:01 +01:00
batch statements (multiple results) support
This commit is contained in:
@@ -600,7 +600,7 @@ Binding<T>* in(const T& t, const std::string& name = "")
|
||||
|
||||
|
||||
template <typename T>
|
||||
Binding<T>* out(const T& t, const std::string& name = "")
|
||||
Binding<T>* out(T& t, const std::string& name = "")
|
||||
/// Convenience function for a more compact Binding creation.
|
||||
{
|
||||
Binding<T>* pB = new Binding<T>(t, name, AbstractBinding::PD_OUT);
|
||||
@@ -610,7 +610,7 @@ Binding<T>* out(const T& t, const std::string& name = "")
|
||||
|
||||
|
||||
template <typename T>
|
||||
Binding<T>* io(const T& t, const std::string& name = "")
|
||||
Binding<T>* io(T& t, const std::string& name = "")
|
||||
/// Convenience function for a more compact Binding creation.
|
||||
{
|
||||
Binding<T>* pB = new Binding<T>(t, name, AbstractBinding::PD_IN_OUT);
|
||||
|
||||
Reference in New Issue
Block a user