mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-22 22:23:44 +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
418 B
Objective-C
18 lines
418 B
Objective-C
#import "MWMOpeningHoursSection.h"
|
|
#import "MWMTableViewCell.h"
|
|
|
|
@interface MWMOpeningHoursTableViewCell : MWMTableViewCell
|
|
|
|
+ (CGFloat)heightForWidth:(CGFloat)width;
|
|
|
|
@property (nonatomic, readonly) NSUInteger row;
|
|
@property (weak, nonatomic) MWMOpeningHoursSection * section;
|
|
@property (nonatomic) NSIndexPath * indexPathAtInit;
|
|
@property (nonatomic, readonly) BOOL isVisible;
|
|
|
|
- (void)hide;
|
|
|
|
- (void)refresh;
|
|
|
|
@end
|