mirror of
https://github.com/zakk4223/CocoaSplit.git
synced 2026-05-16 06:05:49 -06:00
Add a flag to the elapsed time source that uses the latest stream start as the start time of the timer
17 lines
316 B
Objective-C
17 lines
316 B
Objective-C
//
|
|
// CSElapsedTimeCapture.h
|
|
// CSTimeCapturePlugin
|
|
//
|
|
// Created by Zakk on 2/6/15.
|
|
// Copyright (c) 2015 Zakk. All rights reserved.
|
|
//
|
|
|
|
#import "CSTimeIntervalBase.h"
|
|
|
|
@interface CSElapsedTimeCapture : CSTimeIntervalBase
|
|
|
|
@property (assign) bool restartWhenLive;
|
|
@property (assign) bool useStreamStart;
|
|
|
|
|
|
@end
|