diff -r 630d2f34d719 -r 07a122eea281 cbsref/telephonyrefplugins/atltsy/integrationtest/src/testltsyasyncoperation.cpp --- a/cbsref/telephonyrefplugins/atltsy/integrationtest/src/testltsyasyncoperation.cpp Tue Aug 31 16:23:08 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,60 +0,0 @@ -// TestTelephonyAsyncOperation.cpp -// -// Copyright (c) 2004-2007 Symbian Ltd. All rights reserved. -// -// The active object derived class for asynchronous requests -// - -// Epoc includes -#include -#include -#include - -// User includes -#include "TestLtsyAsyncOperation.h" - -CTelephonyAsyncOperation::CTelephonyAsyncOperation(CTestStep& aTestStep) -/* -Constructor - -Adds the active object to active scheduler. - -@param aInt Operation id -*/ -: CActive(EPriorityStandard) -, iTestStep(aTestStep) - { - CActiveScheduler::Add(this); - } - -CTelephonyAsyncOperation::~CTelephonyAsyncOperation() -/* -Destructor -*/ - { - } - -void CTelephonyAsyncOperation::DoCancel() -/* -For canceling the request -*/ - { - } - -void CTelephonyAsyncOperation::RunL() -/* -Stop the active scheduler -*/ - { - CActiveScheduler::Stop(); - } - -TInt CTelephonyAsyncOperation::SetOperation() -/* -Set the active object request and start the active scheduler -*/ - { - SetActive(); - CActiveScheduler::Start(); - return iStatus.Int(); - }