Maki
Loading...
Searching...
No Matches
events.hpp
1//Copyright Florian Goujeon 2021 - 2025.
2//Distributed under the Boost Software License, Version 1.0.
3//(See accompanying file LICENSE or copy at
4//https://www.boost.org/LICENSE_1_0.txt)
5//Official repository: https://github.com/fgoujeon/maki
6
11
12#ifndef MAKI_EVENTS_HPP
13#define MAKI_EVENTS_HPP
14
18namespace maki::events
19{
20
24struct start{};
25
29struct stop{};
30
31} //namespace
32
33#endif
Some predefined events emitted by Maki itself.
Definition events.hpp:19
Default event given to maki::machine::start().
Definition events.hpp:24
Default event given to maki::machine::stop().
Definition events.hpp:29