/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ping.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/06/02 22:48:36 by rparodi #+# #+# */ /* Updated: 2025/06/02 22:48:48 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ #pragma once #include "commands.hpp" class cmd::Ping : public ACommand { public: Ping(User *user, Channel *channel, Server *server, std::string &line) : ACommand(user, channel, server, line) {} virtual void execute(void); virtual e_code checkArgs(); };