source: ntrip/trunk/BNC/newmat/newmatio.h@ 10792

Last change on this file since 10792 was 10791, checked in by mervart, 2 weeks ago

BNC Multifrequency and PPPAR Client (initial version)

File size: 1023 bytes
RevLine 
[9434]1/// \ingroup newmat
2///@{
3
4/// \file newmatio.h
5/// Definition file for matrix package output.
6
7// Copyright (C) 1991,2,3,4: R B Davies
8
9#ifndef NEWMATIO_LIB
10#define NEWMATIO_LIB 0
11
12#ifndef WANT_STREAM
13#define WANT_STREAM
14#endif
15
16#include "newmat.h"
[10791]17#include <iostream>
[9434]18
[10791]19#ifdef use_namespace
20namespace NEWMAT {
[9434]21#endif
22
[10791]23
24
[9434]25// **************************** input/output *****************************/
26
[10791]27std::ostream& operator<<(std::ostream&, const BaseMatrix&);
[9434]28
[10791]29std::ostream& operator<<(std::ostream&, const GeneralMatrix&);
[9434]30
31
32/* Use in some old versions of G++ without complete iomanipulators
33
34class Omanip_precision
35{
36 int x;
37public:
38 Omanip_precision(int i) : x(i) {}
39 friend ostream& operator<<(ostream& os, Omanip_precision i);
40};
41
42
43Omanip_precision setprecision(int i);
44
45class Omanip_width
46{
47 int x;
48public:
49 Omanip_width(int i) : x(i) {}
50 friend ostream& operator<<(ostream& os, Omanip_width i);
51};
52
53Omanip_width setw(int i);
54
55*/
56
57#ifdef use_namespace
58}
59#endif
60
61
62
63#endif
64
65// body file: newmat9.cpp
66
67
68///@}
Note: See TracBrowser for help on using the repository browser.