herald  2.0.0
payload_sharing_data.h
1 // Copyright 2020-2021 Herald Project Contributors
2 // SPDX-License-Identifier: Apache-2.0
3 //
4 
5 #ifndef HERALD_PAYLOAD_SHARING_DATA_H
6 #define HERALD_PAYLOAD_SHARING_DATA_H
7 
8 #include "data.h"
9 #include "rssi.h"
10 
11 namespace herald {
12 namespace datatype {
13 
15  RSSI rssi;
16  Data data;
17 };
18 
19 } // end namespace
20 } // end namespace
21 
22 #endif
The main data workhorse class of the Herald API.
Definition: data.h:33
Definition: rssi.h:14
Acts as a non-global memory arena for arbitrary classes.
Definition: aggregates.h:15
Definition: payload_sharing_data.h:14