-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMonsteriOSCSenderPlugIn.h
More file actions
36 lines (31 loc) · 1001 Bytes
/
MonsteriOSCSenderPlugIn.h
File metadata and controls
36 lines (31 loc) · 1001 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//
// MonsteriOSCSenderPlugIn.h
// MonsteriOSCSender
//
// Created by Matti NiinimŠki on 7/15/09.
// Check the readme for license
//
#import <Quartz/Quartz.h>
#import <VVOSC/VVOSC.h>
@interface MonsteriOSCSenderPlugIn : QCPlugIn
{
OSCManager *manager;
OSCOutPort *outport;
}
/*
Declare here the Obj-C 2.0 properties to be used as input and output ports for the plug-in e.g.
@property double inputFoo;
@property(assign) NSString* outputBar;
You can access their values in the appropriate plug-in methods using self.inputFoo or self.inputBar
*/
@property(assign) NSString* inputIP;
@property(assign) NSUInteger inputPort;
@property(assign) NSString* inputNameSpace;
@property(assign) BOOL inputSendOSC;
@property(assign) NSUInteger inputSelectType;
@property(assign) double inputFloat;
@property(assign) NSUInteger inputIndex;
@property(assign) NSString* inputString;
@property(assign) BOOL inputBoolean;
//@property(assign) NSDictionary * inputStructure;
@end