![]() |
00001 00002 // Copyright © 2013 Cathexis Innovations Inc. All rights reserved. 00003 00004 #import <Foundation/Foundation.h> 00005 #import "IDBlueProperty.h" 00006 00014 @interface VersionInfoProperty : IDBlueProperty { 00015 @private 00016 // The major part of the hardare version 00017 byte _hardwareMajor; 00018 00019 // The minor part of the hardware version 00020 byte _hardwareMinor; 00021 00022 // The major part of the firmware version 00023 byte _firmwareMajor; 00024 00025 // The minor part of the firmware version 00026 byte _firmwareMinor; 00027 00028 // The branch part of the firmware version 00029 byte _firmwareBranch; 00030 00031 // The build part of the firmware version 00032 ushort _firmwareBuild; 00033 } 00034 00038 -(byte) hardwareMajor; 00039 00043 -(byte) hardwareMinor; 00044 00048 -(byte) firmwareMajor; 00049 00053 -(byte) firmwareMinor; 00054 00058 -(byte) firmwareBranch; 00059 00063 -(ushort) firmwareBuild; 00064 00070 -(NSString*) hardwareVersion; 00071 00078 -(NSString*) firmwareVersion; 00079 00080 @end