SIP Endpoint SDK for OS X
 All Classes Functions Properties
GSSipAbstractionObject.h
1 //
2 // GSSipAbstractionObject.h
3 // SipEndpoint
4 //
5 // Copyright (c) 2011-2016 Genesys Telecommunications Laboratories, Inc. All rights reserved.
6 //
7 
8 #import <Foundation/Foundation.h>
9 #import "GSLogger.h"
10 #import "PolicyDelegates.h"
11 
12 @interface GSSipAbstractionObject : NSObject {
13 @private
14  id<GSLogger> logger;
15  NSMutableDictionary* configuration;
16 }
17 
23 @property (nonatomic, retain) id<GSLogger> logger;
24 
30 @property (nonatomic, retain) NSMutableDictionary* configuration;
31 
32 - (id) initWithLogger:(id<GSLogger>) theLogger;
33 
34 @end