mirror of
https://github.com/Ladebeze66/ft_irc.git
synced 2025-12-17 06:28:03 +01:00
37 lines
1.2 KiB
C++
37 lines
1.2 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* KickHandler.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: fgras-ca <fgras-ca@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/06/01 16:59:42 by fgras-ca #+# #+# */
|
|
/* Updated: 2024/06/12 11:10:14 by fgras-ca ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef KICKHANDLER_HPP
|
|
#define KICKHANDLER_HPP
|
|
|
|
#include "Server.hpp"
|
|
#include "Client.hpp"
|
|
#include "Channel.hpp"
|
|
#include "Utils.hpp"
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <sstream>
|
|
|
|
class KickHandler
|
|
{
|
|
public:
|
|
KickHandler(Server* server);
|
|
~KickHandler();
|
|
void handleKickCommand(Client* client, const std::string& command);
|
|
|
|
private:
|
|
Server* _server;
|
|
};
|
|
|
|
#endif
|