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

Allow getting users opertype from XMLRPC requests

This commit is contained in:
Adam
2010-12-10 15:34:52 -05:00
parent 9f7a2e4da2
commit 2a4d0e3e89
5 changed files with 53 additions and 6 deletions
+11
View File
@@ -66,3 +66,14 @@ void OperType::Inherits(OperType *ot)
{
this->inheritances.insert(ot);
}
const std::list<Anope::string> &OperType::GetCommands() const
{
return this->commands;
}
const std::list<Anope::string> &OperType::GetPrivs() const
{
return this->privs;
}