/usr/include/newmat/newmatio.h is in libnewmat10-dev 1.10.4-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | //$$ newmatio.h definition file for matrix package input/output
// Copyright (C) 1991,2,3,4: R B Davies
#ifndef NEWMATIO_LIB
#define NEWMATIO_LIB 0
#ifndef WANT_STREAM
#define WANT_STREAM
#endif
#include "newmat.h"
#ifdef use_namespace
namespace NEWMAT {
#endif
/**************************** input/output *****************************/
ostream& operator<<(ostream&, const BaseMatrix&);
ostream& operator<<(ostream&, const GeneralMatrix&);
/* Use in some old versions of G++ without complete iomanipulators
class Omanip_precision
{
int x;
public:
Omanip_precision(int i) : x(i) {}
friend ostream& operator<<(ostream& os, Omanip_precision i);
};
Omanip_precision setprecision(int i);
class Omanip_width
{
int x;
public:
Omanip_width(int i) : x(i) {}
friend ostream& operator<<(ostream& os, Omanip_width i);
};
Omanip_width setw(int i);
*/
#ifdef use_namespace
}
#endif
#endif
// body file: newmat9.cpp
|