CORC Project
CANOpen Robot Controller Software Documentation
DebugMacro.h
Go to the documentation of this file.
1 
13 #ifndef DEBUG_H_INCLUDED
14 #define DEBUG_H_INCLUDED
15 #include <iostream>
16 #define NOROBOT
17 #define DEBUG
18 #ifdef DEBUG
19 #define DEBUG_OUT(x) (std::cout << x << std::endl);
20 #else
21 #define DEBUG_OUT(x) \
22  do { \
23  } while (0);
24 #endif
25 #endif