home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 May
/
Pcwk5b98.iso
/
Borland
/
Cplus45
/
BC45
/
STREAMS.PAK
/
STREAM0.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1995-08-29
|
631b
|
33 lines
// ---------------------------------------------------------------------------
// Copyright (C) 1994 Borland International
// stream0.cpp
// Must link with strmpnt.cpp
// ---------------------------------------------------------------------------
#include "strmpnt.h"
const char* FileName = "stream.dat";
void WriteStream(void)
{
ofpstream ofp(FileName);
T2DPoint p2(3,5);
ofp << &p2;
}
void ReadStream(void)
{
ifpstream ifp(FileName);
T2DPoint* p2 = 0;
ifp >> p2;
if( p2 )
p2->Draw();
}
int main()
{
WriteStream();
ReadStream();
return 0;
}