Sip Endpoint SDK for Apple OS
 All Classes Functions Properties
GSEndpointFactory.h
1 //
2 // GSEndopintFactory.h
3 // SipEndpoint
4 //
5 // Created by Valery Polishchuk on 09/4/12.
6 // Copyright (c) 2012 Genesys Labs. All rights reserved.
7 //
8 
9 
10 #import <Foundation/Foundation.h>
11 #import "GSEndpoint.h"
12 #import "GSLogger.h"
13 
17 @interface GSEndpointFactory : NSObject {
18 @private
19 
20 }
21 
31 + (id<GSEndpoint>) sipEndpoint;
32 
40 + (id<GSEndpoint>) sipEndpointWithLogger:(id<GSLogger>) logger;
41 
50 + (id<GSEndpoint>) sipEndpointWithLogFile:(NSString*) logFile logLevel:(NSString*) logLevel;
51 
59 + (id<GSEndpoint>) sipEndpointWithLogLevel:(NSString*) logLevel;
60 
61 @end