VVOSCQueryProtocol
VVOSCQuery.h
1 #import <Foundation/Foundation.h>
2 
3 
7 @interface VVOSCQuery : NSObject {
8  NSString *path;
9  NSDictionary *params;
10  BOOL recursive;
11 }
12 - (instancetype) initWithPath:(NSString *)p params:(NSDictionary *)q recursive:(BOOL)r;
13 
15 @property (readonly) NSString * path;
17 @property (readonly) NSDictionary * params;
19 @property (readonly) BOOL recursive;
20 
21 @end
NSString * path
The OSC address path that&#39;s being queried.
Definition: VVOSCQuery.h:8
BOOL recursive
Defaults to NO, but most queries will likely be recursive. if NO, then the contents (the sub-nodes) o...
Definition: VVOSCQuery.h:10
Definition: VVOSCQuery.h:7
NSDictionary * params
nil by default/most of the time. the OSCQuery spec includes a way of querying specific attributes- th...
Definition: VVOSCQuery.h:9