MotorControlModuleSDFM_TMS3.../Projects/EFC_Communication/UMLibrary/systemic/IFrame.hh

28 lines
406 B
C++
Raw Normal View History

2024-06-07 11:12:56 +03:00
/*
* 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_ */