51
|
1 |
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
2 |
// All rights reserved.
|
|
3 |
// This component and the accompanying materials are made available
|
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
|
5 |
// which accompanies this distribution, and is available
|
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
7 |
//
|
|
8 |
// Initial Contributors:
|
|
9 |
// Nokia Corporation - initial contribution.
|
|
10 |
//
|
|
11 |
// Contributors:
|
|
12 |
//
|
|
13 |
// Description:
|
|
14 |
//
|
|
15 |
|
|
16 |
/**
|
|
17 |
@file
|
|
18 |
@publishedAll
|
|
19 |
@released
|
|
20 |
*/
|
|
21 |
|
|
22 |
#ifndef REMCONMEDIAINFORMATIONTARGETOBSERVER_H
|
|
23 |
#define REMCONMEDIAINFORMATIONTARGETOBSERVER_H
|
|
24 |
|
|
25 |
#include <e32base.h>
|
|
26 |
#include <remconmediaattributeid.h>
|
|
27 |
|
|
28 |
/**
|
|
29 |
Clients must implement this interface in order to instantiate objects of type
|
|
30 |
CRemConMediaInformationTarget. This interface passes incoming commands from RemCon to
|
|
31 |
the client.
|
|
32 |
*/
|
|
33 |
NONSHARABLE_CLASS(MRemConMediaInformationTargetObserver)
|
|
34 |
{
|
|
35 |
public:
|
|
36 |
|
|
37 |
/**
|
|
38 |
For each element in aAttributeList for which the requested Metadata is available,
|
|
39 |
the client shall respond by calling CRemConMediaInformationTarget::AttributeValue().
|
|
40 |
After all attributes have been supplied the client shall call CRemConMediaInformationTarget::Completed().
|
|
41 |
@param aAttributeIter A CMediaAttributeIDs containing a list of TMediaAttributeIds requested by the controller
|
|
42 |
@see CRemConMediaInformationTarget::AttributeValue()
|
|
43 |
@see CRemConMediaInformationTarget::Completed()
|
|
44 |
*/
|
|
45 |
virtual void MrcmitoGetCurrentlyPlayingMetadata( TMediaAttributeIter& aAttributeIter ) = 0;
|
|
46 |
|
|
47 |
};
|
|
48 |
|
|
49 |
#endif // REMCONMEDIAINFORMATIONTARGETOBSERVER_H
|