blob: 2ec768e0eca96dbf4dec3843582e7c1f26b8a4b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef ASTAL_WP_PROFILE_H
#define ASTAL_WP_PROFILE_H
#include <glib-object.h>
G_BEGIN_DECLS
#define ASTAL_WP_TYPE_PROFILE (astal_wp_profile_get_type())
G_DECLARE_FINAL_TYPE(AstalWpProfile, astal_wp_profile, ASTAL_WP, PROFILE, GObject)
gint astal_wp_profile_get_index(AstalWpProfile *self);
const gchar *astal_wp_profile_get_description(AstalWpProfile *self);
G_END_DECLS
#endif // !ASTAL_WP_PROFILE_H
|