javauis/mmapi_akn/baseline/inc/cmmaaudiometadatacontrol.h
branchRCL_3
changeset 14 04becd199f91
child 24 6c158198356e
equal deleted inserted replaced
13:f5050f1da672 14:04becd199f91
       
     1 /*
       
     2 * Copyright (c) 2002 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:  CMMAAudioMetaDataControl is a concrete class for getting
       
    15 *                metadata from an audio media.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef CMMAAUDIOMETADATACONTROL_H
       
    21 #define CMMAAUDIOMETADATACONTROL_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <mmfcontroller.h>
       
    25 
       
    26 #include "cmmametadatacontrol.h"
       
    27 
       
    28 //  CLASS DECLARATION
       
    29 /**
       
    30 *   This is a concrete class for getting metadata from an audio media.
       
    31 *
       
    32 *
       
    33 */
       
    34 
       
    35 NONSHARABLE_CLASS(CMMAAudioMetaDataControl): public CMMAMetaDataControl
       
    36 {
       
    37 public:
       
    38     CMMAAudioMetaDataControl(RMMFController& aController);
       
    39 
       
    40 protected: // from CMMAMetaDataControl
       
    41 
       
    42     TInt KeyCountL();
       
    43     HBufC* KeyL(TInt aIndex);
       
    44 
       
    45     HBufC* KeyValueL(const TDesC& aKey);
       
    46 
       
    47 private:
       
    48     RMMFController& iController;
       
    49 };
       
    50 
       
    51 #endif // CMMAAUDIOMETADATACONTROL_H