mmappcomponents/mmmtpdataprovider/mmmtpdpplugins/abstractmediamtpdataprovider/src/cabstractmediamtpdataprovidergetformatcapabilities.cpp
branchCompilerCompatibility
changeset 13 da1f3efa404b
parent 11 5529f24b6aaf
parent 10 835a21e50645
child 16 7338708f87ae
equal deleted inserted replaced
11:5529f24b6aaf 13:da1f3efa404b
     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 #include <mtp/cmtptypeinterdependentpropdesc.h>
       
    18 
       
    19 #include "cabstractmediamtpdataprovidergetformatcapabilities.h"
       
    20 
       
    21 
       
    22 // -----------------------------------------------------------------------------
       
    23 // CAbstractMediaMtpDataProviderGetFormatCapabilities::NewL
       
    24 // Two-phase construction method
       
    25 // -----------------------------------------------------------------------------
       
    26 //
       
    27 
       
    28 MMmRequestProcessor* CAbstractMediaMtpDataProviderGetFormatCapabilities::NewL( MMTPDataProviderFramework& aFramework,
       
    29     MMTPConnection& aConnection,
       
    30     MMmMtpDpConfig& aDpConfig )
       
    31     {
       
    32     CAbstractMediaMtpDataProviderGetFormatCapabilities* self =
       
    33         new ( ELeave ) CAbstractMediaMtpDataProviderGetFormatCapabilities( aFramework,
       
    34             aConnection,
       
    35             aDpConfig );
       
    36     CleanupStack::PushL( self );
       
    37     self->ConstructL();
       
    38     CleanupStack::Pop( self );
       
    39     return self;
       
    40     }
       
    41 
       
    42 // -----------------------------------------------------------------------------
       
    43 // CAbstractMediaMtpDataProviderGetFormatCapabilities::ConstructL
       
    44 // Two-phase construction method
       
    45 // -----------------------------------------------------------------------------
       
    46 //
       
    47 void CAbstractMediaMtpDataProviderGetFormatCapabilities::ConstructL()
       
    48     {
       
    49     CGetFormatCapabilities::ConstructL();
       
    50     }
       
    51 
       
    52 // -----------------------------------------------------------------------------
       
    53 // CAbstractMediaMtpDataProviderGetFormatCapabilities::~CAbstractMediaMtpDataProviderGetFormatCapabilities()
       
    54 // Destructor
       
    55 // -----------------------------------------------------------------------------
       
    56 //
       
    57 CAbstractMediaMtpDataProviderGetFormatCapabilities::~CAbstractMediaMtpDataProviderGetFormatCapabilities()
       
    58     {
       
    59 
       
    60     }
       
    61 
       
    62 
       
    63 // -----------------------------------------------------------------------------
       
    64 // CAbstractMediaMtpDataProviderGetFormatCapabilities::CAbstractMediaMtpDataProviderGetFormatCapabilities
       
    65 // Standard c++ constructor
       
    66 // -----------------------------------------------------------------------------
       
    67 //
       
    68 CAbstractMediaMtpDataProviderGetFormatCapabilities::CAbstractMediaMtpDataProviderGetFormatCapabilities( MMTPDataProviderFramework& aFramework,
       
    69     MMTPConnection& aConnection,
       
    70     MMmMtpDpConfig& aDpConfig ) :
       
    71     CGetFormatCapabilities( aFramework, aConnection, aDpConfig )
       
    72     {
       
    73 
       
    74     }
       
    75 
       
    76 // -----------------------------------------------------------------------------
       
    77 // CAbstractMediaMtpDataProviderGetFormatCapabilities::ServiceInterdepentPropDesc
       
    78 //
       
    79 // -----------------------------------------------------------------------------
       
    80 //
       
    81 void CAbstractMediaMtpDataProviderGetFormatCapabilities::ServiceInterdepentPropDescL()
       
    82     {
       
    83     iInterdependentPropDesc = CMTPTypeInterdependentPropDesc::NewL();
       
    84     }
       
    85 
       
    86 // -----------------------------------------------------------------------------
       
    87 // CAbstractMediaMtpDataProviderGetFormatCapabilities::ServiceSpecificObjectPropertyL
       
    88 // Service specific object property
       
    89 // -----------------------------------------------------------------------------
       
    90 //
       
    91 CMTPTypeObjectPropDesc* CAbstractMediaMtpDataProviderGetFormatCapabilities::ServiceSpecificPropertyDescL( TUint16 aPropCode )
       
    92     {
       
    93     return NULL;
       
    94     }
       
    95 
       
    96 
       
    97 // end of file