diff -r 14460bf2a402 -r f50f4094acd7 cbsref/telephonyrefplugins/atltsy/integrationtest/src/testltsypktshareddata.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cbsref/telephonyrefplugins/atltsy/integrationtest/src/testltsypktshareddata.cpp Tue Jul 06 15:36:38 2010 +0300 @@ -0,0 +1,49 @@ +// 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