~ubuntu-branches/ubuntu/utopic/gtk-doc/utopic

« back to all changes in this revision

Viewing changes to tests/empty/src/tester.h

  • Committer: Package Import Robot
  • Author(s): Jackson Doak
  • Date: 2014-02-19 10:06:14 UTC
  • mfrom: (1.2.16) (4.1.14 sid)
  • Revision ID: package-import@ubuntu.com-20140219100614-6nl7giysk333qsi5
Tags: 1.20-1ubuntu1
* Merge from debian. Remaining changes:
  - debian/control.in: Drop optional highlight dependency, which is in
    universe.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#define GTKDOC_TESTER_H
3
3
 
4
4
#include <glib.h>
 
5
#include <glib-object.h>
5
6
 
6
7
 
7
8
void test (gint a);
8
9
 
 
10
// test for https://bugzilla.gnome.org/show_bug.cgi?id=705633
 
11
typedef struct _GtkDocTestIf GtkDocTestIf;
 
12
typedef struct _GtkDocTestIfInterface GtkDocTestIfInterface;
 
13
 
 
14
struct _GtkDocTestIfInterface {
 
15
    GTypeInterface parent;
 
16
 
 
17
};
 
18
 
9
19
#endif // GTKDOC_TESTER_H
10
20