Source: QueryCmds.h


Annotated List
Files
Globals
Hierarchy
Index
/***************************************************************************
 *
 * File:    QueryCmds.h
 * Created: Fri Jan 7 2000
 * (C) 2000 by David M. <captjay@superlink.net>
 *
 ***************************************************************************/
/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef QUERYCMDS_H
#define QUERYCMDS_H

#include <Command.h>

/**
* @author David M.
* @short Defines the WHO command.
* This class defines a WHO command to find
* who is currently connected to the bot's partyline.
*
* Command syntax: WHO
*
* This command is not reversible.
*/
class CmdWho : public Command  {
public: 
	CmdWho(IRCModule* ircModule, DCCUser* pUser, QString text);

	/**
	* Get a list of the users currently authenticated on the partyline,
	* and display it to the requesting user.
	*/
  virtual void execute();
};


/**
* @author David M.
* @short Defines the ACCESS command.
* This class defines the ACCESS command to get
* all information about a user. Supplied information
* includes hosts, last seen information, accesses and suspensions.
*
* Command syntax: ACCESS username
*
* This command is not reversible.
*/
class CmdAccess : public Command  {
public:
	CmdAccess(IRCModule* ircModule, DCCUser* pUser, QString text);
	/**
	* Get the information on the given user, and display it
	* to the requesting user.
	*/
  virtual void execute();
};

#endif

Generated by: nightsky@centauri on Sat Jan 15 23:06:10 2000, using kdoc 2.0a30.