contextframework/cfw/src/cfservices/CFContextObject.cpp
changeset 0 2e3d3ce01487
equal deleted inserted replaced
-1:000000000000 0:2e3d3ce01487
       
     1 /*
       
     2 * Copyright (c) 2002-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:  CCFContextObject class description.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include "cfcontextobject.h"
       
    20 #include "CFContextObjectImpl.h"
       
    21 #include "cftrace.h"
       
    22 
       
    23 // MEMBER FUNCTIONS
       
    24 
       
    25 EXPORT_C CCFContextObject* CCFContextObject::NewL()
       
    26     {
       
    27     FUNC_LOG;
       
    28     
       
    29     return CCFContextObjectImpl::NewL();
       
    30     }
       
    31     
       
    32 EXPORT_C CCFContextObject* CCFContextObject::NewLC()
       
    33     {
       
    34     FUNC_LOG;
       
    35     
       
    36     return CCFContextObjectImpl::NewLC();
       
    37     }
       
    38 
       
    39 EXPORT_C CCFContextObject* CCFContextObject::NewL( const TDesC& aSource,
       
    40     const TDesC& aType,
       
    41     const TDesC& aValue )
       
    42     {
       
    43     FUNC_LOG;
       
    44     
       
    45     return CCFContextObjectImpl::NewL( aSource, aType, aValue );
       
    46     }
       
    47     
       
    48 EXPORT_C CCFContextObject* CCFContextObject::NewLC( const TDesC& aSource,
       
    49     const TDesC& aType,
       
    50     const TDesC& aValue)
       
    51     {
       
    52     FUNC_LOG;
       
    53     
       
    54     return CCFContextObjectImpl::NewLC( aSource, aType, aValue );
       
    55     }