summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/u_listmode.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/u_listmode.h b/include/u_listmode.h
index f6e383051..eeda2dd8d 100644
--- a/include/u_listmode.h
+++ b/include/u_listmode.h
@@ -62,6 +62,21 @@ public:
typedef std::vector<ListItem> modelist;
typedef std::vector<ListLimit> limitlist;
+class ListModeRequest : public Request
+{
+ public:
+ userrec* user;
+ chanrec* chan;
+
+ ListModeRequest(Module* sender, Module* target, userrec* u, chanrec* c) : Request(sender, target, "LM_CHECKLIST"), user(u), chan(c)
+ {
+ }
+
+ ~ListModeRequest()
+ {
+ }
+};
+
/** The base class for listmodes defined by u_listmode.h
*/
class ListModeBase : public ModeHandler