tracesrv/tracecompiler/internal/TraceCompiler_Test/TraceCompilerTester/inl/BigNumbers.inl
changeset 62 1c2bb2fc7c87
equal deleted inserted replaced
56:aa2539c91954 62:1c2bb2fc7c87
       
     1 /*
       
     2 * Copyright (c) 2010 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 __TEST_INL__
       
    19 #define __TEST_INL__
       
    20 
       
    21 #include "OstTraceDefinitions.h"
       
    22 #ifdef OST_TRACE_COMPILER_IN_USE
       
    23 #include "BigNumbersTraces.h"
       
    24 #endif
       
    25 
       
    26 inline TUint32 GetBigValue1000()
       
    27     {
       
    28     TUint32 value = 1000;
       
    29     OstTrace1(INCLUDED_NON_SOURCE_FILE_TEST, NON_SOURCE_FILE_TRACE1, "Inline function GetBigValue1000 return value: %d", value);
       
    30     return value;
       
    31     }
       
    32     
       
    33 inline TUint32 GetBigValue2000()
       
    34     {
       
    35     TUint32 value = 2000;
       
    36     OstTrace1(INCLUDED_NON_SOURCE_FILE_TEST, NON_SOURCE_FILE_TRACE2, "Inline function GetBigValue1000 return value: %d", value);
       
    37     return value;
       
    38     }
       
    39 #endif