![]() |
00001 00002 // Copyright © 2013 Cathexis Innovations Inc. All rights reserved. 00003 00004 #import <Foundation/Foundation.h> 00005 #import "RfidResponse.h" 00006 00019 @interface BlockResponse : RfidResponse { 00020 // The index of the starting block read from user memory of an RFID tag 00021 byte _blockIndex; 00022 00023 // The number of blocks read from an RFID tag 00024 byte _blockCount; 00025 00026 // The number of bytes ready from user memory 00027 int _blockDataLen; 00028 00029 // The byte array of data read from user memory. 00030 CByteArray* _blockData; 00031 } 00032 00036 -(byte) blockIndex; 00037 00041 -(byte) blockCount; 00042 00046 -(int) blockDataLen; 00047 00051 -(CByteArray*) blockData; 00052 00056 -(int) blockDataOffset; 00057 @end