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

  1. #ifndef __DisplayCCmds_h__
  2. #define __DisplayCCmds_h__
  3.  
  4. #include "CCmd.h"
  5.  
  6. class CCmdDisplayRestart:public CCmd{
  7. public:
  8.     CCmdDisplayRestart();
  9.     ~CCmdDisplayRestart();
  10.  
  11.     bool exec(int argc, char* argv[]);
  12. };
  13.  
  14. class CCmdDisplaySetMode:public CCmd{
  15. public:
  16.     CCmdDisplaySetMode();
  17.     ~CCmdDisplaySetMode();
  18.  
  19.     bool exec(int argc, char* argv[]);
  20. };
  21.  
  22. class CCmdDisplayVideoInfo:public CCmd{
  23. public:
  24.     CCmdDisplayVideoInfo();
  25.     ~CCmdDisplayVideoInfo();
  26.  
  27.     bool exec(int argc, char* argv[]);
  28. };
  29.  
  30.  
  31. #endif    /* __DisplayCCmds_h__ */
  32.