![]() |
00001 00002 // Copyright © 2013 Cathexis Innovations Inc. All rights reserved. 00003 00004 #import <Foundation/Foundation.h> 00005 #import "IDBlueProperty.h" 00006 00014 @interface BootloaderVersionProperty : IDBlueProperty { 00015 @private 00016 // The major part of the bootloader version 00017 byte _major; 00018 00019 // The minor part of the bootloader version 00020 byte _minor; 00021 00022 // The branch part of the bootloader version 00023 byte _branch; 00024 00025 // The build part of the bootloader version 00026 ushort _build; 00027 } 00028 00032 -(byte) major; 00033 00037 -(byte) minor; 00038 00042 -(byte) branch; 00043 00047 -(ushort) build; 00048 00055 -(NSString*) bootloaderVersion; 00056 00057 @end