]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/cull_list.h
ENCAP removal for supported protocol 1201 commands
[user/henk/code/inspircd.git] / include / cull_list.h
index eb76f37970f0c688a7f76ceb9397712fee714b1d..2b3ed13915435fa25d9f18a0c44c4760906827b7 100644 (file)
@@ -2,12 +2,9 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  Inspire is copyright (C) 2002-2005 ChatSpike-Dev.
- *                       E-mail:
- *                <brain@chatspike.net>
- *                <Craig@chatspike.net>
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ * See: http://wiki.inspircd.org/Credits
  *
- * Written by Craig Edwards, Craig McLure, and others.
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
  *
 #ifndef __CULLLIST_H__
 #define __CULLLIST_H__
 
-// include the common header files
-
-#include <typeinfo>
-#include <iostream>
-#include <string>
-#include <deque>
-#include <sstream>
-#include <vector>
-#include "users.h"
-#include "channels.h"
-
-class CullItem
+/**
+ * The CullList class is used to delete objects at the end of the main loop to
+ * avoid problems with references to deleted pointers if an object were deleted
+ * during execution.
+ */
+class CoreExport CullList
 {
- private:
-        userrec* user;
-        std::string reason;
- public:
-        CullItem(userrec* u, std::string r);
-        userrec* GetUser();
-        std::string GetReason();
-};
+       std::vector<classbase*> list;
 
-
-class CullList
-{
- private:
-         std::vector<CullItem> list;
-         char exempt[65535];
  public:
-         CullList();
-         void AddItem(userrec* user, std::string reason);
-         int Apply();
+       /** Adds an item to the cull list
+        */
+       void AddItem(classbase* item) { list.push_back(item); }
+
+       /** Applies the cull list (deletes the contents)
+        */
+       void Apply();
 };
 
 #endif
+