]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/cull_list.h
33e9a7ea6039aa026598230ac49fdefa50a7814b
[user/henk/code/inspircd.git] / include / cull_list.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #ifndef __CULLLIST_H__
15 #define __CULLLIST_H__
16
17 /**
18  * The CullList class is used to delete objects at the end of the main loop to
19  * avoid problems with references to deleted pointers if an object were deleted
20  * during execution.
21  */
22 class CoreExport CullList
23 {
24         std::vector<classbase*> list;
25
26  public:
27         /** Adds an item to the cull list
28          */
29         void AddItem(classbase* item) { list.push_back(item); }
30
31         /** Applies the cull list (deletes the contents)
32          */
33         void Apply();
34 };
35
36 class CoreExport ActionList
37 {
38         std::vector<HandlerBase0<void>*> list;
39
40  public:
41         /** Adds an item to the list
42          */
43         void AddAction(HandlerBase0<void>* item) { list.push_back(item); }
44
45         /** Runs the items
46          */
47         void Run();
48
49 };
50
51 #endif
52