inspircd/include/commands/cmd_gline.h
brain c3f221fcbb Annotations
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5256 e03df62e-2008-0410-955e-edbf42e46eb7
2006-09-15 14:59:22 +00:00

35 lines
942 B
C++

/* +------------------------------------+
* | 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_GLINE_H__
#define __CMD_GLINE_H__
// include the common header file
#include "users.h"
#include "channels.h"
/** Handle /GLINE
*/
class cmd_gline : public command_t
{
public:
cmd_gline (InspIRCd* Instance) : command_t(Instance,"GLINE",'o',1) { syntax = "<ident@host> [<duration> :<reason>]"; }
CmdResult Handle(const char** parameters, int pcnt, userrec *user);
};
#endif