mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-28 17:03:38 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
18 lines
376 B
Objective-C
18 lines
376 B
Objective-C
#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
|