← Back to team overview

dolfin team mailing list archive

Re: fstream with dolfin

 

ofstream is in namespace std so std::ofstream should work.

/Anders


On Mon, Feb 27, 2006 at 12:01:13PM +0000, Alexander Jarosch wrote:
> Hi,
> 
> I would like to write some array data from a dolfin program to a normal 
> binary data file with fstream like:
> 
> #include <fstream>
> 
>  ofstream fout("visc.dat", ios::binary);
>  fout.write((char *)(&data), sizeof(data));
> 
> but it does not work. is it not within the namespace of dolfin? error is 
> that ofstream is not defined.
> 
> any suggestions how to do this easily?
> 
> thanks allot,
> 
> alex
> 
> _______________________________________________
> DOLFIN-dev mailing list
> DOLFIN-dev@xxxxxxxxxx
> http://www.fenics.org/cgi-bin/mailman/listinfo/dolfin-dev
> 

-- 
Anders Logg
Research Assistant Professor
Toyota Technological Institute at Chicago
http://www.tti-c.org/logg/



Follow ups

References