uiaccelerator_plat/alf_core_toolkit_api/tsrc/src/testuiaifblockshuimarkercommandchild.cpp
branchRCL_3
changeset 20 31fccae4f8a7
parent 10 7c5dd702d6d3
equal deleted inserted replaced
19:e5af45d51884 20:31fccae4f8a7
       
     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:  test api of alf_core_toolkit
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include "testuiaifblockshuimarkercommandchild.h"
       
    20 
       
    21 TTestUiAifBlocksHuiMarkerCommandChild::TTestUiAifBlocksHuiMarkerCommandChild( TInt Id )
       
    22     :THuiMarkerCommand( Id )
       
    23     {
       
    24     // No implementation required
       
    25     }
       
    26 
       
    27 TTestUiAifBlocksHuiMarkerCommandChild::~TTestUiAifBlocksHuiMarkerCommandChild()
       
    28     {
       
    29     }
       
    30 
       
    31 TTestUiAifBlocksHuiMarkerCommandChild* TTestUiAifBlocksHuiMarkerCommandChild::NewLC( TInt Id )
       
    32     {
       
    33     TTestUiAifBlocksHuiMarkerCommandChild* self = new (ELeave)TTestUiAifBlocksHuiMarkerCommandChild( Id );
       
    34     CleanupStack::PushL(self);
       
    35     self->ConstructL();
       
    36     return self;
       
    37     }
       
    38 
       
    39 TTestUiAifBlocksHuiMarkerCommandChild* TTestUiAifBlocksHuiMarkerCommandChild::NewL( TInt Id )
       
    40     {
       
    41     TTestUiAifBlocksHuiMarkerCommandChild* self=
       
    42             TTestUiAifBlocksHuiMarkerCommandChild::NewLC( Id );
       
    43     CleanupStack::Pop(); // self;
       
    44     return self;
       
    45     }
       
    46 
       
    47 void TTestUiAifBlocksHuiMarkerCommandChild::ConstructL()
       
    48     {
       
    49 
       
    50     }
       
    51 
       
    52 void TTestUiAifBlocksHuiMarkerCommandChild::SetCommandExtension( const TUid& aExtensionUid, TAny** aExtensionParams )
       
    53     {
       
    54     THuiMarkerCommand::CommandExtension( aExtensionUid, aExtensionParams );
       
    55     
       
    56     }