]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/rconnect.h
Add Module* creator to Command and ModeHandler
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / rconnect.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/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 CommandRConnect : public Command
20 {
21         SpanningTreeUtilities* Utils;   /* Utility class */
22  public:
23         CommandRConnect (InspIRCd* Instance, Module* Callback, SpanningTreeUtilities* Util);
24         CmdResult Handle (const std::vector<std::string>& parameters, User *user);
25 };
26
27 #endif