(name, cirType, title)
| 282 | _saveCircuit(newCircuit, name, cirType) |
| 283 | |
| 284 | def _addTitle(name, cirType, title): |
| 285 | global _CIRCUITS, _USERCIRCUITS, _SLiCAPCIRCUITS |
| 286 | if cirType == 'system': |
| 287 | _SLiCAPCIRCUITS[name].title = title |
| 288 | elif cirType == 'user': |
| 289 | _USERCIRCUITS[name].title = title |
| 290 | elif cirType == 'main': |
| 291 | _CIRCUITS[name].title = title |
| 292 | |
| 293 | def _createSubCKT(line, name, cirType): |
| 294 | global _CIRCUITS, _USERCIRCUITS, _SLiCAPCIRCUITS |