docs: Move the GDataInputStream SECTION

Not much to move.

Helps: #3037
This commit is contained in:
Matthias Clasen 2023-09-26 21:11:34 -04:00 committed by Philip Withnall
parent 081cc5af25
commit 8371b893a2
2 changed files with 4 additions and 14 deletions

View File

@ -33,15 +33,11 @@
#include <string.h> #include <string.h>
/** /**
* SECTION:gdatainputstream * GDataInputStream:
* @short_description: Data Input Stream
* @include: gio/gio.h
* @see_also: #GInputStream
*
* Data input stream implements #GInputStream and includes functions for
* reading structured data directly from a binary input stream.
* *
**/ * Data input stream implements [iface@Gio.InputStream] and includes functions
* for reading structured data directly from a binary input stream.
*/
struct _GDataInputStreamPrivate { struct _GDataInputStreamPrivate {
GDataStreamByteOrder byte_order; GDataStreamByteOrder byte_order;

View File

@ -38,12 +38,6 @@ G_BEGIN_DECLS
#define G_IS_DATA_INPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_DATA_INPUT_STREAM)) #define G_IS_DATA_INPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_DATA_INPUT_STREAM))
#define G_DATA_INPUT_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_DATA_INPUT_STREAM, GDataInputStreamClass)) #define G_DATA_INPUT_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_DATA_INPUT_STREAM, GDataInputStreamClass))
/**
* GDataInputStream:
*
* An implementation of #GBufferedInputStream that allows for high-level
* data manipulation of arbitrary data (including binary operations).
**/
typedef struct _GDataInputStreamClass GDataInputStreamClass; typedef struct _GDataInputStreamClass GDataInputStreamClass;
typedef struct _GDataInputStreamPrivate GDataInputStreamPrivate; typedef struct _GDataInputStreamPrivate GDataInputStreamPrivate;