oaStringArray.h

Go to the documentation of this file.
00001 // *****************************************************************************
00002 // *****************************************************************************
00003 // oaStringArray.h
00004 //
00005 // This file contains definitions of the oaStringArray class. 
00006 //
00007 // *****************************************************************************
00008 // Except as specified in the OpenAccess terms of use of Cadence or Silicon
00009 // Integration Initiative, this material may not be copied, modified,
00010 // re-published, uploaded, executed, or distributed in any way, in any medium,
00011 // in whole or in part, without prior written permission from Cadence.
00012 //
00013 //                Copyright 2007 Cadence Design Systems, Inc.
00014 //                           All Rights Reserved.
00015 //
00016 //  $Author: icftcm $
00017 //  $Revision: #1 $
00018 //  $Date: 2007/07/12 $
00019 //  $State: Exp $
00020 // *****************************************************************************
00021 // *****************************************************************************
00022 
00023 
00024 
00025 #if !defined(oaStringArray_P)
00026 #define oaStringArray_P
00027 
00028 
00029 
00030 // *****************************************************************************
00031 // Nested includes
00032 // *****************************************************************************
00033 #include "oaBaseTypes.h"
00034 #include "oaArray.h"
00035 #include "oaString.h"
00036 
00037 
00038 
00039 // *****************************************************************************
00040 // Declare and define types in the OpenAccess namespace.
00041 // *****************************************************************************
00042 BEGIN_OA_NAMESPACE
00043 
00044 
00045 
00046 // *****************************************************************************
00047 // oaStringArray
00048 // *****************************************************************************
00049 class OA_BASE_DLL_API oaStringArray : public oaArray<oaString> {
00050 public:
00051                             oaStringArray(oaUInt4 sizeIn = 0);
00052                             oaStringArray(const oaStringArray &stringsIn);
00053                             oaStringArray(const oaString    stringsIn[],
00054                                           oaUInt4           numBytesIn);
00055 };
00056 
00057 END_OA_NAMESPACE
00058 
00059 #endif

Return to top of page