1 /* Simple I/O stream. This is a utility module for tests, not a test. 2 * 3 * Copyright © 2008-2010 Red Hat, Inc. 4 * Copyright © 2011 Nokia Corporation 5 * 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.1 of the License, or (at your option) any later version. 10 * 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. 15 * 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/>. 18 * 19 * Author: David Zeuthen <davidz@redhat.com> 20 * Author: Simon McVittie <simon.mcvittie@collabora.co.uk> 21 */ 22 23 #ifndef TEST_IO_STREAM_H 24 #define TEST_IO_STREAM_H 25 26 #include <gio/gio.h> 27 28 typedef struct 29 { 30 GIOStream parent_instance; 31 GInputStream *input_stream; 32 GOutputStream *output_stream; 33 } TestIOStream; 34 35 typedef struct 36 { 37 GIOStreamClass parent_class; 38 } TestIOStreamClass; 39 40 GType test_io_stream_get_type (void) G_GNUC_CONST; 41 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), \ 46 TEST_TYPE_IO_STREAM)) 47 48 GIOStream *test_io_stream_new (GInputStream *input_stream, 49 GOutputStream *output_stream); 50 51 #endif /* guard */ 52