feat(cmd/join): adding the parsing to join command

This commit is contained in:
Raphael 2025-05-26 22:58:17 +02:00
parent 84763d96cc
commit 3d71d977d2
2 changed files with 73 additions and 0 deletions

21
include/commands/join.hpp Normal file
View file

@ -0,0 +1,21 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* join.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/05/24 17:17:31 by rparodi #+# #+# */
/* Updated: 2025/05/26 22:43:47 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
#include "commands.hpp"
class cmd::Join : public ACommand {
public:
virtual void execute(void);
virtual bool checkArgs();
};