~ubuntu-branches/ubuntu/vivid/vala/vivid

« back to all changes in this revision

Viewing changes to vapi/libgsf-1.vapi

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2010-09-05 10:32:13 UTC
  • mfrom: (1.5.9 upstream) (28.1.2 experimental)
  • Revision ID: james.westby@ubuntu.com-20100905103213-8nn88erk20o4wgm3
Tags: 0.9.8-1
New upstream development release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
        }
55
55
        [CCode (cheader_filename = "gsf/gsf-infile-impl.h")]
56
56
        public class Infile : Gsf.Input {
 
57
                [CCode (has_construct_function = false)]
 
58
                protected Infile ();
57
59
                public unowned Gsf.Input child_by_aname (string[] names);
58
60
                public virtual unowned Gsf.Input? child_by_index (int i);
59
61
                public virtual unowned Gsf.Input? child_by_name (string name);
101
103
        [CCode (cheader_filename = "gsf/gsf-input-impl.h")]
102
104
        public class Input : GLib.Object {
103
105
                public Gsf.off_t cur_offset;
 
106
                [CCode (has_construct_function = false)]
 
107
                protected Input ();
104
108
                [NoWrapper]
105
109
                public virtual Gsf.Input Dup () throws GLib.Error;
106
110
                [NoWrapper]
209
213
        }
210
214
        [CCode (cheader_filename = "gsf/gsf-outfile-impl.h")]
211
215
        public class Outfile : Gsf.Output {
 
216
                [CCode (has_construct_function = false)]
 
217
                protected Outfile ();
212
218
                public Gsf.Output new_child (string name, bool is_dir);
213
219
                public Gsf.Output new_child_full (string name, bool is_dir, ...);
214
220
        }
264
270
                public weak string printf_buf;
265
271
                public int printf_buf_size;
266
272
                public weak GLib.Object wrapped_by;
 
273
                [CCode (has_construct_function = false)]
 
274
                protected Output ();
267
275
                [NoWrapper]
268
276
                public virtual bool Close ();
269
277
                [NoWrapper]
303
311
                public bool fields_on_line;
304
312
                public size_t quote_len;
305
313
                public size_t separator_len;
 
314
                [CCode (has_construct_function = false)]
 
315
                protected OutputCsv ();
306
316
                public bool write_eol ();
307
317
                public bool write_field (string field, size_t len);
308
318
                [NoAccessorMethod]
382
392
        }
383
393
        [CCode (cheader_filename = "gsf/gsf-structured-blob.h")]
384
394
        public class StructuredBlob : Gsf.Infile {
 
395
                [CCode (has_construct_function = false)]
 
396
                protected StructuredBlob ();
385
397
                public static Gsf.StructuredBlob read (Gsf.Input input);
386
398
                public bool write (Gsf.Outfile container);
387
399
        }