home *** CD-ROM | disk | FTP | other *** search
- /*[]------------------------------------------------------------[]*/
- /*| |*/
- /*| fsctr4.cpp |*/
- /*| |*/
- /*| Class fstreambase |*/
- /*| fstreambase::fstreambase( int, char *, int ) |*/
- /*| |*/
- /*[]------------------------------------------------------------[]*/
-
- /*
- * C/C++ Run Time Library - Version 5.0
- *
- * Copyright (c) 1990, 1992 by Borland International
- * All Rights Reserved.
- *
- */
-
- #include <ioconfig.h>
- #include "filesys.h"
- #include <fstream.h>
-
- fstreambase::fstreambase(int f, char* b, int len)
- : buf(f, b, len)
- {
- ios::init(&buf);
- }
-
-
-