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_BooleanList_HeaderFile
0017 #define _TDataStd_BooleanList_HeaderFile
0018 
0019 #include <Standard.hxx>
0020 
0021 #include <TDataStd_ListOfByte.hxx>
0022 #include <TDF_Attribute.hxx>
0023 #include <Standard_Integer.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_BooleanList;
0032 DEFINE_STANDARD_HANDLE(TDataStd_BooleanList, TDF_Attribute)
0033 
0034 //! Contains a list of bolleans.
0035 class TDataStd_BooleanList : public TDF_Attribute
0036 {
0037 
0038 public:
0039 
0040   
0041   //! Static methods
0042   //! ==============
0043   //! Returns the ID of the list of booleans attribute.
0044   Standard_EXPORT static const Standard_GUID& GetID();
0045   
0046   //! Finds or creates a list of boolean values attribute.
0047   Standard_EXPORT static Handle(TDataStd_BooleanList) Set (const TDF_Label& label);
0048 
0049   //! Finds or creates a list of boolean values attribute with explicit user defined <guid>.
0050   Standard_EXPORT static Handle(TDataStd_BooleanList) Set (const TDF_Label& label, const Standard_GUID& theGuid);
0051   
0052   Standard_EXPORT TDataStd_BooleanList();
0053   
0054   Standard_EXPORT Standard_Boolean IsEmpty() const;
0055   
0056   Standard_EXPORT Standard_Integer Extent() const;
0057   
0058   Standard_EXPORT void Prepend (const Standard_Boolean value);
0059   
0060   Standard_EXPORT void Append (const Standard_Boolean value);
0061   
0062   Standard_EXPORT void Clear();
0063   
0064   Standard_EXPORT Standard_Boolean First() const;
0065   
0066   Standard_EXPORT Standard_Boolean Last() const;
0067   
0068   //! 1 - means TRUE,
0069   //! 0 - means FALSE.
0070   Standard_EXPORT const TDataStd_ListOfByte& List() const;
0071   
0072   //! Inserts the <value> before the <index> position.
0073   //! The indices start with 1 .. Extent().
0074   Standard_EXPORT Standard_Boolean InsertBefore (const Standard_Integer index, const Standard_Boolean before_value);
0075   
0076   //! Inserts the <value> after the <index> position.
0077   //! The indices start with 1 .. Extent().
0078   Standard_EXPORT Standard_Boolean InsertAfter (const Standard_Integer index, const Standard_Boolean after_value);
0079   
0080   //! Removes a value at <index> position.
0081   Standard_EXPORT Standard_Boolean Remove (const Standard_Integer index);
0082 
0083   //! Sets the explicit GUID (user defined) for the attribute.
0084   Standard_EXPORT void SetID( const Standard_GUID&  theGuid) Standard_OVERRIDE;
0085 
0086   //! Sets default GUID for the attribute.
0087   Standard_EXPORT void SetID() Standard_OVERRIDE;
0088 
0089   Standard_EXPORT const Standard_GUID& ID() const Standard_OVERRIDE;
0090   
0091   Standard_EXPORT void Restore (const Handle(TDF_Attribute)& With) Standard_OVERRIDE;
0092   
0093   Standard_EXPORT Handle(TDF_Attribute) NewEmpty() const Standard_OVERRIDE;
0094   
0095   Standard_EXPORT void Paste (const Handle(TDF_Attribute)& Into, const Handle(TDF_RelocationTable)& RT) const Standard_OVERRIDE;
0096   
0097   Standard_EXPORT virtual Standard_OStream& Dump (Standard_OStream& anOS) const Standard_OVERRIDE;
0098 
0099   //! Dumps the content of me into the stream
0100   Standard_EXPORT virtual void DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth = -1) const Standard_OVERRIDE;
0101 
0102 
0103 
0104 
0105   DEFINE_STANDARD_RTTIEXT(TDataStd_BooleanList,TDF_Attribute)
0106 
0107 protected:
0108 
0109 
0110 
0111 
0112 private:
0113 
0114 
0115   TDataStd_ListOfByte myList;
0116   Standard_GUID myID;
0117 
0118 };
0119 
0120 
0121 
0122 
0123 
0124 
0125 
0126 #endif // _TDataStd_BooleanList_HeaderFile