fstream.h

  • Thread starter Thread starter JoeZ
  • Start date Start date
J

JoeZ

Hi all,

It seems that VC7 does not have fstream.h, I am wondering if any one
had any experience to convert a VisualStudio6 project to .NET and
fstream.h is included some where.

TIA,

JoeZ
 
JoeZ said:
Hi all,

It seems that VC7 does not have fstream.h, I am wondering if any one
had any experience to convert a VisualStudio6 project to .NET and
fstream.h is included some where.

TIA,

JoeZ
Should'nt you be using <fstream> from stl? You can just do
#include <fstream>
using namespace std;
 
Back
Top