diff -r 000000000000 -r bde4ae8d615e os/persistentdata/featuremgmt/featuremgr/test/helper/test_plugins/inc/trace.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/os/persistentdata/featuremgmt/featuremgr/test/helper/test_plugins/inc/trace.h Fri Jun 15 03:10:57 2012 +0200 @@ -0,0 +1,74 @@ +/* +* Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* +*/ + + + +#ifndef TRACE_H +#define TRACE_H + +// INCLUDES +#include + +// PC-LINT OPTIONS +// Removes null statement not in line by itself warnings from +// COMPONENT_TRACE macros +//lint -esym(960,54) + +// Removes "area too small" pointer cast warnings. +//lint -e826 + + + +// CONSTANTS +// MACROS +#ifdef _DEBUG + + #ifdef TEST_PLUGIN_TRACE_FLAG + + #define TEST_PLUGIN_TRACE( a ) RDebug::Print a + + #else // #ifdef TEST_PLUGIN_TRACE_FLAG + + #define TEST_PLUGIN_TRACE( a ) + + #endif //#ifdef TEST_PLUGIN_TRACE_FLAG + + + #ifdef TEST_PLUGIN_API_TRACE_FLAG + + #define TEST_PLUGIN_API_TRACE( a ) RDebug::Print a + + #else //#ifdef TEST_PLUGIN_API_TRACE_FLAG + + #define TEST_PLUGIN_API_TRACE( a ) + + #endif //#ifdef TEST_PLUGIN_API_TRACE_FLAG + +#else // #ifdef _DEBUG + + #define TEST_PLUGIN_TRACE( a ) + #define TEST_PLUGIN_API_TRACE( a ) + +#endif //#ifdef _DEBUG + + +// DATA TYPES +// FUNCTION PROTOTYPES +// FORWARD DECLARATIONS + +#endif //#ifndef TRACE_H +