Horizon
layer.hpp
1 #pragma once
2 #include "common.hpp"
3 
4 namespace horizon {
5 class Layer {
6 public:
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
horizon::Layer
Definition: layer.hpp:5