1
0
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:
rburchell
2009-02-15 15:21:35 +00:00
parent f92bf30f15
commit f07229a9ee
6 changed files with 129 additions and 12 deletions
+37
View File
@@ -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);
}