Fix crash on startup if an LV2 plugin has a bad .ttl file.
[ardour.git] / libs / glibmm2 / gio / src / filteroutputstream.hg
1 // -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2
3 /* Copyright (C) 2008 The gtkmm Development Team
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the Free
17  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19
20 #include <giomm/outputstream.h>
21 #include <glibmm/object.h>
22
23 _DEFS(giomm,gio)
24 _PINCLUDE(giomm/private/outputstream_p.h)
25
26 namespace Gio
27 {
28
29 //TODO: Proper documentation:
30
31 /** Filter Output Stream.
32  *
33  * @ingroup Streams
34  *
35  * @newin2p16
36  */
37 class FilterOutputStream : public Gio::OutputStream
38 {
39   _CLASS_GOBJECT(FilterOutputStream, GFilterOutputStream, G_FILTER_OUTPUT_STREAM, Gio::OutputStream, GOutputStream)
40 public:
41   _WRAP_METHOD(Glib::RefPtr<OutputStream> get_base_stream(),
42                g_filter_output_stream_get_base_stream,
43                refreturn)
44
45   _WRAP_METHOD(Glib::RefPtr<const OutputStream> get_base_stream() const,
46                g_filter_output_stream_get_base_stream,
47                refreturn, constversion)
48
49   _WRAP_PROPERTY("base-stream", Glib::RefPtr<InputStream>)
50 };
51
52 } // namespace Gio