RobotKit API
|
00001 // 00002 // RKDeviceResponse.h 00003 // RobotKit 00004 // 00005 // Created by Brian Smith on 5/27/11. 00006 // Copyright 2011 Orbotix Inc. All rights reserved. 00007 // 00008 00011 #import <Foundation/Foundation.h> 00012 #import <RobotKit/RKDeviceMessage.h> 00013 00026 @interface RKDeviceResponse : RKDeviceMessage { 00027 @protected 00028 NSInteger code; 00029 BOOL propertiesValid; 00030 } 00031 00033 @property (nonatomic, readonly) NSInteger code; 00038 @property (nonatomic, readonly) BOOL propertiesValid; 00039 00040 @end