equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2004-2005 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #define TRACE_PREFIX "WSOCK: AgentFactory: " |
|
20 #include "wsock.h" |
|
21 #include "WinsockAgent.h" |
|
22 #include "WinsockAgentFactory.h" |
|
23 |
|
24 CWinsockAgentFactory::CWinsockAgentFactory() |
|
25 { |
|
26 } |
|
27 |
|
28 CWinsockAgentFactory::~CWinsockAgentFactory() |
|
29 { |
|
30 } |
|
31 |
|
32 // CNifAgentFactory |
|
33 CNifAgentBase * CWinsockAgentFactory::NewAgentL(const TDesC& /*aName*/) |
|
34 { |
|
35 return CWinsockAgent::NewL(); |
|
36 } |
|
37 |
|
38 TInt CWinsockAgentFactory::Info(TNifAgentInfo& /*aInfo*/, |
|
39 TInt DEBUG_ONLY(aIndex)) const |
|
40 { |
|
41 TRACE1("Info(%d)",aIndex); |
|
42 return KErrNotFound; |
|
43 } |
|
44 |
|
45 // CNifFactory |
|
46 void CWinsockAgentFactory::InstallL() |
|
47 { |
|
48 TRACE("Install()"); |
|
49 } |