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

  1. /*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  2.  
  3.   mpdtest.h
  4.   Created: 10/24/95
  5.   Copyright (c) 1995, Borland International
  6.   $Revision:   1.18  $
  7.     
  8. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/ 
  9. #ifndef __MPDTEST_H
  10. #define __MPDTEST_H
  11.  
  12. #include <ideaddon\impd.h>
  13. #include "tests.h"
  14.  
  15. //.............................................................................
  16. class MpdTest : public TestObject {
  17.  
  18. public:
  19.   MpdTest();
  20.   ~MpdTest();
  21.  
  22.   //........ TestObject Methods .......
  23.   virtual BOOL Init();
  24.   virtual void UnInit();  
  25.   virtual const char * GetName();
  26.   virtual const char * GetTestDescription( int testNum );
  27.   virtual void DoTest( int testNum );
  28.  
  29.   void ConcatPolyStr ( const char *startStr, IPolyString *pPoly, char *buf, int max, bool OutIt );
  30.  
  31. protected:
  32.   void DoTest1();
  33.   void DoTest2();
  34.   void DoTest3();
  35.   void DoTest4();
  36.  
  37.   IMpdServer* d_impdServer;
  38.   IMpdChapter* d_chapEnv;
  39.   IMpdChapter* d_chapPrj;
  40.  
  41. }; 
  42.  
  43.  
  44. #endif    //  __MPDTEST_H
  45.