diff -r 000000000000 -r 7f85d04be362 upnpavcontroller/upnpavcontrollerhelper/inc/upnpitemresolverobserver.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/upnpavcontroller/upnpavcontrollerhelper/inc/upnpitemresolverobserver.h Thu Dec 17 08:52:00 2009 +0200 @@ -0,0 +1,63 @@ +/* +* Copyright (c) 2005-2007 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: Observer interface for item resolver interface +* +*/ + + + + + + +#ifndef UPNPITEMRESOLVEROBSERVER_H +#define UPNPITEMRESOLVEROBSERVER_H + +// INCLUDES +#include + +// FORWARD DECLARATIONS +class MUPnPItemResolver; + +// CLASS DECLARATION + +/** +* Observer for the item resolver class. +* MUPnPItemResolver service informs using this interface that resolve +* operation has been completed and (if succesful) an item is ready +* +* @lib upnpavcontrollerhelper.lib +* @since S60 3.2 +*/ +class MUPnPItemResolverObserver + { + +public: + + /** + * indicates that operation is complete and results are available + * (if operation was succesful) after this operation, browsing + * session will not be used anymore. + * @param aResolver the resolver object that produced the event + * @param aError KErrNone if operation was succesful + */ + virtual void ResolveComplete( + const MUPnPItemResolver& aResolver, + TInt aError ) = 0; + + }; + + +#endif // UPNPITEMRESOLVEROBSERVER_H + +// End of File