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, const Color &c, bool r = false, bool cop = false)
8  : index(i), name(n), color(c), reverse(r), copper(cop)
9  {
10  }
11  int index;
12  std::string name;
13  Color color;
14  bool reverse;
15  bool copper;
16 };
17 } // namespace horizon
Definition: layer.hpp:5
Definition: block.cpp:7
Definition: common.hpp:205