Microsoft Foundation Classes (mfc.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
CObArray::CObArray
CObArray                                    Up Contents Index Back
──Microsoft Foundation Classes──────────────────────────────────────────────
 
  CObArray();
 
  Remarks
 
  Constructs an empty CObject pointer array. The array grows one element
  at a time.
 
  Example
 
  See the CObList constructor for a listing of the CAge class used in all
  collection examples.
 
  CObArray array;  // Array on the stack
 
  CObArray* parray = new CObArray;  // Array on the heap
 
 
  See Also
 
  CObList::CObList
 
 
                                     -♦-