mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2026-01-29 13:50:48 +03:00
move to new cspot
This commit is contained in:
@@ -1,17 +1,11 @@
|
||||
#ifndef PACKET_H
|
||||
#define PACKET_H
|
||||
#pragma once
|
||||
|
||||
#include <vector>
|
||||
#include <cstdint>
|
||||
#include <vector>
|
||||
|
||||
class Packet
|
||||
{
|
||||
private:
|
||||
|
||||
public:
|
||||
Packet(uint8_t command, const std::vector<uint8_t> &data);
|
||||
uint8_t command;
|
||||
std::vector<uint8_t> data;
|
||||
namespace cspot {
|
||||
struct Packet {
|
||||
uint8_t command;
|
||||
std::vector<uint8_t> data;
|
||||
};
|
||||
|
||||
#endif
|
||||
} // namespace cspot
|
||||
Reference in New Issue
Block a user