32 lines
977 B
Objective-C
32 lines
977 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"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@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;
|
|
+ (NSURL *)urlRegisterSubscriptionForProductId:(NSString *)productId transactionId:(NSString *)transactionId;
|
|
+ (NSURL *)urlAlertPushTest;
|
|
+ (NSURL *)urlAlertSimulator;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|