mirror of
https://github.com/zakk4223/CocoaSplit.git
synced 2026-05-28 14:12:12 -06:00
Old style initWithCoder is still functional, just not as cache friendly. If the capture "device" is changed in the input config window the capture object may be swapped out for a different one depending on caching/flags.
14 lines
222 B
Objective-C
14 lines
222 B
Objective-C
//
|
|
// TextCapture.h
|
|
// CocoaSplit
|
|
//
|
|
// Created by Zakk on 7/23/14.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <QuartzCore/CoreImage.h>
|
|
#import "CSTextCaptureBase.h"
|
|
|
|
@interface TextCapture : CSTextCaptureBase
|
|
|
|
@end
|