~ubuntu-branches/ubuntu/precise/glib2.0/precise-updates

« back to all changes in this revision

Viewing changes to docs/reference/gobject/html/howto-gobject-methods.html

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2012-01-17 11:16:09 UTC
  • mfrom: (1.59.36)
  • Revision ID: package-import@ubuntu.com-20120117111609-l6hqg8snni7gh1a4
Tags: 2.31.10-0ubuntu1
* New upstream version:
  GResource:
  - A new facility to allow linking data files into binaries and make 
    them available as resources
  - Resources are compiled using glib-compile-resources
  - GIO supports resource:/// uris to access resources
* debian/libglib2.0-0.install.in: install glib-compile-resources there
* debian/libglib2.0-0.symbols: new version update

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
    </p>
46
46
<div class="sect2">
47
47
<div class="titlepage"><div><div><h3 class="title">
48
 
<a name="id666305"></a>Non-virtual public methods</h3></div></div></div>
 
48
<a name="id687020"></a>Non-virtual public methods</h3></div></div></div>
49
49
<p>
50
50
        These are the simplest: you want to provide a simple method which
51
51
        can act on your object. All you need to do is to provide a function
71
71
</div>
72
72
<div class="sect2">
73
73
<div class="titlepage"><div><div><h3 class="title">
74
 
<a name="id666330"></a>Virtual public methods</h3></div></div></div>
 
74
<a name="id687045"></a>Virtual public methods</h3></div></div></div>
75
75
<p>
76
76
        This is the preferred way to create polymorphic GObjects. All you
77
77
        need to do is to define the common method and its class function in
169
169
</div>
170
170
<div class="sect2">
171
171
<div class="titlepage"><div><div><h3 class="title">
172
 
<a name="id666414"></a>Virtual private Methods</h3></div></div></div>
 
172
<a name="id687129"></a>Virtual private Methods</h3></div></div></div>
173
173
<p>
174
174
        These are very similar to Virtual Public methods. They just don't
175
175
        have a public function to call the function directly. The header