blob: 9d34a082420ba6784e7ddfab7750354b0a79835c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef MESON_SUB_SAMPLE_H
#define MESON_SUB_SAMPLE_H
#include <glib-object.h>
#include <meson-sample.h>
G_BEGIN_DECLS
#define MESON_TYPE_SUB_SAMPLE (meson_sub_sample_get_type())
G_DECLARE_FINAL_TYPE (MesonSubSample, meson_sub_sample, MESON, SUB_SAMPLE, MesonSample)
MesonSubSample *meson_sub_sample_new (const gchar *msg);
G_END_DECLS
#endif /* MESON_SUB_SAMPLE_H */
|