multimediacommsengine/tsrc/testdriver/siptester/ttcnresolverplugin/src/CTTCNResolverPlugin3.cpp
equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2004 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: Implementation. |
|
15 * |
|
16 */ |
|
17 |
|
18 #include "CTTCNResolverPlugin3.h" |
|
19 #include <apacmdln.h> |
|
20 |
|
21 // ----------------------------------------------------------------------------- |
|
22 // CTTCNResolverPlugin3::NewL |
|
23 // ----------------------------------------------------------------------------- |
|
24 // |
|
25 CTTCNResolverPlugin3* CTTCNResolverPlugin3::NewL() |
|
26 { |
|
27 CTTCNResolverPlugin3* self = new( ELeave ) CTTCNResolverPlugin3; |
|
28 CleanupStack::PushL( self ); |
|
29 self->ConstructL(); |
|
30 CleanupStack::Pop( self ); |
|
31 return self; |
|
32 } |
|
33 |
|
34 // ----------------------------------------------------------------------------- |
|
35 // CTTCNResolverPlugin3::MyUid |
|
36 // ----------------------------------------------------------------------------- |
|
37 // |
|
38 TInt32 CTTCNResolverPlugin3::MyUid() const |
|
39 { |
|
40 return KTTCNResolverPluginUID3; |
|
41 } |
|
42 |