33 lines
950 B
C
33 lines
950 B
C
#ifndef INCLUDED_C_EDGEIDLIST_H
|
|
#define INCLUDED_C_EDGEIDLIST_H
|
|
|
|
#ifndef INCLUDED_C_UINTARRAY_H
|
|
#include <c_UIntArray.h>
|
|
#endif /*INCLUDED_C_UINTARRAY_H*/
|
|
|
|
|
|
/* ------------------------------------------------------------------------------------------------------------------ */
|
|
/* */
|
|
|
|
|
|
|
|
typedef c_UIntArray_t c_EdgeIdList_t;
|
|
|
|
|
|
/* ------------------------------------------------------------------------------------------------------------------ */
|
|
/* */
|
|
|
|
#define c_EdgeIdList_Init c_UIntArray_Init
|
|
#define c_EdgeIdList_Destroy c_UIntArray_Destroy
|
|
#define c_EdgeIdList_Resize c_UIntArray_Resize
|
|
#define c_EdgeIdList_Append c_UIntArray_Append
|
|
#define c_EdgeIdList_Set c_UIntArray_Set
|
|
#define c_EdgeIdList_Get c_UIntArray_Get
|
|
#define c_EdgeIdList_Remove c_UIntArray_Remove
|
|
#define c_EdgeIdList_IsEmpty c_UIntArray_IsEmpty
|
|
#define c_EdgeIdList_GetSize c_UIntArray_GetSize
|
|
#define c_EdgeIdList_Copy c_UIntArray_Copy
|
|
|
|
|
|
#endif /*INCLUDED_C_EDGEIDLIST_H*/
|