home *** CD-ROM | disk | FTP | other *** search
/ Enter 2005 March / ENTER.ISO / files / fwp-0.0.6-win32-installer.exe / InputCCmds.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-12-06  |  783 b   |  44 lines

  1. #ifndef __InputCCmds_h__
  2. #define __InputCCmds_h__
  3.  
  4. #include "CCmd.h"
  5.  
  6. class CCmdInputBind:public CCmd{
  7. public:
  8.     CCmdInputBind();
  9.     ~CCmdInputBind();
  10.  
  11.     bool exec(int argc, char* argv[]);
  12. };
  13. class CCmdInputUnbind:public CCmd{
  14. public:
  15.     CCmdInputUnbind();
  16.     ~CCmdInputUnbind();
  17.  
  18.     bool exec(int argc, char* argv[]);
  19. };
  20. class CCmdInputBindlist:public CCmd{
  21. public:
  22.     CCmdInputBindlist();
  23.     ~CCmdInputBindlist();
  24.  
  25.     bool exec(int argc, char* argv[]);
  26. };
  27. class CCmdInputGrabMouse:public CCmd{
  28. public:
  29.     CCmdInputGrabMouse();
  30.     ~CCmdInputGrabMouse();
  31.  
  32.     bool exec(int argc, char* argv[]);
  33. };
  34. class CCmdInputFreeMouse:public CCmd{
  35. public:
  36.     CCmdInputFreeMouse();
  37.     ~CCmdInputFreeMouse();
  38.  
  39.     bool exec(int argc, char* argv[]);
  40. };
  41.  
  42.  
  43. #endif    /* __InputCCmds_h__ */
  44.