|
ft_irc 1.0
|
Implements the CommandManager class. [詳解]
#include "CommandManager.hpp"#include "Client.hpp"#include "Replies.hpp"#include "Server.hpp"#include <algorithm>#include <iostream>#include <sstream>#include "InviteCommand.hpp"#include "JoinCommand.hpp"#include "KickCommand.hpp"#include "ListCommand.hpp"#include "ModeCommand.hpp"#include "NamesCommand.hpp"#include "NickCommand.hpp"#include "NoticeCommand.hpp"#include "PartCommand.hpp"#include "PassCommand.hpp"#include "PingCommand.hpp"#include "PongCommand.hpp"#include "PrivmsgCommand.hpp"#include "QuitCommand.hpp"#include "TopicCommand.hpp"#include "UserCommand.hpp"#include "WhoCommand.hpp"#include "WhoisCommand.hpp"
Implements the CommandManager class.
This file contains the implementation of methods for the CommandManager class, including command parsing, argument extraction, and command execution.
CommandManager.cpp に定義があります。