Commit Graph

10 Commits

Author SHA1 Message Date
Johannes Kapfhammer 080e3f1261 add functions to redirect input/output
those two multiply the output into a file:

void redirect_output(const char *filename);
void redirect_output(std::string const &filename)

those two read everything from a file:

redirect_input(const char *filename);
redirect_input(std::string const& filename);

both can be resetted using:

void reset_input();
reset_output();
2019-10-28 21:26:54 +01:00
Johannes Kapfhammer 9709a35f46 implement pair/tuple input 2019-10-10 14:28:35 +02:00
Johannes Kapfhammer 11b6ae9729 implement read() and print() functions for easier I/O 2019-10-10 14:05:52 +02:00
Johannes Kapfhammer 4b5a124aa1 print full function name 2019-10-07 14:29:45 +02:00
Johannes Kapfhammer 0aee7de352 fix emacs header in example.cpp 2019-10-07 13:18:15 +02:00
Johannes Kapfhammer 7fc2b533c7 fix constexpr under c++11 2019-10-06 21:55:47 +02:00
Johannes Kapfhammer cca34a1ad7 dbg: allow empty argument list 2019-10-06 21:17:37 +02:00
Johannes Kapfhammer daeda942ad use runtime function to pretty print type name 2019-10-06 20:56:37 +02:00
Johannes Kapfhammer 4d25fc25c4 fix pretty printer for recursive types 2019-10-06 18:37:37 +02:00
Johannes Kapfhammer 44aa8d060a initial commit 2019-10-06 16:45:29 +02:00