The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
385 B
17 lines
385 B
#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 */
|
|
|