mirror of
https://github.com/ZmnSCPxj/clboss.git
synced 2026-08-14 12:43:19 +02:00
21 lines
374 B
C++
21 lines
374 B
C++
#ifndef BOSS_MSG_NOTIFICATION_HPP
|
|
#define BOSS_MSG_NOTIFICATION_HPP
|
|
|
|
#include"Jsmn/Object.hpp"
|
|
#include<string>
|
|
|
|
namespace Boss { namespace Msg {
|
|
|
|
/** struct Boss::Msg::Notification
|
|
*
|
|
* @brief emitted whenever a notification is
|
|
* received on stdin.
|
|
*/
|
|
struct Notification {
|
|
std::string notification;
|
|
Jsmn::Object params;
|
|
};
|
|
|
|
}}
|
|
|
|
#endif /* BOSS_MSG_NOTIFICATION_HPP */
|