Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/RenderSystems/GL/src/nvparse/ts1.0_inst_list.h @ 5

Last change on this file since 5 was 5, checked in by anonymous, 17 years ago

=hoffentlich gehts jetzt

File size: 285 bytes
Line 
1#ifndef _InstList_h
2#define _InstList_h
3
4#include "ts1.0_inst.h"
5
6typedef class InstList {
7public:
8        InstList();
9        ~InstList();
10        int Size();
11        InstList& operator+=(InstPtr t);
12        void Validate();
13        void Invoke();
14private:
15    InstPtr list;
16    int size;
17    int max;
18} *InstListPtr;
19
20#endif
Note: See TracBrowser for help on using the repository browser.