telephonyserverplugins/attestltsy/integrationtest/src/testltsypktshareddata.cpp
author Tom Pritchard <tomp@symbian.org>
Tue, 09 Feb 2010 12:31:43 +0000
branchAT_Test_LTSY
changeset 1 4047d69ee0e4
permissions -rw-r--r--
Initial upload of Nokia's AT based test LTSY which uses the dispatcher

// 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