uiaccelerator_plat/alf_core_toolkit_api/tsrc/src/testuiaifblockshuigroupcommandchild.cpp
branchRCL_3
changeset 52 31fccae4f8a7
parent 22 7c5dd702d6d3
equal deleted inserted replaced
51:e5af45d51884 52: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 "testuiaifblockshuigroupcommandchild.h"
       
    20 
       
    21 TTestUiAifBlocksHuiGroupCommandChild::TTestUiAifBlocksHuiGroupCommandChild( CHuiControlGroup& aGroup, 
       
    22     THuiOp aOperation, CHuiDisplay* aDisplay ):THuiGroupCommand( aGroup, aOperation, aDisplay )
       
    23     {
       
    24     // No implementation required
       
    25     }
       
    26 
       
    27 TTestUiAifBlocksHuiGroupCommandChild::~TTestUiAifBlocksHuiGroupCommandChild()
       
    28     {
       
    29     }
       
    30 
       
    31 TTestUiAifBlocksHuiGroupCommandChild* TTestUiAifBlocksHuiGroupCommandChild::NewLC(
       
    32     CHuiControlGroup& aGroup, THuiOp aOperation, CHuiDisplay* aDisplay )
       
    33     {
       
    34     TTestUiAifBlocksHuiGroupCommandChild* self = new (ELeave)TTestUiAifBlocksHuiGroupCommandChild(
       
    35     aGroup, aOperation, aDisplay );
       
    36     CleanupStack::PushL(self);
       
    37     self->ConstructL();
       
    38     return self;
       
    39     }
       
    40 
       
    41 TTestUiAifBlocksHuiGroupCommandChild* TTestUiAifBlocksHuiGroupCommandChild::NewL(
       
    42     CHuiControlGroup& aGroup, THuiOp aOperation, CHuiDisplay* aDisplay )
       
    43     {
       
    44     TTestUiAifBlocksHuiGroupCommandChild* self= TTestUiAifBlocksHuiGroupCommandChild::NewLC(
       
    45         aGroup, aOperation, aDisplay);
       
    46     CleanupStack::Pop(); // self;
       
    47     return self;
       
    48     }
       
    49 
       
    50 void TTestUiAifBlocksHuiGroupCommandChild::ConstructL()
       
    51     {
       
    52 
       
    53     }
       
    54 void TTestUiAifBlocksHuiGroupCommandChild::SetCommandExtension(
       
    55         const TUid& aExtensionUid, TAny** aExtensionParams )
       
    56     {
       
    57     THuiGroupCommand::CommandExtension( aExtensionUid, aExtensionParams );
       
    58     }