mirror of
https://github.com/zakk4223/CocoaSplit.git
synced 2026-06-03 14:12:17 -06:00
20 lines
393 B
Objective-C
20 lines
393 B
Objective-C
//
|
|
// CSTextCaptureFactory.h
|
|
// CSTextCapturePlugin
|
|
//
|
|
// Created by Zakk on 12/31/14.
|
|
// Copyright (c) 2014 Zakk. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "CSPluginFactoryProtocol.h"
|
|
|
|
|
|
@interface CSTextCaptureFactory : NSObject <CSPluginFactoryProtocol>
|
|
|
|
|
|
+(NSArray *)captureSourceClasses;
|
|
+(NSArray *)streamServiceClasses;
|
|
+(NSArray *)extraPluginClasses;
|
|
|
|
@end
|