DreamPearl commented on code in PR #437: URL: https://github.com/apache/qpid-proton/pull/437#discussion_r1886778205
########## cpp/src/container.cpp: ########## @@ -28,6 +28,7 @@ #include "proton/uuid.hpp" #include "proactor_container_impl.hpp" +#include <vector> Review Comment: Removed! ########## cpp/src/container.cpp: ########## @@ -45,6 +46,10 @@ returned<connection> container::connect(const std::string &url) { return connect(url, connection_options()); } +transaction container::declare_transaction(proton::connection conn, proton::transaction_handler &handler, bool settle_before_discharge) { + return impl_->declare_transaction(conn, handler, settle_before_discharge); +} + Review Comment: Fixed! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org For additional commands, e-mail: dev-h...@qpid.apache.org