idlefw/tsrc/framework/mt_aifw/AiFwTestDefines.h
branchRCL_3
changeset 110 2c7f27287390
equal deleted inserted replaced
101:9e077f9a342c 110:2c7f27287390
       
     1 /*
       
     2 * Copyright (c) 2002-2005 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 
       
    19 #ifndef INC_AIFWTESTDEFINES_H
       
    20 #define INC_AIFWTESTDEFINES_H
       
    21 
       
    22 // ========== INCLUDE FILES ===================================================
       
    23 
       
    24 #include "aicontentmodel.h"
       
    25 #include "AiFwTestContentPlugin.h"
       
    26 #include "AiFwTestControllerPlugin.h"
       
    27 
       
    28 // ========== CONSTANTS =======================================================
       
    29 
       
    30 using namespace AiTestUiController;
       
    31 
       
    32 const TInt KImplementationUidAiTestContentPlugin = 0x10170010;
       
    33 const TInt KImplementationUidAiFwTestUiController = 0x10170011;
       
    34 const TInt KImplementationUidAiFwTestUiController2 = 0x10170016;
       
    35 const TInt KImplementationUidAiTestContentPlugin2 = 0x10170012;
       
    36 const TInt KImplementationUidAiTestContentPlugin3 = 0x10170013;
       
    37 const TInt KImplementationUidAiTestContentPlugin4 = 0x10170014;
       
    38 const TInt KImplementationUidAiTestContentPlugin5 = 0x10170015;
       
    39 const TInt KImplementationUidAiTestContentPlugin6 = 0x10170017;
       
    40 const TInt KImplementationUidAiTestContentPlugin7 = 0x10170018;
       
    41 const TInt KImplementationUidAiTestContentPlugin8 = 0x10170019;
       
    42 const TInt KImplementationUidAiTestContentPlugin9 = 0x10170020;
       
    43 
       
    44 _LIT( KTestEvent, "AiFwTestPlugin/test_event" );
       
    45 
       
    46 // ========== MACROS ==========================================================
       
    47 
       
    48 // ========== DATA TYPES ======================================================
       
    49 
       
    50 struct TAiTestTLSStorage
       
    51     {
       
    52     CAiFwTestContentPlugin* iContentPlugin;
       
    53     CAiFwTestControllerPlugin* iControllerPlugin;
       
    54     
       
    55     TAiTestTLSStorage();
       
    56     static TAiTestTLSStorage* CreateInstanceL();
       
    57     static void DestroyInstance();
       
    58     };
       
    59 
       
    60 // ========== FUNCTION PROTOTYPES =============================================
       
    61 
       
    62 // ========== FORWARD DECLARATIONS ============================================
       
    63 
       
    64 // ========== CLASS DECLARATION ===============================================
       
    65 
       
    66 #endif
       
    67 
       
    68 // End of File.