diff --git a/client/client_connection.hpp b/client/client_connection.hpp index 5298637e..ad9f36ee 100644 --- a/client/client_connection.hpp +++ b/client/client_connection.hpp @@ -48,7 +48,9 @@ using MessageHandler = std::function { public: + /// c'tor PendingRequest(const boost::asio::strand& strand, uint16_t reqId, const MessageHandler& handler); + /// d'tor virtual ~PendingRequest(); /// Set the response for the pending request and passes it to the handler @@ -157,7 +159,7 @@ protected: /// A pending request struct PendingMessage { - /// C'tor + /// c'tor PendingMessage(msg::message_ptr msg, ResultHandler handler) : msg(std::move(msg)), handler(std::move(handler)) { }