]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/rconnect.h
In the grand tradition of huge fucking commits:
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / rconnect.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 __RCONNECT_H__
15 #define __RCONNECT_H__
16
17 /** Handle /RCONNECT
18  */
19 class cmd_rconnect : public Command
20 {
21         Module* Creator;                /* Creator */
22         SpanningTreeUtilities* Utils;   /* Utility class */
23  public:
24         cmd_rconnect (InspIRCd* Instance, Module* Callback, SpanningTreeUtilities* Util);
25         CmdResult Handle (const char** parameters, int pcnt, User *user);
26 };
27
28 #endif