// Created on: 1999-11-03 // Created by: Denis PASCAL // Copyright (c) 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 _TNaming_Scope_HeaderFile #define _TNaming_Scope_HeaderFile #include #include #include #include #include class TDF_Label; class TopoDS_Shape; class TNaming_NamedShape; //! this class manage a scope of labels //! =================================== class TNaming_Scope { public: DEFINE_STANDARD_ALLOC //! WithValid = FALSE Standard_EXPORT TNaming_Scope(); //! if the scope is defined by the map. If not //! on the whole framework. Standard_EXPORT TNaming_Scope(const Standard_Boolean WithValid); //! create a scope with a map. WithValid = TRUE. Standard_EXPORT TNaming_Scope(TDF_LabelMap& valid); Standard_EXPORT Standard_Boolean WithValid() const; Standard_EXPORT void WithValid (const Standard_Boolean mode); Standard_EXPORT void ClearValid(); Standard_EXPORT void Valid (const TDF_Label& L); Standard_EXPORT void ValidChildren (const TDF_Label& L, const Standard_Boolean withroot = Standard_True); Standard_EXPORT void Unvalid (const TDF_Label& L); Standard_EXPORT void UnvalidChildren (const TDF_Label& L, const Standard_Boolean withroot = Standard_True); Standard_EXPORT Standard_Boolean IsValid (const TDF_Label& L) const; Standard_EXPORT const TDF_LabelMap& GetValid() const; Standard_EXPORT TDF_LabelMap& ChangeValid(); //! Returns the current value of according to the //! Valid Scope. Standard_EXPORT TopoDS_Shape CurrentShape (const Handle(TNaming_NamedShape)& NS) const; protected: private: Standard_Boolean myWithValid; TDF_LabelMap myValid; }; #endif // _TNaming_Scope_HeaderFile