tclListSeqLibertyCell

This commit is contained in:
James Cherry 2019-06-23 21:59:02 -07:00
parent 15e759a992
commit 11aa6e759a
1 changed files with 7 additions and 0 deletions

View File

@ -203,6 +203,13 @@ tclListSeqLibertyLibrary(Tcl_Obj *const source,
return tclListSeq<LibertyLibrary*>(source, SWIGTYPE_p_LibertyLibrary, interp);
}
LibertyCellSeq *
tclListSeqLibertyCell(Tcl_Obj *const source,
Tcl_Interp *interp)
{
return tclListSeq<LibertyCell*>(source, SWIGTYPE_p_LibertyCell, interp);
}
template <class TYPE>
Set<TYPE> *
tclListSet(Tcl_Obj *const source,