home *** CD-ROM | disk | FTP | other *** search
/ ftptest.leeds.ac.uk / 2015.02.ftptest.leeds.ac.uk.tar / ftptest.leeds.ac.uk / bionet / CAE-GROUP / SCL-WIN3x / SCLTEST.EXE / TESTS.H < prev   
C/C++ Source or Header  |  1994-12-13  |  1KB  |  40 lines

  1. /* 
  2.  * tests.h
  3.  *
  4.  * Ian Soboroff, NIST
  5.  * June, 1994
  6.  *
  7.  * This file consists of stuff that all the test programs require,
  8.  * i.e., common #include's and extern declarations.
  9.  *
  10.  * This header file, and all accompanying tests, were adapted, in full, part,
  11.  * or spirit ;-) from scltest.cc, a program distributed with the Data Probe
  12.  * (circa version 2.0.x) to test the STEP Class Libraries.
  13.  */
  14.  
  15. #ifdef __O3DB__
  16. #include <OpenOODB.h>
  17. #endif
  18.  
  19. /* C++ Stuff */
  20. #include <iostream.h>
  21.  
  22. /* General SCL stuff */
  23. #include <Sfile.h>
  24. #include <sdai.h>
  25.  
  26. /* Stuff more or less specifically for the Example schema */
  27. /* The only program that needs this is tstatic.  Since the other programs */
  28. /* don't use any instances directly, only through the registry, they don't */
  29. /* need to include this header file.  */
  30. #ifndef DONT_NEED_HEADER
  31. #include <S_SCHEMA.h>
  32. #endif
  33.  
  34. #include <needFunc.h>
  35.  
  36. extern void SchemaInit (Registry &);
  37.  
  38. /* STEPentity* Iterator class definition */
  39. #include <SEarritr.h>
  40.