Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:05:19

0001 // Created on: 2007-05-29
0002 // Created by: Vlad Romashko
0003 // Copyright (c) 2007-2014 OPEN CASCADE SAS
0004 //
0005 // This file is part of Open CASCADE Technology software library.
0006 //
0007 // This library is free software; you can redistribute it and/or modify it under
0008 // the terms of the GNU Lesser General Public License version 2.1 as published
0009 // by the Free Software Foundation, with special exception defined in the file
0010 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0011 // distribution for complete text of the license and disclaimer of any warranty.
0012 //
0013 // Alternatively, this file may be used under the terms of Open CASCADE
0014 // commercial license or contractual agreement.
0015 
0016 #ifndef _TDataStd_RealList_HeaderFile
0017 #define _TDataStd_RealList_HeaderFile
0018 
0019 #include <Standard.hxx>
0020 
0021 #include <TColStd_ListOfReal.hxx>
0022 #include <TDF_Attribute.hxx>
0023 #include <Standard_Integer.hxx>
0024 #include <Standard_Real.hxx>
0025 #include <Standard_OStream.hxx>
0026 #include <Standard_GUID.hxx>
0027 
0028 class TDF_Label;
0029 class TDF_RelocationTable;
0030 
0031 
0032 class TDataStd_RealList;
0033 DEFINE_STANDARD_HANDLE(TDataStd_RealList, TDF_Attribute)
0034 
0035 //! Contains a list of doubles.
0036 class TDataStd_RealList : public TDF_Attribute
0037 {
0038 
0039 public:
0040 
0041   
0042   //! Static methods
0043   //! ==============
0044   //! Returns the ID of the list of doubles attribute.
0045   Standard_EXPORT static const Standard_GUID& GetID();
0046   
0047   //! Finds or creates a list of double values attribute.
0048   Standard_EXPORT static Handle(TDataStd_RealList) Set (const TDF_Label& label);
0049 
0050   //! Finds or creates a list of double values attribute with explicit user defined <guid>.
0051   Standard_EXPORT static Handle(TDataStd_RealList) Set (const TDF_Label& label, const Standard_GUID& theGuid);
0052 
0053   Standard_EXPORT TDataStd_RealList();
0054   
0055   Standard_EXPORT Standard_Boolean IsEmpty() const;
0056   
0057   Standard_EXPORT Standard_Integer Extent() const;
0058   
0059   Standard_EXPORT void Prepend (const Standard_Real value);
0060   
0061   Standard_EXPORT void Append (const Standard_Real value);
0062  
0063   //! Sets the explicit GUID (user defined) for the attribute.
0064   Standard_EXPORT void SetID( const Standard_GUID&  theGuid) Standard_OVERRIDE;
0065 
0066   //! Sets default GUID for the attribute.
0067   Standard_EXPORT void SetID() Standard_OVERRIDE;
0068 
0069   //! Inserts the <value> before the first meet of <before_value>.
0070   Standard_EXPORT Standard_Boolean InsertBefore (const Standard_Real value, const Standard_Real before_value);
0071   
0072   //! Inserts the <value> before the <index> position.
0073   //! The indices start with 1 .. Extent().
0074   Standard_EXPORT Standard_Boolean InsertBeforeByIndex (const Standard_Integer index, const Standard_Real before_value);
0075   
0076   //! Inserts the <value> after the first meet of <after_value>.
0077   Standard_EXPORT Standard_Boolean InsertAfter (const Standard_Real value, const Standard_Real after_value);
0078   
0079   //! Inserts the <value> after the <index> position.
0080   //! The indices start with 1 .. Extent().
0081   Standard_EXPORT Standard_Boolean InsertAfterByIndex (const Standard_Integer index, const Standard_Real after_value);
0082   
0083   //! Removes the first meet of the <value>.
0084   Standard_EXPORT Standard_Boolean Remove (const Standard_Real value);
0085   
0086   //! Removes a value at <index> position.
0087   Standard_EXPORT Standard_Boolean RemoveByIndex (const Standard_Integer index);
0088   
0089   Standard_EXPORT void Clear();
0090   
0091   Standard_EXPORT Standard_Real First() const;
0092   
0093   Standard_EXPORT Standard_Real Last() const;
0094   
0095   Standard_EXPORT const TColStd_ListOfReal& List() const;
0096   
0097   Standard_EXPORT const Standard_GUID& ID() const Standard_OVERRIDE;
0098   
0099   Standard_EXPORT void Restore (const Handle(TDF_Attribute)& With) Standard_OVERRIDE;
0100   
0101   Standard_EXPORT Handle(TDF_Attribute) NewEmpty() const Standard_OVERRIDE;
0102   
0103   Standard_EXPORT void Paste (const Handle(TDF_Attribute)& Into, const Handle(TDF_RelocationTable)& RT) const Standard_OVERRIDE;
0104   
0105   Standard_EXPORT virtual Standard_OStream& Dump (Standard_OStream& anOS) const Standard_OVERRIDE;
0106   
0107   //! Dumps the content of me into the stream
0108   Standard_EXPORT virtual void DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth = -1) const Standard_OVERRIDE;
0109 
0110 
0111 
0112 
0113   DEFINE_STANDARD_RTTIEXT(TDataStd_RealList,TDF_Attribute)
0114 
0115 protected:
0116 
0117 
0118 
0119 
0120 private:
0121 
0122 
0123   TColStd_ListOfReal myList;
0124   Standard_GUID myID;
0125 
0126 };
0127 
0128 
0129 
0130 
0131 
0132 
0133 
0134 #endif // _TDataStd_RealList_HeaderFile