]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/cull_list.h
Merge pull request #1071 from SaberUK/insp20+fix-lusers
[user/henk/code/inspircd.git] / include / cull_list.h
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
7  *   Copyright (C) 2005, 2007 Craig Edwards <craigedwards@brainbox.cc>
8  *
9  * This file is part of InspIRCd.  InspIRCd is free software: you can
10  * redistribute it and/or modify it under the terms of the GNU General Public
11  * License as published by the Free Software Foundation, version 2.
12  *
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22
23 #ifndef CULL_LIST_H
24 #define CULL_LIST_H
25
26 /**
27  * The CullList class is used to delete objects at the end of the main loop to
28  * avoid problems with references to deleted pointers if an object were deleted
29  * during execution.
30  */
31 class CoreExport CullList
32 {
33         std::vector<classbase*> list;
34         std::vector<LocalUser*> SQlist;
35
36  public:
37         /** Adds an item to the cull list
38          */
39         void AddItem(classbase* item) { list.push_back(item); }
40         void AddSQItem(LocalUser* item) { SQlist.push_back(item); }
41
42         /** Applies the cull list (deletes the contents)
43          */
44         void Apply();
45 };
46
47 class CoreExport ActionList
48 {
49         std::vector<HandlerBase0<void>*> list;
50
51  public:
52         /** Adds an item to the list
53          */
54         void AddAction(HandlerBase0<void>* item) { list.push_back(item); }
55
56         /** Runs the items
57          */
58         void Run();
59
60 };
61
62 #endif
63