mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 11:46:25 +01:00
git-svn-id: svn://localhost/ardour2/branches/3.0@5306 d708f5d6-7413-0410-9779-e7cbd77b26cf
58 lines
2.5 KiB
Text
58 lines
2.5 KiB
Text
// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
/* Copyright (C) 2008 The gtkmm Development Team
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the Free
|
|
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#include <giomm/filteroutputstream.h>
|
|
#include <glibmm/object.h>
|
|
|
|
_DEFS(giomm,gio)
|
|
_PINCLUDE(giomm/private/filteroutputstream_p.h)
|
|
|
|
namespace Gio
|
|
{
|
|
|
|
/** The buffered output stream implements FilterOutputStream and provides for buffered writes.
|
|
* By default, BufferedOutputStream's buffer size is set at 4 kilobytes, but you
|
|
* can specify this to the constructor.
|
|
*
|
|
* To get the size of a buffer within a buffered input stream, use get_buffer_size().
|
|
* To change the size of a buffered output stream's buffer, use set_buffer_size().
|
|
* Note that the buffer's size cannot be reduced below the size of the data within the buffer.
|
|
*
|
|
* @ingroup Streams
|
|
*
|
|
* @newin2p16
|
|
*/
|
|
class BufferedOutputStream : public Gio::FilterOutputStream
|
|
{
|
|
_CLASS_GOBJECT(BufferedOutputStream, GBufferedOutputStream, G_BUFFERED_OUTPUT_STREAM, Gio::FilterOutputStream, GFilterOutputStream)
|
|
protected:
|
|
_WRAP_CTOR(BufferedOutputStream(const Glib::RefPtr<OutputStream>& base_stream), g_buffered_output_stream_new)
|
|
_WRAP_CTOR(BufferedOutputStream(const Glib::RefPtr<OutputStream>& base_stream, gsize size), g_buffered_output_stream_new_sized)
|
|
public:
|
|
_WRAP_CREATE(const Glib::RefPtr<OutputStream>& base_stream)
|
|
static Glib::RefPtr<BufferedOutputStream> create_sized(const Glib::RefPtr<OutputStream>& base_stream, gsize size);
|
|
|
|
_WRAP_METHOD(gsize get_buffer_size() const, g_buffered_output_stream_get_buffer_size)
|
|
_WRAP_METHOD(void set_buffer_size(gsize size), g_buffered_output_stream_set_buffer_size)
|
|
|
|
_WRAP_METHOD(void set_auto_grow(bool auto_grow=true), g_buffered_output_stream_set_auto_grow)
|
|
_WRAP_METHOD(bool get_auto_grow() const, g_buffered_output_stream_get_auto_grow)
|
|
};
|
|
|
|
} // namespace Gio
|