summaryrefslogtreecommitdiff
path: root/DebugEngineMacro.h
blob: 9a96957a00ec8a4f1fa260dc44339b5d24c051db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/** \file DebugEngineMacro.h
\brief Define the macro for the debug 
\author alpha_one_x86
\version 0.3
\date 2010
\licence GPL3, see the file COPYING */

#ifndef DEBUGENGINEMACRO_H
#define DEBUGENGINEMACRO_H

/// \brief Macro for the debug log
#ifdef ULTRACOPIER_DEBUG
	#include "DebugEngine.h"
	#if defined (__FILE__) && defined (__LINE__)
		#define ULTRACOPIER_DEBUGCONSOLE(a,b) DebugEngine::addDebugInformationStatic(a,__func__,b,__FILE__,__LINE__)
	#else
		#define ULTRACOPIER_DEBUGCONSOLE(a,b) DebugEngine::addDebugInformationStatic(a,__func__,b)
	#endif
#else // ULTRACOPIER_DEBUG
	#define ULTRACOPIER_DEBUGCONSOLE(a,b) void()
#endif // ULTRACOPIER_DEBUG

#endif // DEBUGENGINEMACRO_H