Einhugur Framework for C++

ObjectArray Class

ObjectArray is a high speed relocatable object array class.

Object
   ObjectArray

class ObjectArray

Constructors

ObjectArrayA constructor that takes no parameter.
ObjectArrayA constructor that lets you control the allocation jump size.
ObjectArrayA constructor that lets you create a array in a predefined size and each slot in the array is filled with a default object.

Methods

AppendUse this method to append a object to the array . This variation of the method takes a passOwnership parameter.
AppendUse this method to append a object to the array.
CountUse this function to get the element count from the array.
GetAtUse this function to read a item from the array.
InsertUse this method to insert a object to the array.
PeekAtUse this function to read a item from the array without having to release the returned item.
Release (Inherited)Decreases reference count by one and deletes the object if the reference count reached zero.
RemoveUse this method to remove a objects from the array.
ResizeUse this method to resize the array.
Retain (Inherited)Increases the reference count by one.
SwapUse this method to swap two objects in the array.