- added FsmEval

git-svn-id: http://moon:8086/svn/software/trunk/projects/FsmEval@130 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2015-01-22 07:53:40 +00:00
commit f404903fe5
16 changed files with 1061 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
/*
* File: IStateMachine.hpp
* Author: jens
*
* Created on 22. Januar 2015, 08:39
*/
#ifndef ISTATEMACHINE_HPP
#define ISTATEMACHINE_HPP
class IStateMachine
{
public:
enum StateId
{
INIT=0,
IDLE,
ACTIVE_0,
ACTIVE_1,
NUM_STATES
};
IStateMachine() {}
~IStateMachine() {}
virtual void setState(StateId stateId) = 0;
};
#endif /* ISTATEMACHINE_HPP */