contextframework/cfw/src/cfclient/cfservicebase.cpp
changeset 0 2e3d3ce01487
equal deleted inserted replaced
-1:000000000000 0:2e3d3ce01487
       
     1 /*
       
     2 * Copyright (c) 2008-2008 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:  CCFServiceBase class implementation.
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 // SYSTEM INCLUDES
       
    20 
       
    21 // USER INCLUDES
       
    22 #include "cfservicebase.h"
       
    23 #include "cftrace.h"
       
    24 
       
    25 // ======== MEMBER FUNCTIONS ========
       
    26 
       
    27 // ---------------------------------------------------------------------------
       
    28 // C++ constructor.
       
    29 // ---------------------------------------------------------------------------
       
    30 //
       
    31 CCFServiceBase::CCFServiceBase( TCFServiceId aId,
       
    32     RCFClientSession& aSession,
       
    33     MCFListener& aListener )
       
    34     :   iSession( aSession ),
       
    35         iListener( aListener ),
       
    36         iId( aId )
       
    37     {
       
    38     FUNC_LOG;
       
    39     }
       
    40 
       
    41 // ---------------------------------------------------------------------------
       
    42 // C++ destructor.
       
    43 // ---------------------------------------------------------------------------
       
    44 //
       
    45 CCFServiceBase::~CCFServiceBase( )
       
    46     {
       
    47     FUNC_LOG;
       
    48 
       
    49     // Nothing to do.
       
    50     }
       
    51 
       
    52 // ---------------------------------------------------------------------------
       
    53 // CCFServiceBase::Id
       
    54 // ---------------------------------------------------------------------------
       
    55 //
       
    56 CCFServiceBase::TCFServiceId CCFServiceBase::Id( ) const
       
    57     {
       
    58     FUNC_LOG;
       
    59     
       
    60     return iId;
       
    61     }
       
    62 
       
    63 // End of file