phoneclientserver/callui/src/cauiengine/ccauireconnectquery.cpp
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:  Creates CallUIEngine reconnect query implementation.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 // INCLUDE FILES
       
    21 #include    "ccauireconnectquery.h"
       
    22 #include    "ccauireconnectqueryimpl.h"
       
    23 
       
    24 
       
    25 
       
    26 // ============================ MEMBER FUNCTIONS ===============================
       
    27 
       
    28 // -----------------------------------------------------------------------------
       
    29 // CCaUiReconnectQuery::NewL
       
    30 // Two-phased constructor.
       
    31 // -----------------------------------------------------------------------------
       
    32 //
       
    33 EXPORT_C CCaUiReconnectQuery* CCaUiReconnectQuery::NewL( 
       
    34     MCaUiReconnectQueryObserver& aObserver )
       
    35     {
       
    36     return CCaUiReconnectQueryImpl::NewL( aObserver );
       
    37     }
       
    38 
       
    39 CCaUiReconnectQuery::~CCaUiReconnectQuery()
       
    40     {
       
    41     // No implementation needed
       
    42     }
       
    43 // -----------------------------------------------------------------------------
       
    44 // CCaUiReconnectQuery::CCaUiReconnectQuery
       
    45 // C++ constructor can NOT contain any code, that
       
    46 // might leave.
       
    47 // -----------------------------------------------------------------------------
       
    48 //
       
    49 CCaUiReconnectQuery::CCaUiReconnectQuery( MCaUiReconnectQueryObserver& aObserver )
       
    50     : iObserver( aObserver )
       
    51     {
       
    52     }
       
    53     
       
    54 
       
    55 
       
    56 
       
    57 //  End of File