contextframework/cfw/src/cfservices/cfcontextsourcecommandparameter.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:  CCFContextSourceCommandParameter class implementation.
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 // SYSTEM INCLUDES
       
    20 #include <s32strm.h>
       
    21 #include <cfcontextsourcecommandparameter.h>
       
    22 
       
    23 // USER INCLUDES
       
    24 #include "cfcontextsourcecommandparameterimpl.h"
       
    25 
       
    26 // ======== MEMBER FUNCTIONS ========
       
    27 
       
    28 // ---------------------------------------------------------------------------
       
    29 // Symbian two phased constructor.
       
    30 // ---------------------------------------------------------------------------
       
    31 //
       
    32 EXPORT_C CCFContextSourceCommandParameter*
       
    33 CCFContextSourceCommandParameter::NewL()
       
    34     {
       
    35     return CCFContextSourceCommandParameterImpl::NewL();
       
    36     }
       
    37 
       
    38 // ---------------------------------------------------------------------------
       
    39 // Symbian two phased constructor.
       
    40 // Leaves pointer in the cleanup stack.
       
    41 // ---------------------------------------------------------------------------
       
    42 //
       
    43 EXPORT_C CCFContextSourceCommandParameter*
       
    44 CCFContextSourceCommandParameter::NewLC()
       
    45     {
       
    46     return CCFContextSourceCommandParameterImpl::NewLC();
       
    47     }
       
    48 
       
    49 // ---------------------------------------------------------------------------
       
    50 // C++ destructor.
       
    51 // ---------------------------------------------------------------------------
       
    52 //
       
    53 CCFContextSourceCommandParameter::~CCFContextSourceCommandParameter()
       
    54     {
       
    55     }
       
    56 
       
    57 // End of file