Vuo  2.1.1
VuoSyphonSender.h
Go to the documentation of this file.
1 
11 #include "node.h"
12 
13 #ifndef NS_RETURNS_INNER_POINTER
14 #define NS_RETURNS_INNER_POINTER
15 #endif
16 #import <AppKit/AppKit.h>
17 #import <Syphon.h>
18 
19 #import "VuoGlContext.h"
20 
24 @interface VuoSyphonSender : NSObject
25 {
26 
27 }
28 
29 @property(retain) SyphonServer *syphonServer;
30 
31 - (void) initServerWithName:(NSString *)name;
32 - (void) publishFrame:(VuoImage)image;
33 - (void) setName:(NSString*)newName;
34 - (void) stop;
35 
36 @end