MotorControlModuleSDFM_TMS3.../Projects/EFC_Communication/UMLibrary/technological/IExecutorState.hh
2024-06-07 11:12:56 +03:00

25 lines
458 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* IExecutorState.h
*
* Created on: 31 авг. 2019 г.
* Author: titov
*/
#ifndef SOURCE_TECHNOLOGICAL_DRIVECONTROL_IEXECUTORSTATE_H_
#define SOURCE_TECHNOLOGICAL_DRIVECONTROL_IEXECUTORSTATE_H_
#include "ICommandExecutor.hh"
namespace technological {
struct IExecutorState : public ICommandExecutor {
virtual bool on_entry() = 0;
virtual void on_exit() = 0;
};
}
#endif /* SOURCE_TECHNOLOGICAL_DRIVECONTROL_IEXECUTORSTATE_H_ */