summaryrefslogtreecommitdiff
path: root/include/cmd_pass.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_pass.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_pass.h')
-rw-r--r--include/cmd_pass.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/include/cmd_pass.h b/include/cmd_pass.h
deleted file mode 100644
index 03c5ca7fc..000000000
--- a/include/cmd_pass.h
+++ /dev/null
@@ -1,38 +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_PASS_H__
-#define __CMD_PASS_H__
-
-// include the common header files
-
-#include <typeinfo>
-#include <iostream>
-#include <string>
-#include <deque>
-#include <sstream>
-#include <vector>
-#include "users.h"
-#include "channels.h"
-
-class cmd_pass : public command_t
-{
- public:
- cmd_pass () : command_t("PASS",0,1) { }
- void Handle(char **parameters, int pcnt, userrec *user);
-};
-
-#endif