home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / ADDON.PAK / CMDTEST.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  908 b   |  37 lines

  1. /*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  2.  
  3.   cmdtest.h
  4.   Created: 10/24/95
  5.   Copyright (c) 1995, Borland International
  6.   $Revision:   1.16  $
  7.    
  8. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/  
  9. #ifndef __CMDTEST_H
  10. #define __CMDTEST_H
  11.  
  12. #include <ideaddon\icmd.h>
  13. #include "tests.h"
  14.  
  15. //.............................................................................
  16. class CmdTestA : public TestObject {
  17.  public:
  18.   CmdTestA();
  19.   ~CmdTestA();
  20.  
  21.   //........ TestObject Methods .......
  22.   virtual BOOL Init();
  23.   virtual void UnInit();  
  24.   virtual const char * GetName();
  25.   virtual const char * GetTestDescription( int testNum );
  26.   virtual void DoTest( int testNum );
  27.  
  28.  protected:
  29.   ICommandServer *  _cmdServer;
  30.   bool          _startInitFailed;
  31. // CommandClientA *  _client;
  32.  
  33. }; 
  34.  
  35.  
  36. #endif    //  __CMDTEST_H
  37.