parsing lib file */
| 75 | |
| 76 | /* parsing lib file */ |
| 77 | void addCellCbk(std::string const &str) { |
| 78 | auto &design = db_.design(); |
| 79 | cur_model_ = &design.addModel(str); |
| 80 | cur_model_->setModelType(ModelType::kCell); |
| 81 | } |
| 82 | void addCellInputPinCbk(std::string const &str) { |
| 83 | auto &mpin = cur_model_->tryAddModelPin(str); |
| 84 | mpin.setSignalDirect(SignalDirection::kInput); |
no test coverage detected