/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* whois.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: sben-tay +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/06/17 14:02:02 by sben-tay #+# #+# */ /* Updated: 2025/06/17 14:03:15 by sben-tay ### ########.fr */ /* */ /* ************************************************************************** */ #pragma once #include "commands.hpp" class cmd::Whois : public ACommand { public: Whois(User *user, Channel *channel, Server *server, std::string &line) : ACommand(user, channel, server, line) {} virtual void execute(void); virtual e_code checkArgs(); };