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

  1. /*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  2.  
  3.   option.h
  4.   Created: 10/24/95
  5.   Copyright (c) 1995, 1996 Borland International
  6.   $Revision:   1.18  $
  7.    
  8. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/  
  9. #ifndef __OPTION_H
  10. #define __OPTION_H
  11.  
  12. #include <ideaddon\ioption.h>
  13. #include <ideaddon\iproj.h>
  14. #include "tests.h"
  15.  
  16. //.............................................................................
  17. //
  18. // This class is used to do a simple test of the OptionSet server, see
  19. // option.cpp for further details.
  20. //
  21. class OptionSetTestA : public TestObject {
  22.  public:
  23.   OptionSetTestA();
  24.   virtual ~OptionSetTestA();
  25.  
  26.   //........ TestObject Interface Methods (see tests.h) .......
  27.   virtual BOOL Init();
  28.   virtual void UnInit();  
  29.   virtual const char * GetName();
  30.   virtual const char * GetTestDescription( int testNum );
  31.   virtual void DoTest( int testNum );
  32.  protected:
  33.   IOptionSetServer * _optionSetServer;
  34.   IProjectServer * _projectServer;
  35. }; 
  36.  
  37. #endif    //  __OPTION_H
  38.