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

  1. /*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  2.  
  3.   script.h
  4.   Created: 10/28/95
  5.   Copyright (c) 1995, Borland International
  6.   $Revision:   1.18  $
  7.    
  8. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/  
  9. #ifndef __SCRIPT_H
  10. #define __SCRIPT_H
  11.  
  12. #include <ideaddon\iscript.h>
  13. #include "tests.h"
  14.  
  15. //.............................................................................
  16. class ScriptTestA : public TestObject {
  17.  public:
  18.   ScriptTestA();
  19.   virtual ~ScriptTestA();
  20.  
  21.   //........ TestObject Interface 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.  protected:
  28.   IScriptServer * _scriptServer;
  29. }; 
  30.  
  31. #endif    //  __SCRIPT_H
  32.