profilesservices/ProfileEngine/WrapperSrc/CProEngDrmCommonWrapperEmpty.cpp
changeset 0 8c5d936e5675
equal deleted inserted replaced
-1:000000000000 0:8c5d936e5675
       
     1 /*
       
     2 * Copyright (c) 2002-2004 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:  Implementation of CProEngDrmCommonWrapper.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 // INCLUDE FILES
       
    21 #include    "CProEngDrmCommonWrapper.h"
       
    22 
       
    23 // ============================ MEMBER FUNCTIONS ===============================
       
    24 
       
    25 // -----------------------------------------------------------------------------
       
    26 // CProEngDrmCommonWrapper::CProEngDrmCommonWrapper
       
    27 // -----------------------------------------------------------------------------
       
    28 //
       
    29 CProEngDrmCommonWrapper::CProEngDrmCommonWrapper()
       
    30     {
       
    31     }
       
    32 
       
    33 // -----------------------------------------------------------------------------
       
    34 // CProEngDrmCommonWrapper::ConstructL
       
    35 // -----------------------------------------------------------------------------
       
    36 //
       
    37 void CProEngDrmCommonWrapper::ConstructL()
       
    38     {
       
    39     }
       
    40 
       
    41 // -----------------------------------------------------------------------------
       
    42 // CProEngDrmCommonWrapper::NewL
       
    43 // Two-phased constructor.
       
    44 // -----------------------------------------------------------------------------
       
    45 //
       
    46 CProEngDrmCommonWrapper* CProEngDrmCommonWrapper::NewL()
       
    47     {
       
    48     CProEngDrmCommonWrapper* self =
       
    49         new ( ELeave ) CProEngDrmCommonWrapper();
       
    50 
       
    51     CleanupStack::PushL( self );
       
    52     self->ConstructL();
       
    53     CleanupStack::Pop( self );
       
    54 
       
    55     return self;
       
    56     }
       
    57 
       
    58 // Destructor
       
    59 CProEngDrmCommonWrapper::~CProEngDrmCommonWrapper()
       
    60     {
       
    61     }
       
    62 
       
    63 // -----------------------------------------------------------------------------
       
    64 // CProEngDrmCommonWrapper::IsProtectedFile
       
    65 // Two-phased constructor.
       
    66 // -----------------------------------------------------------------------------
       
    67 //
       
    68 TInt CProEngDrmCommonWrapper::IsProtected(
       
    69     const TDesC& /* aFileName */ )
       
    70     {
       
    71     return KErrNone;
       
    72     }
       
    73     
       
    74 //  End of File
       
    75 
       
    76 
       
    77 
       
    78