mirror of
https://github.com/zakk4223/CocoaSplit.git
synced 2026-05-15 14:15:50 -06:00
21 lines
509 B
Objective-C
21 lines
509 B
Objective-C
//
|
|
// CSTimeIntervalBase.h
|
|
// CSTimeCapturePlugin
|
|
//
|
|
// Created by Zakk on 2/7/15.
|
|
// Copyright (c) 2015 Zakk. All rights reserved.
|
|
//
|
|
|
|
#import "CSTextCaptureBase.h"
|
|
#import "NSTimeIntervalFormatter.h"
|
|
|
|
|
|
@interface CSTimeIntervalBase : CSTextCaptureBase
|
|
@property (strong) NSTimeIntervalFormatter *formatter;
|
|
@property (strong) NSDate *startDate;
|
|
@property (strong) NSDate *endDate;
|
|
@property (strong) NSString *format;
|
|
@property (strong) NSDictionary *styleTypeMap;
|
|
@property (assign) bool paused;
|
|
|
|
@end
|