/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Welcome.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: fgras-ca +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/05/21 19:53:17 by fgras-ca #+# #+# */ /* Updated: 2024/05/21 19:53:24 by fgras-ca ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef WELCOME_HPP #define WELCOME_HPP #include "Client.hpp" #include "Server.hpp" #include class WelcomeHandler { public: void sendWelcomeMessages(Client *client, Server *server); void sendMotd(Client *client, Server *server); }; #endif // WELCOME_HPP