Woman, Life, Freedom


Adaptive AUTOSAR
ARA public interface header documentation
entry_deserializer.h
1#ifndef ENTRY_DESERIALIZER_H
2#define ENTRY_DESERIALIZER_H
3
4#include "./eventgroup_entry.h"
5#include "./service_entry.h"
6
7namespace ara
8{
9 namespace com
10 {
11 namespace entry
12 {
15 {
16 public:
24 static std::unique_ptr<Entry> Deserialize(
25 const std::vector<uint8_t> &payload,
26 std::size_t &offset,
27 uint8_t &numberOfFirstOptions,
28 uint8_t &numberOfSecondOptions);
29 };
30 }
31 }
32}
33
34#endif
A helper class for deserialzing an entry payload.
Definition: entry_deserializer.h:15
static std::unique_ptr< Entry > Deserialize(const std::vector< uint8_t > &payload, std::size_t &offset, uint8_t &numberOfFirstOptions, uint8_t &numberOfSecondOptions)
Deserialize an entry payload.
Definition: entry_deserializer.cpp:9