Files
RestKit/Code/ObjectMapping/RKObject.h
2011-01-12 15:05:22 -05:00

19 lines
236 B
Objective-C

//
// RKObject.h
// RestKit
//
// Created by Blake Watters on 7/20/10.
//
//
#import "RKObjectMappable.h"
/**
* Base class for non-managed RestKit mappable objects.
*/
@interface RKObject : NSObject <RKObjectMappable> {
}
@end