X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fbase.h;h=904a1005cb4c67061d6e133a1f851b89c4032641;hb=343f12b9b2d4e519b09877f76a00f6a0714509f2;hp=faea391a38c4b50587cd43de18a3a02de1aae240;hpb=b37ec974ee20b943a9129ae054390a565c49bd3c;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/base.h b/include/base.h index faea391a3..904a1005c 100644 --- a/include/base.h +++ b/include/base.h @@ -2,7 +2,7 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd: (C) 2002-2007 InspIRCd Development Team + * InspIRCd: (C) 2002-2008 InspIRCd Development Team * See: http://www.inspircd.org/wiki/index.php/Credits * * This program is free but copyrighted software; see @@ -14,21 +14,13 @@ #ifndef __BASE_H__ #define __BASE_H__ -#include "inspircd_config.h" -#include #include #include #include -/** Do we use this? -- Brain */ -typedef void* VoidPointer; - /** A private data store for an Extensible class */ typedef std::map ExtensibleStore; -/** Needed */ -class InspIRCd; - /** The base class for all inspircd classes. * Wherever possible, all classes you create should inherit from this, * giving them the ability to be passed to various core functions @@ -52,7 +44,7 @@ class CoreExport classbase virtual ~classbase() { } }; -/** class Extensible is the parent class of many classes such as userrec and chanrec. +/** class Extensible is the parent class of many classes such as User and Channel. * class Extensible implements a system which allows modules to 'extend' the class by attaching data within * a map associated with the object. In this way modules can store their own custom information within user * objects, channel objects and server objects, without breaking other modules (this is more sensible than using