diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/cull_list.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/include/cull_list.h b/include/cull_list.h new file mode 100644 index 000000000..eb76f3797 --- /dev/null +++ b/include/cull_list.h @@ -0,0 +1,54 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * Inspire is copyright (C) 2002-2005 ChatSpike-Dev. + * E-mail: + * <brain@chatspike.net> + * <Craig@chatspike.net> + * + * 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 +{ + private: + userrec* user; + std::string reason; + public: + CullItem(userrec* u, std::string r); + userrec* GetUser(); + std::string GetReason(); +}; + + +class CullList +{ + private: + std::vector<CullItem> list; + char exempt[65535]; + public: + CullList(); + void AddItem(userrec* user, std::string reason); + int Apply(); +}; + +#endif |