(root)/
glib-2.79.0/
gio/
tests/
test-io-stream.h
       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   * SPDX-License-Identifier: LGPL-2.1-or-later
       7   *
       8   * This library is free software; you can redistribute it and/or
       9   * modify it under the terms of the GNU Lesser General Public
      10   * License as published by the Free Software Foundation; either
      11   * version 2.1 of the License, or (at your option) any later version.
      12   *
      13   * This library is distributed in the hope that it will be useful,
      14   * but WITHOUT ANY WARRANTY; without even the implied warranty of
      15   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
      16   * Lesser General Public License for more details.
      17   *
      18   * You should have received a copy of the GNU Lesser General
      19   * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
      20   *
      21   * Author: David Zeuthen <davidz@redhat.com>
      22   * Author: Simon McVittie <simon.mcvittie@collabora.co.uk>
      23   */
      24  
      25  #ifndef TEST_IO_STREAM_H
      26  #define TEST_IO_STREAM_H
      27  
      28  #include <gio/gio.h>
      29  
      30  typedef struct
      31  {
      32    GIOStream parent_instance;
      33    GInputStream *input_stream;
      34    GOutputStream *output_stream;
      35  } TestIOStream;
      36  
      37  typedef struct
      38  {
      39    GIOStreamClass parent_class;
      40  } TestIOStreamClass;
      41  
      42  GType test_io_stream_get_type (void) G_GNUC_CONST;
      43  
      44  #define TEST_TYPE_IO_STREAM  (test_io_stream_get_type ())
      45  #define TEST_IO_STREAM(o)    (G_TYPE_CHECK_INSTANCE_CAST ((o), \
      46                                TEST_TYPE_IO_STREAM, TestIOStream))
      47  #define TEST_IS_IO_STREAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), \
      48                                                            TEST_TYPE_IO_STREAM))
      49  
      50  GIOStream *test_io_stream_new (GInputStream  *input_stream,
      51                                 GOutputStream *output_stream);
      52  
      53  #endif /* guard */