aboutsummaryrefslogtreecommitdiff
path: root/test cases/frameworks/7 gnome/gir/meson-sample.h
blob: cd2bbc6a60d122f2fcb2d2a5847cbb7be94361ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef MESON_SAMPLE_H
#define MESON_SAMPLE_H

#if !defined (MESON_TEST)
#error "MESON_TEST not defined."
#endif

#include <glib-object.h>

G_BEGIN_DECLS

#define MESON_TYPE_SAMPLE (meson_sample_get_type())

G_DECLARE_FINAL_TYPE (MesonSample, meson_sample, MESON, SAMPLE, GObject)

MesonSample *meson_sample_new           (const gchar *msg);
void         meson_sample_print_message (MesonSample *self);

G_END_DECLS

#endif /* MESON_SAMPLE_H */