📄 oaverilogoptionsout.h
字号:
// *****************************************************************************// *****************************************************************************// oaVerilogOptionsOut.h//// This file contains the definition for the OptionsOut class. The OptionsOut// class is the class that implements a repository for options that control the// behaviors of the Verilog writer. This class does not enforce or implement// the option: it is the responsibility of the applicaton to query the option// object and then to act accordingly.//// *****************************************************************************// 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 2003-2005 Cadence Design Systems, Inc.// (c) Copyright 2003 Hewlett-Packard Development Company, LP// All Rights Reserved.//// $Author: shaun $// $Revision: 1.16 $// $Date: 2005/01/04 19:11:06 $// $State: Exp $// *****************************************************************************// *****************************************************************************#ifndef oaVerilogOptionsOut_P#define oaVerilogOptionsOut_PBEGIN_VERILOG_NAMESPACE// *****************************************************************************// OptionsOut// *****************************************************************************class OA_VERILOG_DLL_API OptionsOut : public Options { public: OptionsOut(MsgAdapter &msgsIn); ~OptionsOut(); const oaString &getFileName(); void setFileName(const oaString &outputFileName); const oaScalarName &getCellName(); void setCellName(const oaString &outputCellName); void enableRecursive(oaBoolean value = true); oaBoolean testRecursive(); void enableRecursiveDesign(oaBoolean value = true); oaBoolean testRecursiveDesign(); void enableProduceLeaf(oaBoolean value = true); oaBoolean testProduceLeaf(); void enablePreserveInterface(oaBoolean value = true); oaBoolean testPreserveInterface(); const oaString &getLeafFile(); void setLeafFile(const oaString &file); const oaString &getPrintedDesignName() const; const oaString &getPrintedModuleName() const; protected: oaString fileName; oaScalarName cellName; oaScalarName viewName; oaBoolean recursive; oaBoolean produceLeaf; oaString leafFile; oaBoolean preserveInterface; oaBoolean recursiveDesign; static const oaString printedModuleName; static const oaString printedDesignName; static const oaString busTermPrintedName; static const oaString termPrintedName; static const oaString busNetPrintedName; static const oaString netPrintedName; static const oaString itermPrintedName; static const oaString termPositionName;friend class CallbacksOut;};END_VERILOG_NAMESPACE#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -