state_machine_cpp
run.h
Go to the documentation of this file.
1 //
2 // Created by henri on 27/04/21.
3 //
4 
5 #ifndef STATE_MACHINE_CPP_RUN_H
6 #define STATE_MACHINE_CPP_RUN_H
7 
8 #include <functional>
10 
11 namespace state_machine_cpp {
12  class Context;
13  class Context;
14  namespace State {
15  class Id;
16  }
17  namespace Algorithm {
18  class Instance;
19  void run(const Algorithm::Instance &t_instance, Context &t_context);
20  }
21 }
22 
23 #endif //STATE_MACHINE_CPP_RUN_H
state_machine_cpp::State::Id
Definition: state_id.h:23
state_instance.h
state_machine_cpp::Algorithm::run
void run(const Algorithm::Instance &t_instance, Context &t_context)
state_machine_cpp::Algorithm::Instance
Definition: algorithm.h:23
state_machine_cpp
Definition: algorithm.h:14
state_machine_cpp::Context
Definition: context.h:25