Removed unnecessary comments

This commit is contained in:
2024-02-15 07:48:10 -05:00
parent 6593384d2d
commit a47e598b5c
2 changed files with 1 additions and 4 deletions

View File

@@ -26,6 +26,5 @@ public:
Client(int ip_ver, char protocol, const char* address, int port) : Sock(ip_ver, protocol, address, port) {}
/* TODO - Add comments to better explain the inheritance and polymorphism going on */
};
#endif

View File

@@ -4,8 +4,7 @@
#include "includes/exception_consts.hpp"
/*
Server class - Defines a TCP/UDP server.
- The constructor takes in a **local** address and port, and creates a listening socket on that address/port.
Server class - Inherits from 'Sock' class - Defines a TCP/UDP server.
*/
class Server : public Sock {
@@ -27,6 +26,5 @@ public:
Server(int ip_ver, char protocol, const char* address, int port) : Sock(ip_ver, protocol, address, port) {}
/* TODO - Add comments to better explain the inheritance and polymorphism going on */
};
#endif