diff options
author | Attila Molnar <attilamolnar@hush.com> | 2015-01-24 14:10:38 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2015-01-24 14:10:38 +0100 |
commit | b127d368e33aa89ed567c438f905bdf3f263891c (patch) | |
tree | dd088f1a9087514caebfedf0d224ec9894bc9df6 /src/command_parse.cpp | |
parent | ae7b6b9104e8889426a14cbe41704d9816e566f9 (diff) |
Move implementation of Command and CommandBase functions into a source file
Diffstat (limited to 'src/command_parse.cpp')
-rw-r--r-- | src/command_parse.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp index 793569d5b..c93dac65f 100644 --- a/src/command_parse.cpp +++ b/src/command_parse.cpp @@ -327,10 +327,38 @@ void CommandParser::RemoveCommand(Command* x) cmdlist.erase(n); } +CommandBase::CommandBase(Module* mod, const std::string& cmd, unsigned int minpara, unsigned int maxpara) + : ServiceProvider(mod, cmd, SERVICE_COMMAND) + , flags_needed(0) + , min_params(minpara) + , max_params(maxpara) + , use_count(0) + , disabled(false) + , works_before_reg(false) + , allow_empty_last_param(true) + , Penalty(1) +{ +} + CommandBase::~CommandBase() { } +void CommandBase::EncodeParameter(std::string& parameter, int index) +{ +} + +RouteDescriptor CommandBase::GetRouting(User* user, const std::vector<std::string>& parameters) +{ + return ROUTE_LOCALONLY; +} + +Command::Command(Module* mod, const std::string& cmd, unsigned int minpara, unsigned int maxpara) + : CommandBase(mod, cmd, minpara, maxpara) + , force_manual_route(false) +{ +} + Command::~Command() { ServerInstance->Parser.RemoveCommand(this); |