1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
occt/src/TDF/TDF_DataSet.hxx
dpasukhi a5a7b3185b Coding - Apply .clang-format formatting #286
Update empty method guards to new style with regex (see PR).
Used clang-format 18.1.8.
New actions to validate code formatting is added.
Update .clang-format with disabling of include sorting.
  It is temporary changes, then include will be sorted.
Apply formatting for /src and /tools folder.
The files with .hxx,.cxx,.lxx,.h,.pxx,.hpp,*.cpp extensions.
2025-01-26 00:43:57 +00:00

92 lines
2.8 KiB
C++

// 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 <Standard.hxx>
#include <TDF_LabelList.hxx>
#include <TDF_LabelMap.hxx>
#include <TDF_AttributeMap.hxx>
#include <Standard_Transient.hxx>
#include <Standard_Boolean.hxx>
#include <Standard_OStream.hxx>
class TDF_Label;
class TDF_Attribute;
class TDF_DataSet;
DEFINE_STANDARD_HANDLE(TDF_DataSet, Standard_Transient)
//! This class is a set of TDF information 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 <aLabel> in the current data set.
void AddLabel(const TDF_Label& aLabel);
//! Returns true if the label <alabel> 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 <anAttribute> into the current data set.
void AddAttribute(const Handle(TDF_Attribute)& anAttribute);
//! Returns true if <anAttribute> 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 <myRootLabels>.
void AddRoot(const TDF_Label& aLabel);
//! Returns <myRootLabels> to be used or updated.
TDF_LabelList& Roots();
//! Dumps the minimum information about <me> on
//! <aStream>.
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 <TDF_DataSet.lxx>
#endif // _TDF_DataSet_HeaderFile