Horizon
Loading...
Searching...
No Matches
tool_helper_collect_nets.hpp
1#pragma once
2#include <set>
3#include "canvas/selectables.hpp"
4#include "core/tool.hpp"
5
6namespace horizon {
7class ToolHelperCollectNets : public virtual ToolBase {
8protected:
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