Horizon
tool_helper_get_symbol.hpp
1 #pragma once
2 #include "core/tool.hpp"
3 
4 namespace horizon {
5 class ToolHelperGetSymbol : public virtual ToolBase {
6 public:
7  using ToolBase::ToolBase;
8 
9 
10 protected:
11  class SchematicSymbol *get_symbol();
12 };
13 } // namespace horizon
Definition: schematic_symbol.hpp:17
Common interface for all Tools.
Definition: tool_pub.hpp:94
Definition: tool_helper_get_symbol.hpp:5