-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathtests.h
More file actions
34 lines (29 loc) · 929 Bytes
/
tests.h
File metadata and controls
34 lines (29 loc) · 929 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
* tests.h
*
* Ian Soboroff, NIST
* June, 1994
*
* This file consists of stuff that all the test programs require,
* i.e., common #include's and extern declarations.
*
* This header file, and all accompanying tests, were adapted, in full, part,
* or spirit ;-) from scltest.cc, a program distributed with the Data Probe
* (circa version 2.0.x) to test the STEP Class Libraries.
*/
/* C++ Stuff */
#include <iostream>
/* General SCL stuff */
#include <ExpDict.h>
#include <STEPfile.h>
#include <STEPattribute.h>
#include <sdai.h>
/* Stuff more or less specifically for the Example schema */
/* The only program that needs this is tstatic. Since the other programs */
/* don't use any instances directly, only through the registry, they don't */
/* need to include this header file. */
#ifndef DONT_NEED_HEADER
#include <SdaiEXAMPLE_SCHEMA.h>
#endif
#include <needFunc.h>
extern void SchemaInit( Registry & );