29 lines
974 B
C
29 lines
974 B
C
#ifndef INCLUDED_C_VERTEXIDLIST_H
|
|||
|
|
#define INCLUDED_C_VERTEXIDLIST_H
|
||
|
|
|
||
|
|
#ifndef INCLUDED_C_UINTARRAY_H
|
||
|
|
#include <c_UIntArray.h>
|
||
|
|
#endif /*INCLUDED_C_UINTARRAY_H*/
|
||
|
|
|
||
|
|
/* ------------------------------------------------------------------------------------------------------------------ */
|
||
|
|
/* */
|
||
|
|
|
||
|
|
typedef c_UIntArray_t c_VertexIdList_t;
|
||
|
|
|
||
|
|
/* ------------------------------------------------------------------------------------------------------------------ */
|
||
|
|
/* */
|
||
|
|
|
||
|
|
#define c_VertexIdList_Init c_UIntArray_Init
|
||
|
|
#define c_VertexIdList_Destroy c_UIntArray_Destroy
|
||
|
|
#define c_VertexIdList_Resize c_UIntArray_Resize
|
||
|
|
#define c_VertexIdList_Append c_UIntArray_Append
|
||
|
|
#define c_VertexIdList_Set c_UIntArray_Set
|
||
|
|
#define c_VertexIdList_Get c_UIntArray_Get
|
||
|
|
#define c_VertexIdList_Remove c_UIntArray_Remove
|
||
|
|
#define c_VertexIdList_IsEmpty c_UIntArray_IsEmpty
|
||
|
|
#define c_VertexIdList_GetSize c_UIntArray_GetSize
|
||
|
|
#define c_VertexIdList_Copy c_UIntArray_Copy
|
||
|
|
|
||
|
|
|
||
|
|
#endif /*INCLUDED_C_VERTEXIDLIST_H*/
|