bluetoothappprofiles/avrcp/mediabrowseapi/public/remcondatabaseunawarenowplayingbrowse.h
changeset 70 f5508c13dfe0
parent 67 16e4b9007960
child 71 083fd884d7dd
equal deleted inserted replaced
67:16e4b9007960 70:f5508c13dfe0
     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".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 
       
    17 
       
    18 /**
       
    19  @file
       
    20  @publishedAll
       
    21  @released
       
    22 */
       
    23 
       
    24 #include <e32base.h>
       
    25 #include <remconmediabrowsetypes.h>
       
    26 
       
    27 #ifndef REMCONDATABASEUNAWARENOWPLAYINGBROWSE_H
       
    28 #define REMCONDATABASEUNAWARENOWPLAYINGBROWSE_H
       
    29 
       
    30 NONSHARABLE_CLASS(MRemConDatabaseUnawareNowPlayingBrowse)
       
    31 	{
       
    32 public:
       
    33 	IMPORT_C void MrcdunpbFolderListing(const TArray<TRemConItem>& aFolderListing, 
       
    34 			TUint aResult);
       
    35 			
       
    36 	IMPORT_C void MrcdunpbMediaElementItemResult(const TRemConItemUid& aMediaID, 
       
    37 			const TDesC8& aMediaName, 
       
    38 			TMediaItemType aMediaType, 
       
    39 			const TArray<TMediaElementAttribute>& aAttributes,
       
    40 			TInt aResult);
       
    41 	
       
    42 private:
       
    43 	virtual void MrcdunpbDoFolderListing(const TArray<TRemConItem>& aFolderListing, 
       
    44 			TUint aResult) = 0;
       
    45 		
       
    46 	virtual void MrcdunpbDoMediaElementItemResult(const TRemConItemUid& aMediaID, 
       
    47 			const TDesC8& aMediaName, 
       
    48 			TMediaItemType aMediaType, 
       
    49 			const TArray<TMediaElementAttribute>& aAttributes,
       
    50 			TInt aResult) = 0;
       
    51 	};
       
    52 
       
    53 #endif //REMCONDATABASEUNAWARENOWPLAYINGBROWSE_H
       
    54