Lines Matching defs:GDIHashtable
36 * GDIHashtable class. Subclasses Hashtable to provide
40 class GDIHashtable : public Hashtable {
42 GDIHashtable* table;
47 * GDIHashtable::List class. Designed to store pointers
56 void add(GDIHashtable*);
57 void remove(GDIHashtable*);
71 * GDIHashtable::BatchDestructionManager class.
115 * Adds the specified GDIHashtable to the internal list.
117 * @param table pointer to the GDIHashtable to be added.
119 INLINE void add(GDIHashtable* table) { m_list.add(table); }
122 * Removes the specified GDIHashtable to the internal list.
124 * @param table pointer to the GDIHashtable to be removed.
126 INLINE void remove(GDIHashtable* table) { m_list.remove(table); }
159 * Constructs a new, empty GDIHashtable with the specified initial
162 GDIHashtable(const char* name, void (*deleteProc)(void*) = NULL,
168 ~GDIHashtable() {
193 * Flushes all existing GDIHashtable instances.