public:
enum {
CLEANUP_KEY_FREE=16,
CLEANUP_KEY_DELETE=32,
CLEANUP_VALUE_FREE=64,
CLEANUP_ALL=112
};
Cleanup flags
Name Description CLEANUP_KEY_FREE Specifies that the key should be cleaned up using free() when it's disposed. CLEANUP_KEY_DELETE Specifies that the key should be cleaned up using delete when it's disposed. CLEANUP_VALUE_FREE Specifies that the value should be cleaned up using free() when it's disposed.
Generated with HeaderDoc - © 2000 Apple Computer, Inc. (Last Updated 5/10/2004)