[ https://issues.apache.org/jira/browse/PROTON-1442?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17906020#comment-17906020 ]
ASF GitHub Bot commented on PROTON-1442: ---------------------------------------- DreamPearl commented on code in PR #437: URL: https://github.com/apache/qpid-proton/pull/437#discussion_r1886775495 ########## cpp/include/proton/transfer.hpp: ########## @@ -33,9 +33,26 @@ /// @copybrief proton::transfer struct pn_delivery_t; +struct pn_disposition_t; namespace proton { +class disposition : public internal::object<pn_disposition_t> { + /// @cond INTERNAL + disposition(pn_disposition_t *d) : internal::object<pn_disposition_t>(d) {} + /// @endcond + + public: + /// Create an empty disposition. + disposition() : internal::object<pn_disposition_t>(0) {} + + proton::value data() const; + + /// @cond INTERNAL + friend class internal::factory<disposition>; + /// @endcond +}; + Review Comment: Removed as we don't need it rn. > [c++] Support for transactions > ------------------------------ > > Key: PROTON-1442 > URL: https://issues.apache.org/jira/browse/PROTON-1442 > Project: Qpid Proton > Issue Type: Improvement > Components: cpp-binding > Reporter: Radim Kubis > Assignee: Rakhi Kumari > Priority: Major > > Support for transactions in Qpid Proton C++. -- This message was sent by Atlassian Jira (v8.20.10#820010) --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org For additional commands, e-mail: dev-h...@qpid.apache.org