cbsref/telephonyrefplugins/atltsy/integrationtest/inc/testltsyasyncoperation.h
author hgs
Tue, 22 Jun 2010 11:02:32 +0100
changeset 44 8b72faa1200f
permissions -rw-r--r--
201024_02

// TestTelephonyAsyncOperation.h
//
// Copyright (c) 2004-2008 Symbian Software Ltd.  All rights reserved.
//
// Active object derived class for asynchronous operation
//


#if (!defined __TEST_TELEPHONY_ASYNC_OPERATION_H__)
#define  __TEST_TELEPHONY_ASYNC_OPERATION_H__

// EPOC include
#include <e32base.h>
#include <etel3rdparty.h>

/*@{*/
///constants
enum TTestAsyncOperation
	{
	KNotifyLineStatusChange,
	};
/*@}*/

class CTelephonyAsyncOperation : public CActive
/**
@internalAll
@test
@class CTelephonyAsyncOperation

Active object for executing the asynchronous requests. 
*/
	{
public:
	CTelephonyAsyncOperation(CTestStep& aTestStep);
	~CTelephonyAsyncOperation();

	virtual void	DoCancel();
	virtual void	RunL();

	TInt	SetOperation();
	
private:
	CTestStep&	iTestStep;
	};

#endif /* __TEST_TELEPHONY_ASYNC_OPERATION_H__ */