Ignore:
Timestamp:
May 17, 2002, 12:13:21 PM (23 years ago)
Author:
sandervl
Message:

header updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/ccollection.h

    r7441 r8448  
    1 /* $Id: ccollection.h,v 1.9 2001-11-23 18:08:03 phaller Exp $ */
     1/* $Id: ccollection.h,v 1.10 2002-05-17 10:13:20 sandervl Exp $ */
    22
    33/*
     
    3232    public:
    3333        CCollection(int iInitialSize = 0);
    34         ~CCollection();
     34        virtual ~CCollection();
    3535
    3636        virtual void clear() = 0; // remove all elements from the table
     
    4949    public:
    5050        CIndexLookup(int iInitialSize = 0);
    51         ~CIndexLookup();
     51        virtual ~CIndexLookup();
    5252
    5353        void* addElement(int iIndex, void *pObject);
     
    8686        CIndexLookupLimit(int iHardLimitLow = 0,
    8787                          int iHardLimitHigh = 0);
    88         ~CIndexLookupLimit();
     88        virtual ~CIndexLookupLimit();
    8989
    9090
     
    113113    public:
    114114        CLinearList();
    115         ~CLinearList();
     115        virtual ~CLinearList();
    116116
    117117        PLINEARLISTENTRY addFirst  (void *pObject);
Note: See TracChangeset for help on using the changeset viewer.