mirror of
https://github.com/ZmnSCPxj/clboss.git
synced 2026-08-15 12:50:42 +02:00
19 lines
339 B
C++
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) */
|