iodrivers_base
/build/rock-master-18.09-drivers-orogen-iodrivers-base-0.20180511/RawPacket.hpp
Go to the documentation of this file.
1 #ifndef IODRIVERS_BASE_RAW_PACKET_HPP
2 #define IODRIVERS_BASE_RAW_PACKET_HPP
3 
4 #include <vector>
5 #include <base/Time.hpp>
6 
7 namespace iodrivers_base
8 {
9  struct RawPacket
10  {
11  base::Time time;
12  std::vector<uint8_t> data;
13  };
14 }
15 
16 #endif
17 
Definition: RawPacket.hpp:9
Definition: RawPacket.hpp:7
std::vector< uint8_t > data
Definition: RawPacket.hpp:12
base::Time time
Definition: RawPacket.hpp:11