diff options
Diffstat (limited to 'libs/TouchJSON/JSON/JSONRepresentation.h')
-rwxr-xr-x | libs/TouchJSON/JSON/JSONRepresentation.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libs/TouchJSON/JSON/JSONRepresentation.h b/libs/TouchJSON/JSON/JSONRepresentation.h new file mode 100755 index 0000000..a83d76f --- /dev/null +++ b/libs/TouchJSON/JSON/JSONRepresentation.h | |||
@@ -0,0 +1,18 @@ | |||
1 | // | ||
2 | // JSONRepresentation.h | ||
3 | // TouchJSON | ||
4 | // | ||
5 | // Created by Jonathan Wight on 10/15/10. | ||
6 | // Copyright 2010 toxicsoftware.com. All rights reserved. | ||
7 | // | ||
8 | |||
9 | #import <Foundation/Foundation.h> | ||
10 | |||
11 | @protocol JSONRepresentation | ||
12 | |||
13 | @optional | ||
14 | - (id)initWithJSONDataRepresentation:(NSData *)inJSONData; | ||
15 | |||
16 | - (NSData *)JSONDataRepresentation; | ||
17 | |||
18 | @end | ||