forked from stepcode/stepcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSTEPattributeList.h
More file actions
64 lines (48 loc) · 1.85 KB
/
STEPattributeList.h
File metadata and controls
64 lines (48 loc) · 1.85 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 _STEPattributeList_h
#define _STEPattributeList_h 1
/*
* NIST STEP Core Class Library
* clstepcore/STEPattributeList.h
* April 1997
* K. C. Morris
* David Sauder
* Development of this software was funded by the United States Government,
* and is not subject to copyright.
*/
class STEPattribute;
#include <sc_export.h>
#include <SingleLinkList.h>
class STEPattributeList;
class SC_CORE_EXPORT AttrListNode : public SingleLinkNode {
friend class STEPattributeList;
protected:
STEPattribute * attr;
public:
AttrListNode( STEPattribute * a );
virtual ~AttrListNode();
};
class SC_CORE_EXPORT STEPattributeList : public SingleLinkList {
public:
STEPattributeList();
virtual ~STEPattributeList();
STEPattribute & operator []( int n );
int list_length();
void push( STEPattribute * a );
};
/*****************************************************************
** **
** This file defines the type STEPattributeList -- a list **
** of pointers to STEPattribute objects. The nodes on the **
** list point to STEPattributes.
** **
USED TO BE - DAS
** The file was generated by using GNU's genclass.sh **
** script with the List prototype definitions. The **
** command to generate it was as follows: **
genclass.sh STEPattribute ref List STEPattribute
** The file is dependent on the file "STEPattribute.h" **
** which contains the definition of STEPattribute. **
** **
** 1/15/91 kcm **
*****************************************************************/
#endif