// cl_N (const char *) constructor. // General includes. #include "cl_sysdep.h" // Specification. #include "cl_complex_class.h" // Implementation. #include "cl_input.h" #include "cl_complex_io.h" cl_read_flags cl_N_read_flags = { syntax_number, lsyntax_all, 10, { cl_float_format_ffloat, cl_float_format_lfloat_min, cl_true } }; cl_N::cl_N (const char * string) { pointer = as_cl_private_thing( read_complex(cl_N_read_flags,string,NULL,NULL)); }