25 lines
543 B
Objective-C
25 lines
543 B
Objective-C
//
|
|
// MenuFiltroEntiViewController.h
|
|
// Earthquake Network
|
|
//
|
|
// Created by Luca Beretta on 09/03/2019.
|
|
// Copyright © 2019 Luca Beretta. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class MenuFiltroEntiViewController;
|
|
|
|
@protocol MenuFiltroEntiDelegate <NSObject>
|
|
- (void)menuFiltroEntiDidUpdateFilter:(MenuFiltroEntiViewController *)controller;
|
|
@end
|
|
|
|
@interface MenuFiltroEntiViewController : UIViewController
|
|
@property (strong, nonatomic) id<MenuFiltroEntiDelegate> delegate;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|