SIP Endpoint SDK for OS X
 All Classes Functions Properties
GSEndpointFactory.h
1 //
2 // GSEndopintFactory.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 "GSDefaultLogger.h"
10 #import "GSEndpoint.h"
11 
12 static id<GSEndpoint> theEndpoint = nil;
13 
18 @interface GSEndpointFactory : NSObject {
19 @private
20 }
21 
29 + (id<GSEndpoint>) initSipEndpoint:(NSData*) configData;
30 
39 + (id<GSEndpoint>) initSipEndpoint:(NSData*) configData logger:(id<GSLogger>) logger;
40 
41 @end
42 
43 
44