object-index.h
Go to the documentation of this file.
1 
9 #ifndef _OBJECT_INDEX_H_
10 #define _OBJECT_INDEX_H_
11 
12 #include "vector.h"
13 
18 typedef struct ObjectIndex {
20  Vector(int) indexes;
21 } ObjectIndex;
22 
23 #endif // _OBJECT_INDEX_H_
struct ObjectIndex ObjectIndex
Stores a list of indexes When combining multiple Object, the identifier of each of them (rank in the ...
Contains the definition of the vectors (dynamic & generic arrays)
Vector(int) indexes
The indexes of the combined objects.
Stores a list of indexes When combining multiple Object, the identifier of each of them (rank in the ...
Definition: object-index.h:18