![]() |
00001 00002 // Copyright © 2013 Cathexis Innovations Inc. All rights reserved. 00003 00004 #import <Foundation/Foundation.h> 00005 #import "IDBlueResponse.h" 00006 #import "IDBlueCommand.h" 00007 00015 @interface SendStatus : IDBlueResponse { 00016 @private 00017 // The IDBlueCommand packet sent to IDBLUE 00018 IDBlueCommand* _commandSent; 00019 } 00020 00027 -(id) initWithHeader: (CommandIdentifier) command withSuccess: (BOOL) success; 00028 00032 -(IDBlueCommand*) commandSent; 00033 00037 -(void) setCommandSent: (IDBlueCommand*) command; 00038 @end