| 1101 | } |
| 1102 | |
| 1103 | std::optional<ObjectTopicId> Scene3DConfigPanel::selectedTopicId() const { |
| 1104 | if (layer_list_ == nullptr) { |
| 1105 | return std::nullopt; |
| 1106 | } |
| 1107 | const auto id = layer_list_->currentId(); |
| 1108 | if (!id.has_value()) { |
| 1109 | return std::nullopt; |
| 1110 | } |
| 1111 | return topicFromRowId(*id); |
| 1112 | } |
| 1113 | |
| 1114 | std::vector<ObjectTopicId> Scene3DConfigPanel::topicOrderFromIds(const std::vector<qint64>& ids) const { |
| 1115 | std::vector<ObjectTopicId> ordered; |
nothing calls this directly
no test coverage detected