1 /* Simple I/O stream. This is a utility module for tests, not a test.
3 * Copyright © 2008-2010 Red Hat, Inc.
4 * Copyright © 2011 Nokia Corporation
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General
17 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 * Author: David Zeuthen <davidz@redhat.com>
20 * Author: Simon McVittie <simon.mcvittie@collabora.co.uk>
23 #ifndef TEST_IO_STREAM_H
24 #define TEST_IO_STREAM_H
30 GIOStream parent_instance
;
31 GInputStream
*input_stream
;
32 GOutputStream
*output_stream
;
37 GIOStreamClass parent_class
;
40 GType
test_io_stream_get_type (void) G_GNUC_CONST
;
42 #define TEST_TYPE_IO_STREAM (test_io_stream_get_type ())
43 #define TEST_IO_STREAM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), \
44 TEST_TYPE_IO_STREAM, TestIOStream))
45 #define TEST_IS_IO_STREAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), \
48 GIOStream
*test_io_stream_new (GInputStream
*input_stream
,
49 GOutputStream
*output_stream
);