SIP Endpoint SDK for OS X
 All Classes Functions Properties
GSSipSessionManager.h
1 //
2 // GSSipSessionManager.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 "GSSipSession.h"
10 #import "Services.h"
11 #import "DefaultServices.h"
12 
14 @private
15  id<GSSessionNotificationDelegate> notificationDelegate;
16  id<GSSessionPolicyDelegate> policyDelegate;
17  id<GSStatisticsNotificationDelegate> statisticsNotificationDelegate;
18  NSMutableDictionary* sessions;
19 }
20 
21 @property (nonatomic, retain) id<GSSessionNotificationDelegate> notificationDelegate;
22 @property (nonatomic, retain) id<GSSessionPolicyDelegate> policyDelegate;
23 @property (nonatomic, retain) id<GSStatisticsNotificationDelegate> statisticsNotificationDelegate;
24 @property (nonatomic, retain) NSMutableDictionary* sessions;
25 
26 - (id) initWithLogger:(id<GSLogger>) theLogger
27  core:(GSepCore*) theCore;
28 
29 @end