cbsref/telephonyrefplugins/atltsy/integrationtest/src/testltsypktshareddata.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 31 Aug 2010 16:23:08 +0300
branchRCL_3
changeset 19 630d2f34d719
permissions -rw-r--r--
Revision: 201035 Kit: 201035

// TestTelephonyPktSharedData.cpp
// Copyright (c) Symbian Software Ltd 2008. All rights reserved.
//
// Implementation of the Class CTestTelephonyPktSharedData

// user include
#include "TestLtsyPktSharedData.h"

/**
 * Factory function
 */
CTestLtsyPktSharedData* CTestLtsyPktSharedData::NewL()
	{
	CTestLtsyPktSharedData* ret = new(ELeave) CTestLtsyPktSharedData();
	CleanupStack::PushL(ret);
	ret->ConstructL();
	CleanupStack::Pop(ret);
	
	return ret;
	}

/**
 * Constructor
 * 
 * @param CTestStep& aTestStep The test step used for logging and reading info from ini
 * @param CTestTelephonyTsyAdaptor& aTestEnvAdaptor The telephony tsy adaptor
 */
CTestLtsyPktSharedData::CTestLtsyPktSharedData()
	{
	}

/**
 * Destructor
 * 
 */
CTestLtsyPktSharedData::~CTestLtsyPktSharedData()
	{
	}


/**
 * ConstructL
 * 
 */
void CTestLtsyPktSharedData::ConstructL()
	{
	}

// end of file