]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/rconnect.h
Same here
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / rconnect.h
index fca96f4a808c2e06311f77d0dc921c68016247ee..94035dce2f70746493aa52a8e277c9b220778adc 100644 (file)
@@ -1 +1,28 @@
-/*       +------------------------------------+\r *       | Inspire Internet Relay Chat Daemon |\r *       +------------------------------------+\r *\r *  InspIRCd: (C) 2002-2007 InspIRCd Development Team\r * See: http://www.inspircd.org/wiki/index.php/Credits\r *\r * This program is free but copyrighted software; see\r *            the file COPYING for details.\r *\r * ---------------------------------------------------\r */\r\r#ifndef __RCONNECT_H__\r#define __RCONNECT_H__\r\r/** Handle /RCONNECT\r */\rclass cmd_rconnect : public command_t\r{\r        Module* Creator;           /* Creator */\r        SpanningTreeUtilities* Utils;     /* Utility class */\r public:\r        cmd_rconnect (InspIRCd* Instance, Module* Callback, SpanningTreeUtilities* Util);\r        CmdResult Handle (const char** parameters, int pcnt, userrec *user);\r};\r\r#endif\r
\ No newline at end of file
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
+ * This program is free but copyrighted software; see
+ *            the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ */
+
+#ifndef __RCONNECT_H__
+#define __RCONNECT_H__
+
+/** Handle /RCONNECT
+ */
+class cmd_rconnect : public Command
+{
+        Module* Creator;               /* Creator */
+        SpanningTreeUtilities* Utils;  /* Utility class */
+ public:
+        cmd_rconnect (InspIRCd* Instance, Module* Callback, SpanningTreeUtilities* Util);
+        CmdResult Handle (const char* const* parameters, int pcnt, User *user);
+};
+
+#endif