vvopensource
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Groups Pages
OSCInPortRetainsRaw.h
1 //
2 // OSCInPortRetainsRaw.h
3 // VVOSC
4 //
5 // Created by bagheera on 10/3/08.
6 // Copyright 2008 __MyCompanyName__. All rights reserved.
7 //
8 
9 #import <Cocoa/Cocoa.h>
10 #import <VVOSC/VVOSC.h>
11 
12 
13 /*
14  this subclass exists for the sole purpose of creating and retaining strings
15  which describe OSCPackets that i received. it does this for display purposes.
16 
17  this probably isn't the fastest way in the world to do this- but this was mad easy.
18 */
19 
20 
21 @interface OSCInPortRetainsRaw : OSCInPort {
22  NSMutableArray *packetStringArray; // array of dicts with strings that describe the received packets
23 }
24 
25 - (NSMutableArray *) packetStringArray;
26 - (void) setPacketStringArray:(NSArray *)a;
27 
28 @end
OSCInPort handles everything needed to receive OSC data on a given port.
Definition: OSCInPort.h:32