diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-09-02 00:46:11 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-09-02 00:46:11 +0000 |
commit | b31f343eacdf248aebd6869f2190a3464fd5d555 (patch) | |
tree | 69648d363332d987300920294733130520a03c36 /include/configreader.h | |
parent | a97624bd4b0ea052ca1380f9164769d6a6cab2a3 (diff) |
Remove unneeded Extensible inheritance and remove "age" field from classbase
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11611 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/configreader.h')
-rw-r--r-- | include/configreader.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/configreader.h b/include/configreader.h index b5e6a887b..e70a1478a 100644 --- a/include/configreader.h +++ b/include/configreader.h @@ -42,7 +42,7 @@ typedef std::map<irc::string,std::string> opertype_t; /** Holds an oper class. */ -struct operclass_data : public Extensible +struct operclass_data : public classbase { /** Command list for the class */ @@ -68,7 +68,7 @@ typedef std::map<irc::string, operclass_data> operclass_t; /** Defines the server's length limits on various length-limited * items such as topics, nicknames, channel names etc. */ -class ServerLimits : public Extensible +class ServerLimits { public: /** Maximum nickname length */ @@ -119,7 +119,7 @@ class ServerLimits : public Extensible * and storage of the configuration data needed to run the ircd, such as * the servername, connect classes, /ADMIN data, MOTDs and filenames etc. */ -class CoreExport ServerConfig : public Extensible +class CoreExport ServerConfig : public classbase { private: /** Creator/owner pointer |