mirror of
https://github.com/zakk4223/CocoaSplit.git
synced 2026-05-15 14:15:50 -06:00
16 lines
370 B
Objective-C
16 lines
370 B
Objective-C
//
|
|
// CSElapsedTimeCaptureViewController.h
|
|
// CSTimeCapturePlugin
|
|
//
|
|
// Created by Zakk on 2/7/15.
|
|
// Copyright (c) 2015 Zakk. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "CSElapsedTimeCapture.h"
|
|
@interface CSElapsedTimeCaptureViewController : NSViewController
|
|
@property (weak) CSElapsedTimeCapture *captureObj;
|
|
|
|
- (IBAction)resetTime:(id)sender;
|
|
|
|
@end
|