Horizon
Loading...
Searching...
No Matches
layer.hpp
1#pragma once
2#include "common.hpp"
3
4namespace horizon {
5class Layer {
6public:
7 Layer(int i, const std::string &n, bool r = false, bool cop = false) : index(i), name(n), reverse(r), copper(cop)
8 {
9 }
10 int index;
11 std::string name;
12 bool reverse;
13 bool copper;
14};
15} // namespace horizon
Definition layer.hpp:5