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. -- 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