| 289 | } |
| 290 | |
| 291 | static unsigned int show_layout2 (lay::LayoutViewBase *view, db::Layout *layout, std::string &tech, bool add_cellview, bool initialize_layers) |
| 292 | { |
| 293 | lay::LayoutHandle *handle = lay::LayoutHandle::find_layout (layout); |
| 294 | if (! handle) { |
| 295 | handle = new lay::LayoutHandle (layout, std::string ()); |
| 296 | } |
| 297 | handle->set_tech_name (tech); |
| 298 | return view->add_layout (handle, add_cellview, initialize_layers); |
| 299 | } |
| 300 | |
| 301 | static unsigned int show_layout_handle (lay::LayoutViewBase *view, lay::LayoutHandleRef &handle, bool add_cellview, bool initialize_layers) |
| 302 | { |
nothing calls this directly
no test coverage detected