Changeset 8448 for trunk/include/ccollection.h
- Timestamp:
 - May 17, 2002, 12:13:21 PM (23 years ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  trunk/include/ccollection.h (modified) (5 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/include/ccollection.h
r7441 r8448 1 /* $Id: ccollection.h,v 1. 9 2001-11-23 18:08:03 phallerExp $ */1 /* $Id: ccollection.h,v 1.10 2002-05-17 10:13:20 sandervl Exp $ */ 2 2 3 3 /* … … 32 32 public: 33 33 CCollection(int iInitialSize = 0); 34 ~CCollection();34 virtual ~CCollection(); 35 35 36 36 virtual void clear() = 0; // remove all elements from the table … … 49 49 public: 50 50 CIndexLookup(int iInitialSize = 0); 51 ~CIndexLookup();51 virtual ~CIndexLookup(); 52 52 53 53 void* addElement(int iIndex, void *pObject); … … 86 86 CIndexLookupLimit(int iHardLimitLow = 0, 87 87 int iHardLimitHigh = 0); 88 ~CIndexLookupLimit();88 virtual ~CIndexLookupLimit(); 89 89 90 90 … … 113 113 public: 114 114 CLinearList(); 115 ~CLinearList();115 virtual ~CLinearList(); 116 116 117 117 PLINEARLISTENTRY addFirst (void *pObject);  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  