Alex exoskeleton
ALEX SoftwareDocumentation
DebugMacro.h
Go to the documentation of this file.
1 
5 #ifndef DEBUG_H_INCLUDED
6 #define DEBUG_H_INCLUDED
7 #include <iostream>
8 #define NOROBOT
9 #define DEBUG
10 #ifdef DEBUG
11 #define DEBUG_OUT(x) (std::cout << x << std::endl);
12 #else
13 #define DEBUG_OUT(x) \
14  do { \
15  } while (0);
16 #endif
17 #endif