jak-project/common/repl/nrepl/ReplClient.h

17 lines
342 B
C
Raw Normal View History

#pragma once
#include "ReplServer.h"
#include "common/cross_sockets/XSocketClient.h"
class ReplClient : public XSocketClient {
public:
using XSocketClient::XSocketClient;
virtual ~ReplClient() = default;
ReplClient& operator=(const ReplClient&) { return *this; }
// TODO - just void for now :(
void eval(std::string form);
};