oadeftest.inl

来自「openaccess读def,lef文件所用的源代码」· INL 代码 · 共 153 行

INL
153
字号
// *****************************************************************************// *****************************************************************************// oaDefTest.inl//// This file contains the implementation for inline and template member// functions of classes defined in oaDefTest.h file.//// *****************************************************************************// 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.1 $//  $Date: 2005/08/05 01:46:36 $//  $State: Exp $// *****************************************************************************// *****************************************************************************#if !defined(oaDefTest_I)#define oaDefTest_I// *****************************************************************************// DefTest::DefTest()//// This is the constructor for the DefTest object.// *****************************************************************************inlineDefTest::DefTest(const oaString   &name):   LefDefTest(name),    lefIn(msgs),    defIn(msgs),    defOut(msgs){}// *****************************************************************************// DefTestUpdate::DefTestUpdate()// // This is the constructor for the DEF update test class.// *****************************************************************************inlineDefTestUpdate::DefTestUpdate(const oaString    &name):   DefTest(name){}// *****************************************************************************// DefTestNoModHier::DefTestNoModHier()// // This is the constructor for the DEF no module hierarchy test class.// *****************************************************************************inlineDefTestNoModHier::DefTestNoModHier(const oaString    &name):   DefTest(name){}// *****************************************************************************// DefTestOptimize::DefTestOptimize()// // This is the constructor for the DEF optimize routes test class.// *****************************************************************************inlineDefTestOptimize::DefTestOptimize(const oaString    &name):   DefTest(name){}// *****************************************************************************// DefTest53::DefTest53()// // This is the constructor for the defOut 5.3 test class.// *****************************************************************************inlineDefTest53::DefTest53(const oaString    &name):   DefTest(name){}// *****************************************************************************// DefTest54::DefTest54()// // This is the constructor for the defOut 5.4 test class.// *****************************************************************************inlineDefTest54::DefTest54(const oaString    &name):   DefTest(name){}// *****************************************************************************// DefTest55::DefTest55()// // This is the constructor for the defOut 5.5 test class.// *****************************************************************************inlineDefTest55::DefTest55(const oaString    &name):   DefTest(name){}// *****************************************************************************// DefTest56::DefTest56()// // This is the constructor for the defOut 5.6 test class.// *****************************************************************************inlineDefTest56::DefTest56(const oaString    &name):   DefTest(name){}// *****************************************************************************// DefTestError::DefTestError()// // This is the constructor for the defOut error test class.// *****************************************************************************inlineDefTestError::DefTestError(const oaString    &name):   DefTest(name){}#endif

⌨️ 快捷键说明

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