Horizon
tool_helper_collect_nets.hpp
1 #pragma once
2 #include <set>
3 #include "canvas/selectables.hpp"
4 #include "core/tool.hpp"
5 
6 namespace horizon {
7 class ToolHelperCollectNets : public virtual ToolBase {
8 protected:
9  std::set<UUID> nets_from_selection(const std::set<SelectableRef> &sel);
10 };
11 } // namespace horizon
Common interface for all Tools.
Definition: tool_pub.hpp:94
Definition: tool_helper_collect_nets.hpp:7