serviceproviders/sapi_mediamanagement/tsrc/dev/tmediamgmttest/src/mgmediafile.cpp
changeset 5 989d2f495d90
child 23 50974a8b132e
equal deleted inserted replaced
1:a36b1e19a461 5:989d2f495d90
       
     1 /*
       
     2 * Copyright (c) 2007-2007 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 the License "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:   Contains functionality common to media files
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #include <mclfitem.h>
       
    21 #include <liwvariant.h>
       
    22 
       
    23 #include "mgmediafile.h"
       
    24 
       
    25 
       
    26 // ---------------------------------------------------------------------------
       
    27 // 	CMgMediaFile::NewL
       
    28 //  Two-phased constructor
       
    29 // ---------------------------------------------------------------------------
       
    30 //
       
    31  
       
    32 CMgMediaFile* CMgMediaFile::NewL()
       
    33     {
       
    34     CMgMediaFile* self = new( ELeave ) CMgMediaFile();
       
    35     return self;
       
    36     }
       
    37 
       
    38 
       
    39 // ---------------------------------------------------------------------------
       
    40 // CMgMediaFile::FillInfo
       
    41 // Fills the attributes specific to image and sound files 
       
    42 // ---------------------------------------------------------------------------
       
    43 //
       
    44 
       
    45 void CMgMediaFile::FillInfo( CLiwDefaultMap *aOutputMap, const MCLFItem& aClfItem )
       
    46     {
       
    47     FillCommonAttributes( aOutputMap, aClfItem );
       
    48     }
       
    49 
       
    50 
       
    51 
       
    52 
       
    53 
       
    54 
       
    55 
       
    56