Add some more cases to the app-id unit tests
[glib.git] / gio / tests / test-io-stream.h
blob2c58ba867fa91ea92c2bbd997f885c55073f6af4
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
26 #include <gio/gio.h>
28 typedef struct
30 GIOStream parent_instance;
31 GInputStream *input_stream;
32 GOutputStream *output_stream;
33 } TestIOStream;
35 typedef struct
37 GIOStreamClass parent_class;
38 } TestIOStreamClass;
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), \
46 TEST_TYPE_IO_STREAM))
48 GIOStream *test_io_stream_new (GInputStream *input_stream,
49 GOutputStream *output_stream);
51 #endif /* guard */