// Created by: DAUTRY Philippe // Copyright (c) 1997-1999 Matra Datavision // Copyright (c) 1999-2014 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. #ifndef _TDF_DataSet_HeaderFile #define _TDF_DataSet_HeaderFile #include #include #include #include #include #include #include #include class TDF_Label; class TDF_Attribute; class TDF_DataSet; DEFINE_STANDARD_HANDLE(TDF_DataSet, Standard_Transient) //! This class is a set of TDF informations like //! labels and attributes. class TDF_DataSet : public Standard_Transient { public: //! Creates an empty DataSet object. Standard_EXPORT TDF_DataSet(); //! Clears all information. Standard_EXPORT void Clear(); //! Returns true if there is at least one label or one //! attribute. Standard_Boolean IsEmpty() const; //! Adds in the current data set. void AddLabel (const TDF_Label& aLabel); //! Returns true if the label is in the data set. Standard_Boolean ContainsLabel (const TDF_Label& aLabel) const; //! Returns the map of labels in this data set. //! This map can be used directly, or updated. TDF_LabelMap& Labels(); //! Adds into the current data set. void AddAttribute (const Handle(TDF_Attribute)& anAttribute); //! Returns true if is in the data set. Standard_Boolean ContainsAttribute (const Handle(TDF_Attribute)& anAttribute) const; //! Returns the map of attributes in the current data set. //! This map can be used directly, or updated. TDF_AttributeMap& Attributes(); //! Adds a root label to . void AddRoot (const TDF_Label& aLabel); //! Returns to be used or updated. TDF_LabelList& Roots(); //! Dumps the minimum information about on //! . Standard_EXPORT Standard_OStream& Dump (Standard_OStream& anOS) const; Standard_OStream& operator<< (Standard_OStream& anOS) const { return Dump(anOS); } DEFINE_STANDARD_RTTIEXT(TDF_DataSet,Standard_Transient) protected: private: TDF_LabelList myRootLabels; TDF_LabelMap myLabelMap; TDF_AttributeMap myAttributeMap; }; #include #endif // _TDF_DataSet_HeaderFile