0024002: Overall code and build procedure refactoring -- automatic
[occt.git] / src / TDataStd / TDataStd_BooleanList.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_BooleanList_HeaderFile
17 #define _TDataStd_BooleanList_HeaderFile
18
19 #include <Standard.hxx>
20 #include <Standard_Type.hxx>
21
22 #include <TDataStd_ListOfByte.hxx>
23 #include <TDF_Attribute.hxx>
24 #include <Standard_Boolean.hxx>
25 #include <Standard_Integer.hxx>
26 #include <Standard_OStream.hxx>
27 class Standard_GUID;
28 class TDF_Label;
29 class TDF_Attribute;
30 class TDF_RelocationTable;
31
32
33 class TDataStd_BooleanList;
34 DEFINE_STANDARD_HANDLE(TDataStd_BooleanList, TDF_Attribute)
35
36 //! Contains a list of bolleans.
37 class TDataStd_BooleanList : public TDF_Attribute
38 {
39
40 public:
41
42   
43   //! Static methods
44   //! ==============
45   //! Returns the ID of the list of booleans attribute.
46   Standard_EXPORT static const Standard_GUID& GetID();
47   
48   //! Finds or creates a list of boolean values attribute.
49   Standard_EXPORT static Handle(TDataStd_BooleanList) Set (const TDF_Label& label);
50   
51   Standard_EXPORT TDataStd_BooleanList();
52   
53   Standard_EXPORT Standard_Boolean IsEmpty() const;
54   
55   Standard_EXPORT Standard_Integer Extent() const;
56   
57   Standard_EXPORT void Prepend (const Standard_Boolean value);
58   
59   Standard_EXPORT void Append (const Standard_Boolean value);
60   
61   Standard_EXPORT void Clear();
62   
63   Standard_EXPORT Standard_Boolean First() const;
64   
65   Standard_EXPORT Standard_Boolean Last() const;
66   
67   //! 1 - means TRUE,
68   //! 0 - means FALSE.
69   Standard_EXPORT const TDataStd_ListOfByte& List() const;
70   
71   Standard_EXPORT const Standard_GUID& ID() const;
72   
73   Standard_EXPORT void Restore (const Handle(TDF_Attribute)& With);
74   
75   Standard_EXPORT Handle(TDF_Attribute) NewEmpty() const;
76   
77   Standard_EXPORT void Paste (const Handle(TDF_Attribute)& Into, const Handle(TDF_RelocationTable)& RT) const;
78   
79   Standard_EXPORT virtual Standard_OStream& Dump (Standard_OStream& anOS) const Standard_OVERRIDE;
80
81
82
83
84   DEFINE_STANDARD_RTTI(TDataStd_BooleanList,TDF_Attribute)
85
86 protected:
87
88
89
90
91 private:
92
93
94   TDataStd_ListOfByte myList;
95
96
97 };
98
99
100
101
102
103
104
105 #endif // _TDataStd_BooleanList_HeaderFile