49
|
1 |
/*
|
|
2 |
* Copyright (c) 2004-2006 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: Provides a comfort noise generator class
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
#ifndef MCCMSRPSOURCESINKLOGS_H
|
|
20 |
#define MCCMSRPSOURCESINKLOGS_H
|
|
21 |
|
|
22 |
#include "mcclogs.h"
|
|
23 |
|
|
24 |
_LIT(KMsrpSourceSink, "Mcc/MsrpSourceSink:");
|
|
25 |
|
|
26 |
#ifdef _DEBUG
|
|
27 |
#define __MCC_MSRPSOURCESINK_CONTROLL
|
|
28 |
#endif // end of _DEBUG
|
|
29 |
|
|
30 |
#ifdef __MCC_MSRPSOURCESINK_CONTROLL
|
|
31 |
#define __MSRPSOURCESINK_CONTROLL( a ) \
|
|
32 |
{ _LIT( KStr, a ); TMccLog::Print( KMsrpSourceSink, KStr ); }
|
|
33 |
#define __MSRPSOURCESINK_CONTROLL_INT1( a, b ) \
|
|
34 |
{ _LIT( KStr, a ); TMccLog::Print( KMsrpSourceSink, KStr, b ); }
|
|
35 |
#else
|
|
36 |
#define __MSRPSOURCESINK_CONTROLL( a )
|
|
37 |
#define __MSRPSOURCESINK_CONTROLL_INT1( a, b )
|
|
38 |
#endif // end of ifdef __MCC_MSRPSOURCESINK_CONTROLL
|
|
39 |
|
|
40 |
#endif // End of define MCCMSRPSOURCESINKLOGS_H
|
|
41 |
|
|
42 |
// end of file |