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