Files
eqn.ios/Sources/Earthquake Network/AppDelegate.h
T
Andrea Busi 4d8bbdc7ef Production version
Add to Git the current app version (the same available in the OriginalZip folder)
2020-07-24 15:33:53 +02:00

25 lines
612 B
Objective-C

//
// AppDelegate.h
// Earthquake Network
//
// Created by Luca Beretta on 12/09/18.
// Copyright © 2018 Luca Beretta. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <CoreData/CoreData.h>
#import "MasterViewController.h"
#import "ReteSmartphone.h"
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) MasterViewController *masterViewController;
@property (strong, nonatomic) ReteSmartphone *reteSmartphone;
@property (readonly, strong) NSPersistentContainer *persistentContainer;
- (void)saveContext;
@end