-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathExpDict.h
More file actions
64 lines (51 loc) · 1.35 KB
/
ExpDict.h
File metadata and controls
64 lines (51 loc) · 1.35 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#ifndef EXPDICT_H
#define EXPDICT_H
/**
* \file clstepcore/ExpDict.h
* NIST STEP Core Class Library
* April, 1997
* K. C. Morris
* David Sauder
*
* Development of this software was funded by the United States Government,
* and is not subject to copyright.
*
* As with Expdict.cc, this file has been split into many smaller files - see includes.
*/
#include <sc_export.h>
#include <sdai.h>
#include <vector>
#include <string>
#include <assert.h>
#include <SingleLinkList.h>
#include <baseType.h>
#include <dictdefs.h>
#include <Str.h>
// each of these contains linked list, list node, iterator
#include "attrDescriptorList.h"
#include "inverseAttributeList.h"
#include "typeDescriptorList.h"
#include "entityDescriptorList.h"
#include "typeDescriptor.h"
#include "entityDescriptor.h"
#include "enumTypeDescriptor.h"
#include "attrDescriptor.h"
#include "derivedAttribute.h"
#include "inverseAttribute.h"
#include "create_Aggr.h"
#include "dictionaryInstance.h"
#include "uniquenessRule.h"
#include "whereRule.h"
#include "interfacedItem.h"
#include "explicitItemId.h"
#include "implicitItemId.h"
#include "interfaceSpec.h"
#include "typeOrRuleVar.h"
#include "globalRule.h"
#include "dictSchema.h"
#include "schRename.h"
#include "aggrTypeDescriptor.h"
#include "selectTypeDescriptor.h"
#include "stringTypeDescriptor.h"
#include "realTypeDescriptor.h"
#endif