z1_controller/include/FSM/State_SaveState.h

18 lines
355 B
C
Raw Normal View History

2023-04-26 16:15:59 +08:00
#ifndef SAVESTATE_H
#define SAVESTATE_H
#include "FSMState.h"
#include "common/utilities/CSVTool.h"
class State_SaveState : public FSMState{
public:
State_SaveState(CtrlComponents *ctrlComp);
~State_SaveState();
void enter();
void run();
void exit();
int checkChange(int cmd);
private:
};
2022-07-20 11:11:38 +08:00
#endif // SAVESTATE_H