OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
newmatio.h
Go to the documentation of this file.
1 //$$ newmatio.h definition file for matrix package input/output
2 
3 // Copyright (C) 1991,2,3,4: R B Davies
4 
5 #ifndef NEWMATIO_LIB
6 #define NEWMATIO_LIB 0
7 
8 #ifndef WANT_STREAM
9 #define WANT_STREAM
10 #endif
11 #include <ossim/matrix/newmat.h>
12 #include <iostream>
13 #ifdef use_namespace
14 namespace NEWMAT {
15 #endif
16 
17 
18 
19 /**************************** input/output *****************************/
20 
22 
24 
25 
26 /* Use in some old versions of G++ without complete iomanipulators
27 
28 class Omanip_precision
29 {
30  int x;
31 public:
32  Omanip_precision(int i) : x(i) {}
33  friend ostream& operator<<(ostream& os, Omanip_precision i);
34 };
35 
36 
37 Omanip_precision setprecision(int i);
38 
39 class Omanip_width
40 {
41  int x;
42 public:
43  Omanip_width(int i) : x(i) {}
44  friend ostream& operator<<(ostream& os, Omanip_width i);
45 };
46 
47 Omanip_width setw(int i);
48 
49 */
50 
51 #ifdef use_namespace
52 }
53 #endif
54 
55 
56 
57 #endif
58 
59 // body file: newmat9.cpp
60 
#define OSSIM_DLL
OSSIM_DLL std::ostream & operator<<(std::ostream &, const BaseMatrix &)
Definition: newmat9.cpp:31
std::basic_ostream< char > ostream
Base class for char output streams.
Definition: ossimIosFwd.h:23