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

  1. /*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  2.  
  3.   maketest.h
  4.   Created: 10/24/95
  5.   Copyright (c) 1995, Borland International
  6.   $Revision:   1.18  $
  7.    
  8. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/  
  9. #ifndef __MAKETEST_H
  10. #define __MAKETEST_H
  11.  
  12. #include <ideaddon\imake.h>
  13. #include "tests.h"
  14.  
  15. //.............................................................................
  16. class MakeTestA : public TestObject {
  17.  public:
  18.   MakeTestA();
  19.   virtual ~MakeTestA();
  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.   void ConcatPolyStr ( const char *startStr, IPolyString *pPoly, char *buf, int max, bool OutIt );
  29.  
  30.  protected:
  31.   IMakeServer * _makeServer;
  32.   IMakeClient * _makeClient;
  33. }; 
  34.  
  35.  
  36. #endif    //  __MAKETEST_H
  37.