blob: d39084ebef23365468e0b83927c9eaf1dcd6155d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef MESON_SAMPLE2_H
#define MESON_SAMPLE2_H
#if !defined (MESON_TEST)
#error "MESON_TEST not defined."
#endif
#include <glib-object.h>
G_BEGIN_DECLS
#define MESON_TYPE_SAMPLE2 (meson_sample2_get_type())
G_DECLARE_FINAL_TYPE (MesonSample2, meson_sample2, MESON, SAMPLE2, GObject)
MesonSample2 *meson_sample2_new (void);
void meson_sample2_print_message (MesonSample2 *self);
G_END_DECLS
#endif /* MESON_SAMPLE2_H */
|