![]() |
00001 00002 // Copyright © 2013 Cathexis Innovations Inc. All rights reserved. 00003 00004 #import <Foundation/Foundation.h> 00005 #import "RfidResponse.h" 00006 #import "IDBlueTimestamp.h" 00007 00014 @interface GetTagInfoResponse : RfidResponse { 00015 @private 00016 // the number of blocks of user memory of the scanned RFID tag 00017 byte _blockCount; 00018 00019 // The number of bytes per block in user memory of the scanned RFID tag 00020 byte _bytesPerBlock; 00021 } 00022 00026 -(byte) blockCount; 00027 00031 -(byte) bytesPerBlock; 00032 @end