Skip to content
Snippets Groups Projects
Commit 9eac5872 authored by Martin Beseda's avatar Martin Beseda
Browse files

ENH: Added macro R_ALIGN to align output columns

parent 245681e2
No related branches found
No related tags found
No related merge requests found
......@@ -6,18 +6,24 @@
#define PROJECT_MESSAGE_H
#include <cassert>
#include <iomanip>
#define COL_WIDTH 20
#define R_ALIGN std::setw(COL_WIDTH) << std::right
#define COUT_INFO(inp) std::cout << std::flush << "INFO: " << inp << std::flush
#ifdef L4N_DEBUG
#define COUT_DEBUG(inp) assert(std::cerr << std::flush << "DEBUG: " << inp << std::flush)
#define COUT_DEBUG(inp) assert(std::cerr << std::flush << std::fixed << std::setprecision(6) << "DEBUG: " << inp << std::flush)
#define WRITE_TO_OFS_DEBUG(ofs, msg) { if(ofs && ofs->is_open())\
*ofs << "DEBUG: " << msg;\
*ofs << std::fixed << std::setprecision(6) << "DEBUG: " << msg;\
}
#else
#define COUT_DEBUG(inp)
#define WRITE_TO_OFS_DEBUG(ofs, msg)
#endif // L4N_DEBUG
#endif //PROJECT_MESSAGE_H
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment