1
0
mirror of https://github.com/anope/anope.git synced 2026-07-08 01:23:14 +02:00

Can now correctly tie users to opertypes.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2063 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
rburchell
2009-02-15 15:22:20 +00:00
parent 855847f428
commit 8324379346
7 changed files with 87 additions and 43 deletions
+7 -2
View File
@@ -15,12 +15,12 @@ OperType::OperType(const std::string &nname) : name(nname)
{
}
bool OperType::HasCommand(const std::string &cmdstr)
bool OperType::HasCommand(const std::string &cmdstr) const
{
}
bool OperType::HasPriv(const std::string &privstr)
bool OperType::HasPriv(const std::string &privstr) const
{
}
@@ -35,3 +35,8 @@ void OperType::AddPriv(const std::string &privstr)
this->privs.push_back(privstr);
}
const std::string &OperType::GetName() const
{
return this->name;
}