FoundationExtension
FoundationExtension is common Foundation/UIKit/Cocoa shortcuts and snippets collection.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
NSADictionary.h
Go to the documentation of this file.
1 //
2 // NSADictionary.h
3 // FoundationExtension
4 //
5 // Created by Jeong YunWon on 12. 10. 25..
6 // Copyright (c) 2012 youknowone.org. All rights reserved.
7 //
8 
14 #import <Foundation/Foundation.h>
15 
21 @interface NSADictionary : NSDictionary {
22  NSDictionary *_impl;
23 }
24 
25 @end
26 
32 @interface NSAMutableDictionary : NSMutableDictionary {
33  NSMutableDictionary *_impl;
34 }
35 
36 @end
NSMutableDictionary subclass-available implementation.
Definition: NSADictionary.h:32
NSMutableDictionary * _impl
Definition: NSADictionary.h:33
NSDictionary * _impl
Definition: NSADictionary.h:22
NSDictionary subclass-available implementation.
Definition: NSADictionary.h:21