oaOrient.h

Go to the documentation of this file.
00001 // *****************************************************************************
00002 // *****************************************************************************
00003 // oaOrient.h
00004 //
00005 // This file contains the definition for the oaOrient class. This class
00006 // implements an enumerated orientation value.
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(oaOrient_P)
00027 #define oaOrient_P
00028 
00029 
00030 
00031 // *****************************************************************************
00032 // Nested includes
00033 // *****************************************************************************
00034 #include "oaString.h"
00035 
00036 
00037 
00038 // *****************************************************************************
00039 // Declare and define types in the OpenAccess namespace.
00040 // *****************************************************************************
00041 BEGIN_OA_NAMESPACE
00042 
00043 
00044 
00045 // *****************************************************************************
00046 // Forward Public Class Declarations
00047 // *****************************************************************************
00048 class oaString;
00049 
00050 
00051 
00052 // *****************************************************************************
00053 // oaOrientEnum
00054 // *****************************************************************************
00055 #define oavNumOrientEnums   8
00056 
00057 enum oaOrientEnum {
00058     oacR0       = 0,
00059     oacR90      = 1,
00060     oacR180     = 2,
00061     oacR270     = 3,
00062     oacMY       = 4,
00063     oacMYR90    = 5,
00064     oacMX       = 6,
00065     oacMXR90    = 7
00066 };
00067 
00068 
00069 
00070 // *****************************************************************************
00071 // oaOrient
00072 // *****************************************************************************
00073 class OA_BASE_DLL_API oaOrient {
00074 public:
00075                                 oaOrient(oaOrientEnum valueIn = oacR0);
00076                                 oaOrient(const oaString &name);
00077                                 ~oaOrient();
00078 
00079     oaOrient                    concat(const oaOrient &orient) const;
00080     oaOrient                    getRelativeOrient(const oaOrient &orient) const;
00081 
00082     const oaString              &getName() const;
00083 
00084                                 operator                    oaOrientEnum() const;
00085 
00086 private:
00087     oaOrientEnum                value;
00088 
00089     static const oaString       names[];
00090     static const oaOrientEnum   concatMat[8][8];
00091 };
00092 
00093 
00094 
00095 END_OA_NAMESPACE
00096 
00097 #endif

Return to top of page