19 lines
389 B
Objective-C
19 lines
389 B
Objective-C
//
|
|
// AllerteViewController.h
|
|
// Earthquake Network
|
|
//
|
|
// Refactored by Andrea Busi on 04/10/2020
|
|
// Copyright © 2020 Earthquake Network. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "EQNBaseViewController.h"
|
|
|
|
|
|
@interface AllerteViewController : EQNBaseViewController
|
|
|
|
- (void)fetchNewDataWithCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler;
|
|
|
|
@end
|
|
|