diff options
Diffstat (limited to 'include/adwaitamm/private/breakpoint_p.hpp')
| -rw-r--r-- | include/adwaitamm/private/breakpoint_p.hpp | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/include/adwaitamm/private/breakpoint_p.hpp b/include/adwaitamm/private/breakpoint_p.hpp new file mode 100644 index 0000000..b4f6bc4 --- /dev/null +++ b/include/adwaitamm/private/breakpoint_p.hpp @@ -0,0 +1,34 @@ +#ifndef LIBADWAITAMM_PRIVATE_BREAKPOINT_P_HPP +#define LIBADWAITAMM_PRIVATE_BREAKPOINT_P_HPP + +#include <sigc++/signal.h> + +#include <glibmm/class.h> +#include <glibmm/objectbase.h> +#include <glibmm/private/object_p.h> + +#include <glib-object.h> + +#define _ADWAITA_INSIDE +#include <adw-breakpoint.h> +#undef _ADWAITA_INSIDE + +namespace Adwaita +{ + + struct Breakpoint_Class : Glib::Class + { + using BaseClassParent = GObjectClass; + using BaseClassType = AdwBreakpointClass; + using BaseObjectType = AdwBreakpoint; + using CppClassParent = struct Glib::Object_Class; + using CppObjectType = struct Breakpoint; + + 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
\ No newline at end of file |
