Quantum++
v1.0.0-beta3
C++11 quantum computing library
|
Preprocessor macros. More...
Go to the source code of this file.
Macros | |
#define | PRINT(x) std::cout << (x) |
#define | PRINTLN(x) std::cout << (x) << std::endl |
#define | ERROR(x) std::cerr << (x) |
#define | ERRORLN(x) std::cerr << (x) << std::endl |
Preprocessor macros.
#define ERROR | ( | x | ) | std::cerr << (x) |
Prints an error message to std::cerr
#define ERRORLN | ( | x | ) | std::cerr << (x) << std::endl |
Prints an error message to std::cerr and adds a new line
#define PRINT | ( | x | ) | std::cout << (x) |
Prints a message
#define PRINTLN | ( | x | ) | std::cout << (x) << std::endl |
Prints a message and adds a new line