17 lines
300 B
C++
17 lines
300 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
namespace DebugToolDrivers::Wch::Protocols::WchLink::Responses
|
|
{
|
|
class Response
|
|
{
|
|
public:
|
|
std::vector<unsigned char> payload;
|
|
|
|
explicit Response(const std::vector<unsigned char>& payload)
|
|
: payload(payload)
|
|
{}
|
|
};
|
|
}
|