⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 oadefinoptions.h

📁 openaccess读def,lef文件所用的源代码
💻 H
字号:
// *****************************************************************************// *****************************************************************************// DefInOptions.h//// This file contains the definition for the DefInOptions class.//// *****************************************************************************// Except as specified in the OpenAccess terms of use of Cadence or Silicon// Integration Initiative, this material may not be copied, modified,// re-published, uploaded, executed, or distributed in any way, in any medium,// in whole or in part, without prior written permission from Cadence.////                Copyright 2002-2005 Cadence Design Systems, Inc.//                           All Rights Reserved.////  $Author: sailajad $//  $Revision: 1.40 $//  $Date: 2005/08/05 01:41:33 $//  $State: Exp $// *****************************************************************************// *****************************************************************************#ifndef DefInOptions_P#define DefInOptions_P#include "oaLefDef.h"BEGIN_LEFDEF_NAMESPACE// *****************************************************************************// DefInOptions// *****************************************************************************class OA_LEFDEF_DLL_API DefInOptions {  public:			    DefInOptions();    virtual		    ~DefInOptions();    void		    addFileName(const oaString	&fileName);    void                    setLibName(const oaString	&libName);    void                    setLibPath(const oaString	&libPath);    void		    setLibOptions(const	oaUtil::LibMgrOptions	&options);    void                    setCellName(const oaString	&cellName);    void                    setViewName(const oaString	&viewName);    void                    addMasterLibName(const oaString	&lib);    void                    addMasterViewName(const oaString	&view);    void		    setTechLibName(const oaString   &libName);    void		    setTechLibOptions(const oaUtil::LibMgrOptions   &options);    void		    setCommentChar(const oaChar	commentChar);    void		    setOverwrite(oaBoolean  overwrite);    void		    setUseCustomVias(oaBoolean	newUseCustomVias);    void		    setCreateModHier(oaBoolean	newModHier);    void		    setRouting(oaBoolean	newRouting);        oaUInt4		    getNumFileNames()		{return fileNames.getNumElements();}    const oaString	    &getFileName(oaUInt4    i)  {return fileNames[i];}    const oaScalarName	    &getLibName() const		{return libName;}    const oaString	    &getLibPath() const		{return libPath;}    const oaUtil::LibMgrOptions	&getLibOptions() const	{return libOptions;}    const oaScalarName	    &getCellName() const	{return cellName;}    const oaScalarName	    &getViewName() const	{return viewName;}    oaUInt4		    getNumMasterLibNames()	{return masterLibNames.getNumElements();}    const oaScalarName      &getMasterLibName(oaUInt4	i)  {return masterLibNames[i];}    oaUInt4		    getNumMasterViewNames()	{return masterViewNames.getNumElements();}    const oaScalarName      &getMasterViewName(oaUInt4	i)  {return masterViewNames[i];}    const oaScalarName	    &getTechLibName() const	{return techLibName;}    const oaUtil::LibMgrOptions	&getTechLibOptions() const  {return techLibOptions;}    const oaChar	    getCommentChar() const	{return commentChar;}    oaBoolean		    doOverwrite() const		{return overwrite;}    oaBoolean		    doUseCustomVias() const	{return useCustomVias;}    oaBoolean		    doUseDefaultStdVias() const	{return useDefaultStdVias;}    oaBoolean		    createModHier() const	{return modHier;}    oaBoolean		    createRouting() const	{return routing;}    virtual void	    checkArgs();  protected:    oaArray<oaString>	    fileNames;    oaScalarName	    libName;    oaString                libPath;    oaUtil::LibMgrOptions   libOptions;    oaScalarName            cellName;    oaScalarName            viewName;    oaArray<oaScalarName>   masterLibNames;    oaArray<oaScalarName>   masterViewNames;    oaScalarName	    techLibName;    oaUtil::LibMgrOptions   techLibOptions;    oaChar		    commentChar;    oaBoolean		    overwrite;    oaBoolean		    useCustomVias;    oaBoolean		    useDefaultStdVias;    oaBoolean		    modHier;    oaBoolean		    routing;};END_LEFDEF_NAMESPACE#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -