]> www.ginac.de Git - cln.git/blob - src/base/output/cl_prin_globals.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / base / output / cl_prin_globals.cc
1 // Global variables in CLN
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 CL_PROVIDE(cl_prin_globals)
7
8 // Specification.
9 #include "cln/output.h"
10
11
12 // Implementation.
13
14 namespace cln {
15
16 cl_ostream stdout = std::cout;
17 cl_ostream stderr = std::cerr;
18
19 cl_print_flags default_print_flags;
20 #if 0 // The default constructors already do this.
21 AT_INITIALIZATION(default_print_flags)
22 {
23         default_print_flags.rational_base = 10;
24         default_print_flags.rational_readably = cl_false;
25         default_print_flags.float_readably = cl_false;
26         default_print_flags.default_float_format = float_format_ffloat;
27         default_print_flags.complex_readably = cl_false;
28         default_print_flags.vector_syntax = vsyntax_pretty;
29         default_print_flags.univpoly_varname = "x";
30 }
31 #endif
32
33 }  // namespace cln
34
35 CL_PROVIDE_END(cl_prin_globals)