home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995 February: Tool Chest / Dev.CD Feb 95 / Dev.CD Feb 95.toast / New System Software Extensions / ASLM SDK v1.1.2 / ASLM Examples / TestTools / Sources / TestNoVTable.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-21  |  843 b   |  37 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        TestNoVTable.h
  3.  
  4.     Contains:    Declaration for the TTestNoVTable class
  5.  
  6.     Copyright:    © 1992-1993 by Apple Computer, Inc., all rights reserved.
  7.  
  8. */
  9.  
  10. #ifndef __TESTNOVTABLE__
  11. #define __TESTNOVTABLE__
  12.  
  13. #ifndef __TESTTOOL__
  14. #include <TestTool.h>
  15. #endif
  16.  
  17. /*******************************************************************************
  18. ** CLASS TTestNoVTable
  19. ********************************************************************************/
  20.  
  21. #define kTTestNoVTableID    kTestToolPrefix "TTestNoVTable,1.1"
  22.  
  23. class TTestNoVTable : public TTestTool
  24. {
  25.     public:
  26.                             TTestNoVTable();
  27.         virtual                ~TTestNoVTable();
  28.         
  29.         virtual void        InitTest(Boolean verbose, Boolean debug,
  30.                                      int argc, char** argv);        
  31.         virtual void        RunTestIteration(Boolean verbose, Boolean debug);
  32.         virtual void        EndTest(Boolean verbose, Boolean debug);
  33.         
  34. };
  35.  
  36. #endif
  37.