Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MWMPlacePageTypeDescription.h « Classes « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6d5d23a0a586be8a68d123cf050023691b3c3b50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import <Foundation/Foundation.h>
#import "MWMPlacePageEntity.h"

@class MWMPlacePageELEDescription, MWMPlacePageHotelDescription;

@interface MWMPlacePageTypeDescription : NSObject

@property (strong, nonatomic) IBOutlet MWMPlacePageELEDescription * eleDescription;
@property (strong, nonatomic) IBOutlet MWMPlacePageHotelDescription * hotelDescription;

- (instancetype)initWithPlacePageEntity:(MWMPlacePageEntity *)entity;

@end