Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
EventDataNormal.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_BASE_DFF_RUNTIME_EVENTDATABUFFER_H
4#define IMT_BASE_DFF_RUNTIME_EVENTDATABUFFER_H
5
6#include <array>
10
11namespace imt {
12namespace base {
13namespace dff {
14namespace runtime {
15
19// AXIVION Next Construct AutosarC++19_03-A11.0.1: Allowed construct, compatibility purposes
20// AXIVION Next Construct AutosarC++19_03-A11.0.2: Allowed construct, compatibility purposes
21class EventDataNormal final : public EventData {
22
23public:
24
28 EventDataNormal() = default;
29
34 uint8_t* getData() final {
35 return m_dataBuffer.data();
36 }
37
42 uint8_t const* getData() const final {
43 return m_dataBuffer.data();
44 }
45
50 size_t getCapacity() const final {
51 return EVENTDATA_SIZE_BYTES;
52 }
53
58 static size_t size() {
59 return EVENTDATA_SIZE_BYTES;
60 }
61
62private:
63
64 std::array<uint8_t, EVENTDATA_SIZE_BYTES> m_dataBuffer {};
65};
66
67} // namespace runtime
68} // namespace dff
69} // namespace base
70} // namespace imt
71
72#endif // IMT_BASE_DFF_RUNTIME_EVENTDATABUFFER_H
Event data structure base.
Definition EventData.h:56
Event data structure for normal sized buffer.
size_t getCapacity() const final
get data size
static size_t size()
get the size of this event
uint8_t const * getData() const final
get a pointer to the data
uint8_t * getData() final
get a pointer to the data
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int8 uint8_t
Definition stdint.h:62