mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-31 11:15:31 +03:00
Automatic upgrade of OCCT code by command "occt_upgrade . -nocdl": - WOK-generated header files from inc and sources from drv are moved to src - CDL files removed - All packages are converted to nocdlpack
103 lines
2.8 KiB
C++
103 lines
2.8 KiB
C++
// Created on: 1992-11-25
|
|
// Created by: Julia DOROVSKIKH
|
|
// Copyright (c) 1992-1999 Matra Datavision
|
|
// Copyright (c) 1999-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
#ifndef _XmlObjMgt_Array1_HeaderFile
|
|
#define _XmlObjMgt_Array1_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_DefineAlloc.hxx>
|
|
#include <Standard_Handle.hxx>
|
|
|
|
#include <XmlObjMgt_Element.hxx>
|
|
#include <Standard_Integer.hxx>
|
|
#include <XmlObjMgt_DOMString.hxx>
|
|
|
|
|
|
//! The class Array1 represents unidimensionnal
|
|
//! array of fixed size known at run time.
|
|
//! The range of the index is user defined.
|
|
//! Warning: Programs clients of such class must be independant
|
|
//! of the range of the first element. Then, a C++ for
|
|
//! loop must be written like this
|
|
//! for (i = A->Lower(); i <= A->Upper(); i++)
|
|
class XmlObjMgt_Array1
|
|
{
|
|
public:
|
|
|
|
DEFINE_STANDARD_ALLOC
|
|
|
|
|
|
//! Create an array of lower bound <Low> and
|
|
//! upper bound <Up>. Range error is raised
|
|
//! when <Up> is less than <Low>.
|
|
Standard_EXPORT XmlObjMgt_Array1(const Standard_Integer Low, const Standard_Integer Up);
|
|
|
|
//! for restoration from DOM_Element which is child of
|
|
//! theParent:
|
|
//! <theParent ...>
|
|
//! <theName ...>
|
|
Standard_EXPORT XmlObjMgt_Array1(const XmlObjMgt_Element& theParent, const XmlObjMgt_DOMString& theName);
|
|
|
|
//! Create DOM_Element representing the array, under 'theParent'
|
|
Standard_EXPORT void CreateArrayElement (XmlObjMgt_Element& theParent, const XmlObjMgt_DOMString& theName);
|
|
|
|
//! Returns the DOM element of <me>.
|
|
const XmlObjMgt_Element& Element() const;
|
|
|
|
//! Returns the number of elements of <me>.
|
|
Standard_Integer Length() const;
|
|
|
|
//! Returns the lower bound.
|
|
Standard_Integer Lower() const;
|
|
|
|
//! Returns the upper bound.
|
|
Standard_Integer Upper() const;
|
|
|
|
//! Set the <Index>th element of the array to <Value>.
|
|
Standard_EXPORT void SetValue (const Standard_Integer Index, XmlObjMgt_Element& Value);
|
|
|
|
//! Returns the value of <Index>th element of the array.
|
|
Standard_EXPORT XmlObjMgt_Element Value (const Standard_Integer Index) const;
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
XmlObjMgt_Element myElement;
|
|
Standard_Integer myFirst;
|
|
Standard_Integer myLast;
|
|
|
|
|
|
};
|
|
|
|
|
|
#include <XmlObjMgt_Array1.lxx>
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _XmlObjMgt_Array1_HeaderFile
|