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

28 lines
406 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.

/*
* IFrame.hh
*
* Created on: 27 авг. 2023 г.
* Author: titov
*/
#ifndef UMLIBRARY_SYSTEMIC_IFRAME_HH_
#define UMLIBRARY_SYSTEMIC_IFRAME_HH_
#include <cstddef>
#include <limits>
namespace systemic {
struct IFrame {
virtual const char * data() const = 0;
virtual std::size_t size() const = 0;
virtual ~IFrame() = default;
};
}
#endif /* UMLIBRARY_SYSTEMIC_IFRAME_HH_ */