]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/cull_list.h
Fixed to allow remote users to be put on a cull list
[user/henk/code/inspircd.git] / include / cull_list.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  Inspire is copyright (C) 2002-2005 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 #ifndef __CULLLIST_H__
18 #define __CULLLIST_H__
19
20 // include the common header files
21
22 #include <typeinfo>
23 #include <iostream>
24 #include <string>
25 #include <deque>
26 #include <sstream>
27 #include <vector>
28 #include "users.h"
29 #include "channels.h"
30
31 class CullItem
32 {
33  private:
34         userrec* user;
35         std::string reason;
36  public:
37         CullItem(userrec* u, std::string r);
38         userrec* GetUser();
39         std::string GetReason();
40 };
41
42
43 class CullList
44 {
45  private:
46          std::vector<CullItem> list;
47          std::map<userrec*,int> exempt;
48  public:
49          CullList();
50          void AddItem(userrec* user, std::string reason);
51          int Apply();
52 };
53
54 #endif