~ubuntu-branches/debian/squeeze/glib2.0/squeeze

« back to all changes in this revision

Viewing changes to gio/gfilteroutputstream.h

  • Committer: Bazaar Package Importer
  • Author(s): Gustavo Noronha Silva
  • Date: 2009-02-15 13:00:43 UTC
  • mfrom: (1.3.1 upstream) (69.1.10 intrepid)
  • Revision ID: james.westby@ubuntu.com-20090215130043-q47fbt3owmt42m2f
Tags: 2.18.4-2
* Release to unstable
* debian/rules:
- bump SHVER, since we are already forcing a 2.18.0 dependecy on the
  symbols introduced in the development versions
* debian/control.in:
- added Homepage and Vcs-* control fields

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* GIO - GLib Input, Output and Streaming Library
2
 
 * 
 
2
 *
3
3
 * Copyright (C) 2006-2007 Red Hat, Inc.
4
4
 *
5
5
 * This library is free software; you can redistribute it and/or
17
17
 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18
18
 * Boston, MA 02111-1307, USA.
19
19
 *
20
 
 * Author: Christian Kellner <gicmo@gnome.org> 
 
20
 * Author: Christian Kellner <gicmo@gnome.org>
21
21
 */
22
22
 
23
23
#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
27
27
#ifndef __G_FILTER_OUTPUT_STREAM_H__
28
28
#define __G_FILTER_OUTPUT_STREAM_H__
29
29
 
30
 
#include <glib-object.h>
31
30
#include <gio/goutputstream.h>
32
31
 
33
32
G_BEGIN_DECLS
41
40
 
42
41
/**
43
42
 * GFilterOutputStream:
44
 
 * 
 
43
 *
45
44
 * A base class for all output streams that work on an underlying stream.
46
45
 **/
47
 
typedef struct _GFilterOutputStream         GFilterOutputStream;
48
46
typedef struct _GFilterOutputStreamClass    GFilterOutputStreamClass;
49
47
typedef struct _GFilterOutputStreamPrivate  GFilterOutputStreamPrivate;
50
48
 
58
56
 
59
57
struct _GFilterOutputStreamClass
60
58
{
61
 
 GOutputStreamClass parent_class;
 
59
  GOutputStreamClass parent_class;
62
60
 
63
61
  /*< private >*/
64
62
  /* Padding for future expansion */
68
66
};
69
67
 
70
68
 
71
 
GType           g_filter_output_stream_get_type  (void) G_GNUC_CONST;
72
 
GOutputStream  *g_filter_output_stream_get_base_stream (GFilterOutputStream *stream);
 
69
GType           g_filter_output_stream_get_type        (void) G_GNUC_CONST;
 
70
GOutputStream * g_filter_output_stream_get_base_stream (GFilterOutputStream *stream);
 
71
 
73
72
G_END_DECLS
74
73
 
75
74
#endif /* __G_FILTER_OUTPUT_STREAM_H__ */