max@0
|
1 // Copyright (C) 2008-2011 NICTA (www.nicta.com.au)
|
max@0
|
2 // Copyright (C) 2008-2011 Conrad Sanderson
|
max@0
|
3 //
|
max@0
|
4 // This file is part of the Armadillo C++ library.
|
max@0
|
5 // It is provided without any warranty of fitness
|
max@0
|
6 // for any purpose. You can redistribute this file
|
max@0
|
7 // and/or modify it under the terms of the GNU
|
max@0
|
8 // Lesser General Public License (LGPL) as published
|
max@0
|
9 // by the Free Software Foundation, either version 3
|
max@0
|
10 // of the License or (at your option) any later version.
|
max@0
|
11 // (see http://www.opensource.org/licenses for more info)
|
max@0
|
12
|
max@0
|
13
|
max@0
|
14 //! \addtogroup arma_ostream
|
max@0
|
15 //! @{
|
max@0
|
16
|
max@0
|
17
|
max@0
|
18
|
max@0
|
19 class arma_ostream_state
|
max@0
|
20 {
|
max@0
|
21 private:
|
max@0
|
22
|
max@0
|
23 const ios::fmtflags orig_flags;
|
max@0
|
24 const std::streamsize orig_precision;
|
max@0
|
25 const std::streamsize orig_width;
|
max@0
|
26 const char orig_fill;
|
max@0
|
27
|
max@0
|
28
|
max@0
|
29 public:
|
max@0
|
30
|
max@0
|
31 inline arma_ostream_state(const std::ostream& o);
|
max@0
|
32
|
max@0
|
33 inline void restore(std::ostream& o) const;
|
max@0
|
34 };
|
max@0
|
35
|
max@0
|
36
|
max@0
|
37
|
max@0
|
38 class arma_ostream
|
max@0
|
39 {
|
max@0
|
40 public:
|
max@0
|
41
|
max@0
|
42 template<typename eT> inline static std::streamsize modify_stream(std::ostream& o, const eT* data, const uword n_elem);
|
max@0
|
43 template<typename T> inline static std::streamsize modify_stream(std::ostream& o, const std::complex<T>* data, const uword n_elem);
|
max@0
|
44
|
max@0
|
45 template<typename eT> inline static void print_elem_zero(std::ostream& o);
|
max@0
|
46
|
max@0
|
47 template<typename eT> arma_inline static void print_elem(std::ostream& o, const eT& x);
|
max@0
|
48 template<typename T> inline static void print_elem(std::ostream& o, const std::complex<T>& x);
|
max@0
|
49
|
max@0
|
50 template<typename eT> inline static void print(std::ostream& o, const Mat<eT>& m, const bool modify);
|
max@0
|
51 template<typename eT> inline static void print(std::ostream& o, const Cube<eT>& m, const bool modify);
|
max@0
|
52
|
max@0
|
53 template<typename oT> inline static void print(std::ostream& o, const field<oT>& m);
|
max@0
|
54 template<typename oT> inline static void print(std::ostream& o, const subview_field<oT>& m);
|
max@0
|
55 };
|
max@0
|
56
|
max@0
|
57
|
max@0
|
58
|
max@0
|
59 //! @}
|