diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-03-24 16:53:34 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-03-24 16:53:34 +0000 |
commit | 4f946291b7fd022b50fe5aacb9b851cebfbb2278 (patch) | |
tree | 4ecd5744561947da9c0b63ae4bf81b11eceb3f8a /include/xline.h | |
parent | d1b20f95198858c0ffd2974fb7fd622a0d945a81 (diff) |
A load of classes dont inherit from classbase, and they should. fix.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9191 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/xline.h')
-rw-r--r-- | include/xline.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/xline.h b/include/xline.h index 6d11256f2..2670f4bab 100644 --- a/include/xline.h +++ b/include/xline.h @@ -385,7 +385,7 @@ typedef std::pair<std::string, std::string> IdentHostPair; * does not have to know the specifics of the internals of an XLine class * and/or how to call its constructor. */ -class CoreExport XLineFactory +class CoreExport XLineFactory : public classbase { protected: @@ -455,7 +455,7 @@ typedef XLineLookup::iterator LookupIter; * or any other line created by a module. It also manages XLineFactory classes which * can generate a specialized XLine for use by another module. */ -class CoreExport XLineManager +class CoreExport XLineManager : public classbase { protected: /** The owner/creator of this class |