Horizon
Loading...
Searching...
No Matches
symbol.hpp
1#pragma once
2#include "features.hpp"
3#include <string>
4
5namespace horizon {
6class Padstack;
7class TreeWriter;
8} // namespace horizon
9
10namespace horizon::ODB {
11
12class Symbol {
13public:
14 Symbol(const Padstack &ps, int layer);
15
16 std::string name;
17 Features features;
18
19 void write(TreeWriter &writer) const;
20};
21} // namespace horizon::ODB
Definition features.hpp:14
Definition symbol.hpp:12
Definition padstack.hpp:19
Definition tree_writer.hpp:7