fsm
handle_result.h
Go to the documentation of this file.
1 
12 #pragma once
13 
14 namespace escad::detail
15 {
16 
17 struct handled {};
18 struct not_handled {};
19 template<class T> struct transition { using type = T; };
20 
21 } // namespace fsm::detail
22 
Definition: handle_result.h:18
Definition: handle_result.h:14
Definition: handle_result.h:19
Definition: handle_result.h:17