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.
25 lines
707 B
25 lines
707 B
8 years ago
|
//
|
||
|
// 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
|