summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/aes.h2
-rw-r--r--include/base.h2
-rw-r--r--include/command_parse.h2
-rw-r--r--include/cull_list.h4
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.