MotorControlModuleSDFM_TMS3.../Projects/EFC_Communication/UMLibrary/systemic/IValue.hpp
2024-06-07 11:12:56 +03:00

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

/*
* IValue.hpp
*
* Created on: 24 нояб. 2018 г.
* Author: titov
*/
#ifndef SOURCE_SYSTEMIC_IVALUE_HPP_
#define SOURCE_SYSTEMIC_IVALUE_HPP_
namespace systemic {
//!Интерфейс доступа к независимой величине.
template<typename T>
struct IValue {
virtual operator T() const = 0;
virtual ~IValue() = default;
};
}
#endif /* SOURCE_SYSTEMIC_IVALUE_HPP_ */