inspircd/include/cmd_time.h
2006-07-09 20:41:36 +00:00

39 lines
877 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_TIME_H__
#define __CMD_TIME_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_time : public command_t
{
public:
cmd_time () : command_t("TIME",0,0) { }
void Handle(char **parameters, int pcnt, userrec *user);
};
#endif