summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2024-07-15 22:38:59 +0200
committerFelix Morgner <felix.morgner@gmail.com>2024-07-15 22:38:59 +0200
commit0a1bc74d0142db0856cafc979a0450fed6671599 (patch)
tree37e744ad1f1e357d4a812cf84a3faecae3cb54e8
parent18795a59e98f2496ab7bb8705f96fa1a4d08ccba (diff)
downloadturns-0a1bc74d0142db0856cafc979a0450fed6671599.tar.xz
turns-0a1bc74d0142db0856cafc979a0450fed6671599.zip
domain/turn_order: hide more of the inherited API
-rw-r--r--domain/include/turns/domain/turn_order.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/domain/include/turns/domain/turn_order.hpp b/domain/include/turns/domain/turn_order.hpp
index d231436..ba9bc3a 100644
--- a/domain/include/turns/domain/turn_order.hpp
+++ b/domain/include/turns/domain/turn_order.hpp
@@ -23,8 +23,10 @@ namespace turns::domain
auto append(Glib::ustring const & name, float priority) -> void;
auto remove(Glib::RefPtr<participant> item) -> void;
- private:
- using super::sort;
+ private:
+ using super::insert;
+ using super::insert_sorted;
+ using super::sort;
};
} // namespace turns::domain