diff -r 000000000000 -r 822a42b6c3f1 videoconnutility/connutility/inc/vcxconnutilextengineobserver.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/videoconnutility/connutility/inc/vcxconnutilextengineobserver.h Thu Dec 17 09:14:38 2009 +0200 @@ -0,0 +1,62 @@ +/* +* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of the License "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: extended engine observer interface for video connection utility internal use* +*/ + + + + +#ifndef __VCXCONNUTILEXTENGINEOBSERVER_H_ +#define __VCXCONNUTILEXTENGINEOBSERVER_H_ + +#include +/** +* Interface is being used inside vcxconnectionutility to notify +* IAP changes and request for waits +*/ + +class MConnUtilExtEngineObserver : public MConnUtilEngineObserver + + { + public: + + /** + * Method is called, when observable request observer to + * put it's current active object to wait until EndWait + * for same wait id is called + * + * @param aWaitId wait id + */ + virtual void WaitL( TUint32 aWaitId ) = 0; + + /** + * Method is called, when observable request observer to + * end wait for given id + * + * @param aWaitId wait id + */ + virtual void EndWait( TUint32 aWaitId ) = 0; + + /** + * Method is called, when observable needs to know wether + * this instance is the master instance + * + * @return TBool ETrue is master, EFalse not a master + */ + virtual TBool IsMaster() = 0; + + }; + + +#endif /*VCXCONNUTILEXTENGINEOBSERVER_H_*/