synthberry
Software MIDI synthesizer for the Raspberry Pi.
 All Classes Functions
log.h
1 #ifndef LOG_H
2 #define LOG_H
3 
4 #include <iostream>
5 
6 #ifdef DEBUG
7 #define LOG(...) std::cout << __VA_ARGS__ << std::endl
8 #else
9 #define LOG(...)
10 #endif
11 
12 #endif // LOG_H