Packet.h 231 B

1234567891011121314151617
  1. #ifndef PACKET_H
  2. #define PACKET_H
  3. #include <vector>
  4. #include <cstdint>
  5. class Packet
  6. {
  7. private:
  8. public:
  9. Packet(uint8_t command, const std::vector<uint8_t> &data);
  10. uint8_t command;
  11. std::vector<uint8_t> data;
  12. };
  13. #endif