📄 oadefoutoptions.h
字号:
// *****************************************************************************// DefOutOptions.h//// This file contains the definition for the DefOutOptions class. This // class implements writing a LEF file from an OA library.//// *****************************************************************************// 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.19 $// $Date: 2005/08/05 01:41:34 $// $State: Exp $// *****************************************************************************// *****************************************************************************#ifndef DefOutOptions_P#define DefOutOptions_P#include "oaLefDef.h"BEGIN_LEFDEF_NAMESPACE// *****************************************************************************// DefOutOptions// *****************************************************************************class OA_LEFDEF_DLL_API DefOutOptions { public: DefOutOptions(); virtual ~DefOutOptions(); void setFileName(const oaString &file); void setLibName(const oaString &lib); void setCellName(const oaString &cell); void setViewName(const oaString &view); void setVersion(LefDefVersionEnum version); const oaString &getFileName() {return fileName;} const oaScalarName &getLibName() {return libName;} const oaScalarName &getCellName() {return cellName;} const oaScalarName &getViewName() {return viewName;} LefDefVersion getVersion() {return version;} virtual void checkArgs(); protected: oaString fileName; oaScalarName libName; oaScalarName cellName; oaScalarName viewName; LefDefVersionEnum version;};END_LEFDEF_NAMESPACE#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -