ximpfw/tsrc/tsrcutils/testcaseutils/prfwtestwaithelper.cpp
changeset 0 e6b17d312c8b
equal deleted inserted replaced
-1:000000000000 0:e6b17d312c8b
       
     1 /*
       
     2 * Copyright (c) 2009 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:  XIMP Framework TestGeneralWaiter 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #include <e32std.h>
       
    21 
       
    22 #include "prfwtestwaithelper.h"
       
    23 
       
    24 // ======== LOCAL FUNCTIONS ========
       
    25 
       
    26 
       
    27 // ======== MEMBER FUNCTIONS ========
       
    28 
       
    29 
       
    30 // ---------------------------------------------------------------------------
       
    31 // ?description_if_needed
       
    32 // ---------------------------------------------------------------------------
       
    33 //
       
    34 EXPORT_C CXIMPTestWaitHelper* CXIMPTestWaitHelper::NewL()
       
    35     {
       
    36     CXIMPTestWaitHelper* self = new ( ELeave ) CXIMPTestWaitHelper;
       
    37     CleanupStack::PushL( self );
       
    38     self->ConstructL();
       
    39     CleanupStack::Pop( self );
       
    40     return self;
       
    41     }
       
    42 
       
    43 void CXIMPTestWaitHelper::ConstructL()
       
    44     {
       
    45     }
       
    46     
       
    47 CXIMPTestWaitHelper::~CXIMPTestWaitHelper()
       
    48     {
       
    49     }
       
    50         
       
    51 EXPORT_C void CXIMPTestWaitHelper::WaitForL( TInt aSeconds )
       
    52     {
       
    53     User::After( aSeconds * 1000000 );
       
    54     }
       
    55     
       
    56 // End of file