cbsref/telephonyrefplugins/atltsy/integrationtest/src/testltsyasyncoperation.cpp
branchRCL_3
changeset 66 07a122eea281
parent 65 630d2f34d719
child 67 4eff64595c44
child 70 4814c5a49428
--- 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 <testproperty.h>
-#include <e32property.h>
-#include <sacls.h>
-
-// 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();
-	}