]> www.ginac.de Git - cln.git/blobdiff - src/complex/input/cl_N_from_string.cc
2004-01-01 Richard B. Kreckel <kreckel@ginac.de>
[cln.git] / src / complex / input / cl_N_from_string.cc
index 5e406eadd1019354b5198a78eec2d020325664d9..8b9de6fda006f18a01019cbce3c900810b4384c3 100644 (file)
@@ -4,19 +4,21 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_complex_class.h"
+#include "cln/complex_class.h"
 
 
 // Implementation.
 
-#include "cl_input.h"
-#include "cl_complex_io.h"
+#include "cln/input.h"
+#include "cln/complex_io.h"
+
+namespace cln {
 
 cl_read_flags cl_N_read_flags = {
        syntax_number,
        lsyntax_all,
        10,
-       { cl_float_format_ffloat, cl_float_format_lfloat_min, cl_true }
+       { float_format_ffloat, float_format_lfloat_min, cl_true }
 };
 
 cl_N::cl_N (const char * string)
@@ -24,3 +26,5 @@ cl_N::cl_N (const char * string)
        pointer = as_cl_private_thing(
                read_complex(cl_N_read_flags,string,NULL,NULL));
 }
+
+}  // namespace cln