00001 // ***************************************************************************** 00002 // ***************************************************************************** 00003 // oaAnalysisOpPoint.h 00004 // 00005 // This file contains the definition for the oaAnalysisOpPoint class, which is 00006 // an object within oaDesign that corresponds to a oaOpPoint object within 00007 // oaTech. 00008 // 00009 // ***************************************************************************** 00010 // Except as specified in the OpenAccess terms of use of Cadence or Silicon 00011 // Integration Initiative, this material may not be copied, modified, 00012 // re-published, uploaded, executed, or distributed in any way, in any medium, 00013 // in whole or in part, without prior written permission from Cadence. 00014 // 00015 // Copyright 2002-2005 Cadence Design Systems, Inc. 00016 // All Rights Reserved. 00017 // 00018 // $Author: icftcm $ 00019 // $Revision: #1 $ 00020 // $Date: 2010/08/09 $ 00021 // $State: Exp $ 00022 // ***************************************************************************** 00023 // ***************************************************************************** 00024 00025 00026 00027 #if !defined(oaAnalysisOpPoint_P) 00028 #define oaAnalysisOpPoint_P 00029 00030 00031 00032 // ***************************************************************************** 00033 // Nested includes 00034 // ***************************************************************************** 00035 #include "oaOpPoint.h" 00036 #include "oaAnalysisPoint.h" 00037 00038 00039 00040 // ***************************************************************************** 00041 // Declare and define types in the OpenAccess namespace. 00042 // ***************************************************************************** 00043 BEGIN_OA_NAMESPACE 00044 00045 00046 00047 // ***************************************************************************** 00048 // oaAnalysisOpPoint 00049 // ***************************************************************************** 00050 class OA_DESIGN_DLL_API oaAnalysisOpPoint : public oaDesignObject { 00051 public: 00052 static oaAnalysisOpPoint *create(oaAnalysisPoint *analysisPoint, 00053 oaOpPoint *opPoint); 00054 void destroy(); 00055 00056 oaBoolean isBound() const; 00057 oaOpPoint *getOpPoint() const; 00058 oaOpPointHeader *getHeader() const; 00059 00060 void getOpPointName(oaString &name) const; 00061 void getAnalysisLibName(oaString &name) const; 00062 00063 enum {dtIndex = oacAnalysisOpPointDataType}; 00064 enum {domain = oacNoDomain}; 00065 }; 00066 00067 00068 00069 // ***************************************************************************** 00070 // Design Traits. 00071 // ***************************************************************************** 00072 template<> 00073 class oaTraits<oaAnalysisOpPoint> { 00074 public: 00075 typedef oaDesignObject parentType; 00076 typedef oaAnalysisOpPointModTypeEnum modTypeType; 00077 enum {dbType = oacDesignDBType}; 00078 enum {domain = oacNoDomain}; 00079 enum {isMultiDomain = false}; 00080 enum {dtIndex = oacAnalysisOpPointDataType}; 00081 enum {isConcrete = true}; 00082 enum {objectTypeEnumVal = oacAnalysisOpPointType}; 00083 enum {dataTypeEnumVal = oacAnalysisOpPointDataType}; 00084 }; 00085 00086 00087 00088 END_OA_NAMESPACE 00089 00090 #endif
Copyright © 2002 - 2010 Cadence Design Systems, Inc.
All Rights Reserved.