i want to read all the records of a file *( first till last )* using
xstream, please help me with VC++ codes.iam a begginer to VC++.
thanks in advance!
+----------------------------------------------------------------+
| Attachment filename: tomakali.jpg |
|Download attachment: http://www.codecomments.com/attachment.php?postid=1440237 |
+----------------------------------------------------------------+
adebaene@club-internet.fr - 29 Mar 2005 08:43 GMT
> i want to read all the records of a file *( first till last )* using
> xstream, please help me with VC++ codes.iam a begginer to VC++.
xstream is an internal implementation detail of the Dinkumware STL : it
is not intended to be used directly. See std::ifstream to read textual
data from a text, or std::filebuf to read binary data (I can't tell
which one you need, since I don't kow what you call a "record" in a
file).
Arnaud
MVP - VC