summaryrefslogtreecommitdiff
path: root/src/ServerConnection.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ServerConnection.h')
-rw-r--r--src/ServerConnection.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/ServerConnection.h b/src/ServerConnection.h
deleted file mode 100644
index 8f0af70..0000000
--- a/src/ServerConnection.h
+++ /dev/null
@@ -1,13 +0,0 @@
-#pragma once
-
-class ClientConnection;
-
-class ServerConnection {
-public:
- ServerConnection(int port);
-
- ClientConnection accept_client_connection() const;
-
-private:
- int m_socket_fd;
-};