mmsharing/mmshavailability/tsrc/ut_availability/Stubs/src/muscallmonitorstub.cpp
changeset 0 f0cf47e981f9
child 22 73a1feb507fb
equal deleted inserted replaced
-1:000000000000 0:f0cf47e981f9
       
     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:  ?Description
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDES
       
    20 #include "muscallmonitorbase.h"
       
    21 #include "muscallstatusmonitor.h"
       
    22 
       
    23 #include <e32std.h>
       
    24 
       
    25 
       
    26 //
       
    27 //CMusCallMonitorBase stub
       
    28 //
       
    29 
       
    30 CMusCallMonitorBase::~CMusCallMonitorBase()
       
    31     {
       
    32     }
       
    33 
       
    34 // -----------------------------------------------------------------------------
       
    35 // C++ constructor.
       
    36 // -----------------------------------------------------------------------------
       
    37 //
       
    38 CMusCallMonitorBase::CMusCallMonitorBase(const RMobileCall& aCall, MMusTsyPropertyObserver& aObserver ) 
       
    39         : CActive( EPriorityNormal ),iCall(aCall),iTsyObserver( aObserver )
       
    40         
       
    41     {   
       
    42     }
       
    43 
       
    44 // -----------------------------------------------------------------------------
       
    45 // CMusCallMonitorBase::SetStateL( TInt aError )
       
    46 // Sets the Call State to Property
       
    47 // -----------------------------------------------------------------------------
       
    48 //
       
    49 void CMusCallMonitorBase::SetStateL(NMusSessionInformationApi::TMusCallEvent /*aVal*/)
       
    50     {
       
    51     }
       
    52 
       
    53 
       
    54 // -----------------------------------------------------------------------------
       
    55 // CMusCallMonitorBase::RunError( TInt aError )
       
    56 // Implemented for CActive.
       
    57 // Will be called automatically by framework when RunL Leaves.
       
    58 // -----------------------------------------------------------------------------
       
    59 //
       
    60 
       
    61 TInt CMusCallMonitorBase::RunError( TInt /*aError*/ )
       
    62     {
       
    63     return KErrNone;
       
    64     }
       
    65 
       
    66 // -----------------------------------------------------------------------------
       
    67 // CMusCallMonitorBase::NotifyCallStateChanged()
       
    68 // Notify TSYobserver that our call status or call event state changed
       
    69 // -----------------------------------------------------------------------------
       
    70 //
       
    71 void CMusCallMonitorBase::NotifyCallStateChanged( NMusSessionInformationApi::TMusCallEvent /*aVal*/ )
       
    72     {
       
    73     }
       
    74 
       
    75 CMusCallStatusMonitor* CMusCallStatusMonitor::NewL(const RMobileCall&, MMusTsyPropertyObserver& )
       
    76     {
       
    77     return NULL;
       
    78     }
       
    79 
       
    80 //  End of File  
       
    81