-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathseeinfodefault.h
More file actions
47 lines (37 loc) · 1.07 KB
/
seeinfodefault.h
File metadata and controls
47 lines (37 loc) · 1.07 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
#ifndef seeinfodefault_h
#define seeinfodefault_h
/*
* NIST STEP Editor Class Library
* cleditor/seeinfodefault.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.
*/
// this is a default seeinfo that does nothing... thus it is not
// dependent on a user interface toolkit
#include <sc_export.h>
class MgrNode;
class DisplayNode;
class DisplayNodelist;
#include <sdai.h>
//class SDAI_Application_instance;
#include <editordefines.h>
class SC_EDITOR_EXPORT seeInfo : public DisplayNode {
public:
seeInfo( MgrNode * node,
SDAI_Application_instance * se,
DisplayNodeList * dnl, displayStateEnum displaySt = mappedWrite );
void * GetSEE() {
return see;
}
};
inline seeInfo::seeInfo( MgrNode * node, SDAI_Application_instance * se,
DisplayNodeList * dnl, displayStateEnum displaySt ) {
mn = node;
see = 0;
displayState = displaySt;
dnl->Append( this );
}
#endif