#ifndef __IOMANIP_HEADER
#define __IOMANIP_HEADER

/*
This file either includes iomanip_stdimpl or iomanip_impl 
based upon whether __USE_STD_IOSTREAM is defined.
*/

#include <compnent.hxx>
#ifdef __USE_STD_IOSTREAM
#include <iomanip_stdimpl.hxx>
#else
#include <iomanip_impl.hxx>
#endif

#endif
