summaryrefslogtreecommitdiff
path: root/digital/ai/src/fsm/angfsm_renaming.h
blob: 393fad4292eae360cab750e750c917f3fa9a00fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
   AngFSM - Almost Non Generated Finite State Machine
   Copyright 2011, 2012 Jerome Jutteau

 This file is part of AngFSM.

 AngFSM is free software: you can redistribute it and/or modify
 it under the terms of the GNU Lesser General Public License as published by
 the Free Software Foundation, either version 3 of the License, or
 (at your option) any later version.

 AngFSM is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.

 You should have received a copy of the GNU Lesser General Public License
 along with AngFSM. If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef _ANGFSM_RENAME_
#define _ANGFSM_RENAME_

#define FSM_INIT ANGFSM_INIT
#define FSM_OPTIONS ANGFSM_OPTIONS
#define FSM_GENERATE ANGFSM_GENERATE
#define FSM_IMPORT ANGFSM_IMPORT
#define FSM_HANDLE ANGFSM_HANDLE
#define FSM_CAN_HANDLE ANGFSM_CAN_HANDLE
#define FSM_RESET ANGFSM_RESET
#define FSM_GEN_DOTANGFSM_GEN_DOT
#define FSM_STATES ANGFSM_STATES
#define FSM_EVENTS ANGFSM_EVENTS
#define FSM_START_WITH ANGFSM_START_WITH
#define FSM_TRANS ANGFSM_TRANS
#define FSM_NEXT ANGFSM_NEXT
#define FSM_EVENT ANGFSM_EVENT
#define FSM_HANDLE_VAR ANGFSM_HANDLE_VAR
#define FSM_CAN_HANDLE_VAR ANGFSM_CAN_HANDLE_VAR
#define FSM_TRANS_TIMEOUT ANGFSM_TRANS_TIMEOUT
#define FSM_NEXT_TIMEOUT ANGFSM_NEXT_TIMEOUT
#define FSM_HANDLE_TIMEOUT ANGFSM_HANDLE_TIMEOUT
  

#endif /* #ifdef _ANGFSM_RENAME_ */