You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
707 B
24 lines
707 B
// |
|
// CLTimezoneDataOperations.h |
|
// Clocker |
|
// |
|
// Created by Abhishek Banthia on 7/24/16. |
|
// |
|
// |
|
|
|
#import <Foundation/Foundation.h> |
|
#import "CLTimezoneData.h" |
|
|
|
@interface CLTimezoneDataOperations : NSObject |
|
|
|
@property (readonly) CLTimezoneData *dataObject; |
|
|
|
- (instancetype)initWithTimezoneData:(CLTimezoneData *)timezoneData; |
|
- (NSString *)getTimeForTimeZoneWithFutureSliderValue:(NSInteger)futureSliderValue; |
|
- (void)save; |
|
- (NSString *)getMenuTitle; |
|
- (NSString *)getFormattedSunriseOrSunsetTimeAndSliderValue:(NSInteger)sliderValue; |
|
- (NSString *)getDateForTimeZoneWithFutureSliderValue:(NSInteger)futureSliderValue |
|
andDisplayType:(CLDateDisplayType)type; |
|
|
|
@end
|
|
|