Microsoft DirectX 9.0

CBaseList::CBaseList

Constructor method.

Syntax

CBaseList(
    TCHAR *pName,
    INT iItems
);

CBaseList(
    TCHAR *pName
);

Parameters

pName

Pointer to the name of the list.

iItems

Size of the node cache.

Remarks

For efficiency, the CBaseList class maintains a cache of list nodes. If you know approximately how many items the list will hold, use the first version of the constructor. The second version uses a default cache size.

See Also