44
|
1 |
// TestTelephonyPktSharedData.cpp
|
|
2 |
// Copyright (c) Symbian Software Ltd 2008. All rights reserved.
|
|
3 |
//
|
|
4 |
// Implementation of the Class CTestTelephonyPktSharedData
|
|
5 |
|
|
6 |
// user include
|
|
7 |
#include "TestLtsyPktSharedData.h"
|
|
8 |
|
|
9 |
/**
|
|
10 |
* Factory function
|
|
11 |
*/
|
|
12 |
CTestLtsyPktSharedData* CTestLtsyPktSharedData::NewL()
|
|
13 |
{
|
|
14 |
CTestLtsyPktSharedData* ret = new(ELeave) CTestLtsyPktSharedData();
|
|
15 |
CleanupStack::PushL(ret);
|
|
16 |
ret->ConstructL();
|
|
17 |
CleanupStack::Pop(ret);
|
|
18 |
|
|
19 |
return ret;
|
|
20 |
}
|
|
21 |
|
|
22 |
/**
|
|
23 |
* Constructor
|
|
24 |
*
|
|
25 |
* @param CTestStep& aTestStep The test step used for logging and reading info from ini
|
|
26 |
* @param CTestTelephonyTsyAdaptor& aTestEnvAdaptor The telephony tsy adaptor
|
|
27 |
*/
|
|
28 |
CTestLtsyPktSharedData::CTestLtsyPktSharedData()
|
|
29 |
{
|
|
30 |
}
|
|
31 |
|
|
32 |
/**
|
|
33 |
* Destructor
|
|
34 |
*
|
|
35 |
*/
|
|
36 |
CTestLtsyPktSharedData::~CTestLtsyPktSharedData()
|
|
37 |
{
|
|
38 |
}
|
|
39 |
|
|
40 |
|
|
41 |
/**
|
|
42 |
* ConstructL
|
|
43 |
*
|
|
44 |
*/
|
|
45 |
void CTestLtsyPktSharedData::ConstructL()
|
|
46 |
{
|
|
47 |
}
|
|
48 |
|
|
49 |
// end of file
|