summaryrefslogtreecommitdiff
path: root/src/3rd_party-static/message_broker/include/MBDebugHelper.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rd_party-static/message_broker/include/MBDebugHelper.h')
-rw-r--r--src/3rd_party-static/message_broker/include/MBDebugHelper.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/3rd_party-static/message_broker/include/MBDebugHelper.h b/src/3rd_party-static/message_broker/include/MBDebugHelper.h
deleted file mode 100644
index fa835da3f0..0000000000
--- a/src/3rd_party-static/message_broker/include/MBDebugHelper.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/**
- * \file MBDebugHelper.h
- * \brief DebugHelper.
- * \author AKara
- */
-
-#ifndef MB_DEBUG_HELPER_H
-#define MB_DEBUG_HELPER_H
-
-#include <cstdio>
-
-/**
-* \def DEBUG_ON
-* \brief Switches on debug messages.
-*/
-//#define DEBUG_ON
-
-#ifdef DEBUG_ON
-/**
-* \def DBG_MSG
-* \brief Debug message output with file name and line number.
-* \param x formatted debug message.
-* \return printf construction.
-*/
-#define DBG_MSG(x) printf("%s:%d ", __FILE__, __LINE__);\
- printf x
-#else
-#define DBG_MSG(x)
-#endif
-
-/**
-* \def DBG_MSG_ERROR
-* \brief Debug ERROR message output with file name and line number.
-* \param x formatted debug message.
-* \return printf construction.
-*/
-#define DBG_MSG_ERROR(x) printf("ERROR!!! %s:%d ", __FILE__, __LINE__);\
- printf x
-
-#endif /*MB_DEBUG_HELPER_H*/