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