summaryrefslogtreecommitdiff
path: root/tests/scanner/drawable.h
blob: bebab51c9a6e30e5b30c1a6073843d6d4853b88d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef __TEST_DRAWABLE_H__
#define __TEST_DRAWABLE_H__

#include <glib-object.h>

typedef struct _TestDrawable TestDrawable;
typedef struct _TestDrawableClass TestDrawableClass;

struct _TestDrawable
{
  GObject parent_instance;
};

struct _TestDrawableClass
{
  GObjectClass parent_class;
};

GType test_drawable_get_type (void) G_GNUC_CONST;

void test_drawable_do_foo (TestDrawable *drawable, int x);

#endif /* __TEST_DRAWABLE_H__ */