mirror of
https://github.com/anope/anope.git
synced 2026-06-26 14:56:39 +02:00
Blah, blah..
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2061 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
* 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"
|
||||
|
||||
OperType::OperType(const std::string &nname) : name(nname)
|
||||
{
|
||||
}
|
||||
|
||||
bool OperType::HasCommand(const std::string &cmdstr)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
bool OperType::HasPriv(const std::string &privstr)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void OperType::AddCommand(const std::string &cmdstr)
|
||||
{
|
||||
this->commands.push_back(cmdstr);
|
||||
}
|
||||
|
||||
void OperType::AddPriv(const std::string &privstr)
|
||||
{
|
||||
this->privs.push_back(privstr);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user