oaScalarTerm.h

Go to the documentation of this file.
00001 // *****************************************************************************
00002 // *****************************************************************************
00003 // oaScalarTerm.h
00004 //
00005 // This file contains the definition for the oaScalarTerm class. This class
00006 // implements a scalar (i.e. single-bit) terminal.
00007 //
00008 // *****************************************************************************
00009 // Except as specified in the OpenAccess terms of use of Cadence or Silicon
00010 // Integration Initiative, this material may not be copied, modified,
00011 // re-published, uploaded, executed, or distributed in any way, in any medium,
00012 // in whole or in part, without prior written permission from Cadence.
00013 //
00014 //                Copyright 2002-2005 Cadence Design Systems, Inc.
00015 //                           All Rights Reserved.
00016 //
00017 //  $Author: icftcm $
00018 //  $Revision: #1 $
00019 //  $Date: 2010/08/09 $
00020 //  $State: Exp $
00021 // *****************************************************************************
00022 // *****************************************************************************
00023 
00024 
00025 
00026 #if !defined(oaScalarTerm_P)
00027 #define oaScalarTerm_P
00028 
00029 
00030 
00031 // *****************************************************************************
00032 // Nested includes
00033 // *****************************************************************************
00034 #include "oaBlock.h"
00035 
00036 
00037 
00038 // *****************************************************************************
00039 // Declare and define types in the OpenAccess namespace.
00040 // *****************************************************************************
00041 BEGIN_OA_NAMESPACE
00042 
00043 
00044 
00045 // *****************************************************************************
00046 // oaScalarTerm
00047 // *****************************************************************************
00048 class OA_DESIGN_DLL_API oaScalarTerm : public oaBitTerm {
00049 public:
00050     static oaScalarTerm     *create(oaBitNet                *net,
00051                                     const oaScalarName      &name,
00052                                     oaTermType              type = oacInputOutputTermType,
00053                                     oaBlockDomainVisibility view = oacInheritFromTopBlock);
00054 
00055     static oaScalarTerm     *find(const oaBlock         *block,
00056                                   const oaScalarName    &name);
00057 
00058     static oaBoolean        isValidName(const oaBlock       *block,
00059                                         const oaScalarName  &name);
00060 
00061     using                   oaTerm::getName;
00062     void                    getName(oaScalarName &name) const;
00063 
00064     void                    setName(const oaScalarName &name);
00065 };
00066 
00067 
00068 
00069 // *****************************************************************************
00070 // Design Traits.
00071 // *****************************************************************************
00072 template<>
00073 class oaTraits<oaScalarTerm> {
00074 public:
00075     typedef oaTermModTypeEnum   modTypeType;
00076     typedef oaBitTerm           parentType;
00077     enum {isMultiDomain = true};
00078     enum {dtIndex = oacTermDataType};
00079     enum {dataTypeEnumVal = oacTermDataType};
00080     enum {domain = oacBlockDomain};
00081     enum {dbType = oacDesignDBType};
00082     enum {isConcrete = true};
00083     enum {objectTypeEnumVal = oacScalarTermType};
00084 };
00085 
00086 
00087 
00088 END_OA_NAMESPACE
00089 
00090 #endif

Return to top of page