GVGraphArguments.h 977 B

123456789101112131415161718192021222324252627282930313233
  1. /*************************************************************************
  2. * Copyright (c) 2011 AT&T Intellectual Property
  3. * All rights reserved. This program and the accompanying materials
  4. * are made available under the terms of the Eclipse Public License v1.0
  5. * which accompanies this distribution, and is available at
  6. * https://www.eclipse.org/legal/epl-v10.html
  7. *
  8. * Contributors: Details at http://www.graphviz.org/
  9. *************************************************************************/
  10. #import <Foundation/Foundation.h>
  11. @class GVZGraph;
  12. @interface GVGraphArguments : NSMutableDictionary {
  13. GVZGraph *_graph;
  14. NSMutableDictionary *_arguments;
  15. }
  16. - (id)initWithGraph:(GVZGraph *)graph;
  17. /* dictionary primitive methods */
  18. - (NSUInteger)count;
  19. - (NSEnumerator *)keyEnumerator;
  20. - (id)objectForKey:(id)aKey;
  21. /* mutable dictionary primitive methods */
  22. - (void)setObject:(id)anObject forKey:(id)aKey;
  23. - (void)removeObjectForKey:(id)aKey;
  24. - (void)dealloc;
  25. @end