MotorControlModuleSDFM_TMS3.../Projects/EFC_Communication/UMLibrary/processing/failure/FailureManagerInterface.hh
2024-06-07 11:12:56 +03:00

25 lines
571 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.

/*
* FailureManagerInterface.h
*
* Created on: 8 окт. 2019 г.
* Author: titov
*/
#ifndef SOURCE_PROCESSING_FAILURE_FAILUREMANAGERINTERFACE_H_
#define SOURCE_PROCESSING_FAILURE_FAILUREMANAGERINTERFACE_H_
#include "FailureInterface.hh"
namespace processing { namespace failure {
struct FailureManagerInterface {
virtual void fault() = 0;
virtual void registration( FailureId failure_id, FaliureInterface * failure ) = 0;
virtual ~FailureManagerInterface() = default;
};
}}
#endif /* SOURCE_PROCESSING_FAILURE_FAILUREMANAGERINTERFACE_H_ */