]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/rsquit.h
d6285b83f7c1f740e1578f2f54a366d759469655
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / rsquit.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #ifndef __RSQUIT_H__
15 #define __RSQUIT_H__
16
17 /** Handle /RCONNECT
18  */
19 class cmd_rsquit : public Command
20 {
21         Module* Creator;                /* Creator */
22         SpanningTreeUtilities* Utils;   /* Utility class */
23  public:
24         cmd_rsquit (InspIRCd* Instance, Module* Callback, SpanningTreeUtilities* Util);
25         CmdResult Handle (const char** parameters, int pcnt, userrec *user);
26         void NoticeUser(userrec* user, const std::string &msg);
27 };
28
29 #endif