![]() |
00001 00002 // Copyright © 2013 Cathexis Innovations Inc. All rights reserved. 00003 00004 #import <Foundation/Foundation.h> 00005 #import "IDBlueResponse.h" 00006 00011 @interface NackResponse : IDBlueResponse { 00012 @private 00013 // the command identifier of the command sent to IDBLUE that failed 00014 CommandIdentifier _failedCommand; 00015 00016 // Byte array containing the variable data that can be contained in a 00017 // NACK response. 00018 CByteArray* _info; 00019 00020 // Number of bytes in the info byte array 00021 int _infoLen; 00022 } 00023 00027 -(CommandIdentifier) failedCommand; 00028 00032 -(CByteArray*) info; 00033 00037 -(int) infoLen; 00038 00039 @end