4d8bbdc7ef
Add to Git the current app version (the same available in the OriginalZip folder)
33 lines
912 B
Objective-C
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
|