b3276d2ffdf5cb0474ec97a60348d834d8e01d47
[atutor.git] / mods / atsocial_iphone_app / InAppSettingsKit / Controllers / IASKSpecifierValuesViewController.h
1 //
2 //  IASKSpecifierValuesViewController.h
3 //  http://www.inappsettingskit.com
4 //
5 //  Copyright (c) 2009:
6 //  Luc Vandal, Edovia Inc., http://www.edovia.com
7 //  Ortwin Gentz, FutureTap GmbH, http://www.futuretap.com
8 //  All rights reserved.
9 // 
10 //  It is appreciated but not required that you give credit to Luc Vandal and Ortwin Gentz, 
11 //  as the original authors of this code. You can give credit in a blog post, a tweet or on 
12 //  a info page of your app. Also, the original authors appreciate letting them know if you use this code.
13 //
14 //  This code is licensed under the BSD license that is available at: http://www.opensource.org/licenses/bsd-license.php
15 //
16
17 #import <UIKit/UIKit.h>
18
19 @class IASKSpecifier;
20 @class IASKSettingsReader;
21
22 @interface IASKSpecifierValuesViewController : UIViewController {
23     IBOutlet UITableView    *_tableView;
24     
25     IASKSpecifier             *_currentSpecifier;
26     NSIndexPath             *_checkedItem;
27         IASKSettingsReader              *_settingsReader;
28 }
29
30 @property (nonatomic, retain) NSIndexPath *checkedItem;
31 @property (nonatomic, retain) IASKSpecifier *currentSpecifier;
32 @property (nonatomic, retain) IASKSettingsReader *settingsReader;
33
34 @end