co-maps/iphone/Maps/UI/Editor/Cuisine/MWMCuisineEditorViewController.h

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

18 lines
376 B
C
Raw Normal View History

2025-11-22 13:58:55 +01:00
#import "MWMViewController.h"
#include <string>
#include <vector>
@protocol MWMCuisineEditorProtocol <NSObject>
- (std::vector<std::string>)selectedCuisines;
- (void)setSelectedCuisines:(std::vector<std::string> const &)cuisines;
@end
@interface MWMCuisineEditorViewController : MWMViewController
@property (weak, nonatomic) id<MWMCuisineEditorProtocol> delegate;
@end