phoneclientserver/phoneserver/Inc/Standard/Standard_NoAiw/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 TPhCltCallArgs;
       
    29 
       
    30 
       
    31 // CLASS DECLARATION
       
    32 
       
    33 /**
       
    34 *  Initiator functions class.
       
    35 *
       
    36 *  @since 1.0 
       
    37 */
       
    38 class MPhSrvInitiatorCall
       
    39     {
       
    40     public: // New functions
       
    41 
       
    42         /**
       
    43         * Called by the call manager when it wants to make a call (in response
       
    44         * to a request from the external call interface).
       
    45         *
       
    46         * @param aArgs The call parameters.
       
    47         */
       
    48         virtual void InitiatorMakeAsynchronousCall( 
       
    49             const TPhCltCallArgs& aArgs ) = 0;
       
    50 
       
    51         /**
       
    52         * Called by the call manager to find out if there is a registered
       
    53         * notification handler.
       
    54         *
       
    55         * @return ETrue if there is pending notification request.
       
    56         */
       
    57         virtual TBool InitiatorIsReadyToMakeCall() const = 0;
       
    58     };
       
    59 
       
    60 #endif // MPHSRVOBJECTINITIATORS_H
       
    61 
       
    62 
       
    63 // End of File