27 lines
636 B
Objective-C
27 lines
636 B
Objective-C
//
|
|
// ElencoFiltroEntiTableViewController.h
|
|
// Earthquake Network
|
|
//
|
|
// Created by Luca Beretta on 06/02/2019.
|
|
// Copyright © 2019 Luca Beretta. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "costanti.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class ElencoFiltroEntiTableViewController;
|
|
|
|
@protocol MenuListaEntiDelegate <NSObject>
|
|
- (void)elencoFiltroEnti:(ElencoFiltroEntiTableViewController *)controller willSendData:(EQNfiltroEnti)filtro; // inviaDatiLista
|
|
@end
|
|
|
|
|
|
@interface ElencoFiltroEntiTableViewController : UITableViewController
|
|
@property (strong, nonatomic) id<MenuListaEntiDelegate> delegate;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|