co-maps/iphone/Maps/UI/Editor/OpeningHours/MWMOpeningHoursEditorViewController.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
339 B
C
Raw Normal View History

2025-11-22 13:58:55 +01:00
#import "MWMViewController.h"
@protocol MWMOpeningHoursEditorProtocol <NSObject>
- (void)setOpeningHours:(NSString *)openingHours;
@end
@interface MWMOpeningHoursEditorViewController : MWMViewController
@property (copy, nonatomic) NSString * openingHours;
@property (weak, nonatomic) id<MWMOpeningHoursEditorProtocol> delegate;
@end