diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-17 18:52:39 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-17 18:52:39 +0000 |
commit | 9db7af579c46a9f0379fdf71fb773a0a76a94846 (patch) | |
tree | 95a4772fa266aa7f0f51ff4218da85cf2c9a13ff /include/hashcomp.h | |
parent | 67a4a9b62355ea57a2f4521ca5fc53bd4eac3a1f (diff) |
Make classbase and refcountbase uncopyable; expand comments on their indended uses
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11888 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/hashcomp.h')
-rw-r--r-- | include/hashcomp.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/hashcomp.h b/include/hashcomp.h index 6cbc14850..5392c6ae5 100644 --- a/include/hashcomp.h +++ b/include/hashcomp.h @@ -204,7 +204,7 @@ namespace irc * std::string, or a const char* const* array, using overloaded * constructors. */ - class CoreExport stringjoiner : public classbase + class CoreExport stringjoiner { private: @@ -248,7 +248,7 @@ namespace irc * It can then reproduce this list, clamped to a maximum of MAXMODES * values per line. */ - class CoreExport modestacker : public classbase + class CoreExport modestacker { private: /** The mode sequence and its parameters @@ -335,7 +335,7 @@ namespace irc * list will be ":item". This is to allow for parsing 'source' fields * from data. */ - class CoreExport tokenstream : public classbase + class CoreExport tokenstream { private: @@ -394,7 +394,7 @@ namespace irc * the next token, until none remain, at which point the method returns * an empty string. */ - class CoreExport sepstream : public classbase + class CoreExport sepstream { private: /** Original string. @@ -467,7 +467,7 @@ namespace irc * start or end < 0) then GetToken() will return the first element * of the pair of numbers. */ - class CoreExport portparser : public classbase + class CoreExport portparser { private: |