The CUIntArray class supports arrays of unsigned integers. The member functions of CUIntArray are similar to the member functions of class CObArray. Because of this similarity, you can use the CObArray reference documentation for member function specifics. Wherever you see a CObject pointer as a function parameter or return value, substitute a UINT.
CObject* CObArray::GetAt( int <nIndex> ) const;
for example, translates to
UINT CUIntArray::GetAt( int <nIndex> ) const;
Header file: | Afxtempl.h |
Platforms: | |
Versions: | 1.0 and later |
Complete documentation: | Visual C++ documentation |