CocoaSplit/StreamServicePlugins/CSFileStreamServicePlugin/CSFileStreamServicePlugin/CSFileStreamRTMPService.h

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