1 // Copyright (c) 2008-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
24 #ifndef REMCONMEDIAATTRIBUTEID_H_
25 #define REMCONMEDIAATTRIBUTEID_H_
29 const TInt KMediaAttributeNum = 7;
30 enum TMediaAttributeId
35 ETrackNumber =0x4, /* for example the CD track number */
36 ENumberOfTracks =0x5, /* for example the total track number of the CD */
42 * Provide an iterator wrapper class
44 class TMediaAttributeIter
50 IMPORT_C TMediaAttributeIter(RArray<TMediaAttributeId>& aMediaAttributeIDs);
51 IMPORT_C void Start();
52 IMPORT_C TBool Next(TMediaAttributeId& aId);
55 RArray<TMediaAttributeId>& iMediaAttributeIDs;
59 #endif /*REMCONMEDIAATTRIBUTEID_H_*/