From 3262b3a337759439f3049b9299be12baf8420750 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Mon, 15 Jul 2024 22:26:12 +0200 Subject: turns: add more tests --- domain/include/turns/domain/turn_order.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'domain/include/turns') diff --git a/domain/include/turns/domain/turn_order.hpp b/domain/include/turns/domain/turn_order.hpp index cb51af6..d231436 100644 --- a/domain/include/turns/domain/turn_order.hpp +++ b/domain/include/turns/domain/turn_order.hpp @@ -15,14 +15,16 @@ namespace turns::domain using super = Gio::ListStore; using super::super; - using super::append; using super::remove; auto static create() -> Glib::RefPtr; + auto append(Glib::RefPtr item) -> void; auto append(Glib::ustring const & name, float priority) -> void; auto remove(Glib::RefPtr item) -> void; - auto sort() -> void; + + private: + using super::sort; }; } // namespace turns::domain -- cgit v1.2.3