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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'iphone/Maps/UI/PlacePage/PlacePageLayout/Content/UGC/MWMUGCReviewVM.h')
-rw-r--r--iphone/Maps/UI/PlacePage/PlacePageLayout/Content/UGC/MWMUGCReviewVM.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/iphone/Maps/UI/PlacePage/PlacePageLayout/Content/UGC/MWMUGCReviewVM.h b/iphone/Maps/UI/PlacePage/PlacePageLayout/Content/UGC/MWMUGCReviewVM.h
deleted file mode 100644
index d2df3e2c5c..0000000000
--- a/iphone/Maps/UI/PlacePage/PlacePageLayout/Content/UGC/MWMUGCReviewVM.h
+++ /dev/null
@@ -1,34 +0,0 @@
-namespace ugc
-{
-struct RatingRecord;
-struct UGCUpdate;
-}
-
-struct FeatureID;
-
-namespace ugc_review
-{
-enum class Row
-{
- Detail,
- SpecialQuestion,
- Message
-};
-} // namespace ugc
-
-@interface MWMUGCReviewVM : NSObject
-
-+ (instancetype)fromUGC:(ugc::UGCUpdate const &)ugc
- featureId:(FeatureID const &)fid
- name:(NSString *)name;
-
-- (NSInteger)numberOfRows;
-- (ugc_review::Row)rowForIndexPath:(NSIndexPath *)indexPath;
-- (ugc::RatingRecord const &)recordForIndexPath:(NSIndexPath *)indexPath;
-- (NSString *)review;
-- (NSString *)name;
-
-- (void)setDefaultStarCount:(NSInteger)starCount;
-- (void)submit;
-
-@end