document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #import <UIKit/UIKit.h>
  2.  
  3. @interface buildingsAppDelegate : UIResponder <UIApplicationDelegate>{
  4.    
  5.     // Database Files
  6.     NSString *databaseName;
  7.     NSString *databasePath;
  8.     NSMutableArray *items;
  9.    
  10.    
  11. }
  12.  
  13. @property (strong, nonatomic) UIWindow *window;
  14. @property (nonatomic, copy) NSString *databaseName, *databasePath;
  15. @property (nonatomic, retain) NSMutableArray *items;
  16.  
  17. - (void)checkAndCreateDatabase;
  18. - (void)readBuildingsFromDatabase;
  19.  
  20. @end
');