2 * InspIRCd -- Internet Relay Chat Daemon
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>
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.
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
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/>.
26 * The CullList class is used to delete objects at the end of the main loop to
27 * avoid problems with references to deleted pointers if an object were deleted
30 class CoreExport CullList
32 std::vector<classbase*> list;
33 std::vector<LocalUser*> SQlist;
36 /** Adds an item to the cull list
38 void AddItem(classbase* item) { list.push_back(item); }
39 void AddSQItem(LocalUser* item) { SQlist.push_back(item); }
41 /** Applies the cull list (deletes the contents)
46 /** Represents an action which is executable by an action list */
47 class CoreExport ActionBase : public classbase
50 /** Executes this action. */
51 virtual void Call() = 0;
54 class CoreExport ActionList
56 std::vector<ActionBase*> list;
59 /** Adds an item to the list
61 void AddAction(ActionBase* item) { list.push_back(item); }