Microsoft Foundation Classes (mfc.hlp) (Table of Contents; Topic list)
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
 
 
                                     -♦-