Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:04:08

0001 // Created on: 1993-04-05
0002 // Created by: Christian CAILLET
0003 // Copyright (c) 1993-1999 Matra Datavision
0004 // Copyright (c) 1999-2014 OPEN CASCADE SAS
0005 //
0006 // This file is part of Open CASCADE Technology software library.
0007 //
0008 // This library is free software; you can redistribute it and/or modify it under
0009 // the terms of the GNU Lesser General Public License version 2.1 as published
0010 // by the Free Software Foundation, with special exception defined in the file
0011 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0012 // distribution for complete text of the license and disclaimer of any warranty.
0013 //
0014 // Alternatively, this file may be used under the terms of Open CASCADE
0015 // commercial license or contractual agreement.
0016 
0017 #ifndef _Interface_ShareFlags_HeaderFile
0018 #define _Interface_ShareFlags_HeaderFile
0019 
0020 #include <Standard.hxx>
0021 #include <Standard_DefineAlloc.hxx>
0022 #include <Standard_Handle.hxx>
0023 
0024 #include <Interface_BitMap.hxx>
0025 #include <TColStd_HSequenceOfTransient.hxx>
0026 #include <Standard_Integer.hxx>
0027 class Interface_InterfaceModel;
0028 class Interface_GeneralLib;
0029 class Interface_GTool;
0030 class Interface_Protocol;
0031 class Interface_Graph;
0032 class Standard_Transient;
0033 class Interface_EntityIterator;
0034 
0035 
0036 //! This class only says for each Entity of a Model, if it is
0037 //! Shared or not by one or more other(s) of this Model
0038 //! It uses the General Service "Shared".
0039 class Interface_ShareFlags 
0040 {
0041 public:
0042 
0043   DEFINE_STANDARD_ALLOC
0044 
0045   
0046   //! Creates a ShareFlags from a Model and builds required data
0047   //! (flags) by calling the General Service Library given as
0048   //! argument <lib>
0049   Standard_EXPORT Interface_ShareFlags(const Handle(Interface_InterfaceModel)& amodel, const Interface_GeneralLib& lib);
0050   
0051   //! Same as above, but GeneralLib is detained by a GTool
0052   Standard_EXPORT Interface_ShareFlags(const Handle(Interface_InterfaceModel)& amodel, const Handle(Interface_GTool)& gtool);
0053   
0054   //! Same as above, but GeneralLib is defined through a Protocol
0055   Standard_EXPORT Interface_ShareFlags(const Handle(Interface_InterfaceModel)& amodel, const Handle(Interface_Protocol)& protocol);
0056   
0057   //! Same as above, but works with the GTool of the Model
0058   Standard_EXPORT Interface_ShareFlags(const Handle(Interface_InterfaceModel)& amodel);
0059   
0060   //! Creates a ShareFlags by querying information from a Graph
0061   //! (remark that Graph also has a method IsShared)
0062   Standard_EXPORT Interface_ShareFlags(const Interface_Graph& agraph);
0063   
0064   //! Returns the Model used for the evaluation
0065   Standard_EXPORT Handle(Interface_InterfaceModel) Model() const;
0066   
0067   //! Returns True if <ent> is Shared by one or more other
0068   //! Entity(ies) of the Model
0069   Standard_EXPORT Standard_Boolean IsShared (const Handle(Standard_Transient)& ent) const;
0070   
0071   //! Returns the Entities which are not Shared (see their flags)
0072   Standard_EXPORT Interface_EntityIterator RootEntities() const;
0073   
0074   //! Returns the count of root entities
0075   Standard_EXPORT Standard_Integer NbRoots() const;
0076   
0077   //! Returns a root entity according its rank in the list of roots
0078   //! By default, it returns the first one
0079   Standard_EXPORT Handle(Standard_Transient) Root (const Standard_Integer num = 1) const;
0080 
0081 
0082 
0083 
0084 protected:
0085 
0086 
0087 
0088 
0089 
0090 private:
0091 
0092   
0093   //! Computes flags at Creation time
0094   //!
0095   //! Normally, gtool suffices. But if a Graph is created from a
0096   //! GeneralLib directly, it cannot be used
0097   //! If <gtool> is defined, it has priority
0098   Standard_EXPORT void Evaluate (const Interface_GeneralLib& lib, const Handle(Interface_GTool)& gtool);
0099 
0100 
0101   Handle(Interface_InterfaceModel) themodel;
0102   Interface_BitMap theflags;
0103   Handle(TColStd_HSequenceOfTransient) theroots;
0104 
0105 
0106 };
0107 
0108 
0109 
0110 
0111 
0112 
0113 
0114 #endif // _Interface_ShareFlags_HeaderFile