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

  1. /*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  2.  
  3.   target.h
  4.   Created: 10/26/95
  5.   Copyright (c) 1995, 1996 Borland International
  6.   $Revision:   1.18  $
  7.    
  8. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/  
  9. #ifndef __TARGET_H
  10. #define __TARGET_H
  11.  
  12. //.... interface headers .....
  13. #include <ideaddon\itarg.h>
  14.  
  15. //.... example headers .....
  16. #include "tests.h"
  17.  
  18. //.............................................................................
  19. class TargetTestA : public TestObject {
  20.  public:
  21.   TargetTestA();
  22.   virtual ~TargetTestA();
  23.  
  24.   //........ TestObject Interface Methods .......
  25.   virtual BOOL Init();
  26.   virtual void UnInit();  
  27.   virtual const char * GetName();
  28.   virtual const char * GetTestDescription( int testNum );
  29.   virtual void DoTest( int testNum );
  30.  
  31.  protected:
  32.   ITargetServer * _targetServer;
  33.   LPUNKNOWN    d_owlTarget;
  34.  
  35. }; 
  36.  
  37. #endif    //  __TARGET_H
  38.