Michele De Stefano's C++ Utilities
|
Contains macros for echoing programming instructions. More...
#include <iostream>
Go to the source code of this file.
Macros | |
#define | MDS_UTILS_ECHO(a) |
Echoes an istruction to stdout and then executes it. More... | |
#define | MDS_UTILS_ECHO_RESULT(a) std::cout << #a << " = " << a << std::endl |
Echoes an instruction that produces a result and executes it, printing the result. More... | |
Contains macros for echoing programming instructions.
Definition in file echo.hpp.
#define MDS_UTILS_ECHO | ( | a | ) |
#define MDS_UTILS_ECHO_RESULT | ( | a | ) | std::cout << #a << " = " << a << std::endl |
Echoes an instruction that produces a result and executes it, printing the result.
a | The inistruction to be echoed. |