mirror of
https://github.com/badaix/snapcast.git
synced 2025-04-28 09:47:09 +02:00
Add doxygen doc
This commit is contained in:
parent
ab5318fea4
commit
b4bbdc0265
1 changed files with 3 additions and 1 deletions
|
@ -48,7 +48,9 @@ using MessageHandler = std::function<void(const boost::system::error_code&, std:
|
|||
class PendingRequest : public std::enable_shared_from_this<PendingRequest>
|
||||
{
|
||||
public:
|
||||
/// c'tor
|
||||
PendingRequest(const boost::asio::strand<boost::asio::any_io_executor>& strand, uint16_t reqId, const MessageHandler<msg::BaseMessage>& 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))
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue