diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-10 19:02:06 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-10 19:02:06 +0000 |
commit | ac39617c087139f2d89aeb9e36565139b4410672 (patch) | |
tree | 4784bebe031e02d1c774047e77425993254169f9 /include | |
parent | 62b550f653ca674bb84eaac77fcdbc4bfc84f135 (diff) |
Inherit just about everything from classbase
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4299 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/aes.h | 2 | ||||
-rw-r--r-- | include/base.h | 2 | ||||
-rw-r--r-- | include/command_parse.h | 2 | ||||
-rw-r--r-- | include/cull_list.h | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/include/aes.h b/include/aes.h index 114d882fe..d2616b6d3 100644 --- a/include/aes.h +++ b/include/aes.h @@ -7,7 +7,7 @@ using namespace std; /** The AES class is a utility class for use in modules and the core for encryption of data.
*/
-class AES
+class AES : public classbase
{
public:
enum { ECB=0, CBC=1, CFB=2 };
diff --git a/include/base.h b/include/base.h index b808af398..d458021f6 100644 --- a/include/base.h +++ b/include/base.h @@ -118,7 +118,7 @@ public: * Use BoolSet::Set and BoolSet::Get to set and get bools in the bitmask, * and Unset and Invert for special operations upon them. */ -class BoolSet +class BoolSet : public classbase { char bits; diff --git a/include/command_parse.h b/include/command_parse.h index 310427036..838915dff 100644 --- a/include/command_parse.h +++ b/include/command_parse.h @@ -24,7 +24,7 @@ #include "ctables.h" #include "typedefs.h" -class CommandParser +class CommandParser : public classbase { private: int ProcessParameters(char **command_p,char *parameters); diff --git a/include/cull_list.h b/include/cull_list.h index 72b5d3f55..adc9fe8d5 100644 --- a/include/cull_list.h +++ b/include/cull_list.h @@ -33,7 +33,7 @@ * a list of users which are to be culled when a long * operation (such as a netsplit) has completed. */ -class CullItem +class CullItem : public classbase { private: /** Holds a pointer to the user, @@ -76,7 +76,7 @@ class CullItem * you attempt to add the same user twice, then the second * attempt will be ignored. */ -class CullList +class CullList : public classbase { private: /** Holds a list of users being quit. |