/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* userCmd.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: sben-tay +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/06/08 19:19:47 by sben-tay #+# #+# */ /* Updated: 2025/06/08 22:02:24 by sben-tay ### ########.fr */ /* */ /* ************************************************************************** */ #pragma once #include "commands.hpp" class cmd::userCmd : public ACommand { public: userCmd(User *user, Channel *channel, Server *server, const std::string &line) : ACommand(user, channel, server, line) {} virtual void execute(); virtual e_code checkArgs(); };