Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-06-01 08:32:55

0001 // Created on: 1992-09-23
0002 // Created by: Christian CAILLET
0003 // Copyright (c) 1992-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_GraphContent_HeaderFile
0018 #define _Interface_GraphContent_HeaderFile
0019 
0020 #include <Standard.hxx>
0021 #include <Standard_DefineAlloc.hxx>
0022 #include <Standard_Handle.hxx>
0023 
0024 #include <Interface_EntityIterator.hxx>
0025 #include <Standard_Integer.hxx>
0026 class Interface_Graph;
0027 class Standard_Transient;
0028 
0029 //! Defines general form for classes of graph algorithms on
0030 //! Interfaces, this form is that of EntityIterator
0031 //! Each sub-class fills it according to its own algorithm
0032 //! This also allows to combine any graph result to others,
0033 //! all being given under one unique form
0034 class Interface_GraphContent : public Interface_EntityIterator
0035 {
0036 public:
0037   DEFINE_STANDARD_ALLOC
0038 
0039   //! Creates an empty GraphContent, ready to be filled
0040   Standard_EXPORT Interface_GraphContent();
0041 
0042   //! Creates with all entities designated by a Graph
0043   Standard_EXPORT Interface_GraphContent(const Interface_Graph& agraph);
0044 
0045   //! Creates with entities having specific Status value in a Graph
0046   Standard_EXPORT Interface_GraphContent(const Interface_Graph& agraph,
0047                                          const Standard_Integer stat);
0048 
0049   //! Creates an Iterator with Shared entities of an entity
0050   //! (equivalente to EntityIterator but with a Graph)
0051   Standard_EXPORT Interface_GraphContent(const Interface_Graph&            agraph,
0052                                          const Handle(Standard_Transient)& ent);
0053 
0054   //! Gets all Entities designated by a Graph (once created), adds
0055   //! them to those already recorded
0056   Standard_EXPORT void GetFromGraph(const Interface_Graph& agraph);
0057 
0058   //! Gets entities from a graph which have a specific Status value
0059   //! (one created), adds them to those already recorded
0060   Standard_EXPORT void GetFromGraph(const Interface_Graph& agraph, const Standard_Integer stat);
0061 
0062   //! Returns Result under the exact form of an EntityIterator :
0063   //! Can be used when EntityIterator itself is required (as a
0064   //! returned value for instance), without way for a sub-class
0065   Standard_EXPORT Interface_EntityIterator Result();
0066 
0067   //! Does the Evaluation before starting the iteration itself
0068   //! (in out)
0069   Standard_EXPORT void Begin();
0070 
0071   //! Evaluates list of Entities to be iterated. Called by Start
0072   //! Default is set to doing nothing : intended to be redefined
0073   //! by each sub-class
0074   Standard_EXPORT virtual void Evaluate();
0075 
0076 protected:
0077 private:
0078 };
0079 
0080 #endif // _Interface_GraphContent_HeaderFile