startupservices/Startup/syserrcmd/tsrc/syserrcmdtestsstub/src/ssmcustomcommandenvstub.cpp
branchRCL_3
changeset 20 c2c61fdca848
parent 0 2e3d3ce01487
equal deleted inserted replaced
19:924385140d98 20:c2c61fdca848
       
     1 /*
       
     2  * Copyright (c) 2009 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:
       
    15  *
       
    16  */
       
    17 
       
    18 // SYSTEM INCLUDES
       
    19 
       
    20 // USER INCLUDES
       
    21 #include <ssm/ssmcustomcommand.h>
       
    22 
       
    23 // ======== MEMBER FUNCTIONS ========
       
    24 
       
    25 // ---------------------------------------------------------------------------
       
    26 // C++ constructor.
       
    27 // ---------------------------------------------------------------------------
       
    28 //
       
    29 CSsmCustomCommandEnv::CSsmCustomCommandEnv( RFs& aRfs )
       
    30 :iFs( aRfs )
       
    31     {
       
    32 
       
    33     }
       
    34 
       
    35 
       
    36 // ---------------------------------------------------------------------------
       
    37 // Symbian two phased constructor.
       
    38 // ---------------------------------------------------------------------------
       
    39 //
       
    40 CSsmCustomCommandEnv* CSsmCustomCommandEnv::NewL( RFs& aRfs )
       
    41     {
       
    42     CSsmCustomCommandEnv* self = new ( ELeave ) CSsmCustomCommandEnv( aRfs );
       
    43     return self;
       
    44     }
       
    45 
       
    46 
       
    47 // ---------------------------------------------------------------------------
       
    48 // C++ destructor.
       
    49 // ---------------------------------------------------------------------------
       
    50 //
       
    51 CSsmCustomCommandEnv::~CSsmCustomCommandEnv()
       
    52     {
       
    53 
       
    54     }
       
    55 // ---------------------------------------------------------------------------
       
    56 // CSsmCustomCommandEnv::Rfs
       
    57 // ---------------------------------------------------------------------------
       
    58 //
       
    59 const RFs& CSsmCustomCommandEnv::Rfs() const
       
    60     {
       
    61     return iFs;
       
    62     }
       
    63 // End of file