~ubuntu-branches/ubuntu/trusty/glibmm2.4/trusty

« back to all changes in this revision

Viewing changes to gio/src/datainputstream.hg

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2012-09-28 12:28:45 UTC
  • mfrom: (1.2.77)
  • Revision ID: package-import@ubuntu.com-20120928122845-6h032jivploan2aa
Tags: 2.33.13-0ubuntu2
* debian/rules:
  - Bump shlib version

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
  _WRAP_METHOD(void set_newline_type(DataStreamNewlineType type), g_data_input_stream_set_newline_type)
51
51
  _WRAP_METHOD(DataStreamNewlineType get_newline_type() const, g_data_input_stream_get_newline_type)
52
52
 
53
 
  _WRAP_METHOD(guchar read_byte(const Glib::RefPtr<Cancellable>& cancellable), g_data_input_stream_read_byte, errthrow)
54
 
 
55
 
  /** non-cancellable version of read_byte()
56
 
   */
57
 
  guchar read_byte();
58
 
 
59
 
  _WRAP_METHOD(gint16 read_int16(const Glib::RefPtr<Cancellable>& cancellable), g_data_input_stream_read_int16, errthrow)
60
 
  /** non-cancellable version of read_int16()
61
 
   */
62
 
  gint16 read_int16();
63
 
 
64
 
  _WRAP_METHOD(guint16 read_uint16(const Glib::RefPtr<Cancellable>& cancellable), g_data_input_stream_read_uint16, errthrow)
65
 
 
66
 
//TODO: Real documentation:
67
 
  /** non-cancellable version of read_uint16()
68
 
   */
69
 
  guint16 read_uint16();
70
 
 
71
 
  _WRAP_METHOD(gint32 read_int32(const Glib::RefPtr<Cancellable>& cancellable), g_data_input_stream_read_int32, errthrow)
72
 
 
73
 
  /** non-cancellable version of read_int32()
74
 
   */
75
 
  gint32 read_int32();
76
 
 
77
 
  _WRAP_METHOD(guint32 read_uint32(const Glib::RefPtr<Cancellable>& cancellable), g_data_input_stream_read_uint32, errthrow)
78
 
  /** non-cancellable version of read_uint32()
79
 
   */
80
 
  guint32 read_uint32();
81
 
 
82
 
  _WRAP_METHOD(gint64 read_int64(const Glib::RefPtr<Cancellable>& cancellable), g_data_input_stream_read_int64, errthrow)
83
 
 
84
 
  /** non-cancellable version of read_int64()
85
 
   */
86
 
  gint64 read_int64();
87
 
 
88
 
  _WRAP_METHOD(guint64 read_uint64(const Glib::RefPtr<Cancellable>& cancellable), g_data_input_stream_read_uint64, errthrow)
89
 
 
90
 
  /** non-cancellable version of read_uint64()
91
 
   */
92
 
  guint64 read_uint64();
93
 
 
 
53
  _WRAP_METHOD(guchar read_byte(const Glib::RefPtr<Cancellable>& cancellable{?}), g_data_input_stream_read_byte, errthrow)
 
54
 
 
55
  _WRAP_METHOD(gint16 read_int16(const Glib::RefPtr<Cancellable>& cancellable{?}), g_data_input_stream_read_int16, errthrow)
 
56
 
 
57
  _WRAP_METHOD(guint16 read_uint16(const Glib::RefPtr<Cancellable>& cancellable{?}), g_data_input_stream_read_uint16, errthrow)
 
58
 
 
59
  _WRAP_METHOD(gint32 read_int32(const Glib::RefPtr<Cancellable>& cancellable{?}), g_data_input_stream_read_int32, errthrow)
 
60
 
 
61
  _WRAP_METHOD(guint32 read_uint32(const Glib::RefPtr<Cancellable>& cancellable{?}), g_data_input_stream_read_uint32, errthrow)
 
62
 
 
63
  _WRAP_METHOD(gint64 read_int64(const Glib::RefPtr<Cancellable>& cancellable{?}), g_data_input_stream_read_int64, errthrow)
 
64
 
 
65
  _WRAP_METHOD(guint64 read_uint64(const Glib::RefPtr<Cancellable>& cancellable{?}), g_data_input_stream_read_uint64, errthrow)
94
66
 
95
67
  //Note that we return a bool because we can't use std::string to distinguish between an empty string and a NULL.
96
68