+
+ // copy ctor and assignment operator
+ wxHashTable(const wxHashTable& table) { DoCopy(table); }
+ wxHashTable& operator=(const wxHashTable& table) { Clear(); DoCopy(table); return *this; }
+ void DoCopy(const wxHashTable& table);
+
+ void Destroy(void); // Robert Roebling