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

27 lines
415 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.

/*
* IAdcResult.hpp
*
* Created on: 26 июл. 2019 г.
* Author: titov
*/
#ifndef SOURCE_PERIPHERAL_IADCRESULT_HPP_
#define SOURCE_PERIPHERAL_IADCRESULT_HPP_
#include <stdint.h>
namespace peripheral {
template<typename Type>
class IAdcResult {
public:
virtual const volatile Type * result() const = 0;
virtual ~IAdcResult() = default;
};
}
#endif /* SOURCE_PERIPHERAL_IADCRESULT_HPP_ */