/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* nick.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: sben-tay +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/05/24 17:17:31 by rparodi #+# #+# */ /* Updated: 2025/06/08 22:13:30 by sben-tay ### ########.fr */ /* */ /* ************************************************************************** */ #pragma once #include "commands.hpp" class cmd::Nick : public ACommand { public: Nick(User *user, Channel *channel, Server *server, std::string &line) : ACommand(user, channel, server, line) {} virtual void execute(void); virtual e_code checkArgs(void); };