StaTcl.i factor tcl typedefs into StaTclTypes.i
Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
parent
22557a5c4e
commit
9b79629a53
|
|
@ -332,6 +332,7 @@ set(SWIG_FILES
|
|||
${STA_HOME}/sdf/Sdf.i
|
||||
${STA_HOME}/tcl/Exception.i
|
||||
${STA_HOME}/tcl/StaTcl.i
|
||||
${STA_HOME}/tcl/StaTclTypes.i
|
||||
${STA_HOME}/tcl/NetworkEdit.i
|
||||
${STA_HOME}/verilog/Verilog.i
|
||||
)
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
%include "Exception.i"
|
||||
%include "StaTclTypes.i"
|
||||
%include "StaTcl.i"
|
||||
%include "Verilog.i"
|
||||
%include "NetworkEdit.i"
|
||||
|
|
|
|||
|
|
@ -13,15 +13,17 @@
|
|||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <set>
|
||||
|
||||
#include "StringUtil.hh"
|
||||
#include "Set.hh"
|
||||
|
||||
namespace sta {
|
||||
|
||||
typedef Set<const char*, CharPtrLess> StringSet;
|
||||
typedef std::set<string> StdStringSet;
|
||||
|
||||
void
|
||||
deleteContents(StringSet *strings);
|
||||
|
|
|
|||
|
|
@ -19,13 +19,13 @@
|
|||
#include <string>
|
||||
#include <set>
|
||||
|
||||
#include "StringSet.hh"
|
||||
|
||||
namespace sta {
|
||||
|
||||
using std::string;
|
||||
using std::set;
|
||||
|
||||
typedef set<string> StdStringSet;
|
||||
|
||||
class Path;
|
||||
class StaState;
|
||||
|
||||
|
|
|
|||
1344
tcl/StaTcl.i
1344
tcl/StaTcl.i
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue