mpxmusicplayer/inc/mpxmetadatahandler.h
changeset 0 ff3acec5bc43
equal deleted inserted replaced
-1:000000000000 0:ff3acec5bc43
       
     1 /*
       
     2 * Copyright (c) 2008 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:  MPX metadata handler interface definition
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef C_MMPXMETADATAHANDLER_H
       
    21 #define C_MMPXMETADATAHANDLER_H
       
    22 
       
    23 
       
    24 // INCLUDES
       
    25 #include <e32base.h>
       
    26 #include <remconinterfaceselector.h>
       
    27 
       
    28 // DATA TYPES
       
    29 
       
    30 // CONSTANTS
       
    31 
       
    32 // CLASS DECLARATION
       
    33 
       
    34 /**
       
    35  *  MPX metadata handler interface.
       
    36  *
       
    37  *  @lib mpxmetadatahandler.lib
       
    38  *  @since S60 5.1
       
    39  */
       
    40 NONSHARABLE_CLASS( MMPXMetaDataHandler )
       
    41     {
       
    42 public:
       
    43 
       
    44     /**
       
    45      * Two-phased constructor.
       
    46      *
       
    47      * @since S60 5.1
       
    48      * @param aFlags Flags for creating popups.
       
    49      * @param aObserver Media key command observer
       
    50      * @return Pointer to newly created object.
       
    51      */
       
    52     IMPORT_C static MMPXMetaDataHandler* NewL(CRemConInterfaceSelector &aInterfaceSelector);
       
    53 
       
    54     /**
       
    55      * Destructor.
       
    56      */
       
    57     virtual ~MMPXMetaDataHandler();
       
    58     };
       
    59 
       
    60 #endif  // C_MMPXMETADATAHANDLER_H
       
    61 
       
    62 // End of File