blob: 5ccce023d60b7b0e159ec5880b3113cea0b96aa1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#ifndef LIBADWAITAMM_PRIVATE_ACTION_ROW_P_HPP
#define LIBADWAITAMM_PRIVATE_ACTION_ROW_P_HPP
#include <sigc++/signal.h>
#include <glibmm/class.h>
#include <glibmm/objectbase.h>
#include <glib-object.h>
using AdwActionRow = struct _AdwActionRow;
using AdwActionRowClass = struct _AdwActionRowClass;
using AdwPreferencesRowClass = struct _AdwPreferencesRowClass;
namespace Adwaita
{
struct ActionRow_Class : Glib::Class
{
using BaseClassParent = AdwPreferencesRowClass;
using BaseClassType = AdwActionRowClass;
using BaseObjectType = AdwActionRow;
using CppClassParent = struct PreferencesRow_Class;
using CppObjectType = struct ActionRow;
auto init() -> Glib::Class const &;
auto static class_init_function(void * gclass, void * data) -> void;
auto static wrap_new(GObject * object) -> Glib::ObjectBase *;
};
} // namespace Adwaita
#endif
|