diff -r 000000000000 -r 71ca22bcf22a mmserv/radioutility/radioserver/Inc/RadioDebug.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mmserv/radioutility/radioserver/Inc/RadioDebug.h Tue Feb 02 01:08:46 2010 +0200 @@ -0,0 +1,45 @@ +/* +* Copyright (c) 2002-2004 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: Radio server debug macros. +* +*/ + + + +#ifndef RADIODEBUG_H +#define RADIODEBUG_H + +// INCLUDES +#include + +// DATA TYPES + +/** +* Debug +*/ +#ifdef _DEBUG + #define RADIO_RDEBUG(X) RDebug::Print(X) + #define RADIO_RDEBUG_INT(X,Y) RDebug::Print(X,Y) + #define RADIO_RDEBUG_INT2(X,Y,Z) RDebug::Print(X,Y,Z) + #define RADIO_RDEBUG_INT3(X,Y,Z,Q) RDebug::Print(X,Y,Z,Q) +#else + #define RADIO_RDEBUG(X) + #define RADIO_RDEBUG_INT(X,Y) + #define RADIO_RDEBUG_INT2(X,Y,Z) + #define RADIO_RDEBUG_INT3(X,Y,Z,Q) +#endif + +#endif // RADIODEBUG_H + +// End of File