mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 02:59:01 -04:00
39 lines
924 B
C
39 lines
924 B
C
|
/* +------------------------------------+
|
||
|
* | Inspire Internet Relay Chat Daemon |
|
||
|
* +------------------------------------+
|
||
|
*
|
||
|
* Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
|
||
|
* E-mail:
|
||
|
* <brain.net>
|
||
|
* <Craig.net>
|
||
|
*
|
||
|
* Written by Craig Edwards, Craig McLure, and others.
|
||
|
* This program is free but copyrighted software; see
|
||
|
* the file COPYING for details.
|
||
|
*
|
||
|
* ---------------------------------------------------
|
||
|
*/
|
||
|
|
||
|
#ifndef __CMD_RULES_H__
|
||
|
#define __CMD_RULES_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_rules : public command_t
|
||
|
{
|
||
|
public:
|
||
|
cmd_rules () : command_t("RULES",0,0) { }
|
||
|
void Handle(char **parameters, int pcnt, userrec *user);
|
||
|
};
|
||
|
|
||
|
#endif
|