- #endif
-
- wxAnyValueTypePtrSet::iterator it;
- for ( it = m_valueTypes.begin(); it != m_valueTypes.end(); ++it )
- {
- delete *it;
- }
- }
-
- void RegisterValueType(wxAnyValueType* valueType)
- {
- // Let's store value types in set to prevent deleting the same object
- // several times (it may be possible, under certain conditions, that
- // the same wxAnyValueType instance gets registered twice)
- m_valueTypes.insert(valueType);