00001 /* 00002 * Copyright (c) 2008 - 2010 00003 * Jonathan Schleifer <js@webkeks.org> 00004 * 00005 * All rights reserved. 00006 * 00007 * This file is part of ObjFW. It may be distributed under the terms of the 00008 * Q Public License 1.0, which can be found in the file LICENSE included in 00009 * the packaging of this file. 00010 */ 00011 00012 #import "OFDictionary.h" 00013 00017 @interface OFMutableDictionary: OFDictionary 00018 { 00019 unsigned long mutations; 00020 } 00021 00028 - setObject: (OFObject*)obj 00029 forKey: (OFObject <OFCopying>*)key; 00030 00036 - removeObjectForKey: (OFObject*)key; 00037 @end