Maki
Loading...
Searching...
No Matches
context.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
7#ifndef MAKI_CONTEXT_HPP
8#define MAKI_CONTEXT_HPP
9
10namespace maki
11{
12
17{
20
23};
24
29{
32
35
38
41};
42
43} //namespace
44
45#endif
The Maki library.
@ c
void action(context&)
Definition action.hpp:31
@ m
void action(machine&)
Definition action.hpp:43
@ cm
void action(context&, machine&)
Definition action.hpp:34
@ v
void action()
Definition action.hpp:28
state_context_signature
The set of arguments taken by the constructor of a state context.
Definition context.hpp:29
machine_context_signature
The set of arguments taken by the constructor of a machine context.
Definition context.hpp:17
@ a
context(MachineConstructorArgs&&...)
Definition context.hpp:19
@ am
context(MachineConstructorArgs&&..., machine&)
Definition context.hpp:22