![]() |
00001 00002 // Copyright © 2013 Cathexis Innovations Inc. All rights reserved. 00003 00004 00005 #import <Foundation/Foundation.h> 00006 #import "IDBlueResponse.h" 00007 #import "IDBlue.h" 00008 #import "RfidTag.h" 00009 #import "TimestampResponse.h" 00010 00021 @interface RfidResponse : TimestampResponse { 00022 @private 00023 // The RfidTag that was returned from IDBLUE 00024 RfidTag* _rfidTag; 00025 00026 @protected 00027 // The number of bytes in the tag id. 00028 byte _tagIdLen; 00029 } 00030 00034 -(RfidTag*) rfidTag; 00035 00039 -(byte) tagIdLen; 00040 00041 @end