2#include "common/common.hpp"
4#include "rules/rule.hpp"
5#include "rules/rule_match.hpp"
8class RulePlane :
public Rule {
10 static const auto id = RuleID::PLANE;
11 RuleID get_id()
const override
16 RulePlane(
const UUID &uu);
18 json serialize()
const override;
20 std::string get_brief(
const class Block *block =
nullptr,
class IPool *pool =
nullptr)
const override;
21 bool is_match_all()
const override;
22 bool can_export()
const override;
A block is one level of hierarchy in the netlist.
Definition block.hpp:29
Definition rule_match.hpp:9
This class encapsulates a UUID and allows it to be uses as a value type.
Definition uuid.hpp:16