Files
eqn.ios/Sources/Earthquake Network/model/EQNManager.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

33 lines
912 B
Objective-C

//
// EQNManager.h
// Earthquake Network
//
// Created by Luca Beretta on 17/09/18.
// Copyright © 2018 Luca Beretta. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "EQNReteSmartphone.h"
#import "EQNAreaCheck.h"
#import "EQNSegnalazione.h"
@interface EQNManager : NSObject
@property (nonatomic, assign) BOOL isBackground;
@property (nonatomic, strong) EQNReteSmartphone *rete_smartphone;
@property (nonatomic, strong) EQNAreaCheck *area_check;
@property (nonatomic, strong) NSArray *datiGraficoUtente;
@property (nonatomic, strong) NSArray *datiPastQuakes;
@property (nonatomic, strong) NSArray *elencoSelagnazioniManuali;
@property (nonatomic, strong) NSArray *retiSismiche;
@property (nonatomic, strong) NSArray *listaTsunami;
+(EQNManager *) defaultManager;
-(void)avviaManager;
-(void)stopManager;
-(void)controllaStatoApplicazione;
-(void)sincronizza;
-(void)recuperaDati;
@end