blabla/Part.hpp

21 lines
320 B
C++
Raw Normal View History

2024-08-03 21:04:44 +02:00
#ifndef PART_HPP
#define PART_HPP
#include "../ICommand.hpp"
#include <string>
class Part : public ICommand
{
private:
std::string reason;
Channel *targetChannel;
public:
Part();
~Part();
bool validate(const User &user, const std::string &msg);
int run(User &user, IRC::t_send_f &send);
};
#endif