0026912: CLang 3.6.2 compiler warning [-Winconsistent-missing-override]
[occt.git] / src / TDataStd / TDataStd_RealList.hxx
1 // Created on: 2007-05-29
2 // Created by: Vlad Romashko
3 // Copyright (c) 2007-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 #ifndef _TDataStd_RealList_HeaderFile
17 #define _TDataStd_RealList_HeaderFile
18
19 #include <Standard.hxx>
20 #include <Standard_Type.hxx>
21
22 #include <TColStd_ListOfReal.hxx>
23 #include <TDF_Attribute.hxx>
24 #include <Standard_Boolean.hxx>
25 #include <Standard_Integer.hxx>
26 #include <Standard_Real.hxx>
27 #include <Standard_OStream.hxx>
28 class Standard_GUID;
29 class TDF_Label;
30 class TDF_Attribute;
31 class TDF_RelocationTable;
32
33
34 class TDataStd_RealList;
35 DEFINE_STANDARD_HANDLE(TDataStd_RealList, TDF_Attribute)
36
37 //! Contains a list of doubles.
38 class TDataStd_RealList : public TDF_Attribute
39 {
40
41 public:
42
43   
44   //! Static methods
45   //! ==============
46   //! Returns the ID of the list of doubles attribute.
47   Standard_EXPORT static const Standard_GUID& GetID();
48   
49   //! Finds or creates a list of double values attribute.
50   Standard_EXPORT static Handle(TDataStd_RealList) Set (const TDF_Label& label);
51   
52   Standard_EXPORT TDataStd_RealList();
53   
54   Standard_EXPORT Standard_Boolean IsEmpty() const;
55   
56   Standard_EXPORT Standard_Integer Extent() const;
57   
58   Standard_EXPORT void Prepend (const Standard_Real value);
59   
60   Standard_EXPORT void Append (const Standard_Real value);
61   
62   //! Inserts the <value> before the first meet of <before_value>.
63   Standard_EXPORT Standard_Boolean InsertBefore (const Standard_Real value, const Standard_Real before_value);
64   
65   //! Inserts the <value> after the first meet of <after_value>.
66   Standard_EXPORT Standard_Boolean InsertAfter (const Standard_Real value, const Standard_Real after_value);
67   
68   //! Removes the first meet of the <value>.
69   Standard_EXPORT Standard_Boolean Remove (const Standard_Real value);
70   
71   Standard_EXPORT void Clear();
72   
73   Standard_EXPORT Standard_Real First() const;
74   
75   Standard_EXPORT Standard_Real Last() const;
76   
77   Standard_EXPORT const TColStd_ListOfReal& List() const;
78   
79   Standard_EXPORT const Standard_GUID& ID() const Standard_OVERRIDE;
80   
81   Standard_EXPORT void Restore (const Handle(TDF_Attribute)& With) Standard_OVERRIDE;
82   
83   Standard_EXPORT Handle(TDF_Attribute) NewEmpty() const Standard_OVERRIDE;
84   
85   Standard_EXPORT void Paste (const Handle(TDF_Attribute)& Into, const Handle(TDF_RelocationTable)& RT) const Standard_OVERRIDE;
86   
87   Standard_EXPORT virtual Standard_OStream& Dump (Standard_OStream& anOS) const Standard_OVERRIDE;
88
89
90
91
92   DEFINE_STANDARD_RTTI(TDataStd_RealList,TDF_Attribute)
93
94 protected:
95
96
97
98
99 private:
100
101
102   TColStd_ListOfReal myList;
103
104
105 };
106
107
108
109
110
111
112
113 #endif // _TDataStd_RealList_HeaderFile