mirror of
https://github.com/ZmnSCPxj/clboss.git
synced 2026-08-16 13:00:59 +02:00
15 lines
318 B
C++
15 lines
318 B
C++
#ifndef BOSS_MSG_ENDOFOPTIONS_HPP
|
|
#define BOSS_MSG_ENDOFOPTIONS_HPP
|
|
|
|
namespace Boss { namespace Msg {
|
|
|
|
/** struct Boss::Msg::EndOfOptions
|
|
*
|
|
* @brief Raised at initialization, after all `Boss::Msg::Option`
|
|
* messages have been sent.
|
|
*/
|
|
struct EndOfOptions { };
|
|
|
|
}}
|
|
|
|
#endif /* !defined(BOSS_MSG_ENDOFOPTIONS_HPP) */
|