mirror of
https://github.com/intrepidcs/libicsneo.git
synced 2026-08-05 09:28:40 +02:00
22 lines
267 B
C++
22 lines
267 B
C++
#ifndef __PACKET_H_
|
|
#define __PACKET_H_
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#include "icsneo/communication/network.h"
|
|
#include <vector>
|
|
#include <stdint.h>
|
|
|
|
namespace icsneo {
|
|
|
|
class Packet {
|
|
public:
|
|
Network network;
|
|
std::vector<uint8_t> data;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __cplusplus
|
|
|
|
#endif |