diff options
Diffstat (limited to 'Classes/Source/JSON/JSONRepresentation.h')
-rw-r--r-- | Classes/Source/JSON/JSONRepresentation.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Classes/Source/JSON/JSONRepresentation.h b/Classes/Source/JSON/JSONRepresentation.h new file mode 100644 index 0000000..a83d76f --- /dev/null +++ b/Classes/Source/JSON/JSONRepresentation.h @@ -0,0 +1,18 @@ +// +// JSONRepresentation.h +// TouchJSON +// +// Created by Jonathan Wight on 10/15/10. +// Copyright 2010 toxicsoftware.com. All rights reserved. +// + +#import <Foundation/Foundation.h> + +@protocol JSONRepresentation + +@optional +- (id)initWithJSONDataRepresentation:(NSData *)inJSONData; + +- (NSData *)JSONDataRepresentation; + +@end |