#ifndef __FSTREAM_HEADER
#define __FSTREAM_HEADER 

/*
This file either includes fstream_stdimpl or fstream_impl 
based upon whether __USE_STD_IOSTREAM is defined.
*/

#include <compnent.hxx>
#ifdef __USE_STD_IOSTREAM
#include <fstream_stdimpl.hxx>
#else
#include <fstream_impl.hxx>
#endif

#endif
