mmlibs/mmfw/tsrc/mmfintegrationtest/mmfmediaclienttestplugin/src/mmfmediaclientextdisplaytesttrace.h
changeset 4 9d4397b300d1
equal deleted inserted replaced
1:fcaf4606ba4e 4:9d4397b300d1
       
     1 // Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // 
       
    15 //
       
    16 
       
    17 #ifndef MMFMEDIACLIENTEXTDISPLAYTESTTRACE_H_
       
    18 #define MMFMEDIACLIENTEXTDISPLAYTESTTRACE_H_
       
    19 
       
    20 #ifdef _DEBUG
       
    21 
       
    22 #include <e32debug.h>
       
    23 
       
    24 #define DEBUG_PRINTF(a) RDebug::Printf(a)
       
    25 #define DEBUG_PRINTF2(a,b) RDebug::Printf(a,b)
       
    26 #define DEBUG_PRINTF3(a,b,c) RDebug::Printf(a,b,c)
       
    27 #define DEBUG_PRINTF4(a,b,c,d) RDebug::Printf(a,b,c,d)
       
    28 #define DEBUG_PRINTF5(a, b, c, d, e) RDebug::Printf(a,b,c,d,e)
       
    29 
       
    30 #else // _DEBUG
       
    31 
       
    32 #define DEBUG_PRINTF(a)
       
    33 #define DEBUG_PRINTF2(a, b)
       
    34 #define DEBUG_PRINTF3(a, b, c)
       
    35 #define DEBUG_PRINTF4(a, b, c, d)
       
    36 #define DEBUG_PRINTF5(a, b, c, d, e)
       
    37 
       
    38 #endif // _DEBUG
       
    39 
       
    40 #endif // MMFMEDIACLIENTEXTDISPLAYTESTTRACE_H_