diff -r 17af172ffa5f -r 630d2f34d719 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 Aug 31 16:23:08 2010 +0300 @@ -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__ */