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

  1. /*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  2.  
  3.   edittool.h
  4.   Created: 10/24/95
  5.   Copyright (c) 1995, Borland International
  6.   $Revision:   1.13  $
  7.    
  8. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/  
  9. #ifndef __EDITTOOL_H
  10. #define __EDITTOOL_H
  11.  
  12. #include <ideaddon\itool.h>
  13. #include "tests.h"
  14.  
  15. //.............................................................................
  16. class EditToolTest : public TestObject {
  17.  public:
  18.   EditToolTest();
  19.   virtual ~EditToolTest();
  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.   IToolServer * _toolServer;
  30. }; 
  31.  
  32.  
  33. #endif    //  __EDITTOOL_H
  34.