00001 /* 00002 * Copyright (c) 2008 - 2009 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 {} 00024 - setObject: (OFObject*)obj 00025 forKey: (OFObject <OFCopying>*)key; 00026 00032 - removeObjectForKey: (OFObject*)key; 00033 @end