phoneclientserver/phoneserver/Inc/Standard/Standard_Aiw/MPhSrvObjectInitiators.h
changeset 46 2fa1fa551b0b
parent 42 35488577e233
child 48 78df25012fda
equal deleted inserted replaced
42:35488577e233 46:2fa1fa551b0b
     1 /*
       
     2 * Copyright (c) 2002 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:  Object Initiators.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MPHSRVOBJECTINITIATORS_H
       
    20 #define MPHSRVOBJECTINITIATORS_H
       
    21 
       
    22 
       
    23 // INCLUDES
       
    24 #include <e32base.h>
       
    25 
       
    26 
       
    27 // FORWARD DECLARATIONS
       
    28 class CPhCltExtPhoneDialData;
       
    29 
       
    30 // CLASS DECLARATION
       
    31 
       
    32 /**
       
    33 *  Initiator functions class.
       
    34 *
       
    35 *  @since 1.0 
       
    36 */
       
    37 class MPhSrvInitiatorCall
       
    38     {
       
    39     public: // New functions
       
    40 
       
    41         /**
       
    42         * Called by the call manager when it wants to make a call (in response
       
    43         * to a request from the external call interface).
       
    44         *
       
    45         * @param aArgs The call parameters.
       
    46         */
       
    47         virtual void InitiatorMakeAsynchronousCallL( 
       
    48             CPhCltExtPhoneDialData& aArgs ) =0;
       
    49         /**
       
    50         * Called by the call manager to find out if there is a registered
       
    51         * notification handler.
       
    52         *
       
    53         * @return ETrue if there is pending notification request.
       
    54         */
       
    55         virtual TBool InitiatorIsReadyToMakeCall() const = 0;
       
    56        
       
    57     };
       
    58 
       
    59 #endif // MPHSRVOBJECTINITIATORS_H
       
    60 
       
    61 
       
    62 // End of File