phoneplugins/csplugin/inc/mcsptestcallprovider.h
changeset 72 c76a0b1755b9
equal deleted inserted replaced
64:6aaf0276100e 72:c76a0b1755b9
       
     1 /*
       
     2  * Copyright (c) 2010 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:  Interface that enables initializing call provider
       
    15  *               for testing purposes.    
       
    16  *
       
    17  */
       
    18 
       
    19 #ifndef MCSPTESTCALLPROVIDER_H_
       
    20 #define MCSPTESTCALLPROVIDER_H_
       
    21 
       
    22 class CSPAudioHandlerBase;
       
    23 
       
    24 /**
       
    25  *  Interface that enables initializing call provider
       
    26  *  with dummy audio handler for testing purposes.   
       
    27  *
       
    28  */
       
    29 class MCSPTestCallProvider
       
    30     {
       
    31 public:
       
    32     
       
    33     /**
       
    34      * Initializes call provider for testing purposes. 
       
    35      */
       
    36     virtual void InitializeL( const MCCPObserver& aObserver,
       
    37                               const MCCPSsObserver& aSsObserver,
       
    38                               CSPAudioHandlerBase* aAudioHandler ) = 0;
       
    39     };
       
    40 
       
    41 
       
    42 
       
    43 #endif /* MCSPTESTCALLPROVIDER_H_ */