blob: d0ab29e6f5c1a97fd2215b7efa509154cd81e547 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef MESON_SAMPLE_H
#define MESON_SAMPLE_H
#include <@HEADER@>
G_BEGIN_DECLS
#define MESON_TYPE_SAMPLE (meson_sample_get_type())
G_DECLARE_DERIVABLE_TYPE (MesonSample, meson_sample, MESON, SAMPLE, GObject)
struct _MesonSampleClass {
GObjectClass parent_class;
};
MesonSample *meson_sample_new (const gchar *msg);
void meson_sample_print_message (MesonSample *self);
G_END_DECLS
#endif /* MESON_SAMPLE_H */
|