mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-06 09:41:09 +08:00
17 lines
293 B
Objective-C
17 lines
293 B
Objective-C
//
|
|
// RKMappingFormatJSONParser.h
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 3/4/10.
|
|
// Copyright 2010 Two Toasters. All rights reserved.
|
|
//
|
|
|
|
#import "RKObjectMapper.h"
|
|
#import "JSON.h"
|
|
|
|
@interface RKMappingFormatJSONParser : NSObject <RKMappingFormatParser> {
|
|
SBJSON* _parser;
|
|
}
|
|
|
|
@end
|