phoneclientserver/callui/inc/cauiengine/ccauireconnectqueryimpl.h
changeset 51 12bc758d6a02
parent 48 78df25012fda
child 53 25b8d29b7c59
equal deleted inserted replaced
48:78df25012fda 51:12bc758d6a02
     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:  Provides reconnectquery implementation for CallUI.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef CCAUIRECONNECTQUERYIMPL_H
       
    20 #define CCAUIRECONNECTQUERYIMPL_H
       
    21 
       
    22 //  INCLUDES
       
    23 #include <ccauireconnectquery.h>
       
    24 
       
    25 #include    <e32std.h>
       
    26 
       
    27 
       
    28 // FORWARD DECLARATIONS
       
    29 class CCaUiEngine;
       
    30 
       
    31 // CONSTANTS
       
    32 
       
    33 
       
    34 
       
    35    
       
    36 // CLASS DECLARATION
       
    37 
       
    38 /**
       
    39 *  CaUIEngine implementation.
       
    40 *  
       
    41 *  @lib CaUiReconnectQueryImpl.lib
       
    42 *  @since 5.0
       
    43 */
       
    44 NONSHARABLE_CLASS( CCaUiReconnectQueryImpl )
       
    45 :   public CCaUiReconnectQuery
       
    46     {
       
    47     public:  // Constructors and destructor
       
    48 
       
    49         /**
       
    50         * Two-phased constructor.
       
    51         * @return an instance of CallUI.
       
    52         */
       
    53         static CCaUiReconnectQueryImpl* NewL( 
       
    54             MCaUiReconnectQueryObserver& aObserver );
       
    55         
       
    56 
       
    57         /**
       
    58         * Destructor.
       
    59         */
       
    60         virtual ~CCaUiReconnectQueryImpl();
       
    61 
       
    62 
       
    63 
       
    64     private: // Functions from base classes
       
    65     
       
    66         /**
       
    67         * Launch reconnect confirmation query.
       
    68         * 
       
    69         */
       
    70         void ShowL( 
       
    71             const TPtrC aPhoneNumber,
       
    72             const TBool aIncludeVideoCallOption );
       
    73             
       
    74     private: // internal functions
       
    75         
       
    76         /**
       
    77         * Constructor.
       
    78         */
       
    79         CCaUiReconnectQueryImpl(MCaUiReconnectQueryObserver& aObserver);
       
    80 
       
    81         /**
       
    82         * Second phase construction.
       
    83         */
       
    84         void ConstructL();
       
    85 
       
    86 
       
    87     private:    // Data
       
    88         
       
    89         CCaUiEngine* iEng;
       
    90 
       
    91     };
       
    92 
       
    93 #endif  // CCAUIRECONNECTQUERYIMPL_H
       
    94 
       
    95 // End of file