mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-08 12:37:01 +03:00
17 lines
225 B
C++
17 lines
225 B
C++
#ifndef PACKET_H
|
|
#define PACKET_H
|
|
|
|
#include <vector>
|
|
#include <cstdint>
|
|
|
|
class Packet
|
|
{
|
|
private:
|
|
|
|
public:
|
|
Packet(uint8_t command, std::vector<uint8_t> &data);
|
|
uint8_t command;
|
|
std::vector<uint8_t> data;
|
|
};
|
|
|
|
#endif |