mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-03-30 23:24:06 +08:00
20 lines
418 B
Objective-C
20 lines
418 B
Objective-C
//
|
|
// RKObjectMappingOperationDataSource.m
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 7/3/12.
|
|
// Copyright (c) 2012 RestKit. All rights reserved.
|
|
//
|
|
|
|
#import "RKObjectMappingOperationDataSource.h"
|
|
#import "RKObjectMapping.h"
|
|
|
|
@implementation RKObjectMappingOperationDataSource
|
|
|
|
- (id)objectForMappableContent:(id)mappableContent mapping:(RKObjectMapping *)mapping
|
|
{
|
|
return [mapping.objectClass new];
|
|
}
|
|
|
|
@end
|