Closed azmfaridee closed 11 years ago
Some macros like
#define PRINT_VAR(X) (cout << #X << " -> " << X << endl)
are pretty difficult to convert to MothurOut code as as the macro uses hash token to convert a variable's names to a string, we need to find alternate ways to implement this
The mothur.h header has several toString functions. Can you use one of those? Something like: m->mothurOut(toString(X)); m->mothurOutEndLine();
The file macros.h has a lot of debugging macros defined, they are defined for standard cout, we need to make them work with mothur's MothurOut class