summaryrefslogtreecommitdiff
path: root/domain/include/turns
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2024-07-14 22:39:04 +0200
committerFelix Morgner <felix.morgner@gmail.com>2024-07-14 22:39:04 +0200
commit9c1a9f41e2cef7f6e151a5f08367607e16d0f908 (patch)
treed7abb8ab7e3ea86c920bbe0698233795ad96d171 /domain/include/turns
parent05da3897f944f5775d25de2136ea985d4b0078eb (diff)
downloadturns-9c1a9f41e2cef7f6e151a5f08367607e16d0f908.tar.xz
turns-9c1a9f41e2cef7f6e151a5f08367607e16d0f908.zip
app/ui: enable deletion of participants
Diffstat (limited to 'domain/include/turns')
-rw-r--r--domain/include/turns/domain/turn_order.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/domain/include/turns/domain/turn_order.hpp b/domain/include/turns/domain/turn_order.hpp
index de7ac8a..6495a27 100644
--- a/domain/include/turns/domain/turn_order.hpp
+++ b/domain/include/turns/domain/turn_order.hpp
@@ -15,6 +15,9 @@ namespace turns::domain
using super = Gio::ListStore<participant>;
using super::super;
+ using super::remove;
+ using super::append;
+
auto static create() -> Glib::RefPtr<turn_order>;
auto append(Glib::ustring const & name, float order_value) -> void;