mirror of
https://github.com/anope/anope.git
synced 2026-06-25 10:16:39 +02:00
dc102049b0
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2292 5417fbe8-f217-4b02-8779-1006273d7864
63 lines
1.3 KiB
C++
63 lines
1.3 KiB
C++
/*
|
|
* Copyright (C) 2008-2009 Robin Burchell <w00t@inspircd.org>
|
|
* Copyright (C) 2008-2009 Anope Team <team@anope.org>
|
|
*
|
|
* Please read COPYING and README for further details.
|
|
*
|
|
*
|
|
* $Id$
|
|
*
|
|
*/
|
|
#include "services.h"
|
|
#include "modules.h"
|
|
|
|
Command::Command(const std::string &sname, size_t min_params, size_t max_params, const std::string &spermission) : MaxParams(max_params), MinParams(min_params), name(sname), permission(spermission)
|
|
{
|
|
this->flags = 0;
|
|
this->help_param1 = NULL;
|
|
this->help_param2 = NULL;
|
|
this->help_param3 = NULL;
|
|
this->help_param4 = NULL;
|
|
this->core = 0;
|
|
this->mod_name = NULL;
|
|
this->service = NULL;
|
|
this->next = NULL;
|
|
}
|
|
|
|
Command::~Command()
|
|
{
|
|
if (this->mod_name) {
|
|
delete [] this->mod_name;
|
|
}
|
|
if (this->service) {
|
|
delete [] this->service;
|
|
}
|
|
}
|
|
|
|
CommandReturn Command::Execute(User *u, std::vector<std::string> &) { return MOD_CONT; }
|
|
|
|
bool Command::OnHelp(User *u, const std::string &subcommand) { return false; }
|
|
|
|
void Command::OnSyntaxError(User *u) { }
|
|
|
|
void Command::SetFlag(CommandFlags flag)
|
|
{
|
|
this->flags |= flag;
|
|
}
|
|
|
|
void Command::UnsetFlag(CommandFlags flag)
|
|
{
|
|
this->flags &= ~flag;
|
|
}
|
|
|
|
bool Command::HasFlag(CommandFlags flag) const
|
|
{
|
|
return this->flags & flag;
|
|
}
|
|
|
|
void Command::SetPermission(const std::string &reststr)
|
|
{
|
|
this->permission = reststr;
|
|
}
|
|
|