MotorControlModuleSDFM_TMS3.../Projects/EFC_Communication/UMLibrary/application/basic/ExceptionStatus.hh
2024-06-07 11:12:56 +03:00

36 lines
792 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.

/*
* ExceptionStatus.hh
*
* Created on: 10 сент. 2020 г.
* Author: LeonidTitov
*/
#ifndef UMLIBRARY_APPLICATION_BASIC_EXCEPTIONSTATUS_HH_
#define UMLIBRARY_APPLICATION_BASIC_EXCEPTIONSTATUS_HH_
#include "../ISetupStep.hh"
namespace application { namespace basic {
//!Статус получения необработанного исключения.
struct ExceptionStatus : public ISetupStep {
bool input( Environment & env ) override;
void build( Environment & env ) override;
struct Links {
Environment::StatusId system_exception; //!<Признак получения исключения.
};
const Links & links;
ExceptionStatus( const Links & links );
};
}}
#endif /* UMLIBRARY_APPLICATION_BASIC_EXCEPTIONSTATUS_HH_ */