mirror of
https://github.com/Ladebeze66/ft_irc.git
synced 2025-12-17 06:28:03 +01:00
39 lines
1.3 KiB
C++
39 lines
1.3 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* InviteHanndler.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: fgras-ca <fgras-ca@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/05/30 13:01:50 by fgras-ca #+# #+# */
|
|
/* Updated: 2024/05/30 13:03:04 by fgras-ca ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef INVITEHANDLER_HPP
|
|
#define INVITEHANDLER_HPP
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <sstream>
|
|
|
|
#include "Server.hpp"
|
|
#include "Client.hpp"
|
|
#include "Channel.hpp"
|
|
#include "RPL.hpp"
|
|
|
|
class Server;
|
|
class Client;
|
|
class Channel;
|
|
|
|
class InviteHandler {
|
|
public:
|
|
InviteHandler(Server* server);
|
|
void handleInviteCommand(Client* client, const std::string& command);
|
|
|
|
private:
|
|
Server* _server;
|
|
};
|
|
|
|
#endif // INVITEHANDLER_HPP
|