From 98cef5e9a772602d42acfcf233838c760424db9a Mon Sep 17 00:00:00 2001 From: Nicolas James Date: Thu, 13 Feb 2025 18:00:17 +1100 Subject: initial commit --- comp3331/server/src/client/client.hh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 comp3331/server/src/client/client.hh (limited to 'comp3331/server/src/client/client.hh') diff --git a/comp3331/server/src/client/client.hh b/comp3331/server/src/client/client.hh new file mode 100644 index 0000000..8230e46 --- /dev/null +++ b/comp3331/server/src/client/client.hh @@ -0,0 +1,24 @@ +#ifndef CLIENT_CLIENT_HH_ +#define CLIENT_CLIENT_HH_ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "shared/connection.hh" +#include "shared/net.hh" +#include "shared/shared.hh" + +namespace client { +void do_client(const char* const address, const char* const port); +} + +#endif -- cgit v1.2.3