uiaccelerator_plat/alf_core_toolkit_api/tsrc/src/testuiaifblockshuitranscommandchild.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:  For test alf core toolkit api modules
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include "testuiaifblockshuitranscommandchild.h"
       
    20 
       
    21 TTestUiAifBlocksHuiTransCommandChild::TTestUiAifBlocksHuiTransCommandChild( TAny* aOwner, CHuiTransformation& aTransformation,
       
    22     THuiOp aOperation, TInt aStep ):THuiTransformationCommand( aOwner, aTransformation, aOperation, aStep )
       
    23     {
       
    24     // No implementation required
       
    25     }
       
    26 
       
    27 TTestUiAifBlocksHuiTransCommandChild::~TTestUiAifBlocksHuiTransCommandChild()
       
    28     {
       
    29     }
       
    30 
       
    31 TTestUiAifBlocksHuiTransCommandChild* TTestUiAifBlocksHuiTransCommandChild::NewLC( TAny* aOwner, CHuiTransformation& aTransformation,
       
    32     THuiOp aOperation, TInt aStep )
       
    33     {
       
    34     TTestUiAifBlocksHuiTransCommandChild* self = new (ELeave)TTestUiAifBlocksHuiTransCommandChild( aOwner, aTransformation,
       
    35         aOperation, aStep );
       
    36     CleanupStack::PushL(self);
       
    37     self->ConstructL();
       
    38     return self;
       
    39     }
       
    40 
       
    41 TTestUiAifBlocksHuiTransCommandChild* TTestUiAifBlocksHuiTransCommandChild::NewL( TAny* aOwner, CHuiTransformation& aTransformation,
       
    42     THuiOp aOperation, TInt aStep )
       
    43     {
       
    44     TTestUiAifBlocksHuiTransCommandChild* self=
       
    45         TTestUiAifBlocksHuiTransCommandChild::NewLC( aOwner, aTransformation,
       
    46             aOperation, aStep );
       
    47     CleanupStack::Pop(); // self;
       
    48     return self;
       
    49     }
       
    50 
       
    51 void TTestUiAifBlocksHuiTransCommandChild::ConstructL()
       
    52     {
       
    53 
       
    54     }
       
    55 
       
    56 void TTestUiAifBlocksHuiTransCommandChild::SetCommandExtension( const TUid& aExtensionUid, TAny** aExtensionParams )
       
    57     {
       
    58     THuiTransformationCommand::CommandExtension( aExtensionUid, aExtensionParams );
       
    59     }