mds_plat/metadata_engine_api/tsrc/inc/MdETestScripterAO.h
changeset 0 c53acadfccc6
equal deleted inserted replaced
-1:000000000000 0:c53acadfccc6
       
     1 /*
       
     2 * Copyright (c) 2002-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: 
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef CMDETESTSCRIPTERAO_H
       
    19 #define CMDETESTSCRIPTERAO_H
       
    20 
       
    21 #include <e32base.h>
       
    22 #include <StifTestEventInterface.h>
       
    23 #include <TestScripterInternal.h>
       
    24 
       
    25 class CMdETestScripter;
       
    26 
       
    27 NONSHARABLE_CLASS(CMdETestScripterAO) : public CActive
       
    28     {
       
    29 public:
       
    30 
       
    31     ~CMdETestScripterAO();
       
    32 
       
    33     static CMdETestScripterAO* NewL();
       
    34 
       
    35     static CMdETestScripterAO* NewLC();
       
    36 
       
    37 public:
       
    38     void Start( CMdETestScripter* aScripter, TEventIf aEvent );
       
    39 
       
    40 private:
       
    41     CMdETestScripterAO();
       
    42 
       
    43     void ConstructL();
       
    44 
       
    45 private:
       
    46     void RunL();
       
    47     void DoCancel();
       
    48     TInt RunError(TInt aError);
       
    49 
       
    50 private:
       
    51 	CMdETestScripter* iScripter;
       
    52     TEventIf iEvent;
       
    53     };
       
    54 
       
    55 #endif // CMDETESTSCRIPTERAO_H