summaryrefslogtreecommitdiff
path: root/include/cmd_admin.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-04-20 18:46:25 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-04-20 18:46:25 +0000
commit65923c4d397ce3655473b2d25db5acc90aa78075 (patch)
treed490b8dba15f474ef5c7503fa17b55098addd5f1 /include/cmd_admin.h
parent85cf2243e746777266e4fb2e8252ce17a05f16bb (diff)
Movement of cmd_* headers into include/commands (this is incomplete)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3896 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/cmd_admin.h')
-rw-r--r--include/cmd_admin.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/include/cmd_admin.h b/include/cmd_admin.h
deleted file mode 100644
index cf355305c..000000000
--- a/include/cmd_admin.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/* +------------------------------------+
- * | Inspire Internet Relay Chat Daemon |
- * +------------------------------------+
- *
- * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- * E-mail:
- * <brain@chatspike.net>
- * <Craig@chatspike.net>
- *
- * Written by Craig Edwards, Craig McLure, and others.
- * This program is free but copyrighted software; see
- * the file COPYING for details.
- *
- * ---------------------------------------------------
- */
-
-#ifndef __CMD_ADMIN_H__
-#define __CMD_ADMIN_H__
-
-#include "users.h"
-#include "channels.h"
-#include "ctables.h"
-
-class cmd_admin : public command_t
-{
- public:
- cmd_admin () : command_t("ADMIN",0,0) { }
- void Handle(char **parameters, int pcnt, userrec *user);
-};
-
-#endif