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

  1. /*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  2.  
  3.   prset.h
  4.    
  5. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/  
  6. #ifndef __PRSET_H
  7. #define __PRSET_H
  8.  
  9. #include <ideaddon\iprset.h>
  10. #include "tests.h"
  11.  
  12. //.............................................................................
  13. class PrinterSettingsTest : public TestObject {
  14.  public:
  15.   PrinterSettingsTest();
  16.   virtual ~PrinterSettingsTest();
  17.  
  18.   //........ TestObject Interface Methods .......
  19.   virtual BOOL Init();
  20.   virtual void UnInit();  
  21.   virtual const char * GetName();
  22.   virtual const char * GetTestDescription( int testNum );
  23.   virtual void DoTest( int testNum );
  24. }; 
  25.  
  26. #endif    //  __PRSET_H
  27.