diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/channels.h | 2 | ||||
-rw-r--r-- | include/connection.h | 2 | ||||
-rw-r--r-- | include/ctables.h | 8 |
3 files changed, 6 insertions, 6 deletions
diff --git a/include/channels.h b/include/channels.h index c0df69513..9cce9feb3 100644 --- a/include/channels.h +++ b/include/channels.h @@ -188,7 +188,7 @@ class chanrec : public Extensible * a userrec and chanrec class. The uc_modes member holds a bitmask of which privilages the user * has on the channel, such as op, voice, etc. */ -class ucrec : public classbase +class ucrec : public Extensible { public: /** Contains a bitmask of the UCMODE_OP ... UCMODE_FOUNDER values. diff --git a/include/connection.h b/include/connection.h index eaa995f89..ee723764c 100644 --- a/include/connection.h +++ b/include/connection.h @@ -38,7 +38,7 @@ * connection(s) relating to the server you want information on. * The core and module API provide functions for this. */ -class ircd_connector : public classbase +class ircd_connector : public Extensible { private: /** Sockaddr of the outbound ip and port diff --git a/include/ctables.h b/include/ctables.h index cd3dc83a7..2a1be7b77 100644 --- a/include/ctables.h +++ b/include/ctables.h @@ -13,16 +13,16 @@ * * --------------------------------------------------- */ +#ifndef __CTABLES_H__ +#define __CTABLES_H__ + #include "inspircd_config.h" #include "inspircd.h" #include "base.h" -#ifndef __CTABLES_H__ -#define __CTABLES_H__ - /** A structure that defines a command */ -class command_t : public classbase +class command_t : public Extensible { public: /** Command name |