mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-30 21:05:56 -05:00
16 lines
216 B
C++
16 lines
216 B
C++
#pragma once
|
|
|
|
#include <iostream>
|
|
|
|
namespace hex::mcp {
|
|
|
|
class Client {
|
|
public:
|
|
Client() = default;
|
|
~Client() = default;
|
|
|
|
int run(std::istream &input, std::ostream &output);
|
|
};
|
|
|
|
}
|