$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Gennadiy Rozental (gennadiy.rozental_at_[hidden])
Date: 2005-07-11 18:06:53
> Hi,
>
> I'm trying to pick good names for the fundamental iostreams components
> streambuf_facade and stream_facade:
>
> template<typename Device ... >
> class streambuf_facade : public basic_streambuf< > {
> // Peform i/o using an instance of Device
> };
>
> template<typename Device ... >
> class stream_facade : public basic_[i][o]stream< > {
> // Peform i/o using an instance of Device
> };
>
> Here are the candidates:
>
> 1. streambuf_facade / stream_facade
If this components indeed follow Facade pattern this would be my choice of
name.
Gennadiy