blob: 3a31cb413a740ffd8170daf4c4d358806ae85381 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include <cstdint>
#include <vector>
#include <algorithm>
using ByteArray = std::vector<uint8_t>;
namespace RemoteCode
{
class RemoteCodeServer
{
};
}
|