diff -r 71ca22bcf22a -r 5a06f39ad45b mmserv/tms/tmsserver/inc/tmsasyncreqao.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mmserv/tms/tmsserver/inc/tmsasyncreqao.h Fri Apr 16 15:29:42 2010 +0300 @@ -0,0 +1,91 @@ +/* + * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). + * All rights reserved. + * This component and the accompanying materials are made available + * under the terms of "Eclipse Public License v1.0" + * which accompanies this distribution, and is available + * at the URL "http://www.eclipse.org/legal/epl-v10.html". + * + * Initial Contributors: + * Nokia Corporation - initial contribution. + * + * Contributors: + * + * Description: Telephony Multimedia Service + * + */ + +#ifndef TMSASYNCREQAO_H +#define TMSASYNCREQAO_H + +//INCLUDES +#include +#include "tmsasyncreqobsrv.h" + +namespace TMS { + +// CLASS DECLARATION + +/** + * Active object handling asynchronous RingTone requests. + */ +NONSHARABLE_CLASS(TMSAsyncReqAO) : public CActive + { +public: + + /** + * Two-phased constructor. + */ + static TMSAsyncReqAO* NewL(TMSAsyncReqObsrv* aObserver); + + /** + * Destructor. + */ + virtual ~TMSAsyncReqAO(); + + /** + * Starts A/O. + */ + void Start(); + +protected: + // From CActive + + /** + * Cancels asyncronous request(s). + */ + void DoCancel(); + + /** + * Standard RunError() method + * @param + * aError RunL leave code. + * + * @return KErrNone. + */ + TInt RunError(TInt aError); + + /** + * Standard RunL() method + */ + void RunL(); + +private: + + /** + * C++ default constructor. + */ + TMSAsyncReqAO(TMSAsyncReqObsrv* aObserver); + +private: + //Data + + // Pointer to the observer + TMSAsyncReqObsrv* iObserver; + }; + +} //namespace TMS + +#endif // TMSASYNCREQAO_H + +// End of File