summaryrefslogtreecommitdiffstats
path: root/src/kile/kiledebug.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kile/kiledebug.h')
-rw-r--r--src/kile/kiledebug.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/kile/kiledebug.h b/src/kile/kiledebug.h
new file mode 100644
index 0000000..b388aca
--- /dev/null
+++ b/src/kile/kiledebug.h
@@ -0,0 +1,21 @@
+/***************************************************************************
+* begin : 26.09.2007
+* copyright : (C) Thomas Braun
+* email : braun _aeht_ physik.fu-berlin.de
+****************************************************************************/
+
+/***************************************************************************
+* *
+* This program is free software; you can redistribute it and/or modify *
+* it under the terms of the GNU General Public License as published by *
+* the Free Software Foundation; either version 2 of the License, or *
+* (at your option) any later version. *
+* *
+***************************************************************************/
+#include <kdebug.h>
+
+#ifdef NDEBUG
+ #define KILE_DEBUG(A) if (true); else kdDebug()
+#else
+ #define KILE_DEBUG(A) kdDebug(A)
+#endif