fbxsdk/core/base/fbxarray.h File Reference
void FbxArrayFree |
( |
FbxArray< T > & |
pArray | ) |
|
|
inline |
Call FbxFree on each element of the array, and then clear it.
Definition at line 453 of file fbxarray.h.
455 for(
int i = 0, c = pArray.
Size(); i < c; ++i )
int Size() const
Retrieve the number of element contained in the array.
void Clear()
Reset the number of element to zero and free the memory allocated.
void FbxArrayDelete |
( |
FbxArray< T > & |
pArray | ) |
|
|
inline |
Call FbxDelete on each element of the array, and then clear it.
Definition at line 463 of file fbxarray.h.
465 for(
int i = 0, c = pArray.
Size(); i < c; ++i )
int Size() const
Retrieve the number of element contained in the array.
void FbxDelete(T *p)
Deletion policy for pointer template classes that uses the FbxDelete() function.
void Clear()
Reset the number of element to zero and free the memory allocated.
void FbxArrayDestroy |
( |
FbxArray< T > & |
pArray | ) |
|
|
inline |
Call Destroy on each element of the array, and then clear it.
Definition at line 473 of file fbxarray.h.
475 for(
int i = 0, c = pArray.
Size(); i < c; ++i )
477 (pArray[i])->Destroy();
int Size() const
Retrieve the number of element contained in the array.
void Clear()
Reset the number of element to zero and free the memory allocated.
FBXSDK_INCOMPATIBLE_WITH_ARRAY_TEMPLATE |
( |
FbxArray< T > |
| ) |
|
Make sure to break build if someone try to make FbxArray<FbxArray<T>>, which is not supported.
Go to the source code of this file.