]> www.ginac.de Git - cln.git/blob - src/vector/cl_SV_io.h
Avoid compiler warning about ignored 'flatten' attribute directive.
[cln.git] / src / vector / cl_SV_io.h
1 // I/O of vectors.
2
3 #ifndef _CL_SV_IO_H
4 #define _CL_SV_IO_H
5
6 #include "cln/number_io.h"
7 #include "cln/SV.h"
8 #include "cln/SV_number.h"
9
10 namespace cln {
11
12 // Gibt einen Vektor aus.
13 // print_vector(stream,flags,fun,z);
14 // > stream: Stream
15 // > flags: Flags
16 // > fun: Ausgabefunktion für die einzelnen Elemente
17 // > vector: Vektor
18 extern void print_vector (std::ostream& stream, const cl_print_flags& flags, void (* fun) (std::ostream&, const cl_print_flags&, const cl_number&), const cl_SV_number& vector);
19
20 }  // namespace cln
21
22 #endif /* _CL_SV_IO_H */