Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/opencascade/StepData_GeneralModule.hxx was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // Created on: 1993-02-02
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 _StepData_GeneralModule_HeaderFile
0018 #define _StepData_GeneralModule_HeaderFile
0019 
0020 #include <Standard.hxx>
0021 #include <Standard_Type.hxx>
0022 
0023 #include <Interface_GeneralModule.hxx>
0024 #include <Standard_Integer.hxx>
0025 class Standard_Transient;
0026 class Interface_EntityIterator;
0027 class Interface_ShareTool;
0028 class Interface_Check;
0029 class Interface_CopyTool;
0030 
0031 //! Specific features for General Services adapted to STEP
0032 class StepData_GeneralModule : public Interface_GeneralModule
0033 {
0034 
0035 public:
0036   //! Specific filling of the list of Entities shared by an Entity
0037   //! <ent>. Can use the internal utility method Share, below
0038   Standard_EXPORT void FillSharedCase(const int                              casenum,
0039                                       const occ::handle<Standard_Transient>& ent,
0040                                       Interface_EntityIterator& iter) const override = 0;
0041 
0042   //! Specific Checking of an Entity <ent>
0043   Standard_EXPORT void CheckCase(const int                              casenum,
0044                                  const occ::handle<Standard_Transient>& ent,
0045                                  const Interface_ShareTool&             shares,
0046                                  occ::handle<Interface_Check>&          ach) const override = 0;
0047 
0048   //! Specific Copy ("Deep") from <entfrom> to <entto> (same type)
0049   //! by using a TransferControl which provides its working Map.
0050   //! Use method Transferred from TransferControl to work
0051   //! Specific Copying of Implied References
0052   //! A Default is provided which does nothing (must current case !)
0053   //! Already copied references (by CopyFrom) must remain unchanged
0054   //! Use method Search from TransferControl to work
0055   Standard_EXPORT void CopyCase(const int                              casenum,
0056                                 const occ::handle<Standard_Transient>& entfrom,
0057                                 const occ::handle<Standard_Transient>& entto,
0058                                 Interface_CopyTool&                    TC) const override = 0;
0059 
0060   DEFINE_STANDARD_RTTIEXT(StepData_GeneralModule, Interface_GeneralModule)
0061 };
0062 
0063 #endif // _StepData_GeneralModule_HeaderFile