diff -r 2473f5e227f9 -r 8b72faa1200f cbsref/telephonyrefplugins/atltsy/integrationtest/inc/testltsyasyncoperation.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cbsref/telephonyrefplugins/atltsy/integrationtest/inc/testltsyasyncoperation.h Tue Jun 22 11:02:32 2010 +0100 @@ -0,0 +1,46 @@ +// 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 +#include + +/*@{*/ +///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__ */