~ubuntu-branches/ubuntu/utopic/glib2.0/utopic

« back to all changes in this revision

Viewing changes to docs/reference/gobject/gobject.cI

Tags: upstream-2.12.12
ImportĀ upstreamĀ versionĀ 2.12.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This is a hack to work around a limitation of gtkdoc-scan: it insists
 
3
 * on putting () behind every symbol listed in gobject.types. Thus we
 
4
 * can't put G_TYPE_OBJECT there, but have to sneak a g_object_get_type()
 
5
 * function in the generated source via an #include.
 
6
 */
 
7
GType 
 
8
g_object_get_type (void)
 
9
{
 
10
  return G_TYPE_OBJECT;
 
11
}