aboutsummaryrefslogtreecommitdiff
path: root/include/turns/adw/breakpoint.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/turns/adw/breakpoint.hpp')
-rw-r--r--include/turns/adw/breakpoint.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/turns/adw/breakpoint.hpp b/include/turns/adw/breakpoint.hpp
index b274bbb..e5dabe3 100644
--- a/include/turns/adw/breakpoint.hpp
+++ b/include/turns/adw/breakpoint.hpp
@@ -84,19 +84,20 @@ namespace turns::adw
using helpers::gobj_mixin<CppObjectType, BaseObjectType>::gobj;
using helpers::gobj_mixin<CppObjectType, BaseObjectType>::gobj_copy;
- explicit Breakpoint(BreakpointCondition & condition);
Breakpoint(Breakpoint const & other) = delete;
Breakpoint(Breakpoint && other) noexcept = default;
auto operator=(Breakpoint const & other) noexcept -> Breakpoint & = delete;
auto operator=(Breakpoint && other) noexcept -> Breakpoint & = default;
+ auto static create(BreakpointCondition & condition) -> Glib::RefPtr<Breakpoint>;
auto static get_type() -> GType;
auto static get_base_type() -> GType;
auto property_condition() -> Glib::PropertyProxy<BreakpointCondition *>;
protected:
+ explicit Breakpoint(BreakpointCondition & condition);
explicit Breakpoint(Glib::ConstructParams const & params);
explicit Breakpoint(BaseObjectType * gobj);
};