Logo
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
reply.hh
Go to the documentation of this file.
1 #pragma once
2 
3 #include "message.hh"
4 #include <string>
5 
6 namespace eclipse {
7 namespace messages {
8 
9 struct Reply: public Message {
10  Reply () = default;
11 
12  std::string get_type() const override;
13  std::string message;
14  std::string details;
15 };
16 
17 }
18 }
std::string details
Definition: reply.hh:14
Definition: message.hh:15
std::string get_type() const override
Definition: reply.cc:4
Definition: reply.hh:9
std::string message
Definition: reply.hh:13