diff options
Diffstat (limited to 'include/configreader.h')
-rw-r--r-- | include/configreader.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/include/configreader.h b/include/configreader.h index 3120d3d59..b94687b43 100644 --- a/include/configreader.h +++ b/include/configreader.h @@ -203,9 +203,16 @@ struct MultiConfig */ typedef std::map<irc::string,char*> opertype_t; +struct operclass_data +{ + char* commandlist; + char* cmodelist; + char* umodelist; +}; + /** A Set of oper classes */ -typedef std::map<irc::string,char*> operclass_t; +typedef std::map<irc::string, operclass_data> operclass_t; /** This class holds the bulk of the runtime configuration for the ircd. |