25 lines
752 B
Objective-C
25 lines
752 B
Objective-C
//
|
|
// EQNGeneratoreURLServer.h
|
|
// Earthquake Network
|
|
//
|
|
// Created by Luca Beretta on 19/09/18.
|
|
// Copyright © 2018 Luca Beretta. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "EQNCalibrazione.h"
|
|
#import "EQNRilevamento.h"
|
|
|
|
@interface EQNGeneratoreURLServer : NSObject
|
|
|
|
+(NSURL *)urlDownloadDati;
|
|
+(NSURL *)urlRegistrazione;
|
|
+(NSURL *)urlPosizione;
|
|
+(NSURL *)urlMessagioStatoSmartPhone:(EQNCalibrazione *)calibrazione rilevamento:(EQNRilevamento *)rilevamento;
|
|
+(NSURL *)urlInvioMessagioTerremoto:(NSInteger )magnitudo withAdress:(NSString *)address;
|
|
+(NSURL *)urlInvioCommentoTerremoto:(NSString *)commento codeMessage:(NSString *)code;
|
|
+(NSURL *)urlInvioImpostazioniNotifiche;
|
|
+(NSURL *)urlDownloadOfferTimeRemaining;
|
|
|
|
@end
|