36 lines
721 B
C++
36 lines
721 B
C++
/*
|
|
* 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_ */
|