mmappcomponents/harvester/filehandler/inc/mpxplaylistscanobserver.h
changeset 0 a2952bb97e68
equal deleted inserted replaced
-1:000000000000 0:a2952bb97e68
       
     1 /*
       
     2 * Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Observer class to the playlist scanner object
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MMPXPLAYLISTSCANOBSERVER_H
       
    20 #define MMPXPLAYLISTSCANOBSERVER_H
       
    21 
       
    22 class CMPXMediaArray;
       
    23 
       
    24 /**
       
    25  *  MMPXPlaylistScanObserver
       
    26  *
       
    27  *  Abstract interface for handling playlist scanning
       
    28  *
       
    29  *  @lib mpxfilehandler.lib
       
    30  *  @since S60 3.0
       
    31  */
       
    32 class MMPXPlaylistScanObserver
       
    33     {
       
    34 
       
    35 public:
       
    36 
       
    37     /**
       
    38     * Notification of a list of extracted playlist media properties
       
    39     * @param aMediaArray, list of playlist objects
       
    40     */
       
    41     virtual void AddPlaylistToCollectionL( CMPXMediaArray& aMediaArray ) = 0;
       
    42     
       
    43     /**
       
    44     * Notification of a list of extracted playlist media properties
       
    45     * @param aMediaArray, list of playlist objects
       
    46     */
       
    47     virtual void UpdatePlaylistToCollectionL( CMPXMediaArray& aMediaArray ) = 0;
       
    48     
       
    49     };
       
    50 
       
    51 
       
    52 #endif // MMPXPLAYLISTSCANOBSERVER_H