init(cmd/invite): starting to work on invite command
This commit is contained in:
parent
f4f987cc77
commit
7cdbc12587
2 changed files with 61 additions and 0 deletions
21
include/commands/invite.hpp
Normal file
21
include/commands/invite.hpp
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* invite.hpp :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2025/05/24 17:17:31 by rparodi #+# #+# */
|
||||
/* Updated: 2025/05/24 17:32:43 by rparodi ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "commands.hpp"
|
||||
|
||||
class cmd::Invite : public ACommand {
|
||||
public:
|
||||
virtual void execute(Server &server, User &client, const std::vector<std::string> &args);
|
||||
virtual bool checkArgs();
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue