]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_away.h
DO NOT USE THIS COMMIT - if you do, most of the modules wont work.
[user/henk/code/inspircd.git] / include / commands / cmd_away.h
index 52257bab126d52411296232ab27e3e8a9123c007..469b07fb3685dfd3323948580f5b6639c9d3bb61 100644 (file)
 
 // include the common header files
 
-#include <typeinfo>
-#include <iostream>
-#include <string>
-#include <deque>
-#include <sstream>
-#include <vector>
 #include "users.h"
 #include "channels.h"
 
+/** Handle /AWAY
+ */
 class cmd_away : public command_t
 {
  public:
         cmd_away (InspIRCd* Instance) : command_t(Instance,"AWAY",0,0) { syntax = "[<message>]"; }
-        void Handle(const char** parameters, int pcnt, userrec *user);
+        CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif