forked from stepcode/stepcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditordefines.h
More file actions
57 lines (44 loc) · 1.39 KB
/
editordefines.h
File metadata and controls
57 lines (44 loc) · 1.39 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
#ifndef editordefines_h
#define editordefines_h
/*
* NIST STEP Editor Class Library
* cleditor/editordefines.h
* April 1997
* David Sauder
* K. C. Morris
* Development of this software was funded by the United States Government,
* and is not subject to copyright.
*/
/* $Id: editordefines.h,v 3.0.1.2 1997/11/05 22:11:46 sauderd DP3.1 $ */
class GenericNode;
class GenNodeList;
class MgrNode;
class MgrNodeList;
class DisplayNode;
class DisplayNodeList;
//////////////////////////////////////////////////////////////////////////////
enum displayStateEnum {
mappedWrite, // has a writable SEE on the screen
mappedView, // has a view only SEE on the screen
notMapped,
noMapState
} ;
//////////////////////////////////////////////////////////////////////////////
enum stateEnum {
noStateSE, // state undefined, not on a list
completeSE, // on saved complete list
incompleteSE, // on saved incomplete list
deleteSE, // on delete list
newSE // on newly created list
} ;
/*
these variable are used by the STEPfile for reading and writing
files in working session format.
None of these variable should be set to 'E' as it will disrupt
the way the read function finds the "ENDSEC;" token.
*/
static const char wsSaveComplete = 'C';
static const char wsSaveIncomplete = 'I';
static const char wsDelete = 'D';
static const char wsNew = 'N';
#endif