Horizon
rule_match_keepout.hpp
1 #pragma once
2 #include "nlohmann/json_fwd.hpp"
3 #include "util/uuid.hpp"
4 
5 namespace horizon {
6 using json = nlohmann::json;
7 
9 public:
11  RuleMatchKeepout(const json &j);
12  json serialize() const;
13  std::string get_brief(const class Block *block = nullptr) const;
14  void cleanup(const class Block *block);
15  bool match(const class KeepoutContour *contour) const;
16 
17  enum class Mode { ALL, KEEPOUT_CLASS, COMPONENT };
18  Mode mode = Mode::ALL;
19 
20  std::string keepout_class;
21  UUID component;
22 };
23 } // namespace horizon
nlohmann::json
basic_json<> json
default JSON class
Definition: json_fwd.hpp:61
horizon::Block
A block is one level of hierarchy in the netlist.
Definition: block.hpp:26
nlohmann::basic_json
a class to store JSON values
Definition: json.hpp:161
horizon::UUID
This class encapsulates a UUID and allows it to be uses as a value type.
Definition: uuid.hpp:16
horizon::RuleMatchKeepout
Definition: rule_match_keepout.hpp:8
horizon::KeepoutContour
Definition: keepout.hpp:27