blob: a83d76fc884c80e39e0ecfd9f68a17014fa92350 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
|