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