21 #define __USE_IOSTREAM__
25 #include <iostream.hpp>
26 #include <iomanip.hpp>
27 #include <fstream.hpp>
28 #define __USE_IOSTREAM__
37 return (ostream&) ostr;
44 ostream& s = (ostream&)_s;
45 #ifdef __USE_IOSTREAM__
46 std::streamsize new_w = s.width();
47 std::streamsize new_p = s.precision();
48 #if !defined(__cplusplus)
49 long new_form = s.flags();
51 ios::fmtflags new_form = s.flags();
53 char new_fill = s.fill();
57 #ifdef __USE_IOSTREAM__
77 s <<
" " << (*this)[i];
88 return (istream&)istr;
95 istream& s=(istream&)_s;
98 for (
int i=mmin; i <= mmax; i++)
#define ADUNCONST(type, obj)
Creates a shallow copy of obj that is not CONST.
void read_from(const istream &s)
Reads all the elements from istream _s.
Array of integers(int) with indexes from index_min to indexmax.
Author: David Fournier Copyright (c) 2008-2012 Regents of the University of California.
istream & operator>>(const istream &input, const d3_array &arr3)
Read values from input stream into arr3.
ostream & operator<<(const ostream &_s, preshowpoint p)
Description not yet available.
void write_on(const ostream &s) const
Writes all the elements to the ostream _s.