mmlibs/mmfw/src/Client/Video/mediaclientvideotrace.h
changeset 0 40261b775718
child 7 94dbab0a2133
equal deleted inserted replaced
-1:000000000000 0:40261b775718
       
     1 // Copyright (c) 2009 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 
       
    18 #ifndef MEDIACLIENTVIDEOTRACE_H_
       
    19 #define MEDIACLIENTVIDEOTRACE_H_
       
    20 
       
    21 #ifdef __ENABLE_MEDIA_CLIENT_VIDEO_TRACE__
       
    22 
       
    23 #include <e32debug.h>
       
    24 
       
    25 #define DEBUG_PRINT(a) RDebug::Print(a)
       
    26 #define DEBUG_PRINT2(a, b) RDebug::Print(a, b)
       
    27 
       
    28 #define DEBUG_PRINTF(a) RDebug::Printf(a)
       
    29 #define DEBUG_PRINTF2(a,b) RDebug::Printf(a,b)
       
    30 #define DEBUG_PRINTF3(a,b,c) RDebug::Printf(a,b,c)
       
    31 #define DEBUG_PRINTF4(a,b,c,d) RDebug::Printf(a,b,c,d)
       
    32 #define DEBUG_PRINTF5(a, b, c, d, e) RDebug::Printf(a,b,c,d,e)
       
    33 
       
    34 #else // __ENABLE_MEDIA_CLIENT_VIDEO_TRACE__
       
    35 
       
    36 #define DEBUG_PRINT(a)
       
    37 #define DEBUG_PRINT2(a, b)
       
    38 
       
    39 #define DEBUG_PRINTF(a)
       
    40 #define DEBUG_PRINTF2(a, b)
       
    41 #define DEBUG_PRINTF3(a, b, c)
       
    42 #define DEBUG_PRINTF4(a, b, c, d)
       
    43 #define DEBUG_PRINTF5(a, b, c, d, e)
       
    44 
       
    45 #endif // __ENABLE_MEDIA_CLIENT_VIDEO_TRACE__
       
    46 
       
    47 #endif // MEDIACLIENTVIDEOTRACE_H_