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

  1. /*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  2.  
  3.   edittst2.h
  4.   Created: 03/10/96
  5.   Copyright (c) 1996, Borland International
  6.   $Revision:   1.2  $
  7.   
  8. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/  
  9. #ifndef __EDITTST2_H
  10. #define __EDITTST2_H
  11.  
  12. #include <ideaddon\ieditor.h>
  13. #include "tests.h"
  14.  
  15. //.............................................................................
  16. class EditTestC : public TestObject {
  17.  public:
  18.   EditTestC();
  19.   virtual ~EditTestC();
  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.   IEditorServer * _editServer;
  30. };
  31.  
  32. //.............................................................................
  33. BufferId bid = -1;
  34.  
  35. #endif   //  __EDITTST2_H
  36.