mmappcomponents/mmmtpdataprovider/mmmtpdpplugins/abstractmediamtpdataprovider/src/cabstractmediamtpdataproviderpropertysettingutility.cpp
branchRCL_3
changeset 9 bee149131e4b
child 17 780c925249c1
equal deleted inserted replaced
4:d45095c2f4f3 9:bee149131e4b
       
     1 /*
       
     2  * Copyright (c) 2009 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:
       
    15  *
       
    16  */
       
    17 
       
    18 #include <mtp/cmtptypeobjectproplist.h>
       
    19 #include <mtp/mtpprotocolconstants.h>
       
    20 
       
    21 #include "cabstractmediamtpdataproviderpropertysettingutility.h"
       
    22 #include "mmmtpdplogger.h"
       
    23 
       
    24 // -----------------------------------------------------------------------------
       
    25 // CAbstractMediaMtpDataProviderPropertySettingUtility::NewL
       
    26 // Two-phase construction method
       
    27 // -----------------------------------------------------------------------------
       
    28 //
       
    29 CAbstractMediaMtpDataProviderPropertySettingUtility* CAbstractMediaMtpDataProviderPropertySettingUtility::NewL()
       
    30     {
       
    31     CAbstractMediaMtpDataProviderPropertySettingUtility* self =
       
    32         new ( ELeave ) CAbstractMediaMtpDataProviderPropertySettingUtility();
       
    33 
       
    34     return self;
       
    35     }
       
    36 
       
    37 // -----------------------------------------------------------------------------
       
    38 // CAbstractMediaMtpDataProviderPropertySettingUtility::~CAbstractMediaMtpDataProviderPropertySettingUtility
       
    39 // Destructor
       
    40 // -----------------------------------------------------------------------------
       
    41 //
       
    42 CAbstractMediaMtpDataProviderPropertySettingUtility::~CAbstractMediaMtpDataProviderPropertySettingUtility()
       
    43     {
       
    44     // Do nothing
       
    45     }
       
    46 
       
    47 // -----------------------------------------------------------------------------
       
    48 // CAbstractMediaMtpDataProviderPropertySettingUtility::CAbstractMediaMtpDataProviderPropertySettingUtility
       
    49 // Standard C++ Constructor
       
    50 // -----------------------------------------------------------------------------
       
    51 //
       
    52 CAbstractMediaMtpDataProviderPropertySettingUtility::CAbstractMediaMtpDataProviderPropertySettingUtility()
       
    53     {
       
    54     // Do nothing
       
    55     }
       
    56 
       
    57 TMTPResponseCode CAbstractMediaMtpDataProviderPropertySettingUtility::SetSpecificObjectPropertyL( MMmMtpDpConfig& /*aDpConfig*/,
       
    58     TUint16 /*aPropCode*/,
       
    59     const CMTPObjectMetaData& /*aObject*/,
       
    60     const CMTPTypeObjectPropListElement& /*aElement*/ )
       
    61     {
       
    62     PRINT( _L( "MM MTP => CAbstractMediaMtpDataProviderPropertySettingUtility::SetSpecificObjectPropertyL" ) );
       
    63 
       
    64     // Do nothing now.
       
    65     // May need add implementation here for further extension.
       
    66 
       
    67     return EMTPRespCodeOK;
       
    68     }
       
    69 
       
    70 // end of file