Sip Endpoint SDK for Apple OS
 All Classes Functions Properties
GSDeviceNotificationDelegate.h
1 //
2 // GSDeviceNotificationDelegate.h
3 // SipEndpoint
4 //
5 // Created by Vlad Baranovsky on 6/26/11.
6 // Copyright 2011 Genesys Labs. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import "GSDevice.h"
11 
15 @protocol GSDeviceNotificationDelegate <NSObject>
16 @optional
17 
24 -(void) deviceWasConnected:(id<GSDevice>) device forMedia:(GSMedia*) media;
25 
32 -(void) deviceWasDisconnected:(id<GSDevice>) device forMedia:(GSMedia*) media;
33 
39 -(void) activeInputDeviceDidChangeForMedia:(GSMedia*) media;
40 
46 -(void) activeOutputDeviceDidChangeForMedia:(GSMedia*) media;
47 
48 @end