secureswitools/swisistools/source/xmlparser/xerces/include/xercesc/util/RefArrayVectorOf.hpp
changeset 0 ba25891c3a9e
child 1 c42dffbd5b4f
equal deleted inserted replaced
-1:000000000000 0:ba25891c3a9e
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 *
       
    16 */
       
    17 /*
       
    18  * Licensed to the Apache Software Foundation (ASF) under one or more
       
    19  * contributor license agreements.  See the NOTICE file distributed with
       
    20  * this work for additional information regarding copyright ownership.
       
    21  * The ASF licenses this file to You under the Apache License, Version 2.0
       
    22  * (the "License"); you may not use this file except in compliance with
       
    23  * the License.  You may obtain a copy of the License at
       
    24  * 
       
    25  *      http://www.apache.org/licenses/LICENSE-2.0
       
    26  * 
       
    27  * Unless required by applicable law or agreed to in writing, software
       
    28  * distributed under the License is distributed on an "AS IS" BASIS,
       
    29  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
       
    30  * See the License for the specific language governing permissions and
       
    31  * limitations under the License.
       
    32  */
       
    33 
       
    34 #if !defined(REFARRAYVECTOROF_HPP)
       
    35 #define REFARRAYVECTOROF_HPP
       
    36 
       
    37 #include <xercesc/util/BaseRefVectorOf.hpp>
       
    38 
       
    39 XERCES_CPP_NAMESPACE_BEGIN
       
    40 
       
    41 /** 
       
    42  * Class with implementation for vectors of pointers to arrays  - implements from 
       
    43  * the Abstract class Vector
       
    44  */ 
       
    45 template <class TElem> class RefArrayVectorOf : public BaseRefVectorOf<TElem> 
       
    46 {
       
    47 public :
       
    48     // -----------------------------------------------------------------------
       
    49     //  Constructor
       
    50     // -----------------------------------------------------------------------
       
    51     RefArrayVectorOf( const unsigned int   maxElems
       
    52                     , const bool           adoptElems = true
       
    53                     , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
       
    54 
       
    55     // -----------------------------------------------------------------------
       
    56     //  Destructor
       
    57     // -----------------------------------------------------------------------
       
    58     ~RefArrayVectorOf();
       
    59 
       
    60     // -----------------------------------------------------------------------
       
    61     //  Element management
       
    62     // -----------------------------------------------------------------------
       
    63     void setElementAt(TElem* const toSet, const unsigned int setAt);
       
    64     void removeAllElements();
       
    65     void removeElementAt(const unsigned int removeAt);
       
    66     void removeLastElement();
       
    67     void cleanup();
       
    68 private:
       
    69     // -----------------------------------------------------------------------
       
    70     //  Unimplemented constructors and operators
       
    71     // -----------------------------------------------------------------------
       
    72     RefArrayVectorOf(const RefArrayVectorOf<TElem>&);
       
    73     RefArrayVectorOf<TElem>& operator=(const RefArrayVectorOf<TElem>&);
       
    74 };
       
    75 
       
    76 XERCES_CPP_NAMESPACE_END
       
    77 
       
    78 #if !defined(XERCES_TMPLSINC)
       
    79 #include <xercesc/util/RefArrayVectorOf.c>
       
    80 #endif
       
    81 
       
    82 #endif