SIP Endpoint SDK for OS X
 All Classes Functions Properties
GSSipAudioDevice.h
1 //
2 // GSSipAudioDevice.h
3 // SipEndpoint
4 //
5 // Copyright (c) 2011-2018 Genesys Telecommunications Laboratories, Inc. All rights reserved.
6 //
7 
8 #import <Foundation/Foundation.h>
9 #import "GSAudioDevice.h"
10 #import "GSSipAbstractionObject.h"
11 
13 @private
14  NSString* name;
15  int deviceId;
16 
17  BOOL canInput;
18  BOOL canOutput;
19 
22  int micVolume;
23 }
24 
25 @property (nonatomic, retain) NSString* name;
26 @property (nonatomic) int deviceId;
27 
28 @property (nonatomic) BOOL canInput;
29 @property (nonatomic) BOOL canOutput;
30 
31 @property (nonatomic) BOOL hasVolumeControl;
32 @property (nonatomic) int speakerVolume;
33 @property (nonatomic) int micVolume;
34 
43 - (id) initWithLogger:(id<GSLogger>)theLogger
44  core:(GSepCore *)theCore;
45 
46 @end