1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright © 2008 Christian Kellner, Samuel Cormier-Iijima
4 * Copyright © 2009 Codethink Limited
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.
11 * See the included COPYING file for more information.
13 * Authors: Christian Kellner <gicmo@gnome.org>
14 * Samuel Cormier-Iijima <sciyoshi@gmail.com>
15 * Ryan Lortie <desrt@desrt.ca>
18 #ifndef __G_SOCKET_INPUT_STREAM_H__
19 #define __G_SOCKET_INPUT_STREAM_H__
21 #include <gio/ginputstream.h>
22 #include <gio/gsocket.h>
26 #define G_TYPE_SOCKET_INPUT_STREAM (_g_socket_input_stream_get_type ())
27 #define G_SOCKET_INPUT_STREAM(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
28 G_TYPE_SOCKET_INPUT_STREAM, GSocketInputStream))
29 #define G_SOCKET_INPUT_STREAM_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \
30 G_TYPE_SOCKET_INPUT_STREAM, GSocketInputStreamClass))
31 #define G_IS_SOCKET_INPUT_STREAM(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
32 G_TYPE_SOCKET_INPUT_STREAM))
33 #define G_IS_SOCKET_INPUT_STREAM_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \
34 G_TYPE_SOCKET_INPUT_STREAM))
35 #define G_SOCKET_INPUT_STREAM_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \
36 G_TYPE_SOCKET_INPUT_STREAM, GSocketInputStreamClass))
38 typedef struct _GSocketInputStreamPrivate GSocketInputStreamPrivate
;
39 typedef struct _GSocketInputStreamClass GSocketInputStreamClass
;
40 typedef struct _GSocketInputStream GSocketInputStream
;
42 struct _GSocketInputStreamClass
44 GInputStreamClass parent_class
;
47 struct _GSocketInputStream
49 GInputStream parent_instance
;
50 GSocketInputStreamPrivate
*priv
;
53 GType
_g_socket_input_stream_get_type (void) G_GNUC_CONST
;
54 GSocketInputStream
* _g_socket_input_stream_new (GSocket
*socket
);
58 #endif /* __G_SOCKET_INPUT_STREAM_H___ */