Mobile API Reference  MicroStrategy 2019
BooleanPreference.h
Go to the documentation of this file.
1 //
2 // BooleanPreference.h
3 // MSTRMobile
4 //
5 // Created by Liu Shu on 4/24/10.
6 // Copyright 2010 MicroStrategy. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
12 
13 @interface BooleanPreference : NSObject {
14 @private
15  NSString* prefID;
16  BOOL booleanValue;
17  MSIDevicePreferences * __weak parent;
18 }
19 
20 @property (nonatomic, copy) NSString* prefID;
21 @property (nonatomic) BOOL booleanValue;
22 
23 -(BooleanPreference*)initWithID:(NSString*)_prefID boolValue:(BOOL)_value;
24 
25 @end
signed char BOOL
Definition: PDCwtypes.h:101
Definition: MSIDevicePreferences.h:99
Definition: BooleanPreference.h:13