source:
downloads/RenderSystems/GL/src/nvparse/ts1.0_inst_list.h
@
3
Last change on this file since 3 was 3, checked in by anonymous, 17 years ago | |
---|---|
File size: 285 bytes |
Line | |
---|---|
1 | #ifndef _InstList_h |
2 | #define _InstList_h |
3 | |
4 | #include "ts1.0_inst.h" |
5 | |
6 | typedef class InstList { |
7 | public: |
8 | InstList(); |
9 | ~InstList(); |
10 | int Size(); |
11 | InstList& operator+=(InstPtr t); |
12 | void Validate(); |
13 | void Invoke(); |
14 | private: |
15 | InstPtr list; |
16 | int size; |
17 | int max; |
18 | } *InstListPtr; |
19 | |
20 | #endif |
Note: See TracBrowser
for help on using the repository browser.