Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
EventDataSmall.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_EVENTDATASMALLBUFFER_H
4#define IMT_BASE_DFF_RUNTIME_EVENTDATASMALLBUFFER_H
5
6#include <array>
10
11// AXIVION FILE Style AutosarC++19_03-A2.8.1: File named as type it declares (Declaration happens only if USE_SMALL_EVENT_BUFFER set)
12
13namespace imt {
14namespace base {
15namespace dff {
16namespace runtime {
17
18#ifdef USE_SMALL_EVENT_BUFFER
22// AXIVION Next Construct AutosarC++19_03-A11.0.1: Allowed construct, compatibility purposes
23// AXIVION Next Construct AutosarC++19_03-A11.0.2: Allowed construct, compatibility purposes
24class EventDataSmall final : public EventData {
25
26public:
27
31 EventDataSmall() = default;
32
37 uint8_t* getData() final {
38 return m_dataBuffer.data();
39 }
40
45 uint8_t const* getData() const final {
46 return m_dataBuffer.data();
47 }
48
53 size_t getCapacity() const final {
54 return EVENTDATA_SMALL_SIZE_BYTES;
55 }
56
61 static size_t size() {
62 return EVENTDATA_SMALL_SIZE_BYTES;
63 }
64
65private:
66
67 std::array<uint8_t, EVENTDATA_SMALL_SIZE_BYTES> m_dataBuffer {};
68};
69#endif // USE_SMALL_EVENT_BUFFER
70
71} // namespace runtime
72} // namespace dff
73} // namespace base
74} // namespace imt
75#ifdef USE_SMALL_EVENT_BUFFER
76
77#endif // USE_SMALL_EVENT_BUFFER
78#endif // IMT_BASE_DFF_RUNTIME_EVENTDATASMALLBUFFER_H
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int8 uint8_t
Definition stdint.h:62