| 134 | // DisplayState implementation |
| 135 | |
| 136 | DisplayState::DisplayState () |
| 137 | : m_left (0.0), m_right (0.0), m_bottom (0.0), m_top (0.0), m_min_hier (1), m_max_hier (0), m_paths () |
| 138 | { |
| 139 | // .. nothing yet .. |
| 140 | } |
| 141 | |
| 142 | DisplayState::DisplayState (const db::DBox &b, int min_hier, int max_hier, const std::list<CellPath> &cns) |
| 143 | : m_left (b.left ()), m_right (b.right ()), m_bottom (b.bottom ()), m_top (b.top ()), m_min_hier (min_hier), m_max_hier (max_hier), m_paths (cns) |