diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-08 17:04:18 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-08 17:04:18 +0000 |
commit | d40e1e5b0b8c4b94359637921387cd80e9de991b (patch) | |
tree | 130905009d41a905f527082d2fa03c893020982b /include/modes/umode_i.h | |
parent | 7bb5bcf7728ef24759ebad38b404c5a2009f7456 (diff) |
Added usermodes +swi.
Note the usermode system needs a bit of a refactor to combine
module and core modes into the same storage neatly (as we did
with channels) this is next on my todo.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4174 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/modes/umode_i.h')
-rw-r--r-- | include/modes/umode_i.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/modes/umode_i.h b/include/modes/umode_i.h new file mode 100644 index 000000000..61626f3ce --- /dev/null +++ b/include/modes/umode_i.h @@ -0,0 +1,8 @@ +#include "mode.h" + +class ModeUserInvisible : public ModeHandler +{ + public: + ModeUserInvisible(); + ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding); +}; |