cull_list.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef __CULLLIST_H__
00015 #define __CULLLIST_H__
00016
00032 class CoreExport CullList : public classbase
00033 {
00034 private:
00037 InspIRCd* ServerInstance;
00038
00043 std::vector<User *> list;
00044
00045 public:
00049 CullList(InspIRCd* Instance);
00050
00057 void AddItem(User* user);
00058
00059
00060
00061 void MakeSilent(User* user);
00062
00071 int Apply();
00072 };
00073
00074 #endif
00075