Files
squeezelite-esp32/components/spotify/cspot/include/Packet.h
Philippe G 898998efb0 big merge
2021-12-18 21:04:23 -08:00

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