clboss/Boss/Msg/ResponseConnect.hpp
2020-09-09 09:52:08 +08:00

19 lines
339 B
C++

#ifndef BOSS_MSG_RESPONSECONNECT_HPP
#define BOSS_MSG_RESPONSECONNECT_HPP
#include<string>
namespace Boss { namespace Msg {
/** struct Boss::Msg::ResponseConnect
*
* @brief sent in response to a RequestConnect.
*/
struct ResponseConnect {
std::string node;
bool success;
};
}}
#endif /* !defined(BOSS_MSG_RESPONSECONNECT_HPP) */