feat(core): adding the server info method

This commit is contained in:
Raphael 2025-05-13 12:58:05 +02:00
parent e6e9158d3b
commit a1ffeaddda
3 changed files with 13 additions and 3 deletions

View file

@ -6,7 +6,7 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/05/13 11:06:56 by rparodi #+# #+# */
/* Updated: 2025/05/13 11:42:11 by rparodi ### ########.fr */
/* Updated: 2025/05/13 12:54:02 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
@ -22,5 +22,6 @@ class Server {
Server();
Server(int port, const std::string &password);
~Server();
void showInfo() const;
unsigned short int getPort() const;
};