mmfenh/audiooutputcontrolutility/inc/AudioOutputControlUtilityImpl.inl
changeset 0 71ca22bcf22a
equal deleted inserted replaced
-1:000000000000 0:71ca22bcf22a
       
     1 /*
       
     2 * Copyright (c) 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 "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 is the implementation of the CAudioOutputControlUtility class.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 // INCLUDE FILES
       
    21 #include "AudioOutputControlUtilityImpl.h"
       
    22 #include <e32debug.h>
       
    23 
       
    24 #ifdef _DEBUG
       
    25 #define DEBPRN0(str)                RDebug::Print(str, this)
       
    26 #define DEBPRN1(str)    RDebug::Printf( "%s %s", __PRETTY_FUNCTION__, str );
       
    27 #else
       
    28 #define DEBPRN0
       
    29 #define DEBPRN1(str)
       
    30 #endif
       
    31 
       
    32 
       
    33 // -----------------------------------------------------------------------------
       
    34 // CAudioOutputControlUtilityImpl::~CAudioOutputControlUtilityImpl
       
    35 // Destructor
       
    36 // -----------------------------------------------------------------------------
       
    37 //
       
    38 inline CAudioOutputControlUtilityImpl::~CAudioOutputControlUtilityImpl()
       
    39     {
       
    40 	DEBPRN0(_L("CAudioOutputControlUtilityImpl[0x%x]::~CAudioOutputControlUtilityImpl\n"));     
       
    41     } 
       
    42                   
       
    43   
       
    44 // ---------------------------------------------------------
       
    45 // CAudioOutputControlUtilityImpl::Configure
       
    46 // ?implementation_description
       
    47 // (other items were commented in a header).
       
    48 // ---------------------------------------------------------
       
    49 //
       
    50 inline TInt CAudioOutputControlUtilityImpl::Configure(CMMFDevSound& /*aDevSound*/)
       
    51     {
       
    52     return KErrNotReady;
       
    53     }    
       
    54     
       
    55 // ---------------------------------------------------------
       
    56 // CAudioOutputControlUtilityImpl::SetDRMConfigIntfc
       
    57 // ?implementation_description
       
    58 // (other items were commented in a header).
       
    59 // ---------------------------------------------------------
       
    60 //
       
    61 inline TInt CAudioOutputControlUtilityImpl::SetDRMConfigIntfc(CDRMConfigIntfc* /*aDRMConfigIntfc*/)
       
    62     {
       
    63     return KErrNotReady;
       
    64     }
       
    65     
       
    66 // ---------------------------------------------------------
       
    67 // CAudioOutputControlUtilityImpl::SetDataSource
       
    68 // ?implementation_description
       
    69 // (other items were commented in a header).
       
    70 // ---------------------------------------------------------
       
    71 //
       
    72 inline TInt CAudioOutputControlUtilityImpl::SetDataSource(MDataSource* /*aDataSource*/)
       
    73     {
       
    74     return KErrNotReady;
       
    75     }
       
    76 
       
    77 // ---------------------------------------------------------
       
    78 // CAudioOutputControlUtilityImpl::SetDataSource
       
    79 // ?implementation_description
       
    80 // (other items were commented in a header).
       
    81 // ---------------------------------------------------------
       
    82 //
       
    83 inline TInt CAudioOutputControlUtilityImpl::SetDataSource(CMultimediaDataSource* /*aDataSource*/)
       
    84     {
       
    85     return KErrNotReady;
       
    86     }
       
    87 // End of file
       
    88