oaObjectArray.h

Go to the documentation of this file.
00001 // *****************************************************************************
00002 // *****************************************************************************
00003 // oaObjectArray.h
00004 //
00005 // This file contains the definition for the oaObjectArray class. The
00006 // oaObjectArray class implements an array of oaObjects'.
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(oaObjectArray_P)
00027 #define oaObjectArray_P
00028 
00029 
00030 
00031 // *****************************************************************************
00032 // Nested includes
00033 // *****************************************************************************
00034 #include "oaArray.h"
00035 #include "oaObject.h"
00036 
00037 
00038 
00039 // *****************************************************************************
00040 // Declare and define types in the OpenAccess namespace.
00041 // *****************************************************************************
00042 BEGIN_OA_NAMESPACE
00043 
00044 
00045 
00046 // *****************************************************************************
00047 // oaObjectArray
00048 // *****************************************************************************
00049 class OA_BASE_DLL_API oaObjectArray : public oaArray<oaObject*> {
00050 public:
00051                             oaObjectArray(oaUInt4 sizeIn = 0);
00052                             oaObjectArray(const oaObjectArray &arrayIn);
00053 };
00054 
00055 
00056 
00057 END_OA_NAMESPACE
00058 
00059 #endif

Return to top of page