mmfenh/enhancedmediaclient/Client/src/Components/SourceBase/SourceBase.cpp
changeset 0 71ca22bcf22a
equal deleted inserted replaced
-1:000000000000 0:71ca22bcf22a
       
     1 /*
       
     2 * Copyright (c) 2006 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:  This file contains the base implementation of Source.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDES
       
    20 #include "SourceBase.h"
       
    21 
       
    22 using namespace multimedia;
       
    23 
       
    24 CSourceBase::~CSourceBase()
       
    25     {
       
    26     // No impl
       
    27     }
       
    28 
       
    29 void CSourceBase::ServerSourceCreated(MCustomCommand& /*aCustomCommand*/,
       
    30                                       TMMFMessageDestination& /*aSourceHandle*/ )
       
    31     {
       
    32     // No impl
       
    33     }
       
    34 
       
    35 void CSourceBase::ServerSourceDeleted()
       
    36     {
       
    37     // No impl
       
    38     }
       
    39 
       
    40 TBool CSourceBase::IsEncrypted()
       
    41     {
       
    42     // No impl
       
    43     return false;
       
    44     }
       
    45 
       
    46 TUid CSourceBase::GetSourceUid()
       
    47     {
       
    48     // No impl
       
    49     return KNullUid;
       
    50     }
       
    51 TInt CSourceBase::GetHeaderData(TPtr& /*aPtr*/)
       
    52     {
       
    53     return KErrNone;
       
    54     }
       
    55 
       
    56 //  End of File