|
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 |
|
17 |
|
18 // INCLUDE FILES |
|
19 #include <EikDll.h> |
|
20 #include <apacmdln.h> |
|
21 |
|
22 #include "EPos_CPosPSYCRCapabilityTest.h" |
|
23 |
|
24 // ================= MEMBER FUNCTIONS ======================= |
|
25 |
|
26 // C++ default constructor can NOT contain any code, that |
|
27 // might leave. |
|
28 // |
|
29 EPos_CPosPSYCRCapabilityTest::EPos_CPosPSYCRCapabilityTest() |
|
30 { |
|
31 } |
|
32 |
|
33 // EPOC default constructor can leave. |
|
34 void EPos_CPosPSYCRCapabilityTest::ConstructL() |
|
35 { |
|
36 BaseConstructL(); |
|
37 } |
|
38 |
|
39 EPos_CPosPSYCRCapabilityTest* EPos_CPosPSYCRCapabilityTest::NewL() |
|
40 { |
|
41 EPos_CPosPSYCRCapabilityTest* self = new (ELeave) EPos_CPosPSYCRCapabilityTest; |
|
42 CleanupStack::PushL(self); |
|
43 self->ConstructL(); |
|
44 CleanupStack::Pop(self); |
|
45 return self; |
|
46 } |
|
47 |
|
48 // Destructor |
|
49 EPos_CPosPSYCRCapabilityTest::~EPos_CPosPSYCRCapabilityTest() |
|
50 { |
|
51 } |
|
52 |
|
53 // --------------------------------------------------------- |
|
54 // CPosPSYParameterTest::GetName |
|
55 // |
|
56 // (other items were commented in a header). |
|
57 // --------------------------------------------------------- |
|
58 // |
|
59 void EPos_CPosPSYCRCapabilityTest::GetName( |
|
60 TDes& aName) const |
|
61 { |
|
62 _LIT(KTestName, "PSY Central Repository Capability Test."); |
|
63 aName = KTestName; |
|
64 } |
|
65 |
|
66 // End of File |