| 145 | |
| 146 | public: |
| 147 | explicit Line(LineRuleProto const & r) : m_line(r) |
| 148 | { |
| 149 | ASSERT(r.has_pathsym() || r.width() > 0, ("Zero width line w/o path symbol)")); |
| 150 | } |
| 151 | |
| 152 | virtual LineRuleProto const * GetLine() const { return &m_line; } |
| 153 | }; |
nothing calls this directly
no test coverage detected