xdmprotocols/XcapProtocol/src/XcapNodeSelector.cpp
changeset 0 c8caa15ef882
equal deleted inserted replaced
-1:000000000000 0:c8caa15ef882
       
     1 /*
       
     2 * Copyright (c) 2005 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: CXcapNodeSelector
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 // INCLUDES
       
    22 //This is only for logging
       
    23 #include "XcapProtocol.h"
       
    24 #include "XcapNodeSelector.h"
       
    25 
       
    26 // ---------------------------------------------------------
       
    27 // C++ constructor can NOT contain any code, that
       
    28 // might leave.
       
    29 // ---------------------------------------------------------
       
    30 //
       
    31 CXcapNodeSelector::CXcapNodeSelector()                                    
       
    32     {
       
    33     }
       
    34 
       
    35 // ---------------------------------------------------------
       
    36 // Two-phased constructor.
       
    37 //
       
    38 // ---------------------------------------------------------
       
    39 //
       
    40 CXcapNodeSelector* CXcapNodeSelector::NewL()
       
    41     {
       
    42     CXcapNodeSelector* self = new ( ELeave ) CXcapNodeSelector();
       
    43     CleanupStack::PushL( self );
       
    44     self->ConstructL();
       
    45     CleanupStack::Pop();
       
    46     return self;
       
    47     }
       
    48 
       
    49 // ---------------------------------------------------------
       
    50 // Symbian OS default constructor may leave.
       
    51 //
       
    52 // ---------------------------------------------------------
       
    53 //
       
    54 void CXcapNodeSelector::ConstructL()
       
    55     {
       
    56     
       
    57     }
       
    58 
       
    59 // ---------------------------------------------------------
       
    60 // Destructor
       
    61 //
       
    62 // ---------------------------------------------------------
       
    63 //
       
    64 CXcapNodeSelector::~CXcapNodeSelector()
       
    65     {
       
    66     #ifdef _DEBUG
       
    67         CXcapProtocol::WriteToLog( _L8( "CXcapNodeSelector::~CXcapNodeSelector()" ) );  
       
    68     #endif
       
    69     delete iSelectorString;
       
    70     }
       
    71 
       
    72 //  End of File  
       
    73