mirror of
https://github.com/open-goal/jak-project
synced 2026-05-23 23:05:43 -04:00
17 lines
342 B
C++
17 lines
342 B
C++
#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);
|
|
};
|