mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-08 12:37:01 +03:00
big merge
This commit is contained in:
17
components/spotify/cspot/include/Packet.h
Normal file
17
components/spotify/cspot/include/Packet.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user