mirror of
https://github.com/ZmnSCPxj/clboss.git
synced 2026-08-14 12:43:19 +02:00
21 lines
376 B
C++
21 lines
376 B
C++
#ifndef BOSS_MSG_OPTION_HPP
|
|
#define BOSS_MSG_OPTION_HPP
|
|
|
|
#include"Jsmn/Object.hpp"
|
|
#include<string>
|
|
|
|
namespace Boss { namespace Msg {
|
|
|
|
/** struct Boss::Msg::Option
|
|
*
|
|
* @brief emitted during `init` handling, providing the value
|
|
* of an option that we registered.
|
|
*/
|
|
struct Option {
|
|
std::string name;
|
|
Jsmn::Object value;
|
|
};
|
|
|
|
}}
|
|
|
|
#endif /* !defined(BOSS_MSG_OPTION_HPP) */
|