File indexing completed on 2026-09-16 09:18:53
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #ifndef _TDataStd_IntegerList_HeaderFile
0017 #define _TDataStd_IntegerList_HeaderFile
0018
0019 #include <Standard.hxx>
0020
0021 #include <Standard_Integer.hxx>
0022 #include <NCollection_List.hxx>
0023 #include <TDF_Attribute.hxx>
0024 #include <Standard_OStream.hxx>
0025 #include <Standard_GUID.hxx>
0026
0027 class TDF_Label;
0028 class TDF_RelocationTable;
0029
0030
0031 class TDataStd_IntegerList : public TDF_Attribute
0032 {
0033
0034 public:
0035
0036
0037
0038 Standard_EXPORT static const Standard_GUID& GetID();
0039
0040
0041 Standard_EXPORT static occ::handle<TDataStd_IntegerList> Set(const TDF_Label& label);
0042
0043
0044 Standard_EXPORT static occ::handle<TDataStd_IntegerList> Set(const TDF_Label& label,
0045 const Standard_GUID& theGuid);
0046
0047 Standard_EXPORT TDataStd_IntegerList();
0048
0049 Standard_EXPORT bool IsEmpty() const;
0050
0051 Standard_EXPORT int Extent() const;
0052
0053 Standard_EXPORT void Prepend(const int value);
0054
0055 Standard_EXPORT void Append(const int value);
0056
0057
0058 Standard_EXPORT void SetID(const Standard_GUID& theGuid) override;
0059
0060
0061 Standard_EXPORT void SetID() override;
0062
0063
0064 Standard_EXPORT bool InsertBefore(const int value, const int before_value);
0065
0066
0067
0068 Standard_EXPORT bool InsertBeforeByIndex(const int index, const int before_value);
0069
0070
0071 Standard_EXPORT bool InsertAfter(const int value, const int after_value);
0072
0073
0074
0075 Standard_EXPORT bool InsertAfterByIndex(const int index, const int after_value);
0076
0077
0078 Standard_EXPORT bool Remove(const int value);
0079
0080
0081 Standard_EXPORT bool RemoveByIndex(const int index);
0082
0083 Standard_EXPORT void Clear();
0084
0085 Standard_EXPORT int First() const;
0086
0087 Standard_EXPORT int Last() const;
0088
0089 Standard_EXPORT const NCollection_List<int>& List() const;
0090
0091 Standard_EXPORT const Standard_GUID& ID() const override;
0092
0093 Standard_EXPORT void Restore(const occ::handle<TDF_Attribute>& With) override;
0094
0095 Standard_EXPORT occ::handle<TDF_Attribute> NewEmpty() const override;
0096
0097 Standard_EXPORT void Paste(const occ::handle<TDF_Attribute>& Into,
0098 const occ::handle<TDF_RelocationTable>& RT) const override;
0099
0100 Standard_EXPORT Standard_OStream& Dump(Standard_OStream& anOS) const override;
0101
0102
0103 Standard_EXPORT void DumpJson(Standard_OStream& theOStream, int theDepth = -1) const override;
0104
0105 DEFINE_STANDARD_RTTIEXT(TDataStd_IntegerList, TDF_Attribute)
0106
0107 private:
0108 NCollection_List<int> myList;
0109 Standard_GUID myID;
0110 };
0111
0112 #endif