/*
 *  fred_sstream -- BabyTrans ( Babylon Translator front-end for GTK )
 *
 *  Copyright (C) 1999  Frederic Jolliton -- <fjolliton@fnac.net>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 */

#ifndef FRED_SSTREAM
#define FRED_SSTREAM

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#ifdef HAVE_STRINGSTREAM
# include <sstream>
#else
#include <iostream>
#include <strstream>

#ifdef HONOR_STD
namespace std { // huh.. is it allowed ?
#endif

class ostringstream
{
    mutable std::ostrstream  oss ;
public:
                        ostringstream() { }
    string              str() const {
        return string( oss.str() , oss.pcount() ) ;
    }
    template< typename T >
    ostringstream&      operator<<( const T& t ) {
        oss << t ;
        return *this ;
    }
} ;

inline
ostream&
operator<<( std::ostream& os , const std::ostringstream& oss )
{
    os << oss.str() ;
    return os ;
}

#ifdef HONOR_STD
} // std
#endif

#endif // HAVE_STRINGTREAN

#endif /* FRED_SSTREAM */
