SIP Endpoint SDK for OS X
 All Classes Functions Properties
GSVideoStream.h
1 //
2 // GSVideoStream.h
3 // SipEndpoint
4 //
5 // Copyright (c) 2011-2018 Genesys Telecommunications Laboratories, Inc. All rights reserved.
6 //
7 
8 #import <Foundation/Foundation.h>
9 
13 @interface GSVideoStream : NSObject {
14 @private
15  NSWindow* window;
16  void* renderer;
17  unsigned int zOrder;
18  float left;
19  float top;
20  float right;
21  float bottom;
22 }
23 
30 @property (nonatomic, retain) NSWindow* window;
31 @property (nonatomic) void* renderer;
32 @property (nonatomic) unsigned int zOrder;
33 @property (nonatomic) float left;
34 @property (nonatomic) float top;
35 @property (nonatomic) float right;
36 @property (nonatomic) float bottom;
37 
38 - (id) initWithWindow:(NSWindow*) theWindow
39  renderer:(void*) theRenderer
40  zOrder:(unsigned int) theZorder
41  left:(float) theLeft
42  top:(float) theTop
43  right:(float) theRight
44  bottom:(float) theBottom;
45 @end