Mobile API Reference  MicroStrategy 2019
IntegerPreference.h
Go to the documentation of this file.
1 //
2 // IntegerPreference.h
3 // MSTR Foundation
4 //
5 // Created by Amirali Charania on 2/24/09.
6 // Copyright 2009 MicroStrategy. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import "MSIPreference.h"
11 
13 
14 @interface IntegerPreference : NSObject <MSIPreference>{
15 @private
16  NSString* prefID;
17  NSInteger value;
18  __weak MSIDevicePreferences * parent;
19 }
20 
21 @property (nonatomic, copy) NSString* prefID;
22 @property (nonatomic)NSInteger value;//lishan nonatomic
23 
24 -(id)initWithID:(NSString*)_prefID value:(NSInteger)_value;
25 
26 @end
Definition: MSIDevicePreferences.h:99
Definition: IntegerPreference.h:14