mirror of
https://github.com/zakk4223/CocoaSplit.git
synced 2026-05-26 06:02:10 -06:00
26 lines
485 B
Objective-C
26 lines
485 B
Objective-C
//
|
|
// CSFileStreamRTMPService.h
|
|
// CSFileStreamServicePlugin
|
|
//
|
|
// Created by Zakk on 7/16/16.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "CSStreamServiceProtocol.h"
|
|
|
|
@interface CSFileStreamRTMPService : NSObject <CSStreamServiceProtocol>
|
|
|
|
|
|
@property bool isReady;
|
|
@property (strong) NSString *destinationURI;
|
|
|
|
|
|
-(NSViewController *)getConfigurationView;
|
|
-(NSString *)getServiceDestination;
|
|
+(NSString *)label;
|
|
+(NSString *)serviceDescription;
|
|
+(NSImage *)serviceImage;
|
|
|
|
|
|
|
|
@end
|