diff --git a/CMakeLists.txt b/CMakeLists.txt index cda0db459c..ecf552e639 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -393,7 +393,8 @@ endif() # include original list of modules # list _TOOLKITS is created foreach module and contains its toolkits # list will contain all modules -OCCT_MODULES_AND_TOOLKITS (MODULES "TOOLKITS" OCCT_MODULES) +OCCT_INCLUDE_CMAKE_FILE ("src/MODULES") +set (OCCT_MODULES ${OCCT_LIST_OF_MODULES}) foreach (OCCT_MODULE ${OCCT_MODULES}) BUILD_MODULE (${OCCT_MODULE}) @@ -413,7 +414,7 @@ list (APPEND BUILD_TOOLKITS ${BUILD_ADDITIONAL_TOOLKITS}) foreach (OCCT_MODULE ${OCCT_MODULES}) if (BUILD_MODULE_${OCCT_MODULE}) - list (APPEND BUILD_TOOLKITS ${${OCCT_MODULE}_TOOLKITS}) + list (APPEND BUILD_TOOLKITS ${OCCT_${OCCT_MODULE}_LIST_OF_TOOLKITS}) endif() endforeach() @@ -1180,7 +1181,7 @@ endif() # include patched toolkit projects or original ones foreach (BUILD_TOOLKIT ${BUILD_TOOLKITS}) - OCCT_ADD_SUBDIRECTORY ("src/${BUILD_TOOLKIT}") + add_subdirectory ("${OCCT_${BUILD_TOOLKIT}_FILES_LOCATION}") endforeach() if (BUILD_DOC_Overview) diff --git a/adm/cmake/occt_doc.cmake b/adm/cmake/occt_doc.cmake index f0b7fe5575..e43b20c58c 100644 --- a/adm/cmake/occt_doc.cmake +++ b/adm/cmake/occt_doc.cmake @@ -33,6 +33,7 @@ function(OCCT_DOC_CREATE_MODULE_DEPENDENCY_GRAPH OUTPUT_DIR FILENAME) foreach(MODULE ${OCCT_MODULES}) if(NOT "${MODULE}" STREQUAL "") + # module name in lowercase file(APPEND ${DOT_FILE} "\t${MODULE} [ URL = \"module_${MODULE}.html\" ]\n") # Add dependencies between modules @@ -119,7 +120,9 @@ function(OCCT_DOC_GENERATE_MAIN_PAGE OUTPUT_DIR OUTPUT_FILE) # List all modules foreach(MODULE ${OCCT_MODULES}) if(NOT "${MODULE}" STREQUAL "") - file(APPEND ${MAIN_PAGE_FILE} "\\li \\subpage module_${MODULE}\n") + # page id must be in lowercase + string(TOLOWER ${MODULE} MODULE_LOWER) + file(APPEND ${MAIN_PAGE_FILE} "\\li \\subpage module_${MODULE_LOWER}\n") endif() endforeach() # Add modules relationship diagram @@ -137,7 +140,9 @@ function(OCCT_DOC_GENERATE_MAIN_PAGE OUTPUT_DIR OUTPUT_FILE) if(DOC_SINGLE_MODULE) file(APPEND ${MAIN_PAGE_FILE} "\\mainpage OCCT Module ${MODULE}\n") else() - file(APPEND ${MAIN_PAGE_FILE} "\\page module_${MODULE} Module ${MODULE}\n") + # page id must be in lowercase + string(TOLOWER ${MODULE} MODULE_LOWER) + file(APPEND ${MAIN_PAGE_FILE} "\\page module_${MODULE_LOWER} Module ${MODULE}\n") endif() # List toolkits in the module @@ -157,7 +162,9 @@ function(OCCT_DOC_GENERATE_MAIN_PAGE OUTPUT_DIR OUTPUT_FILE) if(NOT "${MODULE}" STREQUAL "") foreach(TOOLKIT ${TOOLKITS_IN_MODULE_${MODULE}}) file(APPEND ${MAIN_PAGE_FILE} "/**\n") - file(APPEND ${MAIN_PAGE_FILE} "\\page toolkit_${TOOLKIT} Toolkit ${TOOLKIT}\n") + # page id must be in lowercase + string(TOLOWER ${TOOLKIT} TOOLKIT_LOWER) + file(APPEND ${MAIN_PAGE_FILE} "\\page toolkit_${TOOLKIT_LOWER} Toolkit ${TOOLKIT}\n") # List packages in toolkit foreach(PACKAGE ${PACKAGES_IN_TOOLKIT_${TOOLKIT}}) @@ -179,17 +186,20 @@ function(OCCT_DOC_GENERATE_MAIN_PAGE OUTPUT_DIR OUTPUT_FILE) foreach(TOOLKIT ${TOOLKITS_IN_MODULE_${MODULE}}) foreach(PACKAGE ${PACKAGES_IN_TOOLKIT_${TOOLKIT}}) file(APPEND ${MAIN_PAGE_FILE} "/**\n") - file(APPEND ${MAIN_PAGE_FILE} "\\page package_${PACKAGE} Package ${PACKAGE}\n") + # page id must be in lowercase + string(TOLOWER ${PACKAGE} PACKAGE_LOWER) + file(APPEND ${MAIN_PAGE_FILE} "\\page package_${PACKAGE_LOWER} Package ${PACKAGE}\n") # Find header files in the package - file(GLOB PACKAGE_HEADERS "${CMAKE_SOURCE_DIR}/src/${PACKAGE}/*.hxx") - foreach(HEADER ${PACKAGE_HEADERS}) + EXTRACT_PACKAGE_FILES ("src" ${PACKAGE} ALL_FILES _) + set (HEADER_FILES_FILTERING ${ALL_FILES}) + list (FILTER HEADER_FILES_FILTERING INCLUDE REGEX ".+[.](h|hxx|hpp)$") + + foreach(HEADER ${HEADER_FILES_FILTERING}) get_filename_component(HEADER_NAME ${HEADER} NAME_WE) - if(NOT HEADER_NAME MATCHES "^Handle_" AND NOT HEADER_NAME MATCHES "^Standard$") - file(APPEND ${MAIN_PAGE_FILE} "\\li \\subpage ${HEADER_NAME}\n") - # Append header file to DOXYGEN_INPUT_FILES list - list(APPEND DOXYGEN_INPUT_FILES "${HEADER}") - endif() + file(APPEND ${MAIN_PAGE_FILE} "\\li \\subpage ${HEADER_NAME}\n") + # Append header file to DOXYGEN_INPUT_FILES list + list(APPEND DOXYGEN_INPUT_FILES "${HEADER}") endforeach() file(APPEND ${MAIN_PAGE_FILE} "**/\n\n") diff --git a/adm/cmake/occt_macros.cmake b/adm/cmake/occt_macros.cmake index b41d2abe80..b41fd3743f 100644 --- a/adm/cmake/occt_macros.cmake +++ b/adm/cmake/occt_macros.cmake @@ -241,30 +241,18 @@ macro (OCCT_CONFIGURE_AND_INSTALL BEING_CONGIRUGED_FILE BUILD_NAME INSTALL_NAME endmacro() function (EXTRACT_TOOLKIT_PACKAGES RELATIVE_PATH OCCT_TOOLKIT RESULT_PACKAGES) - set (OCCT_TOOLKIT_PACKAGES "") - get_property(OCCT_TOOLKIT_PACKAGES GLOBAL PROPERTY OCCT_TOOLKIT_${OCCT_TOOLKIT}_PACKAGES) - if (OCCT_TOOLKIT_PACKAGES) - set (${RESULT_PACKAGES} ${OCCT_TOOLKIT_PACKAGES} PARENT_SCOPE) - return() - endif() - FILE_TO_LIST ("${RELATIVE_PATH}/${OCCT_TOOLKIT}/PACKAGES" OCCT_TOOLKIT_PACKAGES) - set (${RESULT_PACKAGES} ${OCCT_TOOLKIT_PACKAGES} PARENT_SCOPE) - set_property(GLOBAL PROPERTY OCCT_TOOLKIT_${OCCT_TOOLKIT}_PACKAGES "${OCCT_TOOLKIT_PACKAGES}") + set (${RESULT_PACKAGES} ${OCCT_${OCCT_TOOLKIT}_LIST_OF_PACKAGES} PARENT_SCOPE) endfunction() function(EXTRACT_TOOLKIT_EXTERNLIB RELATIVE_PATH OCCT_TOOLKIT RESULT_LIBS) - set (OCCT_TOOLKIT_LIBS "") - get_property(OCCT_TOOLKIT_LIBS GLOBAL PROPERTY OCCT_TOOLKIT_${OCCT_TOOLKIT}_LIBS) - if (OCCT_TOOLKIT_LIBS) - set (${RESULT_LIBS} ${OCCT_TOOLKIT_LIBS} PARENT_SCOPE) - return() - endif() - FILE_TO_LIST ("${RELATIVE_PATH}/${OCCT_TOOLKIT}/EXTERNLIB" OCCT_TOOLKIT_LIBS) - set (${RESULT_LIBS} ${OCCT_TOOLKIT_LIBS} PARENT_SCOPE) - set_property(GLOBAL PROPERTY OCCT_TOOLKIT_${OCCT_TOOLKIT}_LIBS "${OCCT_TOOLKIT_LIBS}") + set (${RESULT_LIBS} ${OCCT_${OCCT_TOOLKIT}_EXTERNAL_LIBS} PARENT_SCOPE) endfunction() function (EXTRACT_PACKAGE_FILES RELATIVE_PATH OCCT_PACKAGE RESULT_FILES RESULT_INCLUDE_FOLDER) + + # Package name can be relative path, need to get only the name of the final element + get_filename_component (OCCT_PACKAGE ${OCCT_PACKAGE} NAME) + # package name is not unique, it can be reuse in tools and src, # use extra parameter as relative path to distinguish between them set (OCCT_PACKAGE_FILES "") @@ -276,27 +264,20 @@ function (EXTRACT_PACKAGE_FILES RELATIVE_PATH OCCT_PACKAGE RESULT_FILES RESULT_I return() endif() - if (EXISTS "${CMAKE_SOURCE_DIR}/${RELATIVE_PATH}/${OCCT_PACKAGE}/FILES") - file (STRINGS "${CMAKE_SOURCE_DIR}/${RELATIVE_PATH}/${OCCT_PACKAGE}/FILES" OCCT_PACKAGE_FILES) - set (OCCT_PACKAGE_INCLUDE_DIR "${CMAKE_SOURCE_DIR}/${RELATIVE_PATH}/${OCCT_PACKAGE}") - endif() + set (OCCT_PACKAGE_INCLUDE_DIR "${OCCT_${OCCT_PACKAGE}_FILES_LOCATION}") + set (OCCT_PACKAGE_FILES "${OCCT_${OCCT_PACKAGE}_FILES}") - # collect and searach for the files in the package directory or patached one + # collect and search for the files in the package directory or patched one # FILE contains inly filename that must to be inside package or patched directory set (FILE_PATH_LIST) foreach (OCCT_FILE ${OCCT_PACKAGE_FILES}) string (REGEX REPLACE "[^:]+:+" "" OCCT_FILE "${OCCT_FILE}") - FIND_FOLDER_OR_FILE ("${RELATIVE_PATH}/${OCCT_PACKAGE}/${OCCT_FILE}" CUSTOM_FILE_PATH) - if (CUSTOM_FILE_PATH) - list (APPEND FILE_PATH_LIST "${CUSTOM_FILE_PATH}") - else() - message(WARNING "File ${OCCT_FILE} has not been found in ${CMAKE_SOURCE_DIR}/${RELATIVE_PATH}/${OCCT_PACKAGE}") - endif() + list (APPEND FILE_PATH_LIST "${OCCT_PACKAGE_INCLUDE_DIR}/${OCCT_FILE}") endforeach() if (NOT FILE_PATH_LIST) - message (WARNING "FILES has not been found in ${CMAKE_SOURCE_DIR}/${RELATIVE_PATH}/${OCCT_PACKAGE}") + message (WARNING "FILES has not been found in ${OCCT_PACKAGE_INCLUDE_DIR} for package ${OCCT_PACKAGE}") endif() set (${RESULT_FILES} ${FILE_PATH_LIST} PARENT_SCOPE) @@ -305,7 +286,11 @@ function (EXTRACT_PACKAGE_FILES RELATIVE_PATH OCCT_PACKAGE RESULT_FILES RESULT_I set_property(GLOBAL PROPERTY OCCT_PACKAGE_${RELATIVE_PATH}_${OCCT_PACKAGE}_INCLUDE_DIR "${OCCT_PACKAGE_INCLUDE_DIR}") endfunction() -function(EXCTRACT_TOOLKIT_DEPS RELATIVE_PATH OCCT_TOOLKIT RESULT_TKS_AS_DEPS RESULT_INCLUDE_FOLDERS) +# SOLUTION_TYPE: MODULES, TOOLS, SAMPLES +# OCCT_TOOLKIT: TK* +# RESULT_TKS_AS_DEPS: TK* dependencies +# RESULT_INCLUDE_FOLDERS: include folders +function(EXCTRACT_TOOLKIT_DEPS SOLUTION_TYPE OCCT_TOOLKIT RESULT_TKS_AS_DEPS RESULT_INCLUDE_FOLDERS) set (OCCT_TOOLKIT_DEPS "") set (OCCT_TOOLKIT_INCLUDE_FOLDERS "") get_property(OCCT_TOOLKIT_DEPS GLOBAL PROPERTY OCCT_TOOLKIT_${OCCT_TOOLKIT}_DEPS) @@ -316,7 +301,7 @@ function(EXCTRACT_TOOLKIT_DEPS RELATIVE_PATH OCCT_TOOLKIT RESULT_TKS_AS_DEPS RES return() endif() set (EXTERNAL_LIBS) - EXTRACT_TOOLKIT_EXTERNLIB (${RELATIVE_PATH} ${OCCT_TOOLKIT} EXTERNAL_LIBS) + EXTRACT_TOOLKIT_EXTERNLIB (${SOLUTION_TYPE} ${OCCT_TOOLKIT} EXTERNAL_LIBS) foreach (EXTERNAL_LIB ${EXTERNAL_LIBS}) string (REGEX MATCH "^TK" TK_FOUND ${EXTERNAL_LIB}) if (TK_FOUND) @@ -325,9 +310,9 @@ function(EXCTRACT_TOOLKIT_DEPS RELATIVE_PATH OCCT_TOOLKIT RESULT_TKS_AS_DEPS RES endforeach() set (OCCT_TOOLKIT_PACKAGES) - EXTRACT_TOOLKIT_PACKAGES (${RELATIVE_PATH} ${OCCT_TOOLKIT} OCCT_TOOLKIT_PACKAGES) + EXTRACT_TOOLKIT_PACKAGES (${SOLUTION_TYPE} ${OCCT_TOOLKIT} OCCT_TOOLKIT_PACKAGES) foreach(OCCT_PACKAGE ${OCCT_TOOLKIT_PACKAGES}) - EXTRACT_PACKAGE_FILES (${RELATIVE_PATH} ${OCCT_PACKAGE} OCCT_PACKAGE_FILES OCCT_PACKAGE_INCLUDE_DIR) + EXTRACT_PACKAGE_FILES (${SOLUTION_TYPE} ${OCCT_PACKAGE} OCCT_PACKAGE_FILES OCCT_PACKAGE_INCLUDE_DIR) list (APPEND OCCT_TOOLKIT_INCLUDE_FOLDERS ${OCCT_PACKAGE_INCLUDE_DIR}) endforeach() @@ -337,7 +322,11 @@ function(EXCTRACT_TOOLKIT_DEPS RELATIVE_PATH OCCT_TOOLKIT RESULT_TKS_AS_DEPS RES set_property(GLOBAL PROPERTY OCCT_TOOLKIT_${OCCT_TOOLKIT}_INCLUDE_FOLDERS "${OCCT_TOOLKIT_INCLUDE_FOLDERS}") endfunction() -function(EXCTRACT_TOOLKIT_FULL_DEPS RELATIVE_PATH OCCT_TOOLKIT RESULT_TKS_AS_DEPS RESULT_INCLUDE_FOLDERS) +# SOLUTION_TYPE: MODULES, TOOLS, SAMPLES +# OCCT_TOOLKIT: TK* +# RESULT_TKS_AS_DEPS: list of TK* dependencies +# RESULT_INCLUDE_FOLDERS: list of include folders +function(EXCTRACT_TOOLKIT_FULL_DEPS SOLUTION_TYPE OCCT_TOOLKIT RESULT_TKS_AS_DEPS RESULT_INCLUDE_FOLDERS) set (OCCT_TOOLKIT_DEPS "") set (OCCT_TOOLKIT_INCLUDE_FOLDERS "") get_property(OCCT_TOOLKIT_DEPS GLOBAL PROPERTY OCCT_TOOLKIT_${OCCT_TOOLKIT}_FULL_DEPS) @@ -348,12 +337,12 @@ function(EXCTRACT_TOOLKIT_FULL_DEPS RELATIVE_PATH OCCT_TOOLKIT RESULT_TKS_AS_DEP return() endif() - EXCTRACT_TOOLKIT_DEPS(${RELATIVE_PATH} ${OCCT_TOOLKIT} OCCT_TOOLKIT_DEPS OCCT_TOOLKIT_INCLUDE_DIR) + EXCTRACT_TOOLKIT_DEPS(${SOLUTION_TYPE} ${OCCT_TOOLKIT} OCCT_TOOLKIT_DEPS OCCT_TOOLKIT_INCLUDE_DIR) list(APPEND OCCT_TOOLKIT_FULL_DEPS ${OCCT_TOOLKIT_DEPS}) list(APPEND OCCT_TOOLKIT_INCLUDE_FOLDERS ${OCCT_TOOLKIT_INCLUDE_DIR}) foreach(DEP ${OCCT_TOOLKIT_DEPS}) - EXCTRACT_TOOLKIT_FULL_DEPS(${RELATIVE_PATH} ${DEP} DEP_TOOLKIT_DEPS DEP_INCLUDE_DIRS) + EXCTRACT_TOOLKIT_FULL_DEPS(${SOLUTION_TYPE} ${DEP} DEP_TOOLKIT_DEPS DEP_INCLUDE_DIRS) list(APPEND OCCT_TOOLKIT_FULL_DEPS ${DEP_TOOLKIT_DEPS}) list(APPEND OCCT_TOOLKIT_INCLUDE_FOLDERS ${DEP_INCLUDE_DIRS}) endforeach() diff --git a/adm/cmake/vardescr.cmake b/adm/cmake/vardescr.cmake index 2ba701cab8..27389d16df 100644 --- a/adm/cmake/vardescr.cmake +++ b/adm/cmake/vardescr.cmake @@ -215,4 +215,14 @@ set (INSTALL_DOC_RefMan_DESCR macro (BUILD_MODULE MODULE_NAME) set (ENABLE_MODULE TRUE) set (BUILD_MODULE_${MODULE_NAME} ${ENABLE_MODULE} CACHE BOOL "${BUILD_MODULE_${MODULE_NAME}_DESCR}") + OCCT_INCLUDE_CMAKE_FILE (src/${MODULE_NAME}/TOOLKITS) + set (${MODULE_NAME}_TOOLKITS ${OCCT_${MODULE_NAME}_LIST_OF_TOOLKITS}) + foreach (TOOLKIT ${OCCT_${MODULE_NAME}_LIST_OF_TOOLKITS}) + OCCT_INCLUDE_CMAKE_FILE (src/${MODULE_NAME}/${TOOLKIT}/PACKAGES) + OCCT_INCLUDE_CMAKE_FILE (src/${MODULE_NAME}/${TOOLKIT}/EXTERNLIB) + OCCT_INCLUDE_CMAKE_FILE (src/${MODULE_NAME}/${TOOLKIT}/FILES) + foreach (PACKAGE ${OCCT_${TOOLKIT}_LIST_OF_PACKAGES}) + OCCT_INCLUDE_CMAKE_FILE (src/${MODULE_NAME}/${TOOLKIT}/${PACKAGE}/FILES) + endforeach() + endforeach() endmacro() diff --git a/src/AIS/FILES b/src/AIS/FILES deleted file mode 100644 index 980326d955..0000000000 --- a/src/AIS/FILES +++ /dev/null @@ -1,137 +0,0 @@ -AIS.hxx -AIS_Animation.cxx -AIS_Animation.hxx -AIS_AnimationTimer.hxx -AIS_AnimationAxisRotation.cxx -AIS_AnimationAxisRotation.hxx -AIS_AnimationCamera.cxx -AIS_AnimationCamera.hxx -AIS_AnimationObject.cxx -AIS_AnimationObject.hxx -AIS_AttributeFilter.cxx -AIS_AttributeFilter.hxx -AIS_Axis.cxx -AIS_Axis.hxx -AIS_BadEdgeFilter.cxx -AIS_BadEdgeFilter.hxx -AIS_BaseAnimationObject.cxx -AIS_BaseAnimationObject.hxx -AIS_C0RegularityFilter.cxx -AIS_C0RegularityFilter.hxx -AIS_CameraFrustum.cxx -AIS_CameraFrustum.hxx -AIS_Circle.cxx -AIS_Circle.hxx -AIS_ColoredDrawer.hxx -AIS_ColoredShape.cxx -AIS_ColoredShape.hxx -AIS_DataMapOfShapeDrawer.hxx -AIS_ColorScale.cxx -AIS_ColorScale.hxx -AIS_ConnectedInteractive.cxx -AIS_ConnectedInteractive.hxx -AIS_DataMapIteratorOfDataMapOfIOStatus.hxx -AIS_DataMapOfIOStatus.hxx -AIS_DisplayMode.hxx -AIS_DisplayStatus.hxx -AIS_DragAction.hxx -AIS_ExclusionFilter.cxx -AIS_ExclusionFilter.hxx -AIS_GlobalStatus.cxx -AIS_GlobalStatus.hxx -AIS_GraphicTool.cxx -AIS_GraphicTool.hxx -AIS_InteractiveContext.cxx -AIS_InteractiveContext.hxx -AIS_InteractiveObject.cxx -AIS_InteractiveObject.hxx -AIS_KindOfInteractive.hxx -AIS_LightSource.cxx -AIS_LightSource.hxx -AIS_Line.cxx -AIS_Line.hxx -AIS_ListIteratorOfListOfInteractive.hxx -AIS_ListOfInteractive.hxx -AIS_Manipulator.hxx -AIS_Manipulator.cxx -AIS_ManipulatorMode.hxx -AIS_ManipulatorOwner.hxx -AIS_ManipulatorOwner.cxx -AIS_MediaPlayer.cxx -AIS_MediaPlayer.hxx -AIS_MouseGesture.hxx -AIS_MultipleConnectedInteractive.cxx -AIS_MultipleConnectedInteractive.hxx -AIS_NavigationMode.hxx -AIS_NArray1OfEntityOwner.hxx -AIS_NListOfEntityOwner.hxx -AIS_Plane.cxx -AIS_Plane.hxx -AIS_PlaneTrihedron.cxx -AIS_PlaneTrihedron.hxx -AIS_Point.cxx -AIS_Point.hxx -AIS_PointCloud.cxx -AIS_PointCloud.hxx -AIS_RotationMode.hxx -AIS_RubberBand.hxx -AIS_RubberBand.cxx -AIS_Selection.cxx -AIS_Selection.hxx -AIS_SelectStatus.hxx -AIS_SelectionModesConcurrency.hxx -AIS_SelectionScheme.hxx -AIS_Shape.cxx -AIS_Shape.hxx -AIS_SignatureFilter.cxx -AIS_SignatureFilter.hxx -AIS_StatusOfDetection.hxx -AIS_StatusOfPick.hxx -AIS_TextLabel.cxx -AIS_TextLabel.hxx -AIS_TexturedShape.cxx -AIS_TexturedShape.hxx -AIS_Triangulation.cxx -AIS_Triangulation.hxx -AIS_Trihedron.cxx -AIS_Trihedron.hxx -AIS_TrihedronOwner.cxx -AIS_TrihedronOwner.hxx -AIS_TrihedronSelectionMode.hxx -AIS_TypeFilter.cxx -AIS_TypeFilter.hxx -AIS_TypeOfAttribute.hxx -AIS_TypeOfAxis.hxx -AIS_TypeOfIso.hxx -AIS_TypeOfPlane.hxx -AIS_ViewController.cxx -AIS_ViewController.hxx -AIS_ViewInputBuffer.hxx -AIS_ViewCube.cxx -AIS_ViewCube.hxx -AIS_WalkDelta.hxx -AIS_AngleDimension.hxx -AIS_Chamf2dDimension.hxx -AIS_Chamf3dDimension.hxx -AIS_ConcentricRelation.hxx -AIS_DiameterDimension.hxx -AIS_Dimension.hxx -AIS_DimensionOwner.hxx -AIS_EllipseRadiusDimension.hxx -AIS_EqualDistanceRelation.hxx -AIS_EqualRadiusRelation.hxx -AIS_FixRelation.hxx -AIS_IdenticRelation.hxx -AIS_LengthDimension.hxx -AIS_MaxRadiusDimension.hxx -AIS_MidPointRelation.hxx -AIS_MinRadiusDimension.hxx -AIS_OffsetDimension.hxx -AIS_ParallelRelation.hxx -AIS_PerpendicularRelation.hxx -AIS_RadiusDimension.hxx -AIS_Relation.hxx -AIS_SymmetricRelation.hxx -AIS_TangentRelation.hxx -AIS_XRTrackedDevice.cxx -AIS_XRTrackedDevice.hxx diff --git a/src/APIHeaderSection/FILES b/src/APIHeaderSection/FILES deleted file mode 100644 index 41bf0dd0ec..0000000000 --- a/src/APIHeaderSection/FILES +++ /dev/null @@ -1,4 +0,0 @@ -APIHeaderSection_EditHeader.cxx -APIHeaderSection_EditHeader.hxx -APIHeaderSection_MakeHeader.cxx -APIHeaderSection_MakeHeader.hxx diff --git a/src/Adaptor2d/FILES b/src/Adaptor2d/FILES deleted file mode 100644 index c306075af7..0000000000 --- a/src/Adaptor2d/FILES +++ /dev/null @@ -1,6 +0,0 @@ -Adaptor2d_Curve2d.cxx -Adaptor2d_Curve2d.hxx -Adaptor2d_Line2d.cxx -Adaptor2d_Line2d.hxx -Adaptor2d_OffsetCurve.cxx -Adaptor2d_OffsetCurve.hxx diff --git a/src/Adaptor3d/FILES b/src/Adaptor3d/FILES deleted file mode 100644 index 4ab747ad31..0000000000 --- a/src/Adaptor3d/FILES +++ /dev/null @@ -1,16 +0,0 @@ -Adaptor3d_Curve.cxx -Adaptor3d_Curve.hxx -Adaptor3d_CurveOnSurface.cxx -Adaptor3d_CurveOnSurface.hxx -Adaptor3d_HSurfaceTool.cxx -Adaptor3d_HSurfaceTool.hxx -Adaptor3d_HVertex.cxx -Adaptor3d_HVertex.hxx -Adaptor3d_InterFunc.cxx -Adaptor3d_InterFunc.hxx -Adaptor3d_IsoCurve.cxx -Adaptor3d_IsoCurve.hxx -Adaptor3d_Surface.cxx -Adaptor3d_Surface.hxx -Adaptor3d_TopolTool.cxx -Adaptor3d_TopolTool.hxx diff --git a/src/AdvApp2Var/FILES b/src/AdvApp2Var/FILES deleted file mode 100755 index d47c038b57..0000000000 --- a/src/AdvApp2Var/FILES +++ /dev/null @@ -1,42 +0,0 @@ -AdvApp2Var_ApproxAFunc2Var.cxx -AdvApp2Var_ApproxAFunc2Var.hxx -AdvApp2Var_ApproxAFunc2Var.lxx -AdvApp2Var_ApproxF2var.cxx -AdvApp2Var_ApproxF2var.hxx -AdvApp2Var_Context.cxx -AdvApp2Var_Context.hxx -AdvApp2Var_Criterion.cxx -AdvApp2Var_Criterion.hxx -AdvApp2Var_CriterionRepartition.hxx -AdvApp2Var_CriterionType.hxx -AdvApp2Var_Data.hxx -AdvApp2Var_Data_0.cxx -AdvApp2Var_Data_1.cxx -AdvApp2Var_Data_2.cxx -AdvApp2Var_Data_3.cxx -AdvApp2Var_Data_4.cxx -AdvApp2Var_Data_5.cxx -AdvApp2Var_Data_6.cxx -AdvApp2Var_Data_7.cxx -AdvApp2Var_Data_f2c.hxx -AdvApp2Var_EvaluatorFunc2Var.hxx -AdvApp2Var_Framework.cxx -AdvApp2Var_Framework.hxx -AdvApp2Var_Iso.cxx -AdvApp2Var_Iso.hxx -AdvApp2Var_MathBase.cxx -AdvApp2Var_MathBase.hxx -AdvApp2Var_MathBase_mathinit.cxx -AdvApp2Var_Network.cxx -AdvApp2Var_Network.hxx -AdvApp2Var_Node.cxx -AdvApp2Var_Node.hxx -AdvApp2Var_Patch.cxx -AdvApp2Var_Patch.hxx -AdvApp2Var_SequenceOfNode.hxx -AdvApp2Var_SequenceOfPatch.hxx -AdvApp2Var_SequenceOfStrip.hxx -AdvApp2Var_Strip.hxx -AdvApp2Var_SysBase.cxx -AdvApp2Var_SysBase.hxx -AdvApp2Var_SysBase_baseinit.cxx diff --git a/src/AdvApprox/FILES b/src/AdvApprox/FILES deleted file mode 100755 index d0ba9f56ec..0000000000 --- a/src/AdvApprox/FILES +++ /dev/null @@ -1,14 +0,0 @@ -AdvApprox_ApproxAFunction.cxx -AdvApprox_ApproxAFunction.hxx -AdvApprox_ApproxAFunction.lxx -AdvApprox_Cutting.cxx -AdvApprox_Cutting.hxx -AdvApprox_DichoCutting.cxx -AdvApprox_DichoCutting.hxx -AdvApprox_EvaluatorFunction.hxx -AdvApprox_PrefAndRec.cxx -AdvApprox_PrefAndRec.hxx -AdvApprox_PrefCutting.cxx -AdvApprox_PrefCutting.hxx -AdvApprox_SimpleApprox.cxx -AdvApprox_SimpleApprox.hxx diff --git a/src/AppBlend/FILES b/src/AppBlend/FILES deleted file mode 100755 index a0e129bdee..0000000000 --- a/src/AppBlend/FILES +++ /dev/null @@ -1,5 +0,0 @@ -AppBlend_Approx.cxx -AppBlend_Approx.hxx -AppBlend_AppSurf.gxx -AppBlend_AppSurf.lxx -AppBlend_Debug.cxx diff --git a/src/AppCont/FILES b/src/AppCont/FILES deleted file mode 100755 index bcce21885b..0000000000 --- a/src/AppCont/FILES +++ /dev/null @@ -1,9 +0,0 @@ -AppCont_ContMatrices.cxx -AppCont_ContMatrices.hxx -AppCont_ContMatrices_1.cxx -AppCont_ContMatrices_2.cxx -AppCont_ContMatrices_3.cxx -AppCont_ContMatrices_4.cxx -AppCont_Function.hxx -AppCont_LeastSquare.cxx -AppCont_LeastSquare.hxx diff --git a/src/AppDef/FILES b/src/AppDef/FILES deleted file mode 100644 index a92e66e729..0000000000 --- a/src/AppDef/FILES +++ /dev/null @@ -1,62 +0,0 @@ -AppDef_Array1OfMultiPointConstraint.hxx -AppDef_BSpGradient_BFGSOfMyBSplGradientOfBSplineCompute.hxx -AppDef_BSpGradient_BFGSOfMyBSplGradientOfBSplineCompute_0.cxx -AppDef_BSplineCompute.hxx -AppDef_BSplineCompute_0.cxx -AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute.hxx -AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute_0.cxx -AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute.hxx -AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute_0.cxx -AppDef_Compute.hxx -AppDef_Compute_0.cxx -AppDef_Gradient_BFGSOfMyGradientbisOfBSplineCompute.hxx -AppDef_Gradient_BFGSOfMyGradientbisOfBSplineCompute_0.cxx -AppDef_Gradient_BFGSOfMyGradientOfCompute.hxx -AppDef_Gradient_BFGSOfMyGradientOfCompute_0.cxx -AppDef_Gradient_BFGSOfTheGradient.hxx -AppDef_Gradient_BFGSOfTheGradient_0.cxx -AppDef_HArray1OfMultiPointConstraint.hxx -AppDef_LinearCriteria.cxx -AppDef_LinearCriteria.hxx -AppDef_MultiLine.cxx -AppDef_MultiLine.hxx -AppDef_MultiPointConstraint.cxx -AppDef_MultiPointConstraint.hxx -AppDef_MyBSplGradientOfBSplineCompute.hxx -AppDef_MyBSplGradientOfBSplineCompute_0.cxx -AppDef_MyGradientbisOfBSplineCompute.hxx -AppDef_MyGradientbisOfBSplineCompute_0.cxx -AppDef_MyGradientOfCompute.hxx -AppDef_MyGradientOfCompute_0.cxx -AppDef_MyLineTool.cxx -AppDef_MyLineTool.hxx -AppDef_ParFunctionOfMyGradientbisOfBSplineCompute.hxx -AppDef_ParFunctionOfMyGradientbisOfBSplineCompute_0.cxx -AppDef_ParFunctionOfMyGradientOfCompute.hxx -AppDef_ParFunctionOfMyGradientOfCompute_0.cxx -AppDef_ParFunctionOfTheGradient.hxx -AppDef_ParFunctionOfTheGradient_0.cxx -AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute.hxx -AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute_0.cxx -AppDef_ParLeastSquareOfMyGradientOfCompute.hxx -AppDef_ParLeastSquareOfMyGradientOfCompute_0.cxx -AppDef_ParLeastSquareOfTheGradient.hxx -AppDef_ParLeastSquareOfTheGradient_0.cxx -AppDef_ResConstraintOfMyGradientbisOfBSplineCompute.hxx -AppDef_ResConstraintOfMyGradientbisOfBSplineCompute_0.cxx -AppDef_ResConstraintOfMyGradientOfCompute.hxx -AppDef_ResConstraintOfMyGradientOfCompute_0.cxx -AppDef_ResConstraintOfTheGradient.hxx -AppDef_ResConstraintOfTheGradient_0.cxx -AppDef_SmoothCriterion.cxx -AppDef_SmoothCriterion.hxx -AppDef_TheFunction.hxx -AppDef_TheFunction_0.cxx -AppDef_TheGradient.hxx -AppDef_TheGradient_0.cxx -AppDef_TheLeastSquares.hxx -AppDef_TheLeastSquares_0.cxx -AppDef_TheResol.hxx -AppDef_TheResol_0.cxx -AppDef_Variational.cxx -AppDef_Variational.hxx diff --git a/src/AppParCurves/FILES b/src/AppParCurves/FILES deleted file mode 100644 index a704643cf6..0000000000 --- a/src/AppParCurves/FILES +++ /dev/null @@ -1,30 +0,0 @@ -AppParCurves.cxx -AppParCurves.hxx -AppParCurves_Array1OfConstraintCouple.hxx -AppParCurves_Array1OfMultiBSpCurve.hxx -AppParCurves_Array1OfMultiCurve.hxx -AppParCurves_Array1OfMultiPoint.hxx -AppParCurves_BSpFunction.gxx -AppParCurves_BSpGradient.gxx -AppParCurves_BSpGradient_BFGS.gxx -AppParCurves_Constraint.hxx -AppParCurves_ConstraintCouple.cxx -AppParCurves_ConstraintCouple.hxx -AppParCurves_Function.gxx -AppParCurves_Gradient.gxx -AppParCurves_Gradient_BFGS.gxx -AppParCurves_HArray1OfConstraintCouple.hxx -AppParCurves_HArray1OfMultiBSpCurve.hxx -AppParCurves_HArray1OfMultiCurve.hxx -AppParCurves_HArray1OfMultiPoint.hxx -AppParCurves_LeastSquare.gxx -AppParCurves_MultiBSpCurve.cxx -AppParCurves_MultiBSpCurve.hxx -AppParCurves_MultiCurve.cxx -AppParCurves_MultiCurve.hxx -AppParCurves_MultiPoint.cxx -AppParCurves_MultiPoint.hxx -AppParCurves_MultiPoint.lxx -AppParCurves_ResolConstraint.gxx -AppParCurves_SequenceOfMultiBSpCurve.hxx -AppParCurves_SequenceOfMultiCurve.hxx diff --git a/src/AppStd/FILES b/src/AppStd/FILES deleted file mode 100644 index ff457fa471..0000000000 --- a/src/AppStd/FILES +++ /dev/null @@ -1,2 +0,0 @@ -AppStd_Application.cxx -AppStd_Application.hxx diff --git a/src/AppStdL/FILES b/src/AppStdL/FILES deleted file mode 100644 index d02c95b984..0000000000 --- a/src/AppStdL/FILES +++ /dev/null @@ -1,2 +0,0 @@ -AppStdL_Application.cxx -AppStdL_Application.hxx diff --git a/src/BinDrivers/BinDrivers.cxx b/src/ApplicationFramework/TKBin/BinDrivers/BinDrivers.cxx similarity index 100% rename from src/BinDrivers/BinDrivers.cxx rename to src/ApplicationFramework/TKBin/BinDrivers/BinDrivers.cxx diff --git a/src/BinDrivers/BinDrivers.hxx b/src/ApplicationFramework/TKBin/BinDrivers/BinDrivers.hxx similarity index 100% rename from src/BinDrivers/BinDrivers.hxx rename to src/ApplicationFramework/TKBin/BinDrivers/BinDrivers.hxx diff --git a/src/BinDrivers/BinDrivers_DocumentRetrievalDriver.cxx b/src/ApplicationFramework/TKBin/BinDrivers/BinDrivers_DocumentRetrievalDriver.cxx similarity index 100% rename from src/BinDrivers/BinDrivers_DocumentRetrievalDriver.cxx rename to src/ApplicationFramework/TKBin/BinDrivers/BinDrivers_DocumentRetrievalDriver.cxx diff --git a/src/BinDrivers/BinDrivers_DocumentRetrievalDriver.hxx b/src/ApplicationFramework/TKBin/BinDrivers/BinDrivers_DocumentRetrievalDriver.hxx similarity index 100% rename from src/BinDrivers/BinDrivers_DocumentRetrievalDriver.hxx rename to src/ApplicationFramework/TKBin/BinDrivers/BinDrivers_DocumentRetrievalDriver.hxx diff --git a/src/BinDrivers/BinDrivers_DocumentStorageDriver.cxx b/src/ApplicationFramework/TKBin/BinDrivers/BinDrivers_DocumentStorageDriver.cxx similarity index 100% rename from src/BinDrivers/BinDrivers_DocumentStorageDriver.cxx rename to src/ApplicationFramework/TKBin/BinDrivers/BinDrivers_DocumentStorageDriver.cxx diff --git a/src/BinDrivers/BinDrivers_DocumentStorageDriver.hxx b/src/ApplicationFramework/TKBin/BinDrivers/BinDrivers_DocumentStorageDriver.hxx similarity index 100% rename from src/BinDrivers/BinDrivers_DocumentStorageDriver.hxx rename to src/ApplicationFramework/TKBin/BinDrivers/BinDrivers_DocumentStorageDriver.hxx diff --git a/src/BinDrivers/BinDrivers_Marker.hxx b/src/ApplicationFramework/TKBin/BinDrivers/BinDrivers_Marker.hxx similarity index 100% rename from src/BinDrivers/BinDrivers_Marker.hxx rename to src/ApplicationFramework/TKBin/BinDrivers/BinDrivers_Marker.hxx diff --git a/src/ApplicationFramework/TKBin/BinDrivers/FILES.cmake b/src/ApplicationFramework/TKBin/BinDrivers/FILES.cmake new file mode 100644 index 0000000000..fb2575c400 --- /dev/null +++ b/src/ApplicationFramework/TKBin/BinDrivers/FILES.cmake @@ -0,0 +1,12 @@ +# Source files for BinDrivers package +set(OCCT_BinDrivers_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BinDrivers_FILES + BinDrivers.cxx + BinDrivers.hxx + BinDrivers_DocumentRetrievalDriver.cxx + BinDrivers_DocumentRetrievalDriver.hxx + BinDrivers_DocumentStorageDriver.cxx + BinDrivers_DocumentStorageDriver.hxx + BinDrivers_Marker.hxx +) diff --git a/src/BinMDataXtd/BinMDataXtd.cxx b/src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd.cxx similarity index 100% rename from src/BinMDataXtd/BinMDataXtd.cxx rename to src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd.cxx diff --git a/src/BinMDataXtd/BinMDataXtd.hxx b/src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd.hxx similarity index 100% rename from src/BinMDataXtd/BinMDataXtd.hxx rename to src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd.hxx diff --git a/src/BinMDataXtd/BinMDataXtd_ConstraintDriver.cxx b/src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd_ConstraintDriver.cxx similarity index 100% rename from src/BinMDataXtd/BinMDataXtd_ConstraintDriver.cxx rename to src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd_ConstraintDriver.cxx diff --git a/src/BinMDataXtd/BinMDataXtd_ConstraintDriver.hxx b/src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd_ConstraintDriver.hxx similarity index 100% rename from src/BinMDataXtd/BinMDataXtd_ConstraintDriver.hxx rename to src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd_ConstraintDriver.hxx diff --git a/src/BinMDataXtd/BinMDataXtd_GeometryDriver.cxx b/src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd_GeometryDriver.cxx similarity index 100% rename from src/BinMDataXtd/BinMDataXtd_GeometryDriver.cxx rename to src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd_GeometryDriver.cxx diff --git a/src/BinMDataXtd/BinMDataXtd_GeometryDriver.hxx b/src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd_GeometryDriver.hxx similarity index 100% rename from src/BinMDataXtd/BinMDataXtd_GeometryDriver.hxx rename to src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd_GeometryDriver.hxx diff --git a/src/BinMDataXtd/BinMDataXtd_PatternStdDriver.cxx b/src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd_PatternStdDriver.cxx similarity index 100% rename from src/BinMDataXtd/BinMDataXtd_PatternStdDriver.cxx rename to src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd_PatternStdDriver.cxx diff --git a/src/BinMDataXtd/BinMDataXtd_PatternStdDriver.hxx b/src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd_PatternStdDriver.hxx similarity index 100% rename from src/BinMDataXtd/BinMDataXtd_PatternStdDriver.hxx rename to src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd_PatternStdDriver.hxx diff --git a/src/BinMDataXtd/BinMDataXtd_PositionDriver.cxx b/src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd_PositionDriver.cxx similarity index 100% rename from src/BinMDataXtd/BinMDataXtd_PositionDriver.cxx rename to src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd_PositionDriver.cxx diff --git a/src/BinMDataXtd/BinMDataXtd_PositionDriver.hxx b/src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd_PositionDriver.hxx similarity index 100% rename from src/BinMDataXtd/BinMDataXtd_PositionDriver.hxx rename to src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd_PositionDriver.hxx diff --git a/src/BinMDataXtd/BinMDataXtd_PresentationDriver.cxx b/src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd_PresentationDriver.cxx similarity index 100% rename from src/BinMDataXtd/BinMDataXtd_PresentationDriver.cxx rename to src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd_PresentationDriver.cxx diff --git a/src/BinMDataXtd/BinMDataXtd_PresentationDriver.hxx b/src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd_PresentationDriver.hxx similarity index 100% rename from src/BinMDataXtd/BinMDataXtd_PresentationDriver.hxx rename to src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd_PresentationDriver.hxx diff --git a/src/BinMDataXtd/BinMDataXtd_TriangulationDriver.cxx b/src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd_TriangulationDriver.cxx similarity index 100% rename from src/BinMDataXtd/BinMDataXtd_TriangulationDriver.cxx rename to src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd_TriangulationDriver.cxx diff --git a/src/BinMDataXtd/BinMDataXtd_TriangulationDriver.hxx b/src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd_TriangulationDriver.hxx similarity index 100% rename from src/BinMDataXtd/BinMDataXtd_TriangulationDriver.hxx rename to src/ApplicationFramework/TKBin/BinMDataXtd/BinMDataXtd_TriangulationDriver.hxx diff --git a/src/ApplicationFramework/TKBin/BinMDataXtd/FILES.cmake b/src/ApplicationFramework/TKBin/BinMDataXtd/FILES.cmake new file mode 100644 index 0000000000..33a1a38ff6 --- /dev/null +++ b/src/ApplicationFramework/TKBin/BinMDataXtd/FILES.cmake @@ -0,0 +1,19 @@ +# Source files for BinMDataXtd package +set(OCCT_BinMDataXtd_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BinMDataXtd_FILES + BinMDataXtd.cxx + BinMDataXtd.hxx + BinMDataXtd_ConstraintDriver.cxx + BinMDataXtd_ConstraintDriver.hxx + BinMDataXtd_GeometryDriver.cxx + BinMDataXtd_GeometryDriver.hxx + BinMDataXtd_PatternStdDriver.cxx + BinMDataXtd_PatternStdDriver.hxx + BinMDataXtd_PresentationDriver.hxx + BinMDataXtd_PresentationDriver.cxx + BinMDataXtd_PositionDriver.hxx + BinMDataXtd_PositionDriver.cxx + BinMDataXtd_TriangulationDriver.cxx + BinMDataXtd_TriangulationDriver.hxx +) diff --git a/src/BinMNaming/BinMNaming.cxx b/src/ApplicationFramework/TKBin/BinMNaming/BinMNaming.cxx similarity index 100% rename from src/BinMNaming/BinMNaming.cxx rename to src/ApplicationFramework/TKBin/BinMNaming/BinMNaming.cxx diff --git a/src/BinMNaming/BinMNaming.hxx b/src/ApplicationFramework/TKBin/BinMNaming/BinMNaming.hxx similarity index 100% rename from src/BinMNaming/BinMNaming.hxx rename to src/ApplicationFramework/TKBin/BinMNaming/BinMNaming.hxx diff --git a/src/BinMNaming/BinMNaming_NamedShapeDriver.cxx b/src/ApplicationFramework/TKBin/BinMNaming/BinMNaming_NamedShapeDriver.cxx similarity index 100% rename from src/BinMNaming/BinMNaming_NamedShapeDriver.cxx rename to src/ApplicationFramework/TKBin/BinMNaming/BinMNaming_NamedShapeDriver.cxx diff --git a/src/BinMNaming/BinMNaming_NamedShapeDriver.hxx b/src/ApplicationFramework/TKBin/BinMNaming/BinMNaming_NamedShapeDriver.hxx similarity index 100% rename from src/BinMNaming/BinMNaming_NamedShapeDriver.hxx rename to src/ApplicationFramework/TKBin/BinMNaming/BinMNaming_NamedShapeDriver.hxx diff --git a/src/BinMNaming/BinMNaming_NamedShapeDriver.lxx b/src/ApplicationFramework/TKBin/BinMNaming/BinMNaming_NamedShapeDriver.lxx similarity index 100% rename from src/BinMNaming/BinMNaming_NamedShapeDriver.lxx rename to src/ApplicationFramework/TKBin/BinMNaming/BinMNaming_NamedShapeDriver.lxx diff --git a/src/BinMNaming/BinMNaming_NamingDriver.cxx b/src/ApplicationFramework/TKBin/BinMNaming/BinMNaming_NamingDriver.cxx similarity index 100% rename from src/BinMNaming/BinMNaming_NamingDriver.cxx rename to src/ApplicationFramework/TKBin/BinMNaming/BinMNaming_NamingDriver.cxx diff --git a/src/BinMNaming/BinMNaming_NamingDriver.hxx b/src/ApplicationFramework/TKBin/BinMNaming/BinMNaming_NamingDriver.hxx similarity index 100% rename from src/BinMNaming/BinMNaming_NamingDriver.hxx rename to src/ApplicationFramework/TKBin/BinMNaming/BinMNaming_NamingDriver.hxx diff --git a/src/ApplicationFramework/TKBin/BinMNaming/FILES.cmake b/src/ApplicationFramework/TKBin/BinMNaming/FILES.cmake new file mode 100644 index 0000000000..c9b6563526 --- /dev/null +++ b/src/ApplicationFramework/TKBin/BinMNaming/FILES.cmake @@ -0,0 +1,12 @@ +# Source files for BinMNaming package +set(OCCT_BinMNaming_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BinMNaming_FILES + BinMNaming.cxx + BinMNaming.hxx + BinMNaming_NamedShapeDriver.cxx + BinMNaming_NamedShapeDriver.hxx + BinMNaming_NamedShapeDriver.lxx + BinMNaming_NamingDriver.cxx + BinMNaming_NamingDriver.hxx +) diff --git a/src/TKBin/CMakeLists.txt b/src/ApplicationFramework/TKBin/CMakeLists.txt similarity index 100% rename from src/TKBin/CMakeLists.txt rename to src/ApplicationFramework/TKBin/CMakeLists.txt diff --git a/src/ApplicationFramework/TKBin/EXTERNLIB.cmake b/src/ApplicationFramework/TKBin/EXTERNLIB.cmake new file mode 100644 index 0000000000..676225ab4d --- /dev/null +++ b/src/ApplicationFramework/TKBin/EXTERNLIB.cmake @@ -0,0 +1,12 @@ +# External dependencies for TKBin +set(OCCT_TKBin_EXTERNAL_LIBS + TKBRep + TKMath + TKernel + TKG2d + TKG3d + TKCAF + TKCDF + TKLCAF + TKBinL +) diff --git a/src/ApplicationFramework/TKBin/FILES.cmake b/src/ApplicationFramework/TKBin/FILES.cmake new file mode 100644 index 0000000000..0ff6f26087 --- /dev/null +++ b/src/ApplicationFramework/TKBin/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKBin +set(OCCT_TKBin_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKBin_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ApplicationFramework/TKBin/PACKAGES.cmake b/src/ApplicationFramework/TKBin/PACKAGES.cmake new file mode 100644 index 0000000000..0809b798fa --- /dev/null +++ b/src/ApplicationFramework/TKBin/PACKAGES.cmake @@ -0,0 +1,6 @@ +# Auto-generated list of packages for TKBin toolkit +set(OCCT_TKBin_LIST_OF_PACKAGES + BinDrivers + BinMDataXtd + BinMNaming +) diff --git a/src/BinLDrivers/BinLDrivers.cxx b/src/ApplicationFramework/TKBinL/BinLDrivers/BinLDrivers.cxx similarity index 100% rename from src/BinLDrivers/BinLDrivers.cxx rename to src/ApplicationFramework/TKBinL/BinLDrivers/BinLDrivers.cxx diff --git a/src/BinLDrivers/BinLDrivers.hxx b/src/ApplicationFramework/TKBinL/BinLDrivers/BinLDrivers.hxx similarity index 100% rename from src/BinLDrivers/BinLDrivers.hxx rename to src/ApplicationFramework/TKBinL/BinLDrivers/BinLDrivers.hxx diff --git a/src/BinLDrivers/BinLDrivers_DocumentRetrievalDriver.cxx b/src/ApplicationFramework/TKBinL/BinLDrivers/BinLDrivers_DocumentRetrievalDriver.cxx similarity index 100% rename from src/BinLDrivers/BinLDrivers_DocumentRetrievalDriver.cxx rename to src/ApplicationFramework/TKBinL/BinLDrivers/BinLDrivers_DocumentRetrievalDriver.cxx diff --git a/src/BinLDrivers/BinLDrivers_DocumentRetrievalDriver.hxx b/src/ApplicationFramework/TKBinL/BinLDrivers/BinLDrivers_DocumentRetrievalDriver.hxx similarity index 100% rename from src/BinLDrivers/BinLDrivers_DocumentRetrievalDriver.hxx rename to src/ApplicationFramework/TKBinL/BinLDrivers/BinLDrivers_DocumentRetrievalDriver.hxx diff --git a/src/BinLDrivers/BinLDrivers_DocumentSection.cxx b/src/ApplicationFramework/TKBinL/BinLDrivers/BinLDrivers_DocumentSection.cxx similarity index 100% rename from src/BinLDrivers/BinLDrivers_DocumentSection.cxx rename to src/ApplicationFramework/TKBinL/BinLDrivers/BinLDrivers_DocumentSection.cxx diff --git a/src/BinLDrivers/BinLDrivers_DocumentSection.hxx b/src/ApplicationFramework/TKBinL/BinLDrivers/BinLDrivers_DocumentSection.hxx similarity index 100% rename from src/BinLDrivers/BinLDrivers_DocumentSection.hxx rename to src/ApplicationFramework/TKBinL/BinLDrivers/BinLDrivers_DocumentSection.hxx diff --git a/src/BinLDrivers/BinLDrivers_DocumentStorageDriver.cxx b/src/ApplicationFramework/TKBinL/BinLDrivers/BinLDrivers_DocumentStorageDriver.cxx similarity index 100% rename from src/BinLDrivers/BinLDrivers_DocumentStorageDriver.cxx rename to src/ApplicationFramework/TKBinL/BinLDrivers/BinLDrivers_DocumentStorageDriver.cxx diff --git a/src/BinLDrivers/BinLDrivers_DocumentStorageDriver.hxx b/src/ApplicationFramework/TKBinL/BinLDrivers/BinLDrivers_DocumentStorageDriver.hxx similarity index 100% rename from src/BinLDrivers/BinLDrivers_DocumentStorageDriver.hxx rename to src/ApplicationFramework/TKBinL/BinLDrivers/BinLDrivers_DocumentStorageDriver.hxx diff --git a/src/BinLDrivers/BinLDrivers_Marker.hxx b/src/ApplicationFramework/TKBinL/BinLDrivers/BinLDrivers_Marker.hxx similarity index 100% rename from src/BinLDrivers/BinLDrivers_Marker.hxx rename to src/ApplicationFramework/TKBinL/BinLDrivers/BinLDrivers_Marker.hxx diff --git a/src/BinLDrivers/BinLDrivers_VectorOfDocumentSection.hxx b/src/ApplicationFramework/TKBinL/BinLDrivers/BinLDrivers_VectorOfDocumentSection.hxx similarity index 100% rename from src/BinLDrivers/BinLDrivers_VectorOfDocumentSection.hxx rename to src/ApplicationFramework/TKBinL/BinLDrivers/BinLDrivers_VectorOfDocumentSection.hxx diff --git a/src/ApplicationFramework/TKBinL/BinLDrivers/FILES.cmake b/src/ApplicationFramework/TKBinL/BinLDrivers/FILES.cmake new file mode 100644 index 0000000000..3e54619a67 --- /dev/null +++ b/src/ApplicationFramework/TKBinL/BinLDrivers/FILES.cmake @@ -0,0 +1,15 @@ +# Source files for BinLDrivers package +set(OCCT_BinLDrivers_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BinLDrivers_FILES + BinLDrivers.cxx + BinLDrivers.hxx + BinLDrivers_DocumentRetrievalDriver.cxx + BinLDrivers_DocumentRetrievalDriver.hxx + BinLDrivers_DocumentSection.cxx + BinLDrivers_DocumentSection.hxx + BinLDrivers_DocumentStorageDriver.cxx + BinLDrivers_DocumentStorageDriver.hxx + BinLDrivers_Marker.hxx + BinLDrivers_VectorOfDocumentSection.hxx +) diff --git a/src/BinMDF/BinMDF.cxx b/src/ApplicationFramework/TKBinL/BinMDF/BinMDF.cxx similarity index 100% rename from src/BinMDF/BinMDF.cxx rename to src/ApplicationFramework/TKBinL/BinMDF/BinMDF.cxx diff --git a/src/BinMDF/BinMDF.hxx b/src/ApplicationFramework/TKBinL/BinMDF/BinMDF.hxx similarity index 100% rename from src/BinMDF/BinMDF.hxx rename to src/ApplicationFramework/TKBinL/BinMDF/BinMDF.hxx diff --git a/src/BinMDF/BinMDF_ADriver.cxx b/src/ApplicationFramework/TKBinL/BinMDF/BinMDF_ADriver.cxx similarity index 100% rename from src/BinMDF/BinMDF_ADriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDF/BinMDF_ADriver.cxx diff --git a/src/BinMDF/BinMDF_ADriver.hxx b/src/ApplicationFramework/TKBinL/BinMDF/BinMDF_ADriver.hxx similarity index 100% rename from src/BinMDF/BinMDF_ADriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDF/BinMDF_ADriver.hxx diff --git a/src/BinMDF/BinMDF_ADriver.lxx b/src/ApplicationFramework/TKBinL/BinMDF/BinMDF_ADriver.lxx similarity index 100% rename from src/BinMDF/BinMDF_ADriver.lxx rename to src/ApplicationFramework/TKBinL/BinMDF/BinMDF_ADriver.lxx diff --git a/src/BinMDF/BinMDF_ADriverTable.cxx b/src/ApplicationFramework/TKBinL/BinMDF/BinMDF_ADriverTable.cxx similarity index 100% rename from src/BinMDF/BinMDF_ADriverTable.cxx rename to src/ApplicationFramework/TKBinL/BinMDF/BinMDF_ADriverTable.cxx diff --git a/src/BinMDF/BinMDF_ADriverTable.hxx b/src/ApplicationFramework/TKBinL/BinMDF/BinMDF_ADriverTable.hxx similarity index 100% rename from src/BinMDF/BinMDF_ADriverTable.hxx rename to src/ApplicationFramework/TKBinL/BinMDF/BinMDF_ADriverTable.hxx diff --git a/src/BinMDF/BinMDF_ADriverTable.lxx b/src/ApplicationFramework/TKBinL/BinMDF/BinMDF_ADriverTable.lxx similarity index 100% rename from src/BinMDF/BinMDF_ADriverTable.lxx rename to src/ApplicationFramework/TKBinL/BinMDF/BinMDF_ADriverTable.lxx diff --git a/src/BinMDF/BinMDF_DataMapIteratorOfTypeADriverMap.hxx b/src/ApplicationFramework/TKBinL/BinMDF/BinMDF_DataMapIteratorOfTypeADriverMap.hxx similarity index 100% rename from src/BinMDF/BinMDF_DataMapIteratorOfTypeADriverMap.hxx rename to src/ApplicationFramework/TKBinL/BinMDF/BinMDF_DataMapIteratorOfTypeADriverMap.hxx diff --git a/src/BinMDF/BinMDF_DerivedDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDF/BinMDF_DerivedDriver.cxx similarity index 100% rename from src/BinMDF/BinMDF_DerivedDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDF/BinMDF_DerivedDriver.cxx diff --git a/src/BinMDF/BinMDF_DerivedDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDF/BinMDF_DerivedDriver.hxx similarity index 100% rename from src/BinMDF/BinMDF_DerivedDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDF/BinMDF_DerivedDriver.hxx diff --git a/src/BinMDF/BinMDF_DoubleMapIteratorOfTypeIdMap.hxx b/src/ApplicationFramework/TKBinL/BinMDF/BinMDF_DoubleMapIteratorOfTypeIdMap.hxx similarity index 100% rename from src/BinMDF/BinMDF_DoubleMapIteratorOfTypeIdMap.hxx rename to src/ApplicationFramework/TKBinL/BinMDF/BinMDF_DoubleMapIteratorOfTypeIdMap.hxx diff --git a/src/BinMDF/BinMDF_ReferenceDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDF/BinMDF_ReferenceDriver.cxx similarity index 100% rename from src/BinMDF/BinMDF_ReferenceDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDF/BinMDF_ReferenceDriver.cxx diff --git a/src/BinMDF/BinMDF_ReferenceDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDF/BinMDF_ReferenceDriver.hxx similarity index 100% rename from src/BinMDF/BinMDF_ReferenceDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDF/BinMDF_ReferenceDriver.hxx diff --git a/src/BinMDF/BinMDF_StringIdMap.hxx b/src/ApplicationFramework/TKBinL/BinMDF/BinMDF_StringIdMap.hxx similarity index 100% rename from src/BinMDF/BinMDF_StringIdMap.hxx rename to src/ApplicationFramework/TKBinL/BinMDF/BinMDF_StringIdMap.hxx diff --git a/src/BinMDF/BinMDF_TagSourceDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDF/BinMDF_TagSourceDriver.cxx similarity index 100% rename from src/BinMDF/BinMDF_TagSourceDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDF/BinMDF_TagSourceDriver.cxx diff --git a/src/BinMDF/BinMDF_TagSourceDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDF/BinMDF_TagSourceDriver.hxx similarity index 100% rename from src/BinMDF/BinMDF_TagSourceDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDF/BinMDF_TagSourceDriver.hxx diff --git a/src/BinMDF/BinMDF_TypeADriverMap.hxx b/src/ApplicationFramework/TKBinL/BinMDF/BinMDF_TypeADriverMap.hxx similarity index 100% rename from src/BinMDF/BinMDF_TypeADriverMap.hxx rename to src/ApplicationFramework/TKBinL/BinMDF/BinMDF_TypeADriverMap.hxx diff --git a/src/BinMDF/BinMDF_TypeIdMap.hxx b/src/ApplicationFramework/TKBinL/BinMDF/BinMDF_TypeIdMap.hxx similarity index 100% rename from src/BinMDF/BinMDF_TypeIdMap.hxx rename to src/ApplicationFramework/TKBinL/BinMDF/BinMDF_TypeIdMap.hxx diff --git a/src/ApplicationFramework/TKBinL/BinMDF/FILES.cmake b/src/ApplicationFramework/TKBinL/BinMDF/FILES.cmake new file mode 100644 index 0000000000..3898653b25 --- /dev/null +++ b/src/ApplicationFramework/TKBinL/BinMDF/FILES.cmake @@ -0,0 +1,24 @@ +# Source files for BinMDF package +set(OCCT_BinMDF_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BinMDF_FILES + BinMDF.cxx + BinMDF.hxx + BinMDF_ADriver.cxx + BinMDF_ADriver.hxx + BinMDF_ADriver.lxx + BinMDF_ADriverTable.cxx + BinMDF_ADriverTable.hxx + BinMDF_ADriverTable.lxx + BinMDF_DataMapIteratorOfTypeADriverMap.hxx + BinMDF_DoubleMapIteratorOfTypeIdMap.hxx + BinMDF_ReferenceDriver.cxx + BinMDF_ReferenceDriver.hxx + BinMDF_StringIdMap.hxx + BinMDF_TagSourceDriver.cxx + BinMDF_TagSourceDriver.hxx + BinMDF_TypeADriverMap.hxx + BinMDF_TypeIdMap.hxx + BinMDF_DerivedDriver.cxx + BinMDF_DerivedDriver.hxx +) diff --git a/src/BinMDataStd/BinMDataStd.cxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd.cxx similarity index 100% rename from src/BinMDataStd/BinMDataStd.cxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd.cxx diff --git a/src/BinMDataStd/BinMDataStd.hxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd.hxx similarity index 100% rename from src/BinMDataStd/BinMDataStd.hxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd.hxx diff --git a/src/BinMDataStd/BinMDataStd_AsciiStringDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_AsciiStringDriver.cxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_AsciiStringDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_AsciiStringDriver.cxx diff --git a/src/BinMDataStd/BinMDataStd_AsciiStringDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_AsciiStringDriver.hxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_AsciiStringDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_AsciiStringDriver.hxx diff --git a/src/BinMDataStd/BinMDataStd_BooleanArrayDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_BooleanArrayDriver.cxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_BooleanArrayDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_BooleanArrayDriver.cxx diff --git a/src/BinMDataStd/BinMDataStd_BooleanArrayDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_BooleanArrayDriver.hxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_BooleanArrayDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_BooleanArrayDriver.hxx diff --git a/src/BinMDataStd/BinMDataStd_BooleanListDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_BooleanListDriver.cxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_BooleanListDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_BooleanListDriver.cxx diff --git a/src/BinMDataStd/BinMDataStd_BooleanListDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_BooleanListDriver.hxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_BooleanListDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_BooleanListDriver.hxx diff --git a/src/BinMDataStd/BinMDataStd_ByteArrayDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_ByteArrayDriver.cxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_ByteArrayDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_ByteArrayDriver.cxx diff --git a/src/BinMDataStd/BinMDataStd_ByteArrayDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_ByteArrayDriver.hxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_ByteArrayDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_ByteArrayDriver.hxx diff --git a/src/BinMDataStd/BinMDataStd_ExpressionDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_ExpressionDriver.cxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_ExpressionDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_ExpressionDriver.cxx diff --git a/src/BinMDataStd/BinMDataStd_ExpressionDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_ExpressionDriver.hxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_ExpressionDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_ExpressionDriver.hxx diff --git a/src/BinMDataStd/BinMDataStd_ExtStringArrayDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_ExtStringArrayDriver.cxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_ExtStringArrayDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_ExtStringArrayDriver.cxx diff --git a/src/BinMDataStd/BinMDataStd_ExtStringArrayDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_ExtStringArrayDriver.hxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_ExtStringArrayDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_ExtStringArrayDriver.hxx diff --git a/src/BinMDataStd/BinMDataStd_ExtStringListDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_ExtStringListDriver.cxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_ExtStringListDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_ExtStringListDriver.cxx diff --git a/src/BinMDataStd/BinMDataStd_ExtStringListDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_ExtStringListDriver.hxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_ExtStringListDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_ExtStringListDriver.hxx diff --git a/src/BinMDataStd/BinMDataStd_GenericEmptyDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_GenericEmptyDriver.cxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_GenericEmptyDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_GenericEmptyDriver.cxx diff --git a/src/BinMDataStd/BinMDataStd_GenericEmptyDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_GenericEmptyDriver.hxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_GenericEmptyDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_GenericEmptyDriver.hxx diff --git a/src/BinMDataStd/BinMDataStd_GenericExtStringDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_GenericExtStringDriver.cxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_GenericExtStringDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_GenericExtStringDriver.cxx diff --git a/src/BinMDataStd/BinMDataStd_GenericExtStringDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_GenericExtStringDriver.hxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_GenericExtStringDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_GenericExtStringDriver.hxx diff --git a/src/BinMDataStd/BinMDataStd_IntPackedMapDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_IntPackedMapDriver.cxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_IntPackedMapDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_IntPackedMapDriver.cxx diff --git a/src/BinMDataStd/BinMDataStd_IntPackedMapDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_IntPackedMapDriver.hxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_IntPackedMapDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_IntPackedMapDriver.hxx diff --git a/src/BinMDataStd/BinMDataStd_IntegerArrayDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_IntegerArrayDriver.cxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_IntegerArrayDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_IntegerArrayDriver.cxx diff --git a/src/BinMDataStd/BinMDataStd_IntegerArrayDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_IntegerArrayDriver.hxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_IntegerArrayDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_IntegerArrayDriver.hxx diff --git a/src/BinMDataStd/BinMDataStd_IntegerDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_IntegerDriver.cxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_IntegerDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_IntegerDriver.cxx diff --git a/src/BinMDataStd/BinMDataStd_IntegerDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_IntegerDriver.hxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_IntegerDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_IntegerDriver.hxx diff --git a/src/BinMDataStd/BinMDataStd_IntegerListDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_IntegerListDriver.cxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_IntegerListDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_IntegerListDriver.cxx diff --git a/src/BinMDataStd/BinMDataStd_IntegerListDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_IntegerListDriver.hxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_IntegerListDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_IntegerListDriver.hxx diff --git a/src/BinMDataStd/BinMDataStd_NamedDataDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_NamedDataDriver.cxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_NamedDataDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_NamedDataDriver.cxx diff --git a/src/BinMDataStd/BinMDataStd_NamedDataDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_NamedDataDriver.hxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_NamedDataDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_NamedDataDriver.hxx diff --git a/src/BinMDataStd/BinMDataStd_RealArrayDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_RealArrayDriver.cxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_RealArrayDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_RealArrayDriver.cxx diff --git a/src/BinMDataStd/BinMDataStd_RealArrayDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_RealArrayDriver.hxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_RealArrayDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_RealArrayDriver.hxx diff --git a/src/BinMDataStd/BinMDataStd_RealDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_RealDriver.cxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_RealDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_RealDriver.cxx diff --git a/src/BinMDataStd/BinMDataStd_RealDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_RealDriver.hxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_RealDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_RealDriver.hxx diff --git a/src/BinMDataStd/BinMDataStd_RealListDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_RealListDriver.cxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_RealListDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_RealListDriver.cxx diff --git a/src/BinMDataStd/BinMDataStd_RealListDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_RealListDriver.hxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_RealListDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_RealListDriver.hxx diff --git a/src/BinMDataStd/BinMDataStd_ReferenceArrayDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_ReferenceArrayDriver.cxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_ReferenceArrayDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_ReferenceArrayDriver.cxx diff --git a/src/BinMDataStd/BinMDataStd_ReferenceArrayDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_ReferenceArrayDriver.hxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_ReferenceArrayDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_ReferenceArrayDriver.hxx diff --git a/src/BinMDataStd/BinMDataStd_ReferenceListDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_ReferenceListDriver.cxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_ReferenceListDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_ReferenceListDriver.cxx diff --git a/src/BinMDataStd/BinMDataStd_ReferenceListDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_ReferenceListDriver.hxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_ReferenceListDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_ReferenceListDriver.hxx diff --git a/src/BinMDataStd/BinMDataStd_TreeNodeDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_TreeNodeDriver.cxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_TreeNodeDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_TreeNodeDriver.cxx diff --git a/src/BinMDataStd/BinMDataStd_TreeNodeDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_TreeNodeDriver.hxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_TreeNodeDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_TreeNodeDriver.hxx diff --git a/src/BinMDataStd/BinMDataStd_UAttributeDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_UAttributeDriver.cxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_UAttributeDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_UAttributeDriver.cxx diff --git a/src/BinMDataStd/BinMDataStd_UAttributeDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_UAttributeDriver.hxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_UAttributeDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_UAttributeDriver.hxx diff --git a/src/BinMDataStd/BinMDataStd_VariableDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_VariableDriver.cxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_VariableDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_VariableDriver.cxx diff --git a/src/BinMDataStd/BinMDataStd_VariableDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_VariableDriver.hxx similarity index 100% rename from src/BinMDataStd/BinMDataStd_VariableDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDataStd/BinMDataStd_VariableDriver.hxx diff --git a/src/ApplicationFramework/TKBinL/BinMDataStd/FILES.cmake b/src/ApplicationFramework/TKBinL/BinMDataStd/FILES.cmake new file mode 100644 index 0000000000..58a473cbec --- /dev/null +++ b/src/ApplicationFramework/TKBinL/BinMDataStd/FILES.cmake @@ -0,0 +1,51 @@ +# Source files for BinMDataStd package +set(OCCT_BinMDataStd_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BinMDataStd_FILES + BinMDataStd.cxx + BinMDataStd.hxx + BinMDataStd_AsciiStringDriver.cxx + BinMDataStd_AsciiStringDriver.hxx + BinMDataStd_BooleanArrayDriver.cxx + BinMDataStd_BooleanArrayDriver.hxx + BinMDataStd_BooleanListDriver.cxx + BinMDataStd_BooleanListDriver.hxx + BinMDataStd_ByteArrayDriver.cxx + BinMDataStd_ByteArrayDriver.hxx + BinMDataStd_ExpressionDriver.cxx + BinMDataStd_ExpressionDriver.hxx + BinMDataStd_ExtStringArrayDriver.cxx + BinMDataStd_ExtStringArrayDriver.hxx + BinMDataStd_ExtStringListDriver.cxx + BinMDataStd_ExtStringListDriver.hxx + BinMDataStd_IntegerArrayDriver.cxx + BinMDataStd_IntegerArrayDriver.hxx + BinMDataStd_IntegerDriver.cxx + BinMDataStd_IntegerDriver.hxx + BinMDataStd_IntegerListDriver.cxx + BinMDataStd_IntegerListDriver.hxx + BinMDataStd_IntPackedMapDriver.cxx + BinMDataStd_IntPackedMapDriver.hxx + BinMDataStd_NamedDataDriver.cxx + BinMDataStd_NamedDataDriver.hxx + BinMDataStd_GenericExtStringDriver.cxx + BinMDataStd_GenericExtStringDriver.hxx + BinMDataStd_RealArrayDriver.cxx + BinMDataStd_RealArrayDriver.hxx + BinMDataStd_RealDriver.cxx + BinMDataStd_RealDriver.hxx + BinMDataStd_RealListDriver.cxx + BinMDataStd_RealListDriver.hxx + BinMDataStd_ReferenceArrayDriver.cxx + BinMDataStd_ReferenceArrayDriver.hxx + BinMDataStd_ReferenceListDriver.cxx + BinMDataStd_ReferenceListDriver.hxx + BinMDataStd_GenericEmptyDriver.cxx + BinMDataStd_GenericEmptyDriver.hxx + BinMDataStd_TreeNodeDriver.cxx + BinMDataStd_TreeNodeDriver.hxx + BinMDataStd_UAttributeDriver.cxx + BinMDataStd_UAttributeDriver.hxx + BinMDataStd_VariableDriver.cxx + BinMDataStd_VariableDriver.hxx +) diff --git a/src/BinMDocStd/BinMDocStd.cxx b/src/ApplicationFramework/TKBinL/BinMDocStd/BinMDocStd.cxx similarity index 100% rename from src/BinMDocStd/BinMDocStd.cxx rename to src/ApplicationFramework/TKBinL/BinMDocStd/BinMDocStd.cxx diff --git a/src/BinMDocStd/BinMDocStd.hxx b/src/ApplicationFramework/TKBinL/BinMDocStd/BinMDocStd.hxx similarity index 100% rename from src/BinMDocStd/BinMDocStd.hxx rename to src/ApplicationFramework/TKBinL/BinMDocStd/BinMDocStd.hxx diff --git a/src/BinMDocStd/BinMDocStd_XLinkDriver.cxx b/src/ApplicationFramework/TKBinL/BinMDocStd/BinMDocStd_XLinkDriver.cxx similarity index 100% rename from src/BinMDocStd/BinMDocStd_XLinkDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMDocStd/BinMDocStd_XLinkDriver.cxx diff --git a/src/BinMDocStd/BinMDocStd_XLinkDriver.hxx b/src/ApplicationFramework/TKBinL/BinMDocStd/BinMDocStd_XLinkDriver.hxx similarity index 100% rename from src/BinMDocStd/BinMDocStd_XLinkDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMDocStd/BinMDocStd_XLinkDriver.hxx diff --git a/src/ApplicationFramework/TKBinL/BinMDocStd/FILES.cmake b/src/ApplicationFramework/TKBinL/BinMDocStd/FILES.cmake new file mode 100644 index 0000000000..096c21a3d0 --- /dev/null +++ b/src/ApplicationFramework/TKBinL/BinMDocStd/FILES.cmake @@ -0,0 +1,9 @@ +# Source files for BinMDocStd package +set(OCCT_BinMDocStd_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BinMDocStd_FILES + BinMDocStd.cxx + BinMDocStd.hxx + BinMDocStd_XLinkDriver.cxx + BinMDocStd_XLinkDriver.hxx +) diff --git a/src/BinMFunction/BinMFunction.cxx b/src/ApplicationFramework/TKBinL/BinMFunction/BinMFunction.cxx similarity index 100% rename from src/BinMFunction/BinMFunction.cxx rename to src/ApplicationFramework/TKBinL/BinMFunction/BinMFunction.cxx diff --git a/src/BinMFunction/BinMFunction.hxx b/src/ApplicationFramework/TKBinL/BinMFunction/BinMFunction.hxx similarity index 100% rename from src/BinMFunction/BinMFunction.hxx rename to src/ApplicationFramework/TKBinL/BinMFunction/BinMFunction.hxx diff --git a/src/BinMFunction/BinMFunction_FunctionDriver.cxx b/src/ApplicationFramework/TKBinL/BinMFunction/BinMFunction_FunctionDriver.cxx similarity index 100% rename from src/BinMFunction/BinMFunction_FunctionDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMFunction/BinMFunction_FunctionDriver.cxx diff --git a/src/BinMFunction/BinMFunction_FunctionDriver.hxx b/src/ApplicationFramework/TKBinL/BinMFunction/BinMFunction_FunctionDriver.hxx similarity index 100% rename from src/BinMFunction/BinMFunction_FunctionDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMFunction/BinMFunction_FunctionDriver.hxx diff --git a/src/BinMFunction/BinMFunction_GraphNodeDriver.cxx b/src/ApplicationFramework/TKBinL/BinMFunction/BinMFunction_GraphNodeDriver.cxx similarity index 100% rename from src/BinMFunction/BinMFunction_GraphNodeDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMFunction/BinMFunction_GraphNodeDriver.cxx diff --git a/src/BinMFunction/BinMFunction_GraphNodeDriver.hxx b/src/ApplicationFramework/TKBinL/BinMFunction/BinMFunction_GraphNodeDriver.hxx similarity index 100% rename from src/BinMFunction/BinMFunction_GraphNodeDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMFunction/BinMFunction_GraphNodeDriver.hxx diff --git a/src/BinMFunction/BinMFunction_ScopeDriver.cxx b/src/ApplicationFramework/TKBinL/BinMFunction/BinMFunction_ScopeDriver.cxx similarity index 100% rename from src/BinMFunction/BinMFunction_ScopeDriver.cxx rename to src/ApplicationFramework/TKBinL/BinMFunction/BinMFunction_ScopeDriver.cxx diff --git a/src/BinMFunction/BinMFunction_ScopeDriver.hxx b/src/ApplicationFramework/TKBinL/BinMFunction/BinMFunction_ScopeDriver.hxx similarity index 100% rename from src/BinMFunction/BinMFunction_ScopeDriver.hxx rename to src/ApplicationFramework/TKBinL/BinMFunction/BinMFunction_ScopeDriver.hxx diff --git a/src/ApplicationFramework/TKBinL/BinMFunction/FILES.cmake b/src/ApplicationFramework/TKBinL/BinMFunction/FILES.cmake new file mode 100644 index 0000000000..e3c116eb7e --- /dev/null +++ b/src/ApplicationFramework/TKBinL/BinMFunction/FILES.cmake @@ -0,0 +1,13 @@ +# Source files for BinMFunction package +set(OCCT_BinMFunction_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BinMFunction_FILES + BinMFunction.cxx + BinMFunction.hxx + BinMFunction_FunctionDriver.cxx + BinMFunction_FunctionDriver.hxx + BinMFunction_GraphNodeDriver.cxx + BinMFunction_GraphNodeDriver.hxx + BinMFunction_ScopeDriver.cxx + BinMFunction_ScopeDriver.hxx +) diff --git a/src/BinObjMgt/BinObjMgt_PByte.hxx b/src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_PByte.hxx similarity index 100% rename from src/BinObjMgt/BinObjMgt_PByte.hxx rename to src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_PByte.hxx diff --git a/src/BinObjMgt/BinObjMgt_PChar.hxx b/src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_PChar.hxx similarity index 100% rename from src/BinObjMgt/BinObjMgt_PChar.hxx rename to src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_PChar.hxx diff --git a/src/BinObjMgt/BinObjMgt_PExtChar.hxx b/src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_PExtChar.hxx similarity index 100% rename from src/BinObjMgt/BinObjMgt_PExtChar.hxx rename to src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_PExtChar.hxx diff --git a/src/BinObjMgt/BinObjMgt_PInteger.hxx b/src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_PInteger.hxx similarity index 100% rename from src/BinObjMgt/BinObjMgt_PInteger.hxx rename to src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_PInteger.hxx diff --git a/src/BinObjMgt/BinObjMgt_PReal.hxx b/src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_PReal.hxx similarity index 100% rename from src/BinObjMgt/BinObjMgt_PReal.hxx rename to src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_PReal.hxx diff --git a/src/BinObjMgt/BinObjMgt_PShortReal.hxx b/src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_PShortReal.hxx similarity index 100% rename from src/BinObjMgt/BinObjMgt_PShortReal.hxx rename to src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_PShortReal.hxx diff --git a/src/BinObjMgt/BinObjMgt_Persistent.cxx b/src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_Persistent.cxx similarity index 100% rename from src/BinObjMgt/BinObjMgt_Persistent.cxx rename to src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_Persistent.cxx diff --git a/src/BinObjMgt/BinObjMgt_Persistent.hxx b/src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_Persistent.hxx similarity index 100% rename from src/BinObjMgt/BinObjMgt_Persistent.hxx rename to src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_Persistent.hxx diff --git a/src/BinObjMgt/BinObjMgt_Persistent.lxx b/src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_Persistent.lxx similarity index 100% rename from src/BinObjMgt/BinObjMgt_Persistent.lxx rename to src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_Persistent.lxx diff --git a/src/BinObjMgt/BinObjMgt_Position.cxx b/src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_Position.cxx similarity index 100% rename from src/BinObjMgt/BinObjMgt_Position.cxx rename to src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_Position.cxx diff --git a/src/BinObjMgt/BinObjMgt_Position.hxx b/src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_Position.hxx similarity index 100% rename from src/BinObjMgt/BinObjMgt_Position.hxx rename to src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_Position.hxx diff --git a/src/BinObjMgt/BinObjMgt_RRelocationTable.cxx b/src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_RRelocationTable.cxx similarity index 100% rename from src/BinObjMgt/BinObjMgt_RRelocationTable.cxx rename to src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_RRelocationTable.cxx diff --git a/src/BinObjMgt/BinObjMgt_RRelocationTable.hxx b/src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_RRelocationTable.hxx similarity index 100% rename from src/BinObjMgt/BinObjMgt_RRelocationTable.hxx rename to src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_RRelocationTable.hxx diff --git a/src/BinObjMgt/BinObjMgt_SRelocationTable.hxx b/src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_SRelocationTable.hxx similarity index 100% rename from src/BinObjMgt/BinObjMgt_SRelocationTable.hxx rename to src/ApplicationFramework/TKBinL/BinObjMgt/BinObjMgt_SRelocationTable.hxx diff --git a/src/ApplicationFramework/TKBinL/BinObjMgt/FILES.cmake b/src/ApplicationFramework/TKBinL/BinObjMgt/FILES.cmake new file mode 100644 index 0000000000..5ebddee54c --- /dev/null +++ b/src/ApplicationFramework/TKBinL/BinObjMgt/FILES.cmake @@ -0,0 +1,19 @@ +# Source files for BinObjMgt package +set(OCCT_BinObjMgt_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BinObjMgt_FILES + BinObjMgt_PByte.hxx + BinObjMgt_PChar.hxx + BinObjMgt_Persistent.cxx + BinObjMgt_Persistent.hxx + BinObjMgt_Persistent.lxx + BinObjMgt_PExtChar.hxx + BinObjMgt_PInteger.hxx + BinObjMgt_Position.cxx + BinObjMgt_Position.hxx + BinObjMgt_PReal.hxx + BinObjMgt_PShortReal.hxx + BinObjMgt_RRelocationTable.cxx + BinObjMgt_RRelocationTable.hxx + BinObjMgt_SRelocationTable.hxx +) diff --git a/src/TKBinL/CMakeLists.txt b/src/ApplicationFramework/TKBinL/CMakeLists.txt similarity index 100% rename from src/TKBinL/CMakeLists.txt rename to src/ApplicationFramework/TKBinL/CMakeLists.txt diff --git a/src/ApplicationFramework/TKBinL/EXTERNLIB.cmake b/src/ApplicationFramework/TKBinL/EXTERNLIB.cmake new file mode 100644 index 0000000000..683d86bbed --- /dev/null +++ b/src/ApplicationFramework/TKBinL/EXTERNLIB.cmake @@ -0,0 +1,6 @@ +# External dependencies for TKBinL +set(OCCT_TKBinL_EXTERNAL_LIBS + TKCDF + TKernel + TKLCAF +) diff --git a/src/ApplicationFramework/TKBinL/FILES.cmake b/src/ApplicationFramework/TKBinL/FILES.cmake new file mode 100644 index 0000000000..f84e08bae2 --- /dev/null +++ b/src/ApplicationFramework/TKBinL/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKBinL +set(OCCT_TKBinL_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKBinL_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ApplicationFramework/TKBinL/PACKAGES.cmake b/src/ApplicationFramework/TKBinL/PACKAGES.cmake new file mode 100644 index 0000000000..f83108b852 --- /dev/null +++ b/src/ApplicationFramework/TKBinL/PACKAGES.cmake @@ -0,0 +1,9 @@ +# Auto-generated list of packages for TKBinL toolkit +set(OCCT_TKBinL_LIST_OF_PACKAGES + BinMDF + BinMDataStd + BinMFunction + BinMDocStd + BinObjMgt + BinLDrivers +) diff --git a/src/BinTObjDrivers/BinTObjDrivers.cxx b/src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers.cxx similarity index 100% rename from src/BinTObjDrivers/BinTObjDrivers.cxx rename to src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers.cxx diff --git a/src/BinTObjDrivers/BinTObjDrivers.hxx b/src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers.hxx similarity index 100% rename from src/BinTObjDrivers/BinTObjDrivers.hxx rename to src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers.hxx diff --git a/src/BinTObjDrivers/BinTObjDrivers_DocumentRetrievalDriver.cxx b/src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_DocumentRetrievalDriver.cxx similarity index 100% rename from src/BinTObjDrivers/BinTObjDrivers_DocumentRetrievalDriver.cxx rename to src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_DocumentRetrievalDriver.cxx diff --git a/src/BinTObjDrivers/BinTObjDrivers_DocumentRetrievalDriver.hxx b/src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_DocumentRetrievalDriver.hxx similarity index 100% rename from src/BinTObjDrivers/BinTObjDrivers_DocumentRetrievalDriver.hxx rename to src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_DocumentRetrievalDriver.hxx diff --git a/src/BinTObjDrivers/BinTObjDrivers_DocumentStorageDriver.cxx b/src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_DocumentStorageDriver.cxx similarity index 100% rename from src/BinTObjDrivers/BinTObjDrivers_DocumentStorageDriver.cxx rename to src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_DocumentStorageDriver.cxx diff --git a/src/BinTObjDrivers/BinTObjDrivers_DocumentStorageDriver.hxx b/src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_DocumentStorageDriver.hxx similarity index 100% rename from src/BinTObjDrivers/BinTObjDrivers_DocumentStorageDriver.hxx rename to src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_DocumentStorageDriver.hxx diff --git a/src/BinTObjDrivers/BinTObjDrivers_IntSparseArrayDriver.cxx b/src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_IntSparseArrayDriver.cxx similarity index 100% rename from src/BinTObjDrivers/BinTObjDrivers_IntSparseArrayDriver.cxx rename to src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_IntSparseArrayDriver.cxx diff --git a/src/BinTObjDrivers/BinTObjDrivers_IntSparseArrayDriver.hxx b/src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_IntSparseArrayDriver.hxx similarity index 100% rename from src/BinTObjDrivers/BinTObjDrivers_IntSparseArrayDriver.hxx rename to src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_IntSparseArrayDriver.hxx diff --git a/src/BinTObjDrivers/BinTObjDrivers_ModelDriver.cxx b/src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_ModelDriver.cxx similarity index 100% rename from src/BinTObjDrivers/BinTObjDrivers_ModelDriver.cxx rename to src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_ModelDriver.cxx diff --git a/src/BinTObjDrivers/BinTObjDrivers_ModelDriver.hxx b/src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_ModelDriver.hxx similarity index 100% rename from src/BinTObjDrivers/BinTObjDrivers_ModelDriver.hxx rename to src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_ModelDriver.hxx diff --git a/src/BinTObjDrivers/BinTObjDrivers_ObjectDriver.cxx b/src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_ObjectDriver.cxx similarity index 100% rename from src/BinTObjDrivers/BinTObjDrivers_ObjectDriver.cxx rename to src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_ObjectDriver.cxx diff --git a/src/BinTObjDrivers/BinTObjDrivers_ObjectDriver.hxx b/src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_ObjectDriver.hxx similarity index 100% rename from src/BinTObjDrivers/BinTObjDrivers_ObjectDriver.hxx rename to src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_ObjectDriver.hxx diff --git a/src/BinTObjDrivers/BinTObjDrivers_ReferenceDriver.cxx b/src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_ReferenceDriver.cxx similarity index 100% rename from src/BinTObjDrivers/BinTObjDrivers_ReferenceDriver.cxx rename to src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_ReferenceDriver.cxx diff --git a/src/BinTObjDrivers/BinTObjDrivers_ReferenceDriver.hxx b/src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_ReferenceDriver.hxx similarity index 100% rename from src/BinTObjDrivers/BinTObjDrivers_ReferenceDriver.hxx rename to src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_ReferenceDriver.hxx diff --git a/src/BinTObjDrivers/BinTObjDrivers_XYZDriver.cxx b/src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_XYZDriver.cxx similarity index 100% rename from src/BinTObjDrivers/BinTObjDrivers_XYZDriver.cxx rename to src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_XYZDriver.cxx diff --git a/src/BinTObjDrivers/BinTObjDrivers_XYZDriver.hxx b/src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_XYZDriver.hxx similarity index 100% rename from src/BinTObjDrivers/BinTObjDrivers_XYZDriver.hxx rename to src/ApplicationFramework/TKBinTObj/BinTObjDrivers/BinTObjDrivers_XYZDriver.hxx diff --git a/src/ApplicationFramework/TKBinTObj/BinTObjDrivers/FILES.cmake b/src/ApplicationFramework/TKBinTObj/BinTObjDrivers/FILES.cmake new file mode 100644 index 0000000000..dc5618d242 --- /dev/null +++ b/src/ApplicationFramework/TKBinTObj/BinTObjDrivers/FILES.cmake @@ -0,0 +1,21 @@ +# Source files for BinTObjDrivers package +set(OCCT_BinTObjDrivers_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BinTObjDrivers_FILES + BinTObjDrivers.cxx + BinTObjDrivers.hxx + BinTObjDrivers_DocumentRetrievalDriver.cxx + BinTObjDrivers_DocumentRetrievalDriver.hxx + BinTObjDrivers_DocumentStorageDriver.cxx + BinTObjDrivers_DocumentStorageDriver.hxx + BinTObjDrivers_IntSparseArrayDriver.cxx + BinTObjDrivers_IntSparseArrayDriver.hxx + BinTObjDrivers_ModelDriver.cxx + BinTObjDrivers_ModelDriver.hxx + BinTObjDrivers_ObjectDriver.cxx + BinTObjDrivers_ObjectDriver.hxx + BinTObjDrivers_ReferenceDriver.cxx + BinTObjDrivers_ReferenceDriver.hxx + BinTObjDrivers_XYZDriver.cxx + BinTObjDrivers_XYZDriver.hxx +) diff --git a/src/TKBinTObj/CMakeLists.txt b/src/ApplicationFramework/TKBinTObj/CMakeLists.txt similarity index 100% rename from src/TKBinTObj/CMakeLists.txt rename to src/ApplicationFramework/TKBinTObj/CMakeLists.txt diff --git a/src/ApplicationFramework/TKBinTObj/EXTERNLIB.cmake b/src/ApplicationFramework/TKBinTObj/EXTERNLIB.cmake new file mode 100644 index 0000000000..e07dca987e --- /dev/null +++ b/src/ApplicationFramework/TKBinTObj/EXTERNLIB.cmake @@ -0,0 +1,9 @@ +# External dependencies for TKBinTObj +set(OCCT_TKBinTObj_EXTERNAL_LIBS + TKCDF + TKernel + TKTObj + TKMath + TKLCAF + TKBinL +) diff --git a/src/ApplicationFramework/TKBinTObj/FILES.cmake b/src/ApplicationFramework/TKBinTObj/FILES.cmake new file mode 100644 index 0000000000..a087f46cc1 --- /dev/null +++ b/src/ApplicationFramework/TKBinTObj/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKBinTObj +set(OCCT_TKBinTObj_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKBinTObj_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ApplicationFramework/TKBinTObj/PACKAGES.cmake b/src/ApplicationFramework/TKBinTObj/PACKAGES.cmake new file mode 100644 index 0000000000..a04d937066 --- /dev/null +++ b/src/ApplicationFramework/TKBinTObj/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKBinTObj toolkit +set(OCCT_TKBinTObj_LIST_OF_PACKAGES + BinTObjDrivers +) diff --git a/src/AppStd/AppStd_Application.cxx b/src/ApplicationFramework/TKCAF/AppStd/AppStd_Application.cxx similarity index 100% rename from src/AppStd/AppStd_Application.cxx rename to src/ApplicationFramework/TKCAF/AppStd/AppStd_Application.cxx diff --git a/src/AppStd/AppStd_Application.hxx b/src/ApplicationFramework/TKCAF/AppStd/AppStd_Application.hxx similarity index 100% rename from src/AppStd/AppStd_Application.hxx rename to src/ApplicationFramework/TKCAF/AppStd/AppStd_Application.hxx diff --git a/src/ApplicationFramework/TKCAF/AppStd/FILES.cmake b/src/ApplicationFramework/TKCAF/AppStd/FILES.cmake new file mode 100644 index 0000000000..7eafd461ba --- /dev/null +++ b/src/ApplicationFramework/TKCAF/AppStd/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for AppStd package +set(OCCT_AppStd_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_AppStd_FILES + AppStd_Application.cxx + AppStd_Application.hxx +) diff --git a/src/TKCAF/CMakeLists.txt b/src/ApplicationFramework/TKCAF/CMakeLists.txt similarity index 100% rename from src/TKCAF/CMakeLists.txt rename to src/ApplicationFramework/TKCAF/CMakeLists.txt diff --git a/src/ApplicationFramework/TKCAF/EXTERNLIB.cmake b/src/ApplicationFramework/TKCAF/EXTERNLIB.cmake new file mode 100644 index 0000000000..715fa84539 --- /dev/null +++ b/src/ApplicationFramework/TKCAF/EXTERNLIB.cmake @@ -0,0 +1,13 @@ +# External dependencies for TKCAF +set(OCCT_TKCAF_EXTERNAL_LIBS + TKernel + TKGeomBase + TKBRep + TKTopAlgo + TKMath + TKG2d + TKG3d + TKCDF + TKLCAF + TKBO +) diff --git a/src/ApplicationFramework/TKCAF/FILES.cmake b/src/ApplicationFramework/TKCAF/FILES.cmake new file mode 100644 index 0000000000..93d995c37c --- /dev/null +++ b/src/ApplicationFramework/TKCAF/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKCAF +set(OCCT_TKCAF_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKCAF_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ApplicationFramework/TKCAF/PACKAGES.cmake b/src/ApplicationFramework/TKCAF/PACKAGES.cmake new file mode 100644 index 0000000000..27af90266b --- /dev/null +++ b/src/ApplicationFramework/TKCAF/PACKAGES.cmake @@ -0,0 +1,6 @@ +# Auto-generated list of packages for TKCAF toolkit +set(OCCT_TKCAF_LIST_OF_PACKAGES + TDataXtd + TNaming + AppStd +) diff --git a/src/ApplicationFramework/TKCAF/TDataXtd/FILES.cmake b/src/ApplicationFramework/TKCAF/TDataXtd/FILES.cmake new file mode 100644 index 0000000000..8f67bcd491 --- /dev/null +++ b/src/ApplicationFramework/TKCAF/TDataXtd/FILES.cmake @@ -0,0 +1,36 @@ +# Source files for TDataXtd package +set(OCCT_TDataXtd_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TDataXtd_FILES + TDataXtd.cxx + TDataXtd.hxx + TDataXtd_Array1OfTrsf.hxx + TDataXtd_Axis.cxx + TDataXtd_Axis.hxx + TDataXtd_Constraint.cxx + TDataXtd_Constraint.hxx + TDataXtd_ConstraintEnum.hxx + TDataXtd_Geometry.cxx + TDataXtd_Geometry.hxx + TDataXtd_GeometryEnum.hxx + TDataXtd_HArray1OfTrsf.hxx + TDataXtd_Pattern.cxx + TDataXtd_Pattern.hxx + TDataXtd_PatternStd.cxx + TDataXtd_PatternStd.hxx + TDataXtd_PatternStd.lxx + TDataXtd_Placement.cxx + TDataXtd_Placement.hxx + TDataXtd_Plane.cxx + TDataXtd_Plane.hxx + TDataXtd_Point.cxx + TDataXtd_Point.hxx + TDataXtd_Position.cxx + TDataXtd_Position.hxx + TDataXtd_Presentation.hxx + TDataXtd_Presentation.cxx + TDataXtd_Shape.cxx + TDataXtd_Shape.hxx + TDataXtd_Triangulation.cxx + TDataXtd_Triangulation.hxx +) diff --git a/src/TDataXtd/TDataXtd.cxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd.cxx similarity index 100% rename from src/TDataXtd/TDataXtd.cxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd.cxx diff --git a/src/TDataXtd/TDataXtd.hxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd.hxx similarity index 100% rename from src/TDataXtd/TDataXtd.hxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd.hxx diff --git a/src/TDataXtd/TDataXtd_Array1OfTrsf.hxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Array1OfTrsf.hxx similarity index 100% rename from src/TDataXtd/TDataXtd_Array1OfTrsf.hxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Array1OfTrsf.hxx diff --git a/src/TDataXtd/TDataXtd_Axis.cxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Axis.cxx similarity index 100% rename from src/TDataXtd/TDataXtd_Axis.cxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Axis.cxx diff --git a/src/TDataXtd/TDataXtd_Axis.hxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Axis.hxx similarity index 100% rename from src/TDataXtd/TDataXtd_Axis.hxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Axis.hxx diff --git a/src/TDataXtd/TDataXtd_Constraint.cxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Constraint.cxx similarity index 100% rename from src/TDataXtd/TDataXtd_Constraint.cxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Constraint.cxx diff --git a/src/TDataXtd/TDataXtd_Constraint.hxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Constraint.hxx similarity index 100% rename from src/TDataXtd/TDataXtd_Constraint.hxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Constraint.hxx diff --git a/src/TDataXtd/TDataXtd_ConstraintEnum.hxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_ConstraintEnum.hxx similarity index 100% rename from src/TDataXtd/TDataXtd_ConstraintEnum.hxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_ConstraintEnum.hxx diff --git a/src/TDataXtd/TDataXtd_Geometry.cxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Geometry.cxx similarity index 100% rename from src/TDataXtd/TDataXtd_Geometry.cxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Geometry.cxx diff --git a/src/TDataXtd/TDataXtd_Geometry.hxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Geometry.hxx similarity index 100% rename from src/TDataXtd/TDataXtd_Geometry.hxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Geometry.hxx diff --git a/src/TDataXtd/TDataXtd_GeometryEnum.hxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_GeometryEnum.hxx similarity index 100% rename from src/TDataXtd/TDataXtd_GeometryEnum.hxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_GeometryEnum.hxx diff --git a/src/TDataXtd/TDataXtd_HArray1OfTrsf.hxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_HArray1OfTrsf.hxx similarity index 100% rename from src/TDataXtd/TDataXtd_HArray1OfTrsf.hxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_HArray1OfTrsf.hxx diff --git a/src/TDataXtd/TDataXtd_Pattern.cxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Pattern.cxx similarity index 100% rename from src/TDataXtd/TDataXtd_Pattern.cxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Pattern.cxx diff --git a/src/TDataXtd/TDataXtd_Pattern.hxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Pattern.hxx similarity index 100% rename from src/TDataXtd/TDataXtd_Pattern.hxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Pattern.hxx diff --git a/src/TDataXtd/TDataXtd_PatternStd.cxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_PatternStd.cxx similarity index 100% rename from src/TDataXtd/TDataXtd_PatternStd.cxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_PatternStd.cxx diff --git a/src/TDataXtd/TDataXtd_PatternStd.hxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_PatternStd.hxx similarity index 100% rename from src/TDataXtd/TDataXtd_PatternStd.hxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_PatternStd.hxx diff --git a/src/TDataXtd/TDataXtd_PatternStd.lxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_PatternStd.lxx similarity index 100% rename from src/TDataXtd/TDataXtd_PatternStd.lxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_PatternStd.lxx diff --git a/src/TDataXtd/TDataXtd_Placement.cxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Placement.cxx similarity index 100% rename from src/TDataXtd/TDataXtd_Placement.cxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Placement.cxx diff --git a/src/TDataXtd/TDataXtd_Placement.hxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Placement.hxx similarity index 100% rename from src/TDataXtd/TDataXtd_Placement.hxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Placement.hxx diff --git a/src/TDataXtd/TDataXtd_Plane.cxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Plane.cxx similarity index 100% rename from src/TDataXtd/TDataXtd_Plane.cxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Plane.cxx diff --git a/src/TDataXtd/TDataXtd_Plane.hxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Plane.hxx similarity index 100% rename from src/TDataXtd/TDataXtd_Plane.hxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Plane.hxx diff --git a/src/TDataXtd/TDataXtd_Point.cxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Point.cxx similarity index 100% rename from src/TDataXtd/TDataXtd_Point.cxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Point.cxx diff --git a/src/TDataXtd/TDataXtd_Point.hxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Point.hxx similarity index 100% rename from src/TDataXtd/TDataXtd_Point.hxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Point.hxx diff --git a/src/TDataXtd/TDataXtd_Position.cxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Position.cxx similarity index 100% rename from src/TDataXtd/TDataXtd_Position.cxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Position.cxx diff --git a/src/TDataXtd/TDataXtd_Position.hxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Position.hxx similarity index 100% rename from src/TDataXtd/TDataXtd_Position.hxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Position.hxx diff --git a/src/TDataXtd/TDataXtd_Presentation.cxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Presentation.cxx similarity index 100% rename from src/TDataXtd/TDataXtd_Presentation.cxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Presentation.cxx diff --git a/src/TDataXtd/TDataXtd_Presentation.hxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Presentation.hxx similarity index 100% rename from src/TDataXtd/TDataXtd_Presentation.hxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Presentation.hxx diff --git a/src/TDataXtd/TDataXtd_Shape.cxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Shape.cxx similarity index 100% rename from src/TDataXtd/TDataXtd_Shape.cxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Shape.cxx diff --git a/src/TDataXtd/TDataXtd_Shape.hxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Shape.hxx similarity index 100% rename from src/TDataXtd/TDataXtd_Shape.hxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Shape.hxx diff --git a/src/TDataXtd/TDataXtd_Triangulation.cxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Triangulation.cxx similarity index 100% rename from src/TDataXtd/TDataXtd_Triangulation.cxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Triangulation.cxx diff --git a/src/TDataXtd/TDataXtd_Triangulation.hxx b/src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Triangulation.hxx similarity index 100% rename from src/TDataXtd/TDataXtd_Triangulation.hxx rename to src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Triangulation.hxx diff --git a/src/ApplicationFramework/TKCAF/TNaming/FILES.cmake b/src/ApplicationFramework/TKCAF/TNaming/FILES.cmake new file mode 100644 index 0000000000..ae9fddc6df --- /dev/null +++ b/src/ApplicationFramework/TKCAF/TNaming/FILES.cmake @@ -0,0 +1,73 @@ +# Source files for TNaming package +set(OCCT_TNaming_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TNaming_FILES + TNaming.cxx + TNaming.hxx + TNaming_Builder.hxx + TNaming_CopyShape.cxx + TNaming_CopyShape.hxx + TNaming_DataMapIteratorOfDataMapOfShapePtrRefShape.hxx + TNaming_DataMapIteratorOfDataMapOfShapeShapesSet.hxx + TNaming_DataMapOfShapePtrRefShape.hxx + TNaming_DataMapOfShapeShapesSet.hxx + TNaming_DeltaOnModification.cxx + TNaming_DeltaOnModification.hxx + TNaming_DeltaOnRemoval.cxx + TNaming_DeltaOnRemoval.hxx + TNaming_Evolution.hxx + TNaming_Identifier.cxx + TNaming_Identifier.hxx + TNaming_Iterator.hxx + TNaming_Iterator.lxx + TNaming_IteratorOnShapesSet.hxx + TNaming_IteratorOnShapesSet.lxx + TNaming_ListIteratorOfListOfIndexedDataMapOfShapeListOfShape.hxx + TNaming_ListIteratorOfListOfMapOfShape.hxx + TNaming_ListIteratorOfListOfNamedShape.hxx + TNaming_ListOfIndexedDataMapOfShapeListOfShape.hxx + TNaming_ListOfMapOfShape.hxx + TNaming_ListOfNamedShape.hxx + TNaming_Localizer.cxx + TNaming_Localizer.hxx + TNaming_MapIteratorOfMapOfNamedShape.hxx + TNaming_MapOfNamedShape.hxx + TNaming_Name.cxx + TNaming_Name.hxx + TNaming_NamedShape.cxx + TNaming_NamedShape.hxx + TNaming_NamedShape.lxx + TNaming_NameType.hxx + TNaming_Naming.cxx + TNaming_Naming.hxx + TNaming_NamingTool.cxx + TNaming_NamingTool.hxx + TNaming_NCollections.hxx + TNaming_NewShapeIterator.hxx + TNaming_NewShapeIterator.lxx + TNaming_OldShapeIterator.hxx + TNaming_OldShapeIterator.lxx + TNaming_PtrAttribute.hxx + TNaming_PtrNode.hxx + TNaming_PtrRefShape.hxx + TNaming_RefShape.hxx + TNaming_RefShape.lxx + TNaming_SameShapeIterator.hxx + TNaming_SameShapeIterator.lxx + TNaming_Scope.cxx + TNaming_Scope.hxx + TNaming_Selector.cxx + TNaming_Selector.hxx + TNaming_ShapesSet.cxx + TNaming_ShapesSet.hxx + TNaming_ShapesSet.lxx + TNaming_Tool.cxx + TNaming_Tool.hxx + TNaming_TranslateTool.cxx + TNaming_TranslateTool.hxx + TNaming_Translator.cxx + TNaming_Translator.hxx + TNaming_UsedShapes.cxx + TNaming_UsedShapes.hxx + TNaming_UsedShapes.lxx +) diff --git a/src/TNaming/TNaming.cxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming.cxx similarity index 100% rename from src/TNaming/TNaming.cxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming.cxx diff --git a/src/TNaming/TNaming.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming.hxx similarity index 100% rename from src/TNaming/TNaming.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming.hxx diff --git a/src/TNaming/TNaming_Builder.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_Builder.hxx similarity index 100% rename from src/TNaming/TNaming_Builder.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_Builder.hxx diff --git a/src/TNaming/TNaming_CopyShape.cxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_CopyShape.cxx similarity index 100% rename from src/TNaming/TNaming_CopyShape.cxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_CopyShape.cxx diff --git a/src/TNaming/TNaming_CopyShape.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_CopyShape.hxx similarity index 100% rename from src/TNaming/TNaming_CopyShape.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_CopyShape.hxx diff --git a/src/TNaming/TNaming_DataMapIteratorOfDataMapOfShapePtrRefShape.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_DataMapIteratorOfDataMapOfShapePtrRefShape.hxx similarity index 100% rename from src/TNaming/TNaming_DataMapIteratorOfDataMapOfShapePtrRefShape.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_DataMapIteratorOfDataMapOfShapePtrRefShape.hxx diff --git a/src/TNaming/TNaming_DataMapIteratorOfDataMapOfShapeShapesSet.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_DataMapIteratorOfDataMapOfShapeShapesSet.hxx similarity index 100% rename from src/TNaming/TNaming_DataMapIteratorOfDataMapOfShapeShapesSet.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_DataMapIteratorOfDataMapOfShapeShapesSet.hxx diff --git a/src/TNaming/TNaming_DataMapOfShapePtrRefShape.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_DataMapOfShapePtrRefShape.hxx similarity index 100% rename from src/TNaming/TNaming_DataMapOfShapePtrRefShape.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_DataMapOfShapePtrRefShape.hxx diff --git a/src/TNaming/TNaming_DataMapOfShapeShapesSet.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_DataMapOfShapeShapesSet.hxx similarity index 100% rename from src/TNaming/TNaming_DataMapOfShapeShapesSet.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_DataMapOfShapeShapesSet.hxx diff --git a/src/TNaming/TNaming_DeltaOnModification.cxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_DeltaOnModification.cxx similarity index 100% rename from src/TNaming/TNaming_DeltaOnModification.cxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_DeltaOnModification.cxx diff --git a/src/TNaming/TNaming_DeltaOnModification.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_DeltaOnModification.hxx similarity index 100% rename from src/TNaming/TNaming_DeltaOnModification.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_DeltaOnModification.hxx diff --git a/src/TNaming/TNaming_DeltaOnRemoval.cxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_DeltaOnRemoval.cxx similarity index 100% rename from src/TNaming/TNaming_DeltaOnRemoval.cxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_DeltaOnRemoval.cxx diff --git a/src/TNaming/TNaming_DeltaOnRemoval.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_DeltaOnRemoval.hxx similarity index 100% rename from src/TNaming/TNaming_DeltaOnRemoval.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_DeltaOnRemoval.hxx diff --git a/src/TNaming/TNaming_Evolution.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_Evolution.hxx similarity index 100% rename from src/TNaming/TNaming_Evolution.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_Evolution.hxx diff --git a/src/TNaming/TNaming_Identifier.cxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_Identifier.cxx similarity index 100% rename from src/TNaming/TNaming_Identifier.cxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_Identifier.cxx diff --git a/src/TNaming/TNaming_Identifier.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_Identifier.hxx similarity index 100% rename from src/TNaming/TNaming_Identifier.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_Identifier.hxx diff --git a/src/TNaming/TNaming_Iterator.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_Iterator.hxx similarity index 100% rename from src/TNaming/TNaming_Iterator.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_Iterator.hxx diff --git a/src/TNaming/TNaming_Iterator.lxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_Iterator.lxx similarity index 100% rename from src/TNaming/TNaming_Iterator.lxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_Iterator.lxx diff --git a/src/TNaming/TNaming_IteratorOnShapesSet.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_IteratorOnShapesSet.hxx similarity index 100% rename from src/TNaming/TNaming_IteratorOnShapesSet.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_IteratorOnShapesSet.hxx diff --git a/src/TNaming/TNaming_IteratorOnShapesSet.lxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_IteratorOnShapesSet.lxx similarity index 100% rename from src/TNaming/TNaming_IteratorOnShapesSet.lxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_IteratorOnShapesSet.lxx diff --git a/src/TNaming/TNaming_ListIteratorOfListOfIndexedDataMapOfShapeListOfShape.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_ListIteratorOfListOfIndexedDataMapOfShapeListOfShape.hxx similarity index 100% rename from src/TNaming/TNaming_ListIteratorOfListOfIndexedDataMapOfShapeListOfShape.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_ListIteratorOfListOfIndexedDataMapOfShapeListOfShape.hxx diff --git a/src/TNaming/TNaming_ListIteratorOfListOfMapOfShape.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_ListIteratorOfListOfMapOfShape.hxx similarity index 100% rename from src/TNaming/TNaming_ListIteratorOfListOfMapOfShape.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_ListIteratorOfListOfMapOfShape.hxx diff --git a/src/TNaming/TNaming_ListIteratorOfListOfNamedShape.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_ListIteratorOfListOfNamedShape.hxx similarity index 100% rename from src/TNaming/TNaming_ListIteratorOfListOfNamedShape.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_ListIteratorOfListOfNamedShape.hxx diff --git a/src/TNaming/TNaming_ListOfIndexedDataMapOfShapeListOfShape.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_ListOfIndexedDataMapOfShapeListOfShape.hxx similarity index 100% rename from src/TNaming/TNaming_ListOfIndexedDataMapOfShapeListOfShape.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_ListOfIndexedDataMapOfShapeListOfShape.hxx diff --git a/src/TNaming/TNaming_ListOfMapOfShape.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_ListOfMapOfShape.hxx similarity index 100% rename from src/TNaming/TNaming_ListOfMapOfShape.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_ListOfMapOfShape.hxx diff --git a/src/TNaming/TNaming_ListOfNamedShape.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_ListOfNamedShape.hxx similarity index 100% rename from src/TNaming/TNaming_ListOfNamedShape.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_ListOfNamedShape.hxx diff --git a/src/TNaming/TNaming_Localizer.cxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_Localizer.cxx similarity index 100% rename from src/TNaming/TNaming_Localizer.cxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_Localizer.cxx diff --git a/src/TNaming/TNaming_Localizer.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_Localizer.hxx similarity index 100% rename from src/TNaming/TNaming_Localizer.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_Localizer.hxx diff --git a/src/TNaming/TNaming_MapIteratorOfMapOfNamedShape.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_MapIteratorOfMapOfNamedShape.hxx similarity index 100% rename from src/TNaming/TNaming_MapIteratorOfMapOfNamedShape.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_MapIteratorOfMapOfNamedShape.hxx diff --git a/src/TNaming/TNaming_MapOfNamedShape.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_MapOfNamedShape.hxx similarity index 100% rename from src/TNaming/TNaming_MapOfNamedShape.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_MapOfNamedShape.hxx diff --git a/src/TNaming/TNaming_NCollections.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_NCollections.hxx similarity index 100% rename from src/TNaming/TNaming_NCollections.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_NCollections.hxx diff --git a/src/TNaming/TNaming_Name.cxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_Name.cxx similarity index 100% rename from src/TNaming/TNaming_Name.cxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_Name.cxx diff --git a/src/TNaming/TNaming_Name.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_Name.hxx similarity index 100% rename from src/TNaming/TNaming_Name.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_Name.hxx diff --git a/src/TNaming/TNaming_NameType.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_NameType.hxx similarity index 100% rename from src/TNaming/TNaming_NameType.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_NameType.hxx diff --git a/src/TNaming/TNaming_NamedShape.cxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_NamedShape.cxx similarity index 100% rename from src/TNaming/TNaming_NamedShape.cxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_NamedShape.cxx diff --git a/src/TNaming/TNaming_NamedShape.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_NamedShape.hxx similarity index 100% rename from src/TNaming/TNaming_NamedShape.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_NamedShape.hxx diff --git a/src/TNaming/TNaming_NamedShape.lxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_NamedShape.lxx similarity index 100% rename from src/TNaming/TNaming_NamedShape.lxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_NamedShape.lxx diff --git a/src/TNaming/TNaming_Naming.cxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_Naming.cxx similarity index 100% rename from src/TNaming/TNaming_Naming.cxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_Naming.cxx diff --git a/src/TNaming/TNaming_Naming.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_Naming.hxx similarity index 100% rename from src/TNaming/TNaming_Naming.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_Naming.hxx diff --git a/src/TNaming/TNaming_NamingTool.cxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_NamingTool.cxx similarity index 100% rename from src/TNaming/TNaming_NamingTool.cxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_NamingTool.cxx diff --git a/src/TNaming/TNaming_NamingTool.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_NamingTool.hxx similarity index 100% rename from src/TNaming/TNaming_NamingTool.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_NamingTool.hxx diff --git a/src/TNaming/TNaming_NewShapeIterator.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_NewShapeIterator.hxx similarity index 100% rename from src/TNaming/TNaming_NewShapeIterator.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_NewShapeIterator.hxx diff --git a/src/TNaming/TNaming_NewShapeIterator.lxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_NewShapeIterator.lxx similarity index 100% rename from src/TNaming/TNaming_NewShapeIterator.lxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_NewShapeIterator.lxx diff --git a/src/TNaming/TNaming_OldShapeIterator.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_OldShapeIterator.hxx similarity index 100% rename from src/TNaming/TNaming_OldShapeIterator.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_OldShapeIterator.hxx diff --git a/src/TNaming/TNaming_OldShapeIterator.lxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_OldShapeIterator.lxx similarity index 100% rename from src/TNaming/TNaming_OldShapeIterator.lxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_OldShapeIterator.lxx diff --git a/src/TNaming/TNaming_PtrAttribute.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_PtrAttribute.hxx similarity index 100% rename from src/TNaming/TNaming_PtrAttribute.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_PtrAttribute.hxx diff --git a/src/TNaming/TNaming_PtrNode.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_PtrNode.hxx similarity index 100% rename from src/TNaming/TNaming_PtrNode.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_PtrNode.hxx diff --git a/src/TNaming/TNaming_PtrRefShape.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_PtrRefShape.hxx similarity index 100% rename from src/TNaming/TNaming_PtrRefShape.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_PtrRefShape.hxx diff --git a/src/TNaming/TNaming_RefShape.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_RefShape.hxx similarity index 100% rename from src/TNaming/TNaming_RefShape.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_RefShape.hxx diff --git a/src/TNaming/TNaming_RefShape.lxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_RefShape.lxx similarity index 100% rename from src/TNaming/TNaming_RefShape.lxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_RefShape.lxx diff --git a/src/TNaming/TNaming_SameShapeIterator.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_SameShapeIterator.hxx similarity index 100% rename from src/TNaming/TNaming_SameShapeIterator.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_SameShapeIterator.hxx diff --git a/src/TNaming/TNaming_SameShapeIterator.lxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_SameShapeIterator.lxx similarity index 100% rename from src/TNaming/TNaming_SameShapeIterator.lxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_SameShapeIterator.lxx diff --git a/src/TNaming/TNaming_Scope.cxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_Scope.cxx similarity index 100% rename from src/TNaming/TNaming_Scope.cxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_Scope.cxx diff --git a/src/TNaming/TNaming_Scope.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_Scope.hxx similarity index 100% rename from src/TNaming/TNaming_Scope.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_Scope.hxx diff --git a/src/TNaming/TNaming_Selector.cxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_Selector.cxx similarity index 100% rename from src/TNaming/TNaming_Selector.cxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_Selector.cxx diff --git a/src/TNaming/TNaming_Selector.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_Selector.hxx similarity index 100% rename from src/TNaming/TNaming_Selector.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_Selector.hxx diff --git a/src/TNaming/TNaming_ShapesSet.cxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_ShapesSet.cxx similarity index 100% rename from src/TNaming/TNaming_ShapesSet.cxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_ShapesSet.cxx diff --git a/src/TNaming/TNaming_ShapesSet.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_ShapesSet.hxx similarity index 100% rename from src/TNaming/TNaming_ShapesSet.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_ShapesSet.hxx diff --git a/src/TNaming/TNaming_ShapesSet.lxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_ShapesSet.lxx similarity index 100% rename from src/TNaming/TNaming_ShapesSet.lxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_ShapesSet.lxx diff --git a/src/TNaming/TNaming_Tool.cxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_Tool.cxx similarity index 100% rename from src/TNaming/TNaming_Tool.cxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_Tool.cxx diff --git a/src/TNaming/TNaming_Tool.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_Tool.hxx similarity index 100% rename from src/TNaming/TNaming_Tool.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_Tool.hxx diff --git a/src/TNaming/TNaming_TranslateTool.cxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_TranslateTool.cxx similarity index 100% rename from src/TNaming/TNaming_TranslateTool.cxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_TranslateTool.cxx diff --git a/src/TNaming/TNaming_TranslateTool.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_TranslateTool.hxx similarity index 100% rename from src/TNaming/TNaming_TranslateTool.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_TranslateTool.hxx diff --git a/src/TNaming/TNaming_Translator.cxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_Translator.cxx similarity index 100% rename from src/TNaming/TNaming_Translator.cxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_Translator.cxx diff --git a/src/TNaming/TNaming_Translator.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_Translator.hxx similarity index 100% rename from src/TNaming/TNaming_Translator.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_Translator.hxx diff --git a/src/TNaming/TNaming_UsedShapes.cxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_UsedShapes.cxx similarity index 100% rename from src/TNaming/TNaming_UsedShapes.cxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_UsedShapes.cxx diff --git a/src/TNaming/TNaming_UsedShapes.hxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_UsedShapes.hxx similarity index 100% rename from src/TNaming/TNaming_UsedShapes.hxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_UsedShapes.hxx diff --git a/src/TNaming/TNaming_UsedShapes.lxx b/src/ApplicationFramework/TKCAF/TNaming/TNaming_UsedShapes.lxx similarity index 100% rename from src/TNaming/TNaming_UsedShapes.lxx rename to src/ApplicationFramework/TKCAF/TNaming/TNaming_UsedShapes.lxx diff --git a/src/CDF/CDF_Application.cxx b/src/ApplicationFramework/TKCDF/CDF/CDF_Application.cxx similarity index 100% rename from src/CDF/CDF_Application.cxx rename to src/ApplicationFramework/TKCDF/CDF/CDF_Application.cxx diff --git a/src/CDF/CDF_Application.hxx b/src/ApplicationFramework/TKCDF/CDF/CDF_Application.hxx similarity index 100% rename from src/CDF/CDF_Application.hxx rename to src/ApplicationFramework/TKCDF/CDF/CDF_Application.hxx diff --git a/src/CDF/CDF_Directory.cxx b/src/ApplicationFramework/TKCDF/CDF/CDF_Directory.cxx similarity index 100% rename from src/CDF/CDF_Directory.cxx rename to src/ApplicationFramework/TKCDF/CDF/CDF_Directory.cxx diff --git a/src/CDF/CDF_Directory.hxx b/src/ApplicationFramework/TKCDF/CDF/CDF_Directory.hxx similarity index 100% rename from src/CDF/CDF_Directory.hxx rename to src/ApplicationFramework/TKCDF/CDF/CDF_Directory.hxx diff --git a/src/CDF/CDF_DirectoryIterator.cxx b/src/ApplicationFramework/TKCDF/CDF/CDF_DirectoryIterator.cxx similarity index 100% rename from src/CDF/CDF_DirectoryIterator.cxx rename to src/ApplicationFramework/TKCDF/CDF/CDF_DirectoryIterator.cxx diff --git a/src/CDF/CDF_DirectoryIterator.hxx b/src/ApplicationFramework/TKCDF/CDF/CDF_DirectoryIterator.hxx similarity index 100% rename from src/CDF/CDF_DirectoryIterator.hxx rename to src/ApplicationFramework/TKCDF/CDF/CDF_DirectoryIterator.hxx diff --git a/src/CDF/CDF_FWOSDriver.cxx b/src/ApplicationFramework/TKCDF/CDF/CDF_FWOSDriver.cxx similarity index 100% rename from src/CDF/CDF_FWOSDriver.cxx rename to src/ApplicationFramework/TKCDF/CDF/CDF_FWOSDriver.cxx diff --git a/src/CDF/CDF_FWOSDriver.hxx b/src/ApplicationFramework/TKCDF/CDF/CDF_FWOSDriver.hxx similarity index 100% rename from src/CDF/CDF_FWOSDriver.hxx rename to src/ApplicationFramework/TKCDF/CDF/CDF_FWOSDriver.hxx diff --git a/src/CDF/CDF_MetaDataDriver.cxx b/src/ApplicationFramework/TKCDF/CDF/CDF_MetaDataDriver.cxx similarity index 100% rename from src/CDF/CDF_MetaDataDriver.cxx rename to src/ApplicationFramework/TKCDF/CDF/CDF_MetaDataDriver.cxx diff --git a/src/CDF/CDF_MetaDataDriver.hxx b/src/ApplicationFramework/TKCDF/CDF/CDF_MetaDataDriver.hxx similarity index 100% rename from src/CDF/CDF_MetaDataDriver.hxx rename to src/ApplicationFramework/TKCDF/CDF/CDF_MetaDataDriver.hxx diff --git a/src/CDF/CDF_MetaDataDriverFactory.cxx b/src/ApplicationFramework/TKCDF/CDF/CDF_MetaDataDriverFactory.cxx similarity index 100% rename from src/CDF/CDF_MetaDataDriverFactory.cxx rename to src/ApplicationFramework/TKCDF/CDF/CDF_MetaDataDriverFactory.cxx diff --git a/src/CDF/CDF_MetaDataDriverFactory.hxx b/src/ApplicationFramework/TKCDF/CDF/CDF_MetaDataDriverFactory.hxx similarity index 100% rename from src/CDF/CDF_MetaDataDriverFactory.hxx rename to src/ApplicationFramework/TKCDF/CDF/CDF_MetaDataDriverFactory.hxx diff --git a/src/CDF/CDF_Store.cxx b/src/ApplicationFramework/TKCDF/CDF/CDF_Store.cxx similarity index 100% rename from src/CDF/CDF_Store.cxx rename to src/ApplicationFramework/TKCDF/CDF/CDF_Store.cxx diff --git a/src/CDF/CDF_Store.hxx b/src/ApplicationFramework/TKCDF/CDF/CDF_Store.hxx similarity index 100% rename from src/CDF/CDF_Store.hxx rename to src/ApplicationFramework/TKCDF/CDF/CDF_Store.hxx diff --git a/src/CDF/CDF_StoreList.cxx b/src/ApplicationFramework/TKCDF/CDF/CDF_StoreList.cxx similarity index 100% rename from src/CDF/CDF_StoreList.cxx rename to src/ApplicationFramework/TKCDF/CDF/CDF_StoreList.cxx diff --git a/src/CDF/CDF_StoreList.hxx b/src/ApplicationFramework/TKCDF/CDF/CDF_StoreList.hxx similarity index 100% rename from src/CDF/CDF_StoreList.hxx rename to src/ApplicationFramework/TKCDF/CDF/CDF_StoreList.hxx diff --git a/src/CDF/CDF_StoreSetNameStatus.hxx b/src/ApplicationFramework/TKCDF/CDF/CDF_StoreSetNameStatus.hxx similarity index 100% rename from src/CDF/CDF_StoreSetNameStatus.hxx rename to src/ApplicationFramework/TKCDF/CDF/CDF_StoreSetNameStatus.hxx diff --git a/src/CDF/CDF_SubComponentStatus.hxx b/src/ApplicationFramework/TKCDF/CDF/CDF_SubComponentStatus.hxx similarity index 100% rename from src/CDF/CDF_SubComponentStatus.hxx rename to src/ApplicationFramework/TKCDF/CDF/CDF_SubComponentStatus.hxx diff --git a/src/CDF/CDF_TryStoreStatus.hxx b/src/ApplicationFramework/TKCDF/CDF/CDF_TryStoreStatus.hxx similarity index 100% rename from src/CDF/CDF_TryStoreStatus.hxx rename to src/ApplicationFramework/TKCDF/CDF/CDF_TryStoreStatus.hxx diff --git a/src/CDF/CDF_TypeOfActivation.hxx b/src/ApplicationFramework/TKCDF/CDF/CDF_TypeOfActivation.hxx similarity index 100% rename from src/CDF/CDF_TypeOfActivation.hxx rename to src/ApplicationFramework/TKCDF/CDF/CDF_TypeOfActivation.hxx diff --git a/src/ApplicationFramework/TKCDF/CDF/FILES.cmake b/src/ApplicationFramework/TKCDF/CDF/FILES.cmake new file mode 100644 index 0000000000..99df696be3 --- /dev/null +++ b/src/ApplicationFramework/TKCDF/CDF/FILES.cmake @@ -0,0 +1,25 @@ +# Source files for CDF package +set(OCCT_CDF_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_CDF_FILES + CDF_Application.cxx + CDF_Application.hxx + CDF_Directory.cxx + CDF_Directory.hxx + CDF_DirectoryIterator.cxx + CDF_DirectoryIterator.hxx + CDF_FWOSDriver.cxx + CDF_FWOSDriver.hxx + CDF_MetaDataDriver.cxx + CDF_MetaDataDriver.hxx + CDF_MetaDataDriverFactory.cxx + CDF_MetaDataDriverFactory.hxx + CDF_Store.cxx + CDF_Store.hxx + CDF_StoreList.cxx + CDF_StoreList.hxx + CDF_StoreSetNameStatus.hxx + CDF_SubComponentStatus.hxx + CDF_TryStoreStatus.hxx + CDF_TypeOfActivation.hxx +) diff --git a/src/CDM/CDM_Application.cxx b/src/ApplicationFramework/TKCDF/CDM/CDM_Application.cxx similarity index 100% rename from src/CDM/CDM_Application.cxx rename to src/ApplicationFramework/TKCDF/CDM/CDM_Application.cxx diff --git a/src/CDM/CDM_Application.hxx b/src/ApplicationFramework/TKCDF/CDM/CDM_Application.hxx similarity index 100% rename from src/CDM/CDM_Application.hxx rename to src/ApplicationFramework/TKCDF/CDM/CDM_Application.hxx diff --git a/src/CDM/CDM_CanCloseStatus.hxx b/src/ApplicationFramework/TKCDF/CDM/CDM_CanCloseStatus.hxx similarity index 100% rename from src/CDM/CDM_CanCloseStatus.hxx rename to src/ApplicationFramework/TKCDF/CDM/CDM_CanCloseStatus.hxx diff --git a/src/CDM/CDM_DataMapIteratorOfMetaDataLookUpTable.hxx b/src/ApplicationFramework/TKCDF/CDM/CDM_DataMapIteratorOfMetaDataLookUpTable.hxx similarity index 100% rename from src/CDM/CDM_DataMapIteratorOfMetaDataLookUpTable.hxx rename to src/ApplicationFramework/TKCDF/CDM/CDM_DataMapIteratorOfMetaDataLookUpTable.hxx diff --git a/src/CDM/CDM_Document.cxx b/src/ApplicationFramework/TKCDF/CDM/CDM_Document.cxx similarity index 100% rename from src/CDM/CDM_Document.cxx rename to src/ApplicationFramework/TKCDF/CDM/CDM_Document.cxx diff --git a/src/CDM/CDM_Document.hxx b/src/ApplicationFramework/TKCDF/CDM/CDM_Document.hxx similarity index 100% rename from src/CDM/CDM_Document.hxx rename to src/ApplicationFramework/TKCDF/CDM/CDM_Document.hxx diff --git a/src/CDM/CDM_DocumentPointer.hxx b/src/ApplicationFramework/TKCDF/CDM/CDM_DocumentPointer.hxx similarity index 100% rename from src/CDM/CDM_DocumentPointer.hxx rename to src/ApplicationFramework/TKCDF/CDM/CDM_DocumentPointer.hxx diff --git a/src/CDM/CDM_ListIteratorOfListOfDocument.hxx b/src/ApplicationFramework/TKCDF/CDM/CDM_ListIteratorOfListOfDocument.hxx similarity index 100% rename from src/CDM/CDM_ListIteratorOfListOfDocument.hxx rename to src/ApplicationFramework/TKCDF/CDM/CDM_ListIteratorOfListOfDocument.hxx diff --git a/src/CDM/CDM_ListIteratorOfListOfReferences.hxx b/src/ApplicationFramework/TKCDF/CDM/CDM_ListIteratorOfListOfReferences.hxx similarity index 100% rename from src/CDM/CDM_ListIteratorOfListOfReferences.hxx rename to src/ApplicationFramework/TKCDF/CDM/CDM_ListIteratorOfListOfReferences.hxx diff --git a/src/CDM/CDM_ListOfDocument.hxx b/src/ApplicationFramework/TKCDF/CDM/CDM_ListOfDocument.hxx similarity index 100% rename from src/CDM/CDM_ListOfDocument.hxx rename to src/ApplicationFramework/TKCDF/CDM/CDM_ListOfDocument.hxx diff --git a/src/CDM/CDM_ListOfReferences.hxx b/src/ApplicationFramework/TKCDF/CDM/CDM_ListOfReferences.hxx similarity index 100% rename from src/CDM/CDM_ListOfReferences.hxx rename to src/ApplicationFramework/TKCDF/CDM/CDM_ListOfReferences.hxx diff --git a/src/CDM/CDM_MapIteratorOfMapOfDocument.hxx b/src/ApplicationFramework/TKCDF/CDM/CDM_MapIteratorOfMapOfDocument.hxx similarity index 100% rename from src/CDM/CDM_MapIteratorOfMapOfDocument.hxx rename to src/ApplicationFramework/TKCDF/CDM/CDM_MapIteratorOfMapOfDocument.hxx diff --git a/src/CDM/CDM_MapOfDocument.hxx b/src/ApplicationFramework/TKCDF/CDM/CDM_MapOfDocument.hxx similarity index 100% rename from src/CDM/CDM_MapOfDocument.hxx rename to src/ApplicationFramework/TKCDF/CDM/CDM_MapOfDocument.hxx diff --git a/src/CDM/CDM_MetaData.cxx b/src/ApplicationFramework/TKCDF/CDM/CDM_MetaData.cxx similarity index 100% rename from src/CDM/CDM_MetaData.cxx rename to src/ApplicationFramework/TKCDF/CDM/CDM_MetaData.cxx diff --git a/src/CDM/CDM_MetaData.hxx b/src/ApplicationFramework/TKCDF/CDM/CDM_MetaData.hxx similarity index 100% rename from src/CDM/CDM_MetaData.hxx rename to src/ApplicationFramework/TKCDF/CDM/CDM_MetaData.hxx diff --git a/src/CDM/CDM_MetaDataLookUpTable.hxx b/src/ApplicationFramework/TKCDF/CDM/CDM_MetaDataLookUpTable.hxx similarity index 100% rename from src/CDM/CDM_MetaDataLookUpTable.hxx rename to src/ApplicationFramework/TKCDF/CDM/CDM_MetaDataLookUpTable.hxx diff --git a/src/CDM/CDM_NamesDirectory.hxx b/src/ApplicationFramework/TKCDF/CDM/CDM_NamesDirectory.hxx similarity index 100% rename from src/CDM/CDM_NamesDirectory.hxx rename to src/ApplicationFramework/TKCDF/CDM/CDM_NamesDirectory.hxx diff --git a/src/CDM/CDM_Reference.cxx b/src/ApplicationFramework/TKCDF/CDM/CDM_Reference.cxx similarity index 100% rename from src/CDM/CDM_Reference.cxx rename to src/ApplicationFramework/TKCDF/CDM/CDM_Reference.cxx diff --git a/src/CDM/CDM_Reference.hxx b/src/ApplicationFramework/TKCDF/CDM/CDM_Reference.hxx similarity index 100% rename from src/CDM/CDM_Reference.hxx rename to src/ApplicationFramework/TKCDF/CDM/CDM_Reference.hxx diff --git a/src/CDM/CDM_ReferenceIterator.cxx b/src/ApplicationFramework/TKCDF/CDM/CDM_ReferenceIterator.cxx similarity index 100% rename from src/CDM/CDM_ReferenceIterator.cxx rename to src/ApplicationFramework/TKCDF/CDM/CDM_ReferenceIterator.cxx diff --git a/src/CDM/CDM_ReferenceIterator.hxx b/src/ApplicationFramework/TKCDF/CDM/CDM_ReferenceIterator.hxx similarity index 100% rename from src/CDM/CDM_ReferenceIterator.hxx rename to src/ApplicationFramework/TKCDF/CDM/CDM_ReferenceIterator.hxx diff --git a/src/ApplicationFramework/TKCDF/CDM/FILES.cmake b/src/ApplicationFramework/TKCDF/CDM/FILES.cmake new file mode 100644 index 0000000000..b188550672 --- /dev/null +++ b/src/ApplicationFramework/TKCDF/CDM/FILES.cmake @@ -0,0 +1,26 @@ +# Source files for CDM package +set(OCCT_CDM_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_CDM_FILES + CDM_Application.cxx + CDM_Application.hxx + CDM_CanCloseStatus.hxx + CDM_DataMapIteratorOfMetaDataLookUpTable.hxx + CDM_Document.cxx + CDM_Document.hxx + CDM_DocumentPointer.hxx + CDM_ListIteratorOfListOfDocument.hxx + CDM_ListIteratorOfListOfReferences.hxx + CDM_ListOfDocument.hxx + CDM_ListOfReferences.hxx + CDM_MapIteratorOfMapOfDocument.hxx + CDM_MapOfDocument.hxx + CDM_MetaData.cxx + CDM_MetaData.hxx + CDM_MetaDataLookUpTable.hxx + CDM_NamesDirectory.hxx + CDM_Reference.cxx + CDM_Reference.hxx + CDM_ReferenceIterator.cxx + CDM_ReferenceIterator.hxx +) diff --git a/src/TKCDF/CMakeLists.txt b/src/ApplicationFramework/TKCDF/CMakeLists.txt similarity index 100% rename from src/TKCDF/CMakeLists.txt rename to src/ApplicationFramework/TKCDF/CMakeLists.txt diff --git a/src/ApplicationFramework/TKCDF/EXTERNLIB.cmake b/src/ApplicationFramework/TKCDF/EXTERNLIB.cmake new file mode 100644 index 0000000000..9f8935c513 --- /dev/null +++ b/src/ApplicationFramework/TKCDF/EXTERNLIB.cmake @@ -0,0 +1,4 @@ +# External dependencies for TKCDF +set(OCCT_TKCDF_EXTERNAL_LIBS + TKernel +) diff --git a/src/ApplicationFramework/TKCDF/FILES.cmake b/src/ApplicationFramework/TKCDF/FILES.cmake new file mode 100644 index 0000000000..a6ba3095be --- /dev/null +++ b/src/ApplicationFramework/TKCDF/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKCDF +set(OCCT_TKCDF_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKCDF_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ApplicationFramework/TKCDF/LDOM/FILES.cmake b/src/ApplicationFramework/TKCDF/LDOM/FILES.cmake new file mode 100644 index 0000000000..1e47cfb341 --- /dev/null +++ b/src/ApplicationFramework/TKCDF/LDOM/FILES.cmake @@ -0,0 +1,48 @@ +# Source files for LDOM package +set(OCCT_LDOM_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_LDOM_FILES + LDOM_Attr.cxx + LDOM_Attr.hxx + LDOM_BasicAttribute.cxx + LDOM_BasicAttribute.hxx + LDOM_BasicElement.cxx + LDOM_BasicElement.hxx + LDOM_BasicNode.cxx + LDOM_BasicNode.hxx + LDOM_BasicText.cxx + LDOM_BasicText.hxx + LDOM_CDATASection.hxx + LDOM_CharacterData.cxx + LDOM_CharacterData.hxx + LDOM_CharReference.cxx + LDOM_CharReference.hxx + LDOM_Comment.hxx + LDOM_DeclareSequence.hxx + LDOM_Document.cxx + LDOM_Document.hxx + LDOM_DocumentType.hxx + LDOM_Element.cxx + LDOM_Element.hxx + LDOM_LDOMImplementation.cxx + LDOM_LDOMImplementation.hxx + LDOM_MemManager.cxx + LDOM_MemManager.hxx + LDOM_Node.cxx + LDOM_Node.hxx + LDOM_NodeList.cxx + LDOM_NodeList.hxx + LDOM_OSStream.cxx + LDOM_OSStream.hxx + LDOM_Text.hxx + LDOM_XmlReader.cxx + LDOM_XmlReader.hxx + LDOM_XmlWriter.cxx + LDOM_XmlWriter.hxx + LDOMBasicString.cxx + LDOMBasicString.hxx + LDOMParser.cxx + LDOMParser.hxx + LDOMString.cxx + LDOMString.hxx +) diff --git a/src/LDOM/LDOMBasicString.cxx b/src/ApplicationFramework/TKCDF/LDOM/LDOMBasicString.cxx similarity index 100% rename from src/LDOM/LDOMBasicString.cxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOMBasicString.cxx diff --git a/src/LDOM/LDOMBasicString.hxx b/src/ApplicationFramework/TKCDF/LDOM/LDOMBasicString.hxx similarity index 100% rename from src/LDOM/LDOMBasicString.hxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOMBasicString.hxx diff --git a/src/LDOM/LDOMParser.cxx b/src/ApplicationFramework/TKCDF/LDOM/LDOMParser.cxx similarity index 100% rename from src/LDOM/LDOMParser.cxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOMParser.cxx diff --git a/src/LDOM/LDOMParser.hxx b/src/ApplicationFramework/TKCDF/LDOM/LDOMParser.hxx similarity index 100% rename from src/LDOM/LDOMParser.hxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOMParser.hxx diff --git a/src/LDOM/LDOMString.cxx b/src/ApplicationFramework/TKCDF/LDOM/LDOMString.cxx similarity index 100% rename from src/LDOM/LDOMString.cxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOMString.cxx diff --git a/src/LDOM/LDOMString.hxx b/src/ApplicationFramework/TKCDF/LDOM/LDOMString.hxx similarity index 100% rename from src/LDOM/LDOMString.hxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOMString.hxx diff --git a/src/LDOM/LDOM_Attr.cxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_Attr.cxx similarity index 100% rename from src/LDOM/LDOM_Attr.cxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_Attr.cxx diff --git a/src/LDOM/LDOM_Attr.hxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_Attr.hxx similarity index 100% rename from src/LDOM/LDOM_Attr.hxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_Attr.hxx diff --git a/src/LDOM/LDOM_BasicAttribute.cxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_BasicAttribute.cxx similarity index 100% rename from src/LDOM/LDOM_BasicAttribute.cxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_BasicAttribute.cxx diff --git a/src/LDOM/LDOM_BasicAttribute.hxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_BasicAttribute.hxx similarity index 100% rename from src/LDOM/LDOM_BasicAttribute.hxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_BasicAttribute.hxx diff --git a/src/LDOM/LDOM_BasicElement.cxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_BasicElement.cxx similarity index 100% rename from src/LDOM/LDOM_BasicElement.cxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_BasicElement.cxx diff --git a/src/LDOM/LDOM_BasicElement.hxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_BasicElement.hxx similarity index 100% rename from src/LDOM/LDOM_BasicElement.hxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_BasicElement.hxx diff --git a/src/LDOM/LDOM_BasicNode.cxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_BasicNode.cxx similarity index 100% rename from src/LDOM/LDOM_BasicNode.cxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_BasicNode.cxx diff --git a/src/LDOM/LDOM_BasicNode.hxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_BasicNode.hxx similarity index 100% rename from src/LDOM/LDOM_BasicNode.hxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_BasicNode.hxx diff --git a/src/LDOM/LDOM_BasicText.cxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_BasicText.cxx similarity index 100% rename from src/LDOM/LDOM_BasicText.cxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_BasicText.cxx diff --git a/src/LDOM/LDOM_BasicText.hxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_BasicText.hxx similarity index 100% rename from src/LDOM/LDOM_BasicText.hxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_BasicText.hxx diff --git a/src/LDOM/LDOM_CDATASection.hxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_CDATASection.hxx similarity index 100% rename from src/LDOM/LDOM_CDATASection.hxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_CDATASection.hxx diff --git a/src/LDOM/LDOM_CharReference.cxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_CharReference.cxx similarity index 100% rename from src/LDOM/LDOM_CharReference.cxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_CharReference.cxx diff --git a/src/LDOM/LDOM_CharReference.hxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_CharReference.hxx similarity index 100% rename from src/LDOM/LDOM_CharReference.hxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_CharReference.hxx diff --git a/src/LDOM/LDOM_CharacterData.cxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_CharacterData.cxx similarity index 100% rename from src/LDOM/LDOM_CharacterData.cxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_CharacterData.cxx diff --git a/src/LDOM/LDOM_CharacterData.hxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_CharacterData.hxx similarity index 100% rename from src/LDOM/LDOM_CharacterData.hxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_CharacterData.hxx diff --git a/src/LDOM/LDOM_Comment.hxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_Comment.hxx similarity index 100% rename from src/LDOM/LDOM_Comment.hxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_Comment.hxx diff --git a/src/LDOM/LDOM_DeclareSequence.hxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_DeclareSequence.hxx similarity index 100% rename from src/LDOM/LDOM_DeclareSequence.hxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_DeclareSequence.hxx diff --git a/src/LDOM/LDOM_Document.cxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_Document.cxx similarity index 100% rename from src/LDOM/LDOM_Document.cxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_Document.cxx diff --git a/src/LDOM/LDOM_Document.hxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_Document.hxx similarity index 100% rename from src/LDOM/LDOM_Document.hxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_Document.hxx diff --git a/src/LDOM/LDOM_DocumentType.hxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_DocumentType.hxx similarity index 100% rename from src/LDOM/LDOM_DocumentType.hxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_DocumentType.hxx diff --git a/src/LDOM/LDOM_Element.cxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_Element.cxx similarity index 100% rename from src/LDOM/LDOM_Element.cxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_Element.cxx diff --git a/src/LDOM/LDOM_Element.hxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_Element.hxx similarity index 100% rename from src/LDOM/LDOM_Element.hxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_Element.hxx diff --git a/src/LDOM/LDOM_LDOMImplementation.cxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_LDOMImplementation.cxx similarity index 100% rename from src/LDOM/LDOM_LDOMImplementation.cxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_LDOMImplementation.cxx diff --git a/src/LDOM/LDOM_LDOMImplementation.hxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_LDOMImplementation.hxx similarity index 100% rename from src/LDOM/LDOM_LDOMImplementation.hxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_LDOMImplementation.hxx diff --git a/src/LDOM/LDOM_MemManager.cxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_MemManager.cxx similarity index 100% rename from src/LDOM/LDOM_MemManager.cxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_MemManager.cxx diff --git a/src/LDOM/LDOM_MemManager.hxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_MemManager.hxx similarity index 100% rename from src/LDOM/LDOM_MemManager.hxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_MemManager.hxx diff --git a/src/LDOM/LDOM_Node.cxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_Node.cxx similarity index 100% rename from src/LDOM/LDOM_Node.cxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_Node.cxx diff --git a/src/LDOM/LDOM_Node.hxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_Node.hxx similarity index 100% rename from src/LDOM/LDOM_Node.hxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_Node.hxx diff --git a/src/LDOM/LDOM_NodeList.cxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_NodeList.cxx similarity index 100% rename from src/LDOM/LDOM_NodeList.cxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_NodeList.cxx diff --git a/src/LDOM/LDOM_NodeList.hxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_NodeList.hxx similarity index 100% rename from src/LDOM/LDOM_NodeList.hxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_NodeList.hxx diff --git a/src/LDOM/LDOM_OSStream.cxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_OSStream.cxx similarity index 100% rename from src/LDOM/LDOM_OSStream.cxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_OSStream.cxx diff --git a/src/LDOM/LDOM_OSStream.hxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_OSStream.hxx similarity index 100% rename from src/LDOM/LDOM_OSStream.hxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_OSStream.hxx diff --git a/src/LDOM/LDOM_Text.hxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_Text.hxx similarity index 100% rename from src/LDOM/LDOM_Text.hxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_Text.hxx diff --git a/src/LDOM/LDOM_XmlReader.cxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_XmlReader.cxx similarity index 100% rename from src/LDOM/LDOM_XmlReader.cxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_XmlReader.cxx diff --git a/src/LDOM/LDOM_XmlReader.hxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_XmlReader.hxx similarity index 100% rename from src/LDOM/LDOM_XmlReader.hxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_XmlReader.hxx diff --git a/src/LDOM/LDOM_XmlWriter.cxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_XmlWriter.cxx similarity index 100% rename from src/LDOM/LDOM_XmlWriter.cxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_XmlWriter.cxx diff --git a/src/LDOM/LDOM_XmlWriter.hxx b/src/ApplicationFramework/TKCDF/LDOM/LDOM_XmlWriter.hxx similarity index 100% rename from src/LDOM/LDOM_XmlWriter.hxx rename to src/ApplicationFramework/TKCDF/LDOM/LDOM_XmlWriter.hxx diff --git a/src/ApplicationFramework/TKCDF/PACKAGES.cmake b/src/ApplicationFramework/TKCDF/PACKAGES.cmake new file mode 100644 index 0000000000..b26b6dc066 --- /dev/null +++ b/src/ApplicationFramework/TKCDF/PACKAGES.cmake @@ -0,0 +1,8 @@ +# Auto-generated list of packages for TKCDF toolkit +set(OCCT_TKCDF_LIST_OF_PACKAGES + CDM + PCDM + CDF + UTL + LDOM +) diff --git a/src/ApplicationFramework/TKCDF/PCDM/FILES.cmake b/src/ApplicationFramework/TKCDF/PCDM/FILES.cmake new file mode 100644 index 0000000000..f45c180488 --- /dev/null +++ b/src/ApplicationFramework/TKCDF/PCDM/FILES.cmake @@ -0,0 +1,37 @@ +# Source files for PCDM package +set(OCCT_PCDM_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_PCDM_FILES + PCDM.cxx + PCDM.hxx + PCDM_BaseDriverPointer.hxx + PCDM_Document.cxx + PCDM_Document.hxx + PCDM_DOMHeaderParser.cxx + PCDM_DOMHeaderParser.hxx + PCDM_DriverError.hxx + PCDM_Reader.cxx + PCDM_Reader.hxx + PCDM_Reader.lxx + PCDM_ReaderFilter.cxx + PCDM_ReaderFilter.hxx + PCDM_ReaderStatus.hxx + PCDM_ReadWriter.cxx + PCDM_ReadWriter.hxx + PCDM_ReadWriter_1.cxx + PCDM_ReadWriter_1.hxx + PCDM_Reference.cxx + PCDM_Reference.hxx + PCDM_ReferenceIterator.cxx + PCDM_ReferenceIterator.hxx + PCDM_RetrievalDriver.cxx + PCDM_RetrievalDriver.hxx + PCDM_SequenceOfDocument.hxx + PCDM_SequenceOfReference.hxx + PCDM_StorageDriver.cxx + PCDM_StorageDriver.hxx + PCDM_StoreStatus.hxx + PCDM_TypeOfFileDriver.hxx + PCDM_Writer.cxx + PCDM_Writer.hxx +) diff --git a/src/PCDM/PCDM.cxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM.cxx similarity index 100% rename from src/PCDM/PCDM.cxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM.cxx diff --git a/src/PCDM/PCDM.hxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM.hxx similarity index 100% rename from src/PCDM/PCDM.hxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM.hxx diff --git a/src/PCDM/PCDM_BaseDriverPointer.hxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_BaseDriverPointer.hxx similarity index 100% rename from src/PCDM/PCDM_BaseDriverPointer.hxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_BaseDriverPointer.hxx diff --git a/src/PCDM/PCDM_DOMHeaderParser.cxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_DOMHeaderParser.cxx similarity index 100% rename from src/PCDM/PCDM_DOMHeaderParser.cxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_DOMHeaderParser.cxx diff --git a/src/PCDM/PCDM_DOMHeaderParser.hxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_DOMHeaderParser.hxx similarity index 100% rename from src/PCDM/PCDM_DOMHeaderParser.hxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_DOMHeaderParser.hxx diff --git a/src/PCDM/PCDM_Document.cxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_Document.cxx similarity index 100% rename from src/PCDM/PCDM_Document.cxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_Document.cxx diff --git a/src/PCDM/PCDM_Document.hxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_Document.hxx similarity index 100% rename from src/PCDM/PCDM_Document.hxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_Document.hxx diff --git a/src/PCDM/PCDM_DriverError.hxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_DriverError.hxx similarity index 100% rename from src/PCDM/PCDM_DriverError.hxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_DriverError.hxx diff --git a/src/PCDM/PCDM_ReadWriter.cxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_ReadWriter.cxx similarity index 100% rename from src/PCDM/PCDM_ReadWriter.cxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_ReadWriter.cxx diff --git a/src/PCDM/PCDM_ReadWriter.hxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_ReadWriter.hxx similarity index 100% rename from src/PCDM/PCDM_ReadWriter.hxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_ReadWriter.hxx diff --git a/src/PCDM/PCDM_ReadWriter_1.cxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_ReadWriter_1.cxx similarity index 100% rename from src/PCDM/PCDM_ReadWriter_1.cxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_ReadWriter_1.cxx diff --git a/src/PCDM/PCDM_ReadWriter_1.hxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_ReadWriter_1.hxx similarity index 100% rename from src/PCDM/PCDM_ReadWriter_1.hxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_ReadWriter_1.hxx diff --git a/src/PCDM/PCDM_Reader.cxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_Reader.cxx similarity index 100% rename from src/PCDM/PCDM_Reader.cxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_Reader.cxx diff --git a/src/PCDM/PCDM_Reader.hxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_Reader.hxx similarity index 100% rename from src/PCDM/PCDM_Reader.hxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_Reader.hxx diff --git a/src/PCDM/PCDM_Reader.lxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_Reader.lxx similarity index 100% rename from src/PCDM/PCDM_Reader.lxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_Reader.lxx diff --git a/src/PCDM/PCDM_ReaderFilter.cxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_ReaderFilter.cxx similarity index 100% rename from src/PCDM/PCDM_ReaderFilter.cxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_ReaderFilter.cxx diff --git a/src/PCDM/PCDM_ReaderFilter.hxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_ReaderFilter.hxx similarity index 100% rename from src/PCDM/PCDM_ReaderFilter.hxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_ReaderFilter.hxx diff --git a/src/PCDM/PCDM_ReaderStatus.hxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_ReaderStatus.hxx similarity index 100% rename from src/PCDM/PCDM_ReaderStatus.hxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_ReaderStatus.hxx diff --git a/src/PCDM/PCDM_Reference.cxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_Reference.cxx similarity index 100% rename from src/PCDM/PCDM_Reference.cxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_Reference.cxx diff --git a/src/PCDM/PCDM_Reference.hxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_Reference.hxx similarity index 100% rename from src/PCDM/PCDM_Reference.hxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_Reference.hxx diff --git a/src/PCDM/PCDM_ReferenceIterator.cxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_ReferenceIterator.cxx similarity index 100% rename from src/PCDM/PCDM_ReferenceIterator.cxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_ReferenceIterator.cxx diff --git a/src/PCDM/PCDM_ReferenceIterator.hxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_ReferenceIterator.hxx similarity index 100% rename from src/PCDM/PCDM_ReferenceIterator.hxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_ReferenceIterator.hxx diff --git a/src/PCDM/PCDM_RetrievalDriver.cxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_RetrievalDriver.cxx similarity index 100% rename from src/PCDM/PCDM_RetrievalDriver.cxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_RetrievalDriver.cxx diff --git a/src/PCDM/PCDM_RetrievalDriver.hxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_RetrievalDriver.hxx similarity index 100% rename from src/PCDM/PCDM_RetrievalDriver.hxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_RetrievalDriver.hxx diff --git a/src/PCDM/PCDM_SequenceOfDocument.hxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_SequenceOfDocument.hxx similarity index 100% rename from src/PCDM/PCDM_SequenceOfDocument.hxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_SequenceOfDocument.hxx diff --git a/src/PCDM/PCDM_SequenceOfReference.hxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_SequenceOfReference.hxx similarity index 100% rename from src/PCDM/PCDM_SequenceOfReference.hxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_SequenceOfReference.hxx diff --git a/src/PCDM/PCDM_StorageDriver.cxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_StorageDriver.cxx similarity index 100% rename from src/PCDM/PCDM_StorageDriver.cxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_StorageDriver.cxx diff --git a/src/PCDM/PCDM_StorageDriver.hxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_StorageDriver.hxx similarity index 100% rename from src/PCDM/PCDM_StorageDriver.hxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_StorageDriver.hxx diff --git a/src/PCDM/PCDM_StoreStatus.hxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_StoreStatus.hxx similarity index 100% rename from src/PCDM/PCDM_StoreStatus.hxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_StoreStatus.hxx diff --git a/src/PCDM/PCDM_TypeOfFileDriver.hxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_TypeOfFileDriver.hxx similarity index 100% rename from src/PCDM/PCDM_TypeOfFileDriver.hxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_TypeOfFileDriver.hxx diff --git a/src/PCDM/PCDM_Writer.cxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_Writer.cxx similarity index 100% rename from src/PCDM/PCDM_Writer.cxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_Writer.cxx diff --git a/src/PCDM/PCDM_Writer.hxx b/src/ApplicationFramework/TKCDF/PCDM/PCDM_Writer.hxx similarity index 100% rename from src/PCDM/PCDM_Writer.hxx rename to src/ApplicationFramework/TKCDF/PCDM/PCDM_Writer.hxx diff --git a/src/ApplicationFramework/TKCDF/UTL/FILES.cmake b/src/ApplicationFramework/TKCDF/UTL/FILES.cmake new file mode 100644 index 0000000000..75f36d8804 --- /dev/null +++ b/src/ApplicationFramework/TKCDF/UTL/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for UTL package +set(OCCT_UTL_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_UTL_FILES + UTL.cxx + UTL.hxx +) diff --git a/src/UTL/UTL.cxx b/src/ApplicationFramework/TKCDF/UTL/UTL.cxx similarity index 100% rename from src/UTL/UTL.cxx rename to src/ApplicationFramework/TKCDF/UTL/UTL.cxx diff --git a/src/UTL/UTL.hxx b/src/ApplicationFramework/TKCDF/UTL/UTL.hxx similarity index 100% rename from src/UTL/UTL.hxx rename to src/ApplicationFramework/TKCDF/UTL/UTL.hxx diff --git a/src/AppStdL/AppStdL_Application.cxx b/src/ApplicationFramework/TKLCAF/AppStdL/AppStdL_Application.cxx similarity index 100% rename from src/AppStdL/AppStdL_Application.cxx rename to src/ApplicationFramework/TKLCAF/AppStdL/AppStdL_Application.cxx diff --git a/src/AppStdL/AppStdL_Application.hxx b/src/ApplicationFramework/TKLCAF/AppStdL/AppStdL_Application.hxx similarity index 100% rename from src/AppStdL/AppStdL_Application.hxx rename to src/ApplicationFramework/TKLCAF/AppStdL/AppStdL_Application.hxx diff --git a/src/ApplicationFramework/TKLCAF/AppStdL/FILES.cmake b/src/ApplicationFramework/TKLCAF/AppStdL/FILES.cmake new file mode 100644 index 0000000000..a70af2a6b6 --- /dev/null +++ b/src/ApplicationFramework/TKLCAF/AppStdL/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for AppStdL package +set(OCCT_AppStdL_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_AppStdL_FILES + AppStdL_Application.cxx + AppStdL_Application.hxx +) diff --git a/src/TKLCAF/CMakeLists.txt b/src/ApplicationFramework/TKLCAF/CMakeLists.txt similarity index 100% rename from src/TKLCAF/CMakeLists.txt rename to src/ApplicationFramework/TKLCAF/CMakeLists.txt diff --git a/src/ApplicationFramework/TKLCAF/EXTERNLIB.cmake b/src/ApplicationFramework/TKLCAF/EXTERNLIB.cmake new file mode 100644 index 0000000000..80d821f194 --- /dev/null +++ b/src/ApplicationFramework/TKLCAF/EXTERNLIB.cmake @@ -0,0 +1,5 @@ +# External dependencies for TKLCAF +set(OCCT_TKLCAF_EXTERNAL_LIBS + TKCDF + TKernel +) diff --git a/src/ApplicationFramework/TKLCAF/FILES.cmake b/src/ApplicationFramework/TKLCAF/FILES.cmake new file mode 100644 index 0000000000..48b4afff23 --- /dev/null +++ b/src/ApplicationFramework/TKLCAF/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKLCAF +set(OCCT_TKLCAF_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKLCAF_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ApplicationFramework/TKLCAF/PACKAGES.cmake b/src/ApplicationFramework/TKLCAF/PACKAGES.cmake new file mode 100644 index 0000000000..09eceee811 --- /dev/null +++ b/src/ApplicationFramework/TKLCAF/PACKAGES.cmake @@ -0,0 +1,8 @@ +# Auto-generated list of packages for TKLCAF toolkit +set(OCCT_TKLCAF_LIST_OF_PACKAGES + TDF + TDataStd + TFunction + TDocStd + AppStdL +) diff --git a/src/ApplicationFramework/TKLCAF/TDF/FILES.cmake b/src/ApplicationFramework/TKLCAF/TDF/FILES.cmake new file mode 100644 index 0000000000..c147a287b8 --- /dev/null +++ b/src/ApplicationFramework/TKLCAF/TDF/FILES.cmake @@ -0,0 +1,112 @@ +# Source files for TDF package +set(OCCT_TDF_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TDF_FILES + TDF.cxx + TDF.hxx + TDF_Attribute.cxx + TDF_Attribute.hxx + TDF_Attribute.lxx + TDF_AttributeArray1.hxx + TDF_AttributeDataMap.hxx + TDF_AttributeDelta.cxx + TDF_AttributeDelta.hxx + TDF_AttributeDeltaList.hxx + TDF_AttributeDoubleMap.hxx + TDF_AttributeIndexedMap.hxx + TDF_AttributeIterator.cxx + TDF_AttributeIterator.hxx + TDF_AttributeList.hxx + TDF_AttributeMap.hxx + TDF_AttributeSequence.hxx + TDF_ChildIDIterator.cxx + TDF_ChildIDIterator.hxx + TDF_ChildIDIterator.lxx + TDF_ChildIterator.cxx + TDF_ChildIterator.hxx + TDF_ChildIterator.lxx + TDF_ClosureMode.cxx + TDF_ClosureMode.hxx + TDF_ClosureMode.lxx + TDF_ClosureTool.cxx + TDF_ClosureTool.hxx + TDF_ComparisonTool.cxx + TDF_ComparisonTool.hxx + TDF_CopyLabel.cxx + TDF_CopyLabel.hxx + TDF_CopyLabel.lxx + TDF_CopyTool.cxx + TDF_CopyTool.hxx + TDF_Data.cxx + TDF_Data.hxx + TDF_Data.lxx + TDF_DataMapIteratorOfAttributeDataMap.hxx + TDF_DataMapIteratorOfLabelDataMap.hxx + TDF_DataMapIteratorOfLabelIntegerMap.hxx + TDF_DataSet.cxx + TDF_DataSet.hxx + TDF_DataSet.lxx + TDF_DefaultDeltaOnModification.cxx + TDF_DefaultDeltaOnModification.hxx + TDF_DefaultDeltaOnRemoval.cxx + TDF_DefaultDeltaOnRemoval.hxx + TDF_Delta.cxx + TDF_Delta.hxx + TDF_Delta.lxx + TDF_DeltaList.hxx + TDF_DeltaOnAddition.cxx + TDF_DeltaOnAddition.hxx + TDF_DeltaOnForget.cxx + TDF_DeltaOnForget.hxx + TDF_DeltaOnModification.cxx + TDF_DeltaOnModification.hxx + TDF_DeltaOnRemoval.cxx + TDF_DeltaOnRemoval.hxx + TDF_DeltaOnResume.cxx + TDF_DeltaOnResume.hxx + TDF_DerivedAttribute.cxx + TDF_DerivedAttribute.hxx + TDF_DoubleMapIteratorOfAttributeDoubleMap.hxx + TDF_DoubleMapIteratorOfGUIDProgIDMap.hxx + TDF_DoubleMapIteratorOfLabelDoubleMap.hxx + TDF_GUIDProgIDMap.hxx + TDF_HAllocator.hxx + TDF_HAttributeArray1.hxx + TDF_IDFilter.cxx + TDF_IDFilter.hxx + TDF_IDFilter.lxx + TDF_IDList.hxx + TDF_IDMap.hxx + TDF_Label.cxx + TDF_Label.hxx + TDF_Label.lxx + TDF_LabelDataMap.hxx + TDF_LabelDoubleMap.hxx + TDF_LabelIndexedMap.hxx + TDF_LabelIntegerMap.hxx + TDF_LabelList.hxx + TDF_LabelMap.hxx + TDF_LabelNode.cxx + TDF_LabelNode.hxx + TDF_LabelNodePtr.hxx + TDF_LabelSequence.hxx + TDF_ListIteratorOfAttributeDeltaList.hxx + TDF_ListIteratorOfAttributeList.hxx + TDF_ListIteratorOfDeltaList.hxx + TDF_ListIteratorOfIDList.hxx + TDF_ListIteratorOfLabelList.hxx + TDF_MapIteratorOfAttributeMap.hxx + TDF_MapIteratorOfIDMap.hxx + TDF_MapIteratorOfLabelMap.hxx + TDF_Reference.cxx + TDF_Reference.hxx + TDF_RelocationTable.cxx + TDF_RelocationTable.hxx + TDF_TagSource.cxx + TDF_TagSource.hxx + TDF_Tool.cxx + TDF_Tool.hxx + TDF_Transaction.cxx + TDF_Transaction.hxx + TDF_Transaction.lxx +) diff --git a/src/TDF/TDF.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF.cxx similarity index 100% rename from src/TDF/TDF.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF.cxx diff --git a/src/TDF/TDF.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF.hxx similarity index 100% rename from src/TDF/TDF.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF.hxx diff --git a/src/TDF/TDF_Attribute.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_Attribute.cxx similarity index 100% rename from src/TDF/TDF_Attribute.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_Attribute.cxx diff --git a/src/TDF/TDF_Attribute.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_Attribute.hxx similarity index 100% rename from src/TDF/TDF_Attribute.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_Attribute.hxx diff --git a/src/TDF/TDF_Attribute.lxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_Attribute.lxx similarity index 100% rename from src/TDF/TDF_Attribute.lxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_Attribute.lxx diff --git a/src/TDF/TDF_AttributeArray1.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_AttributeArray1.hxx similarity index 100% rename from src/TDF/TDF_AttributeArray1.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_AttributeArray1.hxx diff --git a/src/TDF/TDF_AttributeDataMap.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_AttributeDataMap.hxx similarity index 100% rename from src/TDF/TDF_AttributeDataMap.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_AttributeDataMap.hxx diff --git a/src/TDF/TDF_AttributeDelta.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_AttributeDelta.cxx similarity index 100% rename from src/TDF/TDF_AttributeDelta.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_AttributeDelta.cxx diff --git a/src/TDF/TDF_AttributeDelta.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_AttributeDelta.hxx similarity index 100% rename from src/TDF/TDF_AttributeDelta.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_AttributeDelta.hxx diff --git a/src/TDF/TDF_AttributeDeltaList.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_AttributeDeltaList.hxx similarity index 100% rename from src/TDF/TDF_AttributeDeltaList.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_AttributeDeltaList.hxx diff --git a/src/TDF/TDF_AttributeDoubleMap.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_AttributeDoubleMap.hxx similarity index 100% rename from src/TDF/TDF_AttributeDoubleMap.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_AttributeDoubleMap.hxx diff --git a/src/TDF/TDF_AttributeIndexedMap.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_AttributeIndexedMap.hxx similarity index 100% rename from src/TDF/TDF_AttributeIndexedMap.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_AttributeIndexedMap.hxx diff --git a/src/TDF/TDF_AttributeIterator.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_AttributeIterator.cxx similarity index 100% rename from src/TDF/TDF_AttributeIterator.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_AttributeIterator.cxx diff --git a/src/TDF/TDF_AttributeIterator.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_AttributeIterator.hxx similarity index 100% rename from src/TDF/TDF_AttributeIterator.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_AttributeIterator.hxx diff --git a/src/TDF/TDF_AttributeList.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_AttributeList.hxx similarity index 100% rename from src/TDF/TDF_AttributeList.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_AttributeList.hxx diff --git a/src/TDF/TDF_AttributeMap.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_AttributeMap.hxx similarity index 100% rename from src/TDF/TDF_AttributeMap.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_AttributeMap.hxx diff --git a/src/TDF/TDF_AttributeSequence.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_AttributeSequence.hxx similarity index 100% rename from src/TDF/TDF_AttributeSequence.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_AttributeSequence.hxx diff --git a/src/TDF/TDF_ChildIDIterator.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_ChildIDIterator.cxx similarity index 100% rename from src/TDF/TDF_ChildIDIterator.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_ChildIDIterator.cxx diff --git a/src/TDF/TDF_ChildIDIterator.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_ChildIDIterator.hxx similarity index 100% rename from src/TDF/TDF_ChildIDIterator.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_ChildIDIterator.hxx diff --git a/src/TDF/TDF_ChildIDIterator.lxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_ChildIDIterator.lxx similarity index 100% rename from src/TDF/TDF_ChildIDIterator.lxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_ChildIDIterator.lxx diff --git a/src/TDF/TDF_ChildIterator.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_ChildIterator.cxx similarity index 100% rename from src/TDF/TDF_ChildIterator.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_ChildIterator.cxx diff --git a/src/TDF/TDF_ChildIterator.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_ChildIterator.hxx similarity index 100% rename from src/TDF/TDF_ChildIterator.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_ChildIterator.hxx diff --git a/src/TDF/TDF_ChildIterator.lxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_ChildIterator.lxx similarity index 100% rename from src/TDF/TDF_ChildIterator.lxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_ChildIterator.lxx diff --git a/src/TDF/TDF_ClosureMode.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_ClosureMode.cxx similarity index 100% rename from src/TDF/TDF_ClosureMode.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_ClosureMode.cxx diff --git a/src/TDF/TDF_ClosureMode.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_ClosureMode.hxx similarity index 100% rename from src/TDF/TDF_ClosureMode.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_ClosureMode.hxx diff --git a/src/TDF/TDF_ClosureMode.lxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_ClosureMode.lxx similarity index 100% rename from src/TDF/TDF_ClosureMode.lxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_ClosureMode.lxx diff --git a/src/TDF/TDF_ClosureTool.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_ClosureTool.cxx similarity index 100% rename from src/TDF/TDF_ClosureTool.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_ClosureTool.cxx diff --git a/src/TDF/TDF_ClosureTool.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_ClosureTool.hxx similarity index 100% rename from src/TDF/TDF_ClosureTool.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_ClosureTool.hxx diff --git a/src/TDF/TDF_ComparisonTool.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_ComparisonTool.cxx similarity index 100% rename from src/TDF/TDF_ComparisonTool.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_ComparisonTool.cxx diff --git a/src/TDF/TDF_ComparisonTool.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_ComparisonTool.hxx similarity index 100% rename from src/TDF/TDF_ComparisonTool.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_ComparisonTool.hxx diff --git a/src/TDF/TDF_CopyLabel.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_CopyLabel.cxx similarity index 100% rename from src/TDF/TDF_CopyLabel.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_CopyLabel.cxx diff --git a/src/TDF/TDF_CopyLabel.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_CopyLabel.hxx similarity index 100% rename from src/TDF/TDF_CopyLabel.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_CopyLabel.hxx diff --git a/src/TDF/TDF_CopyLabel.lxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_CopyLabel.lxx similarity index 100% rename from src/TDF/TDF_CopyLabel.lxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_CopyLabel.lxx diff --git a/src/TDF/TDF_CopyTool.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_CopyTool.cxx similarity index 100% rename from src/TDF/TDF_CopyTool.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_CopyTool.cxx diff --git a/src/TDF/TDF_CopyTool.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_CopyTool.hxx similarity index 100% rename from src/TDF/TDF_CopyTool.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_CopyTool.hxx diff --git a/src/TDF/TDF_Data.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_Data.cxx similarity index 100% rename from src/TDF/TDF_Data.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_Data.cxx diff --git a/src/TDF/TDF_Data.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_Data.hxx similarity index 100% rename from src/TDF/TDF_Data.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_Data.hxx diff --git a/src/TDF/TDF_Data.lxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_Data.lxx similarity index 100% rename from src/TDF/TDF_Data.lxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_Data.lxx diff --git a/src/TDF/TDF_DataMapIteratorOfAttributeDataMap.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DataMapIteratorOfAttributeDataMap.hxx similarity index 100% rename from src/TDF/TDF_DataMapIteratorOfAttributeDataMap.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DataMapIteratorOfAttributeDataMap.hxx diff --git a/src/TDF/TDF_DataMapIteratorOfLabelDataMap.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DataMapIteratorOfLabelDataMap.hxx similarity index 100% rename from src/TDF/TDF_DataMapIteratorOfLabelDataMap.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DataMapIteratorOfLabelDataMap.hxx diff --git a/src/TDF/TDF_DataMapIteratorOfLabelIntegerMap.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DataMapIteratorOfLabelIntegerMap.hxx similarity index 100% rename from src/TDF/TDF_DataMapIteratorOfLabelIntegerMap.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DataMapIteratorOfLabelIntegerMap.hxx diff --git a/src/TDF/TDF_DataSet.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DataSet.cxx similarity index 100% rename from src/TDF/TDF_DataSet.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DataSet.cxx diff --git a/src/TDF/TDF_DataSet.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DataSet.hxx similarity index 100% rename from src/TDF/TDF_DataSet.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DataSet.hxx diff --git a/src/TDF/TDF_DataSet.lxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DataSet.lxx similarity index 100% rename from src/TDF/TDF_DataSet.lxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DataSet.lxx diff --git a/src/TDF/TDF_DefaultDeltaOnModification.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DefaultDeltaOnModification.cxx similarity index 100% rename from src/TDF/TDF_DefaultDeltaOnModification.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DefaultDeltaOnModification.cxx diff --git a/src/TDF/TDF_DefaultDeltaOnModification.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DefaultDeltaOnModification.hxx similarity index 100% rename from src/TDF/TDF_DefaultDeltaOnModification.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DefaultDeltaOnModification.hxx diff --git a/src/TDF/TDF_DefaultDeltaOnRemoval.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DefaultDeltaOnRemoval.cxx similarity index 100% rename from src/TDF/TDF_DefaultDeltaOnRemoval.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DefaultDeltaOnRemoval.cxx diff --git a/src/TDF/TDF_DefaultDeltaOnRemoval.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DefaultDeltaOnRemoval.hxx similarity index 100% rename from src/TDF/TDF_DefaultDeltaOnRemoval.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DefaultDeltaOnRemoval.hxx diff --git a/src/TDF/TDF_Delta.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_Delta.cxx similarity index 100% rename from src/TDF/TDF_Delta.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_Delta.cxx diff --git a/src/TDF/TDF_Delta.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_Delta.hxx similarity index 100% rename from src/TDF/TDF_Delta.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_Delta.hxx diff --git a/src/TDF/TDF_Delta.lxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_Delta.lxx similarity index 100% rename from src/TDF/TDF_Delta.lxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_Delta.lxx diff --git a/src/TDF/TDF_DeltaList.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DeltaList.hxx similarity index 100% rename from src/TDF/TDF_DeltaList.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DeltaList.hxx diff --git a/src/TDF/TDF_DeltaOnAddition.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DeltaOnAddition.cxx similarity index 100% rename from src/TDF/TDF_DeltaOnAddition.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DeltaOnAddition.cxx diff --git a/src/TDF/TDF_DeltaOnAddition.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DeltaOnAddition.hxx similarity index 100% rename from src/TDF/TDF_DeltaOnAddition.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DeltaOnAddition.hxx diff --git a/src/TDF/TDF_DeltaOnForget.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DeltaOnForget.cxx similarity index 100% rename from src/TDF/TDF_DeltaOnForget.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DeltaOnForget.cxx diff --git a/src/TDF/TDF_DeltaOnForget.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DeltaOnForget.hxx similarity index 100% rename from src/TDF/TDF_DeltaOnForget.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DeltaOnForget.hxx diff --git a/src/TDF/TDF_DeltaOnModification.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DeltaOnModification.cxx similarity index 100% rename from src/TDF/TDF_DeltaOnModification.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DeltaOnModification.cxx diff --git a/src/TDF/TDF_DeltaOnModification.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DeltaOnModification.hxx similarity index 100% rename from src/TDF/TDF_DeltaOnModification.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DeltaOnModification.hxx diff --git a/src/TDF/TDF_DeltaOnRemoval.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DeltaOnRemoval.cxx similarity index 100% rename from src/TDF/TDF_DeltaOnRemoval.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DeltaOnRemoval.cxx diff --git a/src/TDF/TDF_DeltaOnRemoval.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DeltaOnRemoval.hxx similarity index 100% rename from src/TDF/TDF_DeltaOnRemoval.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DeltaOnRemoval.hxx diff --git a/src/TDF/TDF_DeltaOnResume.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DeltaOnResume.cxx similarity index 100% rename from src/TDF/TDF_DeltaOnResume.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DeltaOnResume.cxx diff --git a/src/TDF/TDF_DeltaOnResume.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DeltaOnResume.hxx similarity index 100% rename from src/TDF/TDF_DeltaOnResume.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DeltaOnResume.hxx diff --git a/src/TDF/TDF_DerivedAttribute.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DerivedAttribute.cxx similarity index 100% rename from src/TDF/TDF_DerivedAttribute.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DerivedAttribute.cxx diff --git a/src/TDF/TDF_DerivedAttribute.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DerivedAttribute.hxx similarity index 100% rename from src/TDF/TDF_DerivedAttribute.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DerivedAttribute.hxx diff --git a/src/TDF/TDF_DoubleMapIteratorOfAttributeDoubleMap.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DoubleMapIteratorOfAttributeDoubleMap.hxx similarity index 100% rename from src/TDF/TDF_DoubleMapIteratorOfAttributeDoubleMap.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DoubleMapIteratorOfAttributeDoubleMap.hxx diff --git a/src/TDF/TDF_DoubleMapIteratorOfGUIDProgIDMap.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DoubleMapIteratorOfGUIDProgIDMap.hxx similarity index 100% rename from src/TDF/TDF_DoubleMapIteratorOfGUIDProgIDMap.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DoubleMapIteratorOfGUIDProgIDMap.hxx diff --git a/src/TDF/TDF_DoubleMapIteratorOfLabelDoubleMap.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_DoubleMapIteratorOfLabelDoubleMap.hxx similarity index 100% rename from src/TDF/TDF_DoubleMapIteratorOfLabelDoubleMap.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_DoubleMapIteratorOfLabelDoubleMap.hxx diff --git a/src/TDF/TDF_GUIDProgIDMap.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_GUIDProgIDMap.hxx similarity index 100% rename from src/TDF/TDF_GUIDProgIDMap.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_GUIDProgIDMap.hxx diff --git a/src/TDF/TDF_HAllocator.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_HAllocator.hxx similarity index 100% rename from src/TDF/TDF_HAllocator.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_HAllocator.hxx diff --git a/src/TDF/TDF_HAttributeArray1.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_HAttributeArray1.hxx similarity index 100% rename from src/TDF/TDF_HAttributeArray1.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_HAttributeArray1.hxx diff --git a/src/TDF/TDF_IDFilter.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_IDFilter.cxx similarity index 100% rename from src/TDF/TDF_IDFilter.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_IDFilter.cxx diff --git a/src/TDF/TDF_IDFilter.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_IDFilter.hxx similarity index 100% rename from src/TDF/TDF_IDFilter.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_IDFilter.hxx diff --git a/src/TDF/TDF_IDFilter.lxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_IDFilter.lxx similarity index 100% rename from src/TDF/TDF_IDFilter.lxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_IDFilter.lxx diff --git a/src/TDF/TDF_IDList.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_IDList.hxx similarity index 100% rename from src/TDF/TDF_IDList.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_IDList.hxx diff --git a/src/TDF/TDF_IDMap.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_IDMap.hxx similarity index 100% rename from src/TDF/TDF_IDMap.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_IDMap.hxx diff --git a/src/TDF/TDF_Label.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_Label.cxx similarity index 100% rename from src/TDF/TDF_Label.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_Label.cxx diff --git a/src/TDF/TDF_Label.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_Label.hxx similarity index 100% rename from src/TDF/TDF_Label.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_Label.hxx diff --git a/src/TDF/TDF_Label.lxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_Label.lxx similarity index 100% rename from src/TDF/TDF_Label.lxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_Label.lxx diff --git a/src/TDF/TDF_LabelDataMap.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_LabelDataMap.hxx similarity index 100% rename from src/TDF/TDF_LabelDataMap.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_LabelDataMap.hxx diff --git a/src/TDF/TDF_LabelDoubleMap.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_LabelDoubleMap.hxx similarity index 100% rename from src/TDF/TDF_LabelDoubleMap.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_LabelDoubleMap.hxx diff --git a/src/TDF/TDF_LabelIndexedMap.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_LabelIndexedMap.hxx similarity index 100% rename from src/TDF/TDF_LabelIndexedMap.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_LabelIndexedMap.hxx diff --git a/src/TDF/TDF_LabelIntegerMap.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_LabelIntegerMap.hxx similarity index 100% rename from src/TDF/TDF_LabelIntegerMap.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_LabelIntegerMap.hxx diff --git a/src/TDF/TDF_LabelList.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_LabelList.hxx similarity index 100% rename from src/TDF/TDF_LabelList.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_LabelList.hxx diff --git a/src/TDF/TDF_LabelMap.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_LabelMap.hxx similarity index 100% rename from src/TDF/TDF_LabelMap.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_LabelMap.hxx diff --git a/src/TDF/TDF_LabelNode.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_LabelNode.cxx similarity index 100% rename from src/TDF/TDF_LabelNode.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_LabelNode.cxx diff --git a/src/TDF/TDF_LabelNode.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_LabelNode.hxx similarity index 100% rename from src/TDF/TDF_LabelNode.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_LabelNode.hxx diff --git a/src/TDF/TDF_LabelNodePtr.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_LabelNodePtr.hxx similarity index 100% rename from src/TDF/TDF_LabelNodePtr.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_LabelNodePtr.hxx diff --git a/src/TDF/TDF_LabelSequence.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_LabelSequence.hxx similarity index 100% rename from src/TDF/TDF_LabelSequence.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_LabelSequence.hxx diff --git a/src/TDF/TDF_ListIteratorOfAttributeDeltaList.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_ListIteratorOfAttributeDeltaList.hxx similarity index 100% rename from src/TDF/TDF_ListIteratorOfAttributeDeltaList.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_ListIteratorOfAttributeDeltaList.hxx diff --git a/src/TDF/TDF_ListIteratorOfAttributeList.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_ListIteratorOfAttributeList.hxx similarity index 100% rename from src/TDF/TDF_ListIteratorOfAttributeList.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_ListIteratorOfAttributeList.hxx diff --git a/src/TDF/TDF_ListIteratorOfDeltaList.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_ListIteratorOfDeltaList.hxx similarity index 100% rename from src/TDF/TDF_ListIteratorOfDeltaList.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_ListIteratorOfDeltaList.hxx diff --git a/src/TDF/TDF_ListIteratorOfIDList.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_ListIteratorOfIDList.hxx similarity index 100% rename from src/TDF/TDF_ListIteratorOfIDList.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_ListIteratorOfIDList.hxx diff --git a/src/TDF/TDF_ListIteratorOfLabelList.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_ListIteratorOfLabelList.hxx similarity index 100% rename from src/TDF/TDF_ListIteratorOfLabelList.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_ListIteratorOfLabelList.hxx diff --git a/src/TDF/TDF_MapIteratorOfAttributeMap.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_MapIteratorOfAttributeMap.hxx similarity index 100% rename from src/TDF/TDF_MapIteratorOfAttributeMap.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_MapIteratorOfAttributeMap.hxx diff --git a/src/TDF/TDF_MapIteratorOfIDMap.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_MapIteratorOfIDMap.hxx similarity index 100% rename from src/TDF/TDF_MapIteratorOfIDMap.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_MapIteratorOfIDMap.hxx diff --git a/src/TDF/TDF_MapIteratorOfLabelMap.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_MapIteratorOfLabelMap.hxx similarity index 100% rename from src/TDF/TDF_MapIteratorOfLabelMap.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_MapIteratorOfLabelMap.hxx diff --git a/src/TDF/TDF_Reference.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_Reference.cxx similarity index 100% rename from src/TDF/TDF_Reference.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_Reference.cxx diff --git a/src/TDF/TDF_Reference.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_Reference.hxx similarity index 100% rename from src/TDF/TDF_Reference.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_Reference.hxx diff --git a/src/TDF/TDF_RelocationTable.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_RelocationTable.cxx similarity index 100% rename from src/TDF/TDF_RelocationTable.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_RelocationTable.cxx diff --git a/src/TDF/TDF_RelocationTable.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_RelocationTable.hxx similarity index 100% rename from src/TDF/TDF_RelocationTable.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_RelocationTable.hxx diff --git a/src/TDF/TDF_TagSource.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_TagSource.cxx similarity index 100% rename from src/TDF/TDF_TagSource.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_TagSource.cxx diff --git a/src/TDF/TDF_TagSource.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_TagSource.hxx similarity index 100% rename from src/TDF/TDF_TagSource.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_TagSource.hxx diff --git a/src/TDF/TDF_Tool.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_Tool.cxx similarity index 100% rename from src/TDF/TDF_Tool.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_Tool.cxx diff --git a/src/TDF/TDF_Tool.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_Tool.hxx similarity index 100% rename from src/TDF/TDF_Tool.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_Tool.hxx diff --git a/src/TDF/TDF_Transaction.cxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_Transaction.cxx similarity index 100% rename from src/TDF/TDF_Transaction.cxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_Transaction.cxx diff --git a/src/TDF/TDF_Transaction.hxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_Transaction.hxx similarity index 100% rename from src/TDF/TDF_Transaction.hxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_Transaction.hxx diff --git a/src/TDF/TDF_Transaction.lxx b/src/ApplicationFramework/TKLCAF/TDF/TDF_Transaction.lxx similarity index 100% rename from src/TDF/TDF_Transaction.lxx rename to src/ApplicationFramework/TKLCAF/TDF/TDF_Transaction.lxx diff --git a/src/ApplicationFramework/TKLCAF/TDataStd/FILES.cmake b/src/ApplicationFramework/TKLCAF/TDataStd/FILES.cmake new file mode 100644 index 0000000000..930e524114 --- /dev/null +++ b/src/ApplicationFramework/TKLCAF/TDataStd/FILES.cmake @@ -0,0 +1,108 @@ +# Source files for TDataStd package +set(OCCT_TDataStd_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TDataStd_FILES + TDataStd.cxx + TDataStd.hxx + TDataStd_AsciiString.cxx + TDataStd_AsciiString.hxx + TDataStd_BooleanArray.cxx + TDataStd_BooleanArray.hxx + TDataStd_BooleanList.cxx + TDataStd_BooleanList.hxx + TDataStd_ByteArray.cxx + TDataStd_ByteArray.hxx + TDataStd_ChildNodeIterator.cxx + TDataStd_ChildNodeIterator.hxx + TDataStd_Comment.cxx + TDataStd_Comment.hxx + TDataStd_Current.cxx + TDataStd_Current.hxx + TDataStd_GenericEmpty.cxx + TDataStd_GenericEmpty.hxx + TDataStd_GenericExtString.cxx + TDataStd_GenericExtString.hxx + TDataStd_DataMapIteratorOfDataMapOfStringByte.hxx + TDataStd_DataMapIteratorOfDataMapOfStringHArray1OfInteger.hxx + TDataStd_DataMapIteratorOfDataMapOfStringHArray1OfReal.hxx + TDataStd_DataMapIteratorOfDataMapOfStringReal.hxx + TDataStd_DataMapIteratorOfDataMapOfStringString.hxx + TDataStd_DataMapOfStringByte.hxx + TDataStd_DataMapOfStringHArray1OfInteger.hxx + TDataStd_DataMapOfStringHArray1OfReal.hxx + TDataStd_DataMapOfStringReal.hxx + TDataStd_DataMapOfStringString.hxx + TDataStd_DeltaOnModificationOfByteArray.cxx + TDataStd_DeltaOnModificationOfByteArray.hxx + TDataStd_DeltaOnModificationOfExtStringArray.cxx + TDataStd_DeltaOnModificationOfExtStringArray.hxx + TDataStd_DeltaOnModificationOfIntArray.cxx + TDataStd_DeltaOnModificationOfIntArray.hxx + TDataStd_DeltaOnModificationOfIntPackedMap.cxx + TDataStd_DeltaOnModificationOfIntPackedMap.hxx + TDataStd_DeltaOnModificationOfRealArray.cxx + TDataStd_DeltaOnModificationOfRealArray.hxx + TDataStd_Directory.cxx + TDataStd_Directory.hxx + TDataStd_Expression.cxx + TDataStd_Expression.hxx + TDataStd_ExtStringArray.cxx + TDataStd_ExtStringArray.hxx + TDataStd_ExtStringList.cxx + TDataStd_ExtStringList.hxx + TDataStd_HDataMapOfStringByte.cxx + TDataStd_HDataMapOfStringByte.hxx + TDataStd_HDataMapOfStringHArray1OfInteger.cxx + TDataStd_HDataMapOfStringHArray1OfInteger.hxx + TDataStd_HDataMapOfStringHArray1OfReal.cxx + TDataStd_HDataMapOfStringHArray1OfReal.hxx + TDataStd_HDataMapOfStringInteger.cxx + TDataStd_HDataMapOfStringInteger.hxx + TDataStd_HDataMapOfStringReal.cxx + TDataStd_HDataMapOfStringReal.hxx + TDataStd_HDataMapOfStringString.cxx + TDataStd_HDataMapOfStringString.hxx + TDataStd_HLabelArray1.hxx + TDataStd_Integer.cxx + TDataStd_Integer.hxx + TDataStd_IntegerArray.cxx + TDataStd_IntegerArray.hxx + TDataStd_IntegerList.cxx + TDataStd_IntegerList.hxx + TDataStd_IntPackedMap.cxx + TDataStd_IntPackedMap.hxx + TDataStd_LabelArray1.hxx + TDataStd_ListIteratorOfListOfByte.hxx + TDataStd_ListIteratorOfListOfExtendedString.hxx + TDataStd_ListOfByte.hxx + TDataStd_ListOfExtendedString.hxx + TDataStd_Name.cxx + TDataStd_Name.hxx + TDataStd_NamedData.cxx + TDataStd_NamedData.hxx + TDataStd_NoteBook.cxx + TDataStd_NoteBook.hxx + TDataStd_PtrTreeNode.hxx + TDataStd_Real.cxx + TDataStd_Real.hxx + TDataStd_RealArray.cxx + TDataStd_RealArray.hxx + TDataStd_RealEnum.hxx + TDataStd_RealList.cxx + TDataStd_RealList.hxx + TDataStd_ReferenceArray.cxx + TDataStd_ReferenceArray.hxx + TDataStd_ReferenceList.cxx + TDataStd_ReferenceList.hxx + TDataStd_Relation.cxx + TDataStd_Relation.hxx + TDataStd_Tick.cxx + TDataStd_Tick.hxx + TDataStd_TreeNode.cxx + TDataStd_TreeNode.hxx + TDataStd_TreeNode.lxx + TDataStd_UAttribute.cxx + TDataStd_UAttribute.hxx + TDataStd_Variable.cxx + TDataStd_Variable.hxx +) diff --git a/src/TDataStd/TDataStd.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd.cxx similarity index 100% rename from src/TDataStd/TDataStd.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd.cxx diff --git a/src/TDataStd/TDataStd.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd.hxx similarity index 100% rename from src/TDataStd/TDataStd.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd.hxx diff --git a/src/TDataStd/TDataStd_AsciiString.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_AsciiString.cxx similarity index 100% rename from src/TDataStd/TDataStd_AsciiString.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_AsciiString.cxx diff --git a/src/TDataStd/TDataStd_AsciiString.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_AsciiString.hxx similarity index 100% rename from src/TDataStd/TDataStd_AsciiString.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_AsciiString.hxx diff --git a/src/TDataStd/TDataStd_BooleanArray.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_BooleanArray.cxx similarity index 100% rename from src/TDataStd/TDataStd_BooleanArray.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_BooleanArray.cxx diff --git a/src/TDataStd/TDataStd_BooleanArray.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_BooleanArray.hxx similarity index 100% rename from src/TDataStd/TDataStd_BooleanArray.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_BooleanArray.hxx diff --git a/src/TDataStd/TDataStd_BooleanList.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_BooleanList.cxx similarity index 100% rename from src/TDataStd/TDataStd_BooleanList.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_BooleanList.cxx diff --git a/src/TDataStd/TDataStd_BooleanList.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_BooleanList.hxx similarity index 100% rename from src/TDataStd/TDataStd_BooleanList.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_BooleanList.hxx diff --git a/src/TDataStd/TDataStd_ByteArray.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ByteArray.cxx similarity index 100% rename from src/TDataStd/TDataStd_ByteArray.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ByteArray.cxx diff --git a/src/TDataStd/TDataStd_ByteArray.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ByteArray.hxx similarity index 100% rename from src/TDataStd/TDataStd_ByteArray.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ByteArray.hxx diff --git a/src/TDataStd/TDataStd_ChildNodeIterator.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ChildNodeIterator.cxx similarity index 100% rename from src/TDataStd/TDataStd_ChildNodeIterator.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ChildNodeIterator.cxx diff --git a/src/TDataStd/TDataStd_ChildNodeIterator.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ChildNodeIterator.hxx similarity index 100% rename from src/TDataStd/TDataStd_ChildNodeIterator.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ChildNodeIterator.hxx diff --git a/src/TDataStd/TDataStd_Comment.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Comment.cxx similarity index 100% rename from src/TDataStd/TDataStd_Comment.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Comment.cxx diff --git a/src/TDataStd/TDataStd_Comment.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Comment.hxx similarity index 100% rename from src/TDataStd/TDataStd_Comment.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Comment.hxx diff --git a/src/TDataStd/TDataStd_Current.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Current.cxx similarity index 100% rename from src/TDataStd/TDataStd_Current.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Current.cxx diff --git a/src/TDataStd/TDataStd_Current.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Current.hxx similarity index 100% rename from src/TDataStd/TDataStd_Current.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Current.hxx diff --git a/src/TDataStd/TDataStd_DataMapIteratorOfDataMapOfStringByte.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DataMapIteratorOfDataMapOfStringByte.hxx similarity index 100% rename from src/TDataStd/TDataStd_DataMapIteratorOfDataMapOfStringByte.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DataMapIteratorOfDataMapOfStringByte.hxx diff --git a/src/TDataStd/TDataStd_DataMapIteratorOfDataMapOfStringHArray1OfInteger.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DataMapIteratorOfDataMapOfStringHArray1OfInteger.hxx similarity index 100% rename from src/TDataStd/TDataStd_DataMapIteratorOfDataMapOfStringHArray1OfInteger.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DataMapIteratorOfDataMapOfStringHArray1OfInteger.hxx diff --git a/src/TDataStd/TDataStd_DataMapIteratorOfDataMapOfStringHArray1OfReal.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DataMapIteratorOfDataMapOfStringHArray1OfReal.hxx similarity index 100% rename from src/TDataStd/TDataStd_DataMapIteratorOfDataMapOfStringHArray1OfReal.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DataMapIteratorOfDataMapOfStringHArray1OfReal.hxx diff --git a/src/TDataStd/TDataStd_DataMapIteratorOfDataMapOfStringReal.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DataMapIteratorOfDataMapOfStringReal.hxx similarity index 100% rename from src/TDataStd/TDataStd_DataMapIteratorOfDataMapOfStringReal.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DataMapIteratorOfDataMapOfStringReal.hxx diff --git a/src/TDataStd/TDataStd_DataMapIteratorOfDataMapOfStringString.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DataMapIteratorOfDataMapOfStringString.hxx similarity index 100% rename from src/TDataStd/TDataStd_DataMapIteratorOfDataMapOfStringString.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DataMapIteratorOfDataMapOfStringString.hxx diff --git a/src/TDataStd/TDataStd_DataMapOfStringByte.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DataMapOfStringByte.hxx similarity index 100% rename from src/TDataStd/TDataStd_DataMapOfStringByte.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DataMapOfStringByte.hxx diff --git a/src/TDataStd/TDataStd_DataMapOfStringHArray1OfInteger.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DataMapOfStringHArray1OfInteger.hxx similarity index 100% rename from src/TDataStd/TDataStd_DataMapOfStringHArray1OfInteger.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DataMapOfStringHArray1OfInteger.hxx diff --git a/src/TDataStd/TDataStd_DataMapOfStringHArray1OfReal.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DataMapOfStringHArray1OfReal.hxx similarity index 100% rename from src/TDataStd/TDataStd_DataMapOfStringHArray1OfReal.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DataMapOfStringHArray1OfReal.hxx diff --git a/src/TDataStd/TDataStd_DataMapOfStringReal.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DataMapOfStringReal.hxx similarity index 100% rename from src/TDataStd/TDataStd_DataMapOfStringReal.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DataMapOfStringReal.hxx diff --git a/src/TDataStd/TDataStd_DataMapOfStringString.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DataMapOfStringString.hxx similarity index 100% rename from src/TDataStd/TDataStd_DataMapOfStringString.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DataMapOfStringString.hxx diff --git a/src/TDataStd/TDataStd_DeltaOnModificationOfByteArray.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DeltaOnModificationOfByteArray.cxx similarity index 100% rename from src/TDataStd/TDataStd_DeltaOnModificationOfByteArray.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DeltaOnModificationOfByteArray.cxx diff --git a/src/TDataStd/TDataStd_DeltaOnModificationOfByteArray.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DeltaOnModificationOfByteArray.hxx similarity index 100% rename from src/TDataStd/TDataStd_DeltaOnModificationOfByteArray.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DeltaOnModificationOfByteArray.hxx diff --git a/src/TDataStd/TDataStd_DeltaOnModificationOfExtStringArray.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DeltaOnModificationOfExtStringArray.cxx similarity index 100% rename from src/TDataStd/TDataStd_DeltaOnModificationOfExtStringArray.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DeltaOnModificationOfExtStringArray.cxx diff --git a/src/TDataStd/TDataStd_DeltaOnModificationOfExtStringArray.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DeltaOnModificationOfExtStringArray.hxx similarity index 100% rename from src/TDataStd/TDataStd_DeltaOnModificationOfExtStringArray.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DeltaOnModificationOfExtStringArray.hxx diff --git a/src/TDataStd/TDataStd_DeltaOnModificationOfIntArray.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DeltaOnModificationOfIntArray.cxx similarity index 100% rename from src/TDataStd/TDataStd_DeltaOnModificationOfIntArray.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DeltaOnModificationOfIntArray.cxx diff --git a/src/TDataStd/TDataStd_DeltaOnModificationOfIntArray.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DeltaOnModificationOfIntArray.hxx similarity index 100% rename from src/TDataStd/TDataStd_DeltaOnModificationOfIntArray.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DeltaOnModificationOfIntArray.hxx diff --git a/src/TDataStd/TDataStd_DeltaOnModificationOfIntPackedMap.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DeltaOnModificationOfIntPackedMap.cxx similarity index 100% rename from src/TDataStd/TDataStd_DeltaOnModificationOfIntPackedMap.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DeltaOnModificationOfIntPackedMap.cxx diff --git a/src/TDataStd/TDataStd_DeltaOnModificationOfIntPackedMap.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DeltaOnModificationOfIntPackedMap.hxx similarity index 100% rename from src/TDataStd/TDataStd_DeltaOnModificationOfIntPackedMap.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DeltaOnModificationOfIntPackedMap.hxx diff --git a/src/TDataStd/TDataStd_DeltaOnModificationOfRealArray.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DeltaOnModificationOfRealArray.cxx similarity index 100% rename from src/TDataStd/TDataStd_DeltaOnModificationOfRealArray.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DeltaOnModificationOfRealArray.cxx diff --git a/src/TDataStd/TDataStd_DeltaOnModificationOfRealArray.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DeltaOnModificationOfRealArray.hxx similarity index 100% rename from src/TDataStd/TDataStd_DeltaOnModificationOfRealArray.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_DeltaOnModificationOfRealArray.hxx diff --git a/src/TDataStd/TDataStd_Directory.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Directory.cxx similarity index 100% rename from src/TDataStd/TDataStd_Directory.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Directory.cxx diff --git a/src/TDataStd/TDataStd_Directory.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Directory.hxx similarity index 100% rename from src/TDataStd/TDataStd_Directory.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Directory.hxx diff --git a/src/TDataStd/TDataStd_Expression.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Expression.cxx similarity index 100% rename from src/TDataStd/TDataStd_Expression.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Expression.cxx diff --git a/src/TDataStd/TDataStd_Expression.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Expression.hxx similarity index 100% rename from src/TDataStd/TDataStd_Expression.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Expression.hxx diff --git a/src/TDataStd/TDataStd_ExtStringArray.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ExtStringArray.cxx similarity index 100% rename from src/TDataStd/TDataStd_ExtStringArray.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ExtStringArray.cxx diff --git a/src/TDataStd/TDataStd_ExtStringArray.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ExtStringArray.hxx similarity index 100% rename from src/TDataStd/TDataStd_ExtStringArray.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ExtStringArray.hxx diff --git a/src/TDataStd/TDataStd_ExtStringList.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ExtStringList.cxx similarity index 100% rename from src/TDataStd/TDataStd_ExtStringList.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ExtStringList.cxx diff --git a/src/TDataStd/TDataStd_ExtStringList.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ExtStringList.hxx similarity index 100% rename from src/TDataStd/TDataStd_ExtStringList.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ExtStringList.hxx diff --git a/src/TDataStd/TDataStd_GenericEmpty.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_GenericEmpty.cxx similarity index 100% rename from src/TDataStd/TDataStd_GenericEmpty.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_GenericEmpty.cxx diff --git a/src/TDataStd/TDataStd_GenericEmpty.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_GenericEmpty.hxx similarity index 100% rename from src/TDataStd/TDataStd_GenericEmpty.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_GenericEmpty.hxx diff --git a/src/TDataStd/TDataStd_GenericExtString.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_GenericExtString.cxx similarity index 100% rename from src/TDataStd/TDataStd_GenericExtString.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_GenericExtString.cxx diff --git a/src/TDataStd/TDataStd_GenericExtString.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_GenericExtString.hxx similarity index 100% rename from src/TDataStd/TDataStd_GenericExtString.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_GenericExtString.hxx diff --git a/src/TDataStd/TDataStd_HDataMapOfStringByte.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HDataMapOfStringByte.cxx similarity index 100% rename from src/TDataStd/TDataStd_HDataMapOfStringByte.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HDataMapOfStringByte.cxx diff --git a/src/TDataStd/TDataStd_HDataMapOfStringByte.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HDataMapOfStringByte.hxx similarity index 100% rename from src/TDataStd/TDataStd_HDataMapOfStringByte.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HDataMapOfStringByte.hxx diff --git a/src/TDataStd/TDataStd_HDataMapOfStringHArray1OfInteger.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HDataMapOfStringHArray1OfInteger.cxx similarity index 100% rename from src/TDataStd/TDataStd_HDataMapOfStringHArray1OfInteger.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HDataMapOfStringHArray1OfInteger.cxx diff --git a/src/TDataStd/TDataStd_HDataMapOfStringHArray1OfInteger.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HDataMapOfStringHArray1OfInteger.hxx similarity index 100% rename from src/TDataStd/TDataStd_HDataMapOfStringHArray1OfInteger.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HDataMapOfStringHArray1OfInteger.hxx diff --git a/src/TDataStd/TDataStd_HDataMapOfStringHArray1OfReal.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HDataMapOfStringHArray1OfReal.cxx similarity index 100% rename from src/TDataStd/TDataStd_HDataMapOfStringHArray1OfReal.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HDataMapOfStringHArray1OfReal.cxx diff --git a/src/TDataStd/TDataStd_HDataMapOfStringHArray1OfReal.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HDataMapOfStringHArray1OfReal.hxx similarity index 100% rename from src/TDataStd/TDataStd_HDataMapOfStringHArray1OfReal.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HDataMapOfStringHArray1OfReal.hxx diff --git a/src/TDataStd/TDataStd_HDataMapOfStringInteger.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HDataMapOfStringInteger.cxx similarity index 100% rename from src/TDataStd/TDataStd_HDataMapOfStringInteger.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HDataMapOfStringInteger.cxx diff --git a/src/TDataStd/TDataStd_HDataMapOfStringInteger.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HDataMapOfStringInteger.hxx similarity index 100% rename from src/TDataStd/TDataStd_HDataMapOfStringInteger.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HDataMapOfStringInteger.hxx diff --git a/src/TDataStd/TDataStd_HDataMapOfStringReal.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HDataMapOfStringReal.cxx similarity index 100% rename from src/TDataStd/TDataStd_HDataMapOfStringReal.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HDataMapOfStringReal.cxx diff --git a/src/TDataStd/TDataStd_HDataMapOfStringReal.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HDataMapOfStringReal.hxx similarity index 100% rename from src/TDataStd/TDataStd_HDataMapOfStringReal.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HDataMapOfStringReal.hxx diff --git a/src/TDataStd/TDataStd_HDataMapOfStringString.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HDataMapOfStringString.cxx similarity index 100% rename from src/TDataStd/TDataStd_HDataMapOfStringString.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HDataMapOfStringString.cxx diff --git a/src/TDataStd/TDataStd_HDataMapOfStringString.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HDataMapOfStringString.hxx similarity index 100% rename from src/TDataStd/TDataStd_HDataMapOfStringString.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HDataMapOfStringString.hxx diff --git a/src/TDataStd/TDataStd_HLabelArray1.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HLabelArray1.hxx similarity index 100% rename from src/TDataStd/TDataStd_HLabelArray1.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_HLabelArray1.hxx diff --git a/src/TDataStd/TDataStd_IntPackedMap.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_IntPackedMap.cxx similarity index 100% rename from src/TDataStd/TDataStd_IntPackedMap.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_IntPackedMap.cxx diff --git a/src/TDataStd/TDataStd_IntPackedMap.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_IntPackedMap.hxx similarity index 100% rename from src/TDataStd/TDataStd_IntPackedMap.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_IntPackedMap.hxx diff --git a/src/TDataStd/TDataStd_Integer.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Integer.cxx similarity index 100% rename from src/TDataStd/TDataStd_Integer.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Integer.cxx diff --git a/src/TDataStd/TDataStd_Integer.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Integer.hxx similarity index 100% rename from src/TDataStd/TDataStd_Integer.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Integer.hxx diff --git a/src/TDataStd/TDataStd_IntegerArray.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_IntegerArray.cxx similarity index 100% rename from src/TDataStd/TDataStd_IntegerArray.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_IntegerArray.cxx diff --git a/src/TDataStd/TDataStd_IntegerArray.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_IntegerArray.hxx similarity index 100% rename from src/TDataStd/TDataStd_IntegerArray.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_IntegerArray.hxx diff --git a/src/TDataStd/TDataStd_IntegerList.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_IntegerList.cxx similarity index 100% rename from src/TDataStd/TDataStd_IntegerList.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_IntegerList.cxx diff --git a/src/TDataStd/TDataStd_IntegerList.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_IntegerList.hxx similarity index 100% rename from src/TDataStd/TDataStd_IntegerList.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_IntegerList.hxx diff --git a/src/TDataStd/TDataStd_LabelArray1.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_LabelArray1.hxx similarity index 100% rename from src/TDataStd/TDataStd_LabelArray1.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_LabelArray1.hxx diff --git a/src/TDataStd/TDataStd_ListIteratorOfListOfByte.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ListIteratorOfListOfByte.hxx similarity index 100% rename from src/TDataStd/TDataStd_ListIteratorOfListOfByte.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ListIteratorOfListOfByte.hxx diff --git a/src/TDataStd/TDataStd_ListIteratorOfListOfExtendedString.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ListIteratorOfListOfExtendedString.hxx similarity index 100% rename from src/TDataStd/TDataStd_ListIteratorOfListOfExtendedString.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ListIteratorOfListOfExtendedString.hxx diff --git a/src/TDataStd/TDataStd_ListOfByte.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ListOfByte.hxx similarity index 100% rename from src/TDataStd/TDataStd_ListOfByte.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ListOfByte.hxx diff --git a/src/TDataStd/TDataStd_ListOfExtendedString.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ListOfExtendedString.hxx similarity index 100% rename from src/TDataStd/TDataStd_ListOfExtendedString.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ListOfExtendedString.hxx diff --git a/src/TDataStd/TDataStd_Name.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Name.cxx similarity index 100% rename from src/TDataStd/TDataStd_Name.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Name.cxx diff --git a/src/TDataStd/TDataStd_Name.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Name.hxx similarity index 100% rename from src/TDataStd/TDataStd_Name.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Name.hxx diff --git a/src/TDataStd/TDataStd_NamedData.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_NamedData.cxx similarity index 100% rename from src/TDataStd/TDataStd_NamedData.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_NamedData.cxx diff --git a/src/TDataStd/TDataStd_NamedData.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_NamedData.hxx similarity index 100% rename from src/TDataStd/TDataStd_NamedData.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_NamedData.hxx diff --git a/src/TDataStd/TDataStd_NoteBook.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_NoteBook.cxx similarity index 100% rename from src/TDataStd/TDataStd_NoteBook.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_NoteBook.cxx diff --git a/src/TDataStd/TDataStd_NoteBook.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_NoteBook.hxx similarity index 100% rename from src/TDataStd/TDataStd_NoteBook.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_NoteBook.hxx diff --git a/src/TDataStd/TDataStd_PtrTreeNode.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_PtrTreeNode.hxx similarity index 100% rename from src/TDataStd/TDataStd_PtrTreeNode.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_PtrTreeNode.hxx diff --git a/src/TDataStd/TDataStd_Real.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Real.cxx similarity index 100% rename from src/TDataStd/TDataStd_Real.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Real.cxx diff --git a/src/TDataStd/TDataStd_Real.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Real.hxx similarity index 100% rename from src/TDataStd/TDataStd_Real.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Real.hxx diff --git a/src/TDataStd/TDataStd_RealArray.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_RealArray.cxx similarity index 100% rename from src/TDataStd/TDataStd_RealArray.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_RealArray.cxx diff --git a/src/TDataStd/TDataStd_RealArray.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_RealArray.hxx similarity index 100% rename from src/TDataStd/TDataStd_RealArray.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_RealArray.hxx diff --git a/src/TDataStd/TDataStd_RealEnum.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_RealEnum.hxx similarity index 100% rename from src/TDataStd/TDataStd_RealEnum.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_RealEnum.hxx diff --git a/src/TDataStd/TDataStd_RealList.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_RealList.cxx similarity index 100% rename from src/TDataStd/TDataStd_RealList.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_RealList.cxx diff --git a/src/TDataStd/TDataStd_RealList.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_RealList.hxx similarity index 100% rename from src/TDataStd/TDataStd_RealList.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_RealList.hxx diff --git a/src/TDataStd/TDataStd_ReferenceArray.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ReferenceArray.cxx similarity index 100% rename from src/TDataStd/TDataStd_ReferenceArray.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ReferenceArray.cxx diff --git a/src/TDataStd/TDataStd_ReferenceArray.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ReferenceArray.hxx similarity index 100% rename from src/TDataStd/TDataStd_ReferenceArray.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ReferenceArray.hxx diff --git a/src/TDataStd/TDataStd_ReferenceList.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ReferenceList.cxx similarity index 100% rename from src/TDataStd/TDataStd_ReferenceList.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ReferenceList.cxx diff --git a/src/TDataStd/TDataStd_ReferenceList.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ReferenceList.hxx similarity index 100% rename from src/TDataStd/TDataStd_ReferenceList.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ReferenceList.hxx diff --git a/src/TDataStd/TDataStd_Relation.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Relation.cxx similarity index 100% rename from src/TDataStd/TDataStd_Relation.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Relation.cxx diff --git a/src/TDataStd/TDataStd_Relation.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Relation.hxx similarity index 100% rename from src/TDataStd/TDataStd_Relation.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Relation.hxx diff --git a/src/TDataStd/TDataStd_Tick.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Tick.cxx similarity index 100% rename from src/TDataStd/TDataStd_Tick.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Tick.cxx diff --git a/src/TDataStd/TDataStd_Tick.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Tick.hxx similarity index 100% rename from src/TDataStd/TDataStd_Tick.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Tick.hxx diff --git a/src/TDataStd/TDataStd_TreeNode.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_TreeNode.cxx similarity index 100% rename from src/TDataStd/TDataStd_TreeNode.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_TreeNode.cxx diff --git a/src/TDataStd/TDataStd_TreeNode.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_TreeNode.hxx similarity index 100% rename from src/TDataStd/TDataStd_TreeNode.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_TreeNode.hxx diff --git a/src/TDataStd/TDataStd_TreeNode.lxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_TreeNode.lxx similarity index 100% rename from src/TDataStd/TDataStd_TreeNode.lxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_TreeNode.lxx diff --git a/src/TDataStd/TDataStd_UAttribute.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_UAttribute.cxx similarity index 100% rename from src/TDataStd/TDataStd_UAttribute.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_UAttribute.cxx diff --git a/src/TDataStd/TDataStd_UAttribute.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_UAttribute.hxx similarity index 100% rename from src/TDataStd/TDataStd_UAttribute.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_UAttribute.hxx diff --git a/src/TDataStd/TDataStd_Variable.cxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Variable.cxx similarity index 100% rename from src/TDataStd/TDataStd_Variable.cxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Variable.cxx diff --git a/src/TDataStd/TDataStd_Variable.hxx b/src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Variable.hxx similarity index 100% rename from src/TDataStd/TDataStd_Variable.hxx rename to src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Variable.hxx diff --git a/src/ApplicationFramework/TKLCAF/TDocStd/FILES.cmake b/src/ApplicationFramework/TKLCAF/TDocStd/FILES.cmake new file mode 100644 index 0000000000..92082ceca6 --- /dev/null +++ b/src/ApplicationFramework/TKLCAF/TDocStd/FILES.cmake @@ -0,0 +1,45 @@ +# Source files for TDocStd package +set(OCCT_TDocStd_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TDocStd_FILES + TDocStd.cxx + TDocStd.hxx + TDocStd_Application.cxx + TDocStd_Application.hxx + TDocStd_ApplicationDelta.cxx + TDocStd_ApplicationDelta.hxx + TDocStd_ApplicationDelta.lxx + TDocStd_CompoundDelta.cxx + TDocStd_CompoundDelta.hxx + TDocStd_Context.cxx + TDocStd_Context.hxx + TDocStd_DataMapIteratorOfLabelIDMapDataMap.hxx + TDocStd_Document.cxx + TDocStd_Document.hxx + TDocStd_Document.lxx + TDocStd_LabelIDMapDataMap.hxx + TDocStd_Modified.cxx + TDocStd_Modified.hxx + TDocStd_MultiTransactionManager.cxx + TDocStd_MultiTransactionManager.hxx + TDocStd_MultiTransactionManager.lxx + TDocStd_Owner.cxx + TDocStd_Owner.hxx + TDocStd_PathParser.cxx + TDocStd_PathParser.hxx + TDocStd_SequenceOfApplicationDelta.hxx + TDocStd_SequenceOfDocument.hxx + TDocStd_XLink.cxx + TDocStd_XLink.hxx + TDocStd_XLink.lxx + TDocStd_XLinkIterator.cxx + TDocStd_XLinkIterator.hxx + TDocStd_XLinkIterator.lxx + TDocStd_XLinkPtr.hxx + TDocStd_XLinkRoot.cxx + TDocStd_XLinkRoot.hxx + TDocStd_XLinkRoot.lxx + TDocStd_XLinkTool.cxx + TDocStd_XLinkTool.hxx + TDocStd_FormatVersion.hxx +) diff --git a/src/TDocStd/TDocStd.cxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd.cxx similarity index 100% rename from src/TDocStd/TDocStd.cxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd.cxx diff --git a/src/TDocStd/TDocStd.hxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd.hxx similarity index 100% rename from src/TDocStd/TDocStd.hxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd.hxx diff --git a/src/TDocStd/TDocStd_Application.cxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_Application.cxx similarity index 100% rename from src/TDocStd/TDocStd_Application.cxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_Application.cxx diff --git a/src/TDocStd/TDocStd_Application.hxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_Application.hxx similarity index 100% rename from src/TDocStd/TDocStd_Application.hxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_Application.hxx diff --git a/src/TDocStd/TDocStd_ApplicationDelta.cxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_ApplicationDelta.cxx similarity index 100% rename from src/TDocStd/TDocStd_ApplicationDelta.cxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_ApplicationDelta.cxx diff --git a/src/TDocStd/TDocStd_ApplicationDelta.hxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_ApplicationDelta.hxx similarity index 100% rename from src/TDocStd/TDocStd_ApplicationDelta.hxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_ApplicationDelta.hxx diff --git a/src/TDocStd/TDocStd_ApplicationDelta.lxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_ApplicationDelta.lxx similarity index 100% rename from src/TDocStd/TDocStd_ApplicationDelta.lxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_ApplicationDelta.lxx diff --git a/src/TDocStd/TDocStd_CompoundDelta.cxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_CompoundDelta.cxx similarity index 100% rename from src/TDocStd/TDocStd_CompoundDelta.cxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_CompoundDelta.cxx diff --git a/src/TDocStd/TDocStd_CompoundDelta.hxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_CompoundDelta.hxx similarity index 100% rename from src/TDocStd/TDocStd_CompoundDelta.hxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_CompoundDelta.hxx diff --git a/src/TDocStd/TDocStd_Context.cxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_Context.cxx similarity index 100% rename from src/TDocStd/TDocStd_Context.cxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_Context.cxx diff --git a/src/TDocStd/TDocStd_Context.hxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_Context.hxx similarity index 100% rename from src/TDocStd/TDocStd_Context.hxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_Context.hxx diff --git a/src/TDocStd/TDocStd_DataMapIteratorOfLabelIDMapDataMap.hxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_DataMapIteratorOfLabelIDMapDataMap.hxx similarity index 100% rename from src/TDocStd/TDocStd_DataMapIteratorOfLabelIDMapDataMap.hxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_DataMapIteratorOfLabelIDMapDataMap.hxx diff --git a/src/TDocStd/TDocStd_Document.cxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_Document.cxx similarity index 100% rename from src/TDocStd/TDocStd_Document.cxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_Document.cxx diff --git a/src/TDocStd/TDocStd_Document.hxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_Document.hxx similarity index 100% rename from src/TDocStd/TDocStd_Document.hxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_Document.hxx diff --git a/src/TDocStd/TDocStd_Document.lxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_Document.lxx similarity index 100% rename from src/TDocStd/TDocStd_Document.lxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_Document.lxx diff --git a/src/TDocStd/TDocStd_FormatVersion.hxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_FormatVersion.hxx similarity index 100% rename from src/TDocStd/TDocStd_FormatVersion.hxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_FormatVersion.hxx diff --git a/src/TDocStd/TDocStd_LabelIDMapDataMap.hxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_LabelIDMapDataMap.hxx similarity index 100% rename from src/TDocStd/TDocStd_LabelIDMapDataMap.hxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_LabelIDMapDataMap.hxx diff --git a/src/TDocStd/TDocStd_Modified.cxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_Modified.cxx similarity index 100% rename from src/TDocStd/TDocStd_Modified.cxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_Modified.cxx diff --git a/src/TDocStd/TDocStd_Modified.hxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_Modified.hxx similarity index 100% rename from src/TDocStd/TDocStd_Modified.hxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_Modified.hxx diff --git a/src/TDocStd/TDocStd_MultiTransactionManager.cxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_MultiTransactionManager.cxx similarity index 100% rename from src/TDocStd/TDocStd_MultiTransactionManager.cxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_MultiTransactionManager.cxx diff --git a/src/TDocStd/TDocStd_MultiTransactionManager.hxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_MultiTransactionManager.hxx similarity index 100% rename from src/TDocStd/TDocStd_MultiTransactionManager.hxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_MultiTransactionManager.hxx diff --git a/src/TDocStd/TDocStd_MultiTransactionManager.lxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_MultiTransactionManager.lxx similarity index 100% rename from src/TDocStd/TDocStd_MultiTransactionManager.lxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_MultiTransactionManager.lxx diff --git a/src/TDocStd/TDocStd_Owner.cxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_Owner.cxx similarity index 100% rename from src/TDocStd/TDocStd_Owner.cxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_Owner.cxx diff --git a/src/TDocStd/TDocStd_Owner.hxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_Owner.hxx similarity index 100% rename from src/TDocStd/TDocStd_Owner.hxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_Owner.hxx diff --git a/src/TDocStd/TDocStd_PathParser.cxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_PathParser.cxx similarity index 100% rename from src/TDocStd/TDocStd_PathParser.cxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_PathParser.cxx diff --git a/src/TDocStd/TDocStd_PathParser.hxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_PathParser.hxx similarity index 100% rename from src/TDocStd/TDocStd_PathParser.hxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_PathParser.hxx diff --git a/src/TDocStd/TDocStd_SequenceOfApplicationDelta.hxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_SequenceOfApplicationDelta.hxx similarity index 100% rename from src/TDocStd/TDocStd_SequenceOfApplicationDelta.hxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_SequenceOfApplicationDelta.hxx diff --git a/src/TDocStd/TDocStd_SequenceOfDocument.hxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_SequenceOfDocument.hxx similarity index 100% rename from src/TDocStd/TDocStd_SequenceOfDocument.hxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_SequenceOfDocument.hxx diff --git a/src/TDocStd/TDocStd_XLink.cxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_XLink.cxx similarity index 100% rename from src/TDocStd/TDocStd_XLink.cxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_XLink.cxx diff --git a/src/TDocStd/TDocStd_XLink.hxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_XLink.hxx similarity index 100% rename from src/TDocStd/TDocStd_XLink.hxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_XLink.hxx diff --git a/src/TDocStd/TDocStd_XLink.lxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_XLink.lxx similarity index 100% rename from src/TDocStd/TDocStd_XLink.lxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_XLink.lxx diff --git a/src/TDocStd/TDocStd_XLinkIterator.cxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_XLinkIterator.cxx similarity index 100% rename from src/TDocStd/TDocStd_XLinkIterator.cxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_XLinkIterator.cxx diff --git a/src/TDocStd/TDocStd_XLinkIterator.hxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_XLinkIterator.hxx similarity index 100% rename from src/TDocStd/TDocStd_XLinkIterator.hxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_XLinkIterator.hxx diff --git a/src/TDocStd/TDocStd_XLinkIterator.lxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_XLinkIterator.lxx similarity index 100% rename from src/TDocStd/TDocStd_XLinkIterator.lxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_XLinkIterator.lxx diff --git a/src/TDocStd/TDocStd_XLinkPtr.hxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_XLinkPtr.hxx similarity index 100% rename from src/TDocStd/TDocStd_XLinkPtr.hxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_XLinkPtr.hxx diff --git a/src/TDocStd/TDocStd_XLinkRoot.cxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_XLinkRoot.cxx similarity index 100% rename from src/TDocStd/TDocStd_XLinkRoot.cxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_XLinkRoot.cxx diff --git a/src/TDocStd/TDocStd_XLinkRoot.hxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_XLinkRoot.hxx similarity index 100% rename from src/TDocStd/TDocStd_XLinkRoot.hxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_XLinkRoot.hxx diff --git a/src/TDocStd/TDocStd_XLinkRoot.lxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_XLinkRoot.lxx similarity index 100% rename from src/TDocStd/TDocStd_XLinkRoot.lxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_XLinkRoot.lxx diff --git a/src/TDocStd/TDocStd_XLinkTool.cxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_XLinkTool.cxx similarity index 100% rename from src/TDocStd/TDocStd_XLinkTool.cxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_XLinkTool.cxx diff --git a/src/TDocStd/TDocStd_XLinkTool.hxx b/src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_XLinkTool.hxx similarity index 100% rename from src/TDocStd/TDocStd_XLinkTool.hxx rename to src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_XLinkTool.hxx diff --git a/src/ApplicationFramework/TKLCAF/TFunction/FILES.cmake b/src/ApplicationFramework/TKLCAF/TFunction/FILES.cmake new file mode 100644 index 0000000000..e511c0e6d5 --- /dev/null +++ b/src/ApplicationFramework/TKLCAF/TFunction/FILES.cmake @@ -0,0 +1,32 @@ +# Source files for TFunction package +set(OCCT_TFunction_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TFunction_FILES + TFunction_Array1OfDataMapOfGUIDDriver.hxx + TFunction_DataMapIteratorOfDataMapOfGUIDDriver.hxx + TFunction_DataMapIteratorOfDataMapOfLabelListOfLabel.hxx + TFunction_DataMapOfGUIDDriver.hxx + TFunction_DataMapOfLabelListOfLabel.hxx + TFunction_DoubleMapIteratorOfDoubleMapOfIntegerLabel.hxx + TFunction_DoubleMapOfIntegerLabel.hxx + TFunction_Driver.cxx + TFunction_Driver.hxx + TFunction_Driver.lxx + TFunction_DriverTable.cxx + TFunction_DriverTable.hxx + TFunction_ExecutionStatus.hxx + TFunction_Function.cxx + TFunction_Function.hxx + TFunction_GraphNode.cxx + TFunction_GraphNode.hxx + TFunction_HArray1OfDataMapOfGUIDDriver.hxx + TFunction_IFunction.cxx + TFunction_IFunction.hxx + TFunction_Iterator.cxx + TFunction_Iterator.hxx + TFunction_Logbook.cxx + TFunction_Logbook.hxx + TFunction_Logbook.lxx + TFunction_Scope.cxx + TFunction_Scope.hxx +) diff --git a/src/TFunction/TFunction_Array1OfDataMapOfGUIDDriver.hxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_Array1OfDataMapOfGUIDDriver.hxx similarity index 100% rename from src/TFunction/TFunction_Array1OfDataMapOfGUIDDriver.hxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_Array1OfDataMapOfGUIDDriver.hxx diff --git a/src/TFunction/TFunction_DataMapIteratorOfDataMapOfGUIDDriver.hxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_DataMapIteratorOfDataMapOfGUIDDriver.hxx similarity index 100% rename from src/TFunction/TFunction_DataMapIteratorOfDataMapOfGUIDDriver.hxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_DataMapIteratorOfDataMapOfGUIDDriver.hxx diff --git a/src/TFunction/TFunction_DataMapIteratorOfDataMapOfLabelListOfLabel.hxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_DataMapIteratorOfDataMapOfLabelListOfLabel.hxx similarity index 100% rename from src/TFunction/TFunction_DataMapIteratorOfDataMapOfLabelListOfLabel.hxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_DataMapIteratorOfDataMapOfLabelListOfLabel.hxx diff --git a/src/TFunction/TFunction_DataMapOfGUIDDriver.hxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_DataMapOfGUIDDriver.hxx similarity index 100% rename from src/TFunction/TFunction_DataMapOfGUIDDriver.hxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_DataMapOfGUIDDriver.hxx diff --git a/src/TFunction/TFunction_DataMapOfLabelListOfLabel.hxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_DataMapOfLabelListOfLabel.hxx similarity index 100% rename from src/TFunction/TFunction_DataMapOfLabelListOfLabel.hxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_DataMapOfLabelListOfLabel.hxx diff --git a/src/TFunction/TFunction_DoubleMapIteratorOfDoubleMapOfIntegerLabel.hxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_DoubleMapIteratorOfDoubleMapOfIntegerLabel.hxx similarity index 100% rename from src/TFunction/TFunction_DoubleMapIteratorOfDoubleMapOfIntegerLabel.hxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_DoubleMapIteratorOfDoubleMapOfIntegerLabel.hxx diff --git a/src/TFunction/TFunction_DoubleMapOfIntegerLabel.hxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_DoubleMapOfIntegerLabel.hxx similarity index 100% rename from src/TFunction/TFunction_DoubleMapOfIntegerLabel.hxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_DoubleMapOfIntegerLabel.hxx diff --git a/src/TFunction/TFunction_Driver.cxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_Driver.cxx similarity index 100% rename from src/TFunction/TFunction_Driver.cxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_Driver.cxx diff --git a/src/TFunction/TFunction_Driver.hxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_Driver.hxx similarity index 100% rename from src/TFunction/TFunction_Driver.hxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_Driver.hxx diff --git a/src/TFunction/TFunction_Driver.lxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_Driver.lxx similarity index 100% rename from src/TFunction/TFunction_Driver.lxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_Driver.lxx diff --git a/src/TFunction/TFunction_DriverTable.cxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_DriverTable.cxx similarity index 100% rename from src/TFunction/TFunction_DriverTable.cxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_DriverTable.cxx diff --git a/src/TFunction/TFunction_DriverTable.hxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_DriverTable.hxx similarity index 100% rename from src/TFunction/TFunction_DriverTable.hxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_DriverTable.hxx diff --git a/src/TFunction/TFunction_ExecutionStatus.hxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_ExecutionStatus.hxx similarity index 100% rename from src/TFunction/TFunction_ExecutionStatus.hxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_ExecutionStatus.hxx diff --git a/src/TFunction/TFunction_Function.cxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_Function.cxx similarity index 100% rename from src/TFunction/TFunction_Function.cxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_Function.cxx diff --git a/src/TFunction/TFunction_Function.hxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_Function.hxx similarity index 100% rename from src/TFunction/TFunction_Function.hxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_Function.hxx diff --git a/src/TFunction/TFunction_GraphNode.cxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_GraphNode.cxx similarity index 100% rename from src/TFunction/TFunction_GraphNode.cxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_GraphNode.cxx diff --git a/src/TFunction/TFunction_GraphNode.hxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_GraphNode.hxx similarity index 100% rename from src/TFunction/TFunction_GraphNode.hxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_GraphNode.hxx diff --git a/src/TFunction/TFunction_HArray1OfDataMapOfGUIDDriver.hxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_HArray1OfDataMapOfGUIDDriver.hxx similarity index 100% rename from src/TFunction/TFunction_HArray1OfDataMapOfGUIDDriver.hxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_HArray1OfDataMapOfGUIDDriver.hxx diff --git a/src/TFunction/TFunction_IFunction.cxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_IFunction.cxx similarity index 100% rename from src/TFunction/TFunction_IFunction.cxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_IFunction.cxx diff --git a/src/TFunction/TFunction_IFunction.hxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_IFunction.hxx similarity index 100% rename from src/TFunction/TFunction_IFunction.hxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_IFunction.hxx diff --git a/src/TFunction/TFunction_Iterator.cxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_Iterator.cxx similarity index 100% rename from src/TFunction/TFunction_Iterator.cxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_Iterator.cxx diff --git a/src/TFunction/TFunction_Iterator.hxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_Iterator.hxx similarity index 100% rename from src/TFunction/TFunction_Iterator.hxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_Iterator.hxx diff --git a/src/TFunction/TFunction_Logbook.cxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_Logbook.cxx similarity index 100% rename from src/TFunction/TFunction_Logbook.cxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_Logbook.cxx diff --git a/src/TFunction/TFunction_Logbook.hxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_Logbook.hxx similarity index 100% rename from src/TFunction/TFunction_Logbook.hxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_Logbook.hxx diff --git a/src/TFunction/TFunction_Logbook.lxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_Logbook.lxx similarity index 100% rename from src/TFunction/TFunction_Logbook.lxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_Logbook.lxx diff --git a/src/TFunction/TFunction_Scope.cxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_Scope.cxx similarity index 100% rename from src/TFunction/TFunction_Scope.cxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_Scope.cxx diff --git a/src/TFunction/TFunction_Scope.hxx b/src/ApplicationFramework/TKLCAF/TFunction/TFunction_Scope.hxx similarity index 100% rename from src/TFunction/TFunction_Scope.hxx rename to src/ApplicationFramework/TKLCAF/TFunction/TFunction_Scope.hxx diff --git a/src/TKStd/CMakeLists.txt b/src/ApplicationFramework/TKStd/CMakeLists.txt similarity index 100% rename from src/TKStd/CMakeLists.txt rename to src/ApplicationFramework/TKStd/CMakeLists.txt diff --git a/src/ApplicationFramework/TKStd/EXTERNLIB.cmake b/src/ApplicationFramework/TKStd/EXTERNLIB.cmake new file mode 100644 index 0000000000..236a582601 --- /dev/null +++ b/src/ApplicationFramework/TKStd/EXTERNLIB.cmake @@ -0,0 +1,12 @@ +# External dependencies for TKStd +set(OCCT_TKStd_EXTERNAL_LIBS + TKernel + TKCDF + TKCAF + TKLCAF + TKBRep + TKMath + TKG2d + TKG3d + TKStdL +) diff --git a/src/ApplicationFramework/TKStd/FILES.cmake b/src/ApplicationFramework/TKStd/FILES.cmake new file mode 100644 index 0000000000..44aafbc407 --- /dev/null +++ b/src/ApplicationFramework/TKStd/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKStd +set(OCCT_TKStd_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKStd_FILES + PACKAGES + EXTERNLIB +) diff --git a/src/ApplicationFramework/TKStd/PACKAGES.cmake b/src/ApplicationFramework/TKStd/PACKAGES.cmake new file mode 100644 index 0000000000..c4acb927d9 --- /dev/null +++ b/src/ApplicationFramework/TKStd/PACKAGES.cmake @@ -0,0 +1,8 @@ +# Auto-generated list of packages for TKStd toolkit +set(OCCT_TKStd_LIST_OF_PACKAGES + StdDrivers + StdObject + StdPersistent + StdStorage + ShapePersistent +) diff --git a/src/ApplicationFramework/TKStd/ShapePersistent/FILES.cmake b/src/ApplicationFramework/TKStd/ShapePersistent/FILES.cmake new file mode 100644 index 0000000000..f516390686 --- /dev/null +++ b/src/ApplicationFramework/TKStd/ShapePersistent/FILES.cmake @@ -0,0 +1,28 @@ +# Source files for ShapePersistent package +set(OCCT_ShapePersistent_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_ShapePersistent_FILES + ShapePersistent.cxx + ShapePersistent.hxx + ShapePersistent_BRep.cxx + ShapePersistent_BRep.hxx + ShapePersistent_Geom.cxx + ShapePersistent_Geom.hxx + ShapePersistent_Geom_Curve.cxx + ShapePersistent_Geom_Curve.hxx + ShapePersistent_Geom_Surface.cxx + ShapePersistent_Geom_Surface.hxx + ShapePersistent_Geom2d.hxx + ShapePersistent_Geom2d.cxx + ShapePersistent_Geom2d_Curve.cxx + ShapePersistent_Geom2d_Curve.hxx + ShapePersistent_HArray1.hxx + ShapePersistent_HArray2.hxx + ShapePersistent_HSequence.cxx + ShapePersistent_HSequence.hxx + ShapePersistent_Poly.cxx + ShapePersistent_Poly.hxx + ShapePersistent_TopoDS.cxx + ShapePersistent_TopoDS.hxx + ShapePersistent_TriangleMode.hxx +) diff --git a/src/ShapePersistent/ShapePersistent.cxx b/src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent.cxx similarity index 100% rename from src/ShapePersistent/ShapePersistent.cxx rename to src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent.cxx diff --git a/src/ShapePersistent/ShapePersistent.hxx b/src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent.hxx similarity index 100% rename from src/ShapePersistent/ShapePersistent.hxx rename to src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent.hxx diff --git a/src/ShapePersistent/ShapePersistent_BRep.cxx b/src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_BRep.cxx similarity index 100% rename from src/ShapePersistent/ShapePersistent_BRep.cxx rename to src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_BRep.cxx diff --git a/src/ShapePersistent/ShapePersistent_BRep.hxx b/src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_BRep.hxx similarity index 100% rename from src/ShapePersistent/ShapePersistent_BRep.hxx rename to src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_BRep.hxx diff --git a/src/ShapePersistent/ShapePersistent_Geom.cxx b/src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_Geom.cxx similarity index 100% rename from src/ShapePersistent/ShapePersistent_Geom.cxx rename to src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_Geom.cxx diff --git a/src/ShapePersistent/ShapePersistent_Geom.hxx b/src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_Geom.hxx similarity index 100% rename from src/ShapePersistent/ShapePersistent_Geom.hxx rename to src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_Geom.hxx diff --git a/src/ShapePersistent/ShapePersistent_Geom2d.cxx b/src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_Geom2d.cxx similarity index 100% rename from src/ShapePersistent/ShapePersistent_Geom2d.cxx rename to src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_Geom2d.cxx diff --git a/src/ShapePersistent/ShapePersistent_Geom2d.hxx b/src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_Geom2d.hxx similarity index 100% rename from src/ShapePersistent/ShapePersistent_Geom2d.hxx rename to src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_Geom2d.hxx diff --git a/src/ShapePersistent/ShapePersistent_Geom2d_Curve.cxx b/src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_Geom2d_Curve.cxx similarity index 100% rename from src/ShapePersistent/ShapePersistent_Geom2d_Curve.cxx rename to src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_Geom2d_Curve.cxx diff --git a/src/ShapePersistent/ShapePersistent_Geom2d_Curve.hxx b/src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_Geom2d_Curve.hxx similarity index 100% rename from src/ShapePersistent/ShapePersistent_Geom2d_Curve.hxx rename to src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_Geom2d_Curve.hxx diff --git a/src/ShapePersistent/ShapePersistent_Geom_Curve.cxx b/src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_Geom_Curve.cxx similarity index 100% rename from src/ShapePersistent/ShapePersistent_Geom_Curve.cxx rename to src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_Geom_Curve.cxx diff --git a/src/ShapePersistent/ShapePersistent_Geom_Curve.hxx b/src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_Geom_Curve.hxx similarity index 100% rename from src/ShapePersistent/ShapePersistent_Geom_Curve.hxx rename to src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_Geom_Curve.hxx diff --git a/src/ShapePersistent/ShapePersistent_Geom_Surface.cxx b/src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_Geom_Surface.cxx similarity index 100% rename from src/ShapePersistent/ShapePersistent_Geom_Surface.cxx rename to src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_Geom_Surface.cxx diff --git a/src/ShapePersistent/ShapePersistent_Geom_Surface.hxx b/src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_Geom_Surface.hxx similarity index 100% rename from src/ShapePersistent/ShapePersistent_Geom_Surface.hxx rename to src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_Geom_Surface.hxx diff --git a/src/ShapePersistent/ShapePersistent_HArray1.hxx b/src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_HArray1.hxx similarity index 100% rename from src/ShapePersistent/ShapePersistent_HArray1.hxx rename to src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_HArray1.hxx diff --git a/src/ShapePersistent/ShapePersistent_HArray2.hxx b/src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_HArray2.hxx similarity index 100% rename from src/ShapePersistent/ShapePersistent_HArray2.hxx rename to src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_HArray2.hxx diff --git a/src/ShapePersistent/ShapePersistent_HSequence.cxx b/src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_HSequence.cxx similarity index 100% rename from src/ShapePersistent/ShapePersistent_HSequence.cxx rename to src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_HSequence.cxx diff --git a/src/ShapePersistent/ShapePersistent_HSequence.hxx b/src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_HSequence.hxx similarity index 100% rename from src/ShapePersistent/ShapePersistent_HSequence.hxx rename to src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_HSequence.hxx diff --git a/src/ShapePersistent/ShapePersistent_Poly.cxx b/src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_Poly.cxx similarity index 100% rename from src/ShapePersistent/ShapePersistent_Poly.cxx rename to src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_Poly.cxx diff --git a/src/ShapePersistent/ShapePersistent_Poly.hxx b/src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_Poly.hxx similarity index 100% rename from src/ShapePersistent/ShapePersistent_Poly.hxx rename to src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_Poly.hxx diff --git a/src/ShapePersistent/ShapePersistent_TopoDS.cxx b/src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_TopoDS.cxx similarity index 100% rename from src/ShapePersistent/ShapePersistent_TopoDS.cxx rename to src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_TopoDS.cxx diff --git a/src/ShapePersistent/ShapePersistent_TopoDS.hxx b/src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_TopoDS.hxx similarity index 100% rename from src/ShapePersistent/ShapePersistent_TopoDS.hxx rename to src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_TopoDS.hxx diff --git a/src/ShapePersistent/ShapePersistent_TriangleMode.hxx b/src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_TriangleMode.hxx similarity index 100% rename from src/ShapePersistent/ShapePersistent_TriangleMode.hxx rename to src/ApplicationFramework/TKStd/ShapePersistent/ShapePersistent_TriangleMode.hxx diff --git a/src/ApplicationFramework/TKStd/StdDrivers/FILES.cmake b/src/ApplicationFramework/TKStd/StdDrivers/FILES.cmake new file mode 100644 index 0000000000..ad72036cba --- /dev/null +++ b/src/ApplicationFramework/TKStd/StdDrivers/FILES.cmake @@ -0,0 +1,9 @@ +# Source files for StdDrivers package +set(OCCT_StdDrivers_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StdDrivers_FILES + StdDrivers.cxx + StdDrivers.hxx + StdDrivers_DocumentRetrievalDriver.cxx + StdDrivers_DocumentRetrievalDriver.hxx +) diff --git a/src/StdDrivers/StdDrivers.cxx b/src/ApplicationFramework/TKStd/StdDrivers/StdDrivers.cxx similarity index 100% rename from src/StdDrivers/StdDrivers.cxx rename to src/ApplicationFramework/TKStd/StdDrivers/StdDrivers.cxx diff --git a/src/StdDrivers/StdDrivers.hxx b/src/ApplicationFramework/TKStd/StdDrivers/StdDrivers.hxx similarity index 100% rename from src/StdDrivers/StdDrivers.hxx rename to src/ApplicationFramework/TKStd/StdDrivers/StdDrivers.hxx diff --git a/src/StdDrivers/StdDrivers_DocumentRetrievalDriver.cxx b/src/ApplicationFramework/TKStd/StdDrivers/StdDrivers_DocumentRetrievalDriver.cxx similarity index 100% rename from src/StdDrivers/StdDrivers_DocumentRetrievalDriver.cxx rename to src/ApplicationFramework/TKStd/StdDrivers/StdDrivers_DocumentRetrievalDriver.cxx diff --git a/src/StdDrivers/StdDrivers_DocumentRetrievalDriver.hxx b/src/ApplicationFramework/TKStd/StdDrivers/StdDrivers_DocumentRetrievalDriver.hxx similarity index 100% rename from src/StdDrivers/StdDrivers_DocumentRetrievalDriver.hxx rename to src/ApplicationFramework/TKStd/StdDrivers/StdDrivers_DocumentRetrievalDriver.hxx diff --git a/src/ApplicationFramework/TKStd/StdObject/FILES.cmake b/src/ApplicationFramework/TKStd/StdObject/FILES.cmake new file mode 100644 index 0000000000..d05fa8f383 --- /dev/null +++ b/src/ApplicationFramework/TKStd/StdObject/FILES.cmake @@ -0,0 +1,14 @@ +# Source files for StdObject package +set(OCCT_StdObject_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StdObject_FILES + StdObject_gp_Axes.hxx + StdObject_gp_Curves.hxx + StdObject_gp_Surfaces.hxx + StdObject_gp_Trsfs.hxx + StdObject_gp_Vectors.hxx + StdObject_Location.cxx + StdObject_Location.hxx + StdObject_Shape.cxx + StdObject_Shape.hxx +) diff --git a/src/StdObject/StdObject_Location.cxx b/src/ApplicationFramework/TKStd/StdObject/StdObject_Location.cxx similarity index 100% rename from src/StdObject/StdObject_Location.cxx rename to src/ApplicationFramework/TKStd/StdObject/StdObject_Location.cxx diff --git a/src/StdObject/StdObject_Location.hxx b/src/ApplicationFramework/TKStd/StdObject/StdObject_Location.hxx similarity index 100% rename from src/StdObject/StdObject_Location.hxx rename to src/ApplicationFramework/TKStd/StdObject/StdObject_Location.hxx diff --git a/src/StdObject/StdObject_Shape.cxx b/src/ApplicationFramework/TKStd/StdObject/StdObject_Shape.cxx similarity index 100% rename from src/StdObject/StdObject_Shape.cxx rename to src/ApplicationFramework/TKStd/StdObject/StdObject_Shape.cxx diff --git a/src/StdObject/StdObject_Shape.hxx b/src/ApplicationFramework/TKStd/StdObject/StdObject_Shape.hxx similarity index 100% rename from src/StdObject/StdObject_Shape.hxx rename to src/ApplicationFramework/TKStd/StdObject/StdObject_Shape.hxx diff --git a/src/StdObject/StdObject_gp_Axes.hxx b/src/ApplicationFramework/TKStd/StdObject/StdObject_gp_Axes.hxx similarity index 100% rename from src/StdObject/StdObject_gp_Axes.hxx rename to src/ApplicationFramework/TKStd/StdObject/StdObject_gp_Axes.hxx diff --git a/src/StdObject/StdObject_gp_Curves.hxx b/src/ApplicationFramework/TKStd/StdObject/StdObject_gp_Curves.hxx similarity index 100% rename from src/StdObject/StdObject_gp_Curves.hxx rename to src/ApplicationFramework/TKStd/StdObject/StdObject_gp_Curves.hxx diff --git a/src/StdObject/StdObject_gp_Surfaces.hxx b/src/ApplicationFramework/TKStd/StdObject/StdObject_gp_Surfaces.hxx similarity index 100% rename from src/StdObject/StdObject_gp_Surfaces.hxx rename to src/ApplicationFramework/TKStd/StdObject/StdObject_gp_Surfaces.hxx diff --git a/src/StdObject/StdObject_gp_Trsfs.hxx b/src/ApplicationFramework/TKStd/StdObject/StdObject_gp_Trsfs.hxx similarity index 100% rename from src/StdObject/StdObject_gp_Trsfs.hxx rename to src/ApplicationFramework/TKStd/StdObject/StdObject_gp_Trsfs.hxx diff --git a/src/StdObject/StdObject_gp_Vectors.hxx b/src/ApplicationFramework/TKStd/StdObject/StdObject_gp_Vectors.hxx similarity index 100% rename from src/StdObject/StdObject_gp_Vectors.hxx rename to src/ApplicationFramework/TKStd/StdObject/StdObject_gp_Vectors.hxx diff --git a/src/ApplicationFramework/TKStd/StdPersistent/FILES.cmake b/src/ApplicationFramework/TKStd/StdPersistent/FILES.cmake new file mode 100644 index 0000000000..c05f84cd26 --- /dev/null +++ b/src/ApplicationFramework/TKStd/StdPersistent/FILES.cmake @@ -0,0 +1,21 @@ +# Source files for StdPersistent package +set(OCCT_StdPersistent_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StdPersistent_FILES + StdPersistent.cxx + StdPersistent.hxx + StdPersistent_DataXtd.cxx + StdPersistent_DataXtd.hxx + StdPersistent_DataXtd_Constraint.cxx + StdPersistent_DataXtd_Constraint.hxx + StdPersistent_DataXtd_PatternStd.cxx + StdPersistent_DataXtd_PatternStd.hxx + StdPersistent_HArray1.hxx + StdPersistent_Naming.cxx + StdPersistent_Naming.hxx + StdPersistent_PPrsStd.cxx + StdPersistent_PPrsStd.hxx + StdPersistent_TopLoc.cxx + StdPersistent_TopLoc.hxx + StdPersistent_TopoDS.hxx +) diff --git a/src/StdPersistent/StdPersistent.cxx b/src/ApplicationFramework/TKStd/StdPersistent/StdPersistent.cxx similarity index 100% rename from src/StdPersistent/StdPersistent.cxx rename to src/ApplicationFramework/TKStd/StdPersistent/StdPersistent.cxx diff --git a/src/StdPersistent/StdPersistent.hxx b/src/ApplicationFramework/TKStd/StdPersistent/StdPersistent.hxx similarity index 100% rename from src/StdPersistent/StdPersistent.hxx rename to src/ApplicationFramework/TKStd/StdPersistent/StdPersistent.hxx diff --git a/src/StdPersistent/StdPersistent_DataXtd.cxx b/src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_DataXtd.cxx similarity index 100% rename from src/StdPersistent/StdPersistent_DataXtd.cxx rename to src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_DataXtd.cxx diff --git a/src/StdPersistent/StdPersistent_DataXtd.hxx b/src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_DataXtd.hxx similarity index 100% rename from src/StdPersistent/StdPersistent_DataXtd.hxx rename to src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_DataXtd.hxx diff --git a/src/StdPersistent/StdPersistent_DataXtd_Constraint.cxx b/src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_DataXtd_Constraint.cxx similarity index 100% rename from src/StdPersistent/StdPersistent_DataXtd_Constraint.cxx rename to src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_DataXtd_Constraint.cxx diff --git a/src/StdPersistent/StdPersistent_DataXtd_Constraint.hxx b/src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_DataXtd_Constraint.hxx similarity index 100% rename from src/StdPersistent/StdPersistent_DataXtd_Constraint.hxx rename to src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_DataXtd_Constraint.hxx diff --git a/src/StdPersistent/StdPersistent_DataXtd_PatternStd.cxx b/src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_DataXtd_PatternStd.cxx similarity index 100% rename from src/StdPersistent/StdPersistent_DataXtd_PatternStd.cxx rename to src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_DataXtd_PatternStd.cxx diff --git a/src/StdPersistent/StdPersistent_DataXtd_PatternStd.hxx b/src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_DataXtd_PatternStd.hxx similarity index 100% rename from src/StdPersistent/StdPersistent_DataXtd_PatternStd.hxx rename to src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_DataXtd_PatternStd.hxx diff --git a/src/StdPersistent/StdPersistent_HArray1.hxx b/src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_HArray1.hxx similarity index 100% rename from src/StdPersistent/StdPersistent_HArray1.hxx rename to src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_HArray1.hxx diff --git a/src/StdPersistent/StdPersistent_Naming.cxx b/src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_Naming.cxx similarity index 100% rename from src/StdPersistent/StdPersistent_Naming.cxx rename to src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_Naming.cxx diff --git a/src/StdPersistent/StdPersistent_Naming.hxx b/src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_Naming.hxx similarity index 100% rename from src/StdPersistent/StdPersistent_Naming.hxx rename to src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_Naming.hxx diff --git a/src/StdPersistent/StdPersistent_PPrsStd.cxx b/src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_PPrsStd.cxx similarity index 100% rename from src/StdPersistent/StdPersistent_PPrsStd.cxx rename to src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_PPrsStd.cxx diff --git a/src/StdPersistent/StdPersistent_PPrsStd.hxx b/src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_PPrsStd.hxx similarity index 100% rename from src/StdPersistent/StdPersistent_PPrsStd.hxx rename to src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_PPrsStd.hxx diff --git a/src/StdPersistent/StdPersistent_TopLoc.cxx b/src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_TopLoc.cxx similarity index 100% rename from src/StdPersistent/StdPersistent_TopLoc.cxx rename to src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_TopLoc.cxx diff --git a/src/StdPersistent/StdPersistent_TopLoc.hxx b/src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_TopLoc.hxx similarity index 100% rename from src/StdPersistent/StdPersistent_TopLoc.hxx rename to src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_TopLoc.hxx diff --git a/src/StdPersistent/StdPersistent_TopoDS.hxx b/src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_TopoDS.hxx similarity index 100% rename from src/StdPersistent/StdPersistent_TopoDS.hxx rename to src/ApplicationFramework/TKStd/StdPersistent/StdPersistent_TopoDS.hxx diff --git a/src/ApplicationFramework/TKStd/StdStorage/FILES.cmake b/src/ApplicationFramework/TKStd/StdStorage/FILES.cmake new file mode 100644 index 0000000000..fa5b61ea2f --- /dev/null +++ b/src/ApplicationFramework/TKStd/StdStorage/FILES.cmake @@ -0,0 +1,23 @@ +# Source files for StdStorage package +set(OCCT_StdStorage_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StdStorage_FILES + StdStorage.cxx + StdStorage.hxx + StdStorage_Data.cxx + StdStorage_Data.hxx + StdStorage_HeaderData.cxx + StdStorage_HeaderData.hxx + StdStorage_Root.cxx + StdStorage_Root.hxx + StdStorage_RootData.cxx + StdStorage_RootData.hxx + StdStorage_HSequenceOfRoots.hxx + StdStorage_SequenceOfRoots.hxx + StdStorage_MapOfRoots.hxx + StdStorage_TypeData.cxx + StdStorage_TypeData.hxx + StdStorage_MapOfTypes.hxx + StdStorage_BacketOfPersistent.cxx + StdStorage_BacketOfPersistent.hxx +) diff --git a/src/StdStorage/StdStorage.cxx b/src/ApplicationFramework/TKStd/StdStorage/StdStorage.cxx similarity index 100% rename from src/StdStorage/StdStorage.cxx rename to src/ApplicationFramework/TKStd/StdStorage/StdStorage.cxx diff --git a/src/StdStorage/StdStorage.hxx b/src/ApplicationFramework/TKStd/StdStorage/StdStorage.hxx similarity index 100% rename from src/StdStorage/StdStorage.hxx rename to src/ApplicationFramework/TKStd/StdStorage/StdStorage.hxx diff --git a/src/StdStorage/StdStorage_BacketOfPersistent.cxx b/src/ApplicationFramework/TKStd/StdStorage/StdStorage_BacketOfPersistent.cxx similarity index 100% rename from src/StdStorage/StdStorage_BacketOfPersistent.cxx rename to src/ApplicationFramework/TKStd/StdStorage/StdStorage_BacketOfPersistent.cxx diff --git a/src/StdStorage/StdStorage_BacketOfPersistent.hxx b/src/ApplicationFramework/TKStd/StdStorage/StdStorage_BacketOfPersistent.hxx similarity index 100% rename from src/StdStorage/StdStorage_BacketOfPersistent.hxx rename to src/ApplicationFramework/TKStd/StdStorage/StdStorage_BacketOfPersistent.hxx diff --git a/src/StdStorage/StdStorage_Data.cxx b/src/ApplicationFramework/TKStd/StdStorage/StdStorage_Data.cxx similarity index 100% rename from src/StdStorage/StdStorage_Data.cxx rename to src/ApplicationFramework/TKStd/StdStorage/StdStorage_Data.cxx diff --git a/src/StdStorage/StdStorage_Data.hxx b/src/ApplicationFramework/TKStd/StdStorage/StdStorage_Data.hxx similarity index 100% rename from src/StdStorage/StdStorage_Data.hxx rename to src/ApplicationFramework/TKStd/StdStorage/StdStorage_Data.hxx diff --git a/src/StdStorage/StdStorage_HSequenceOfRoots.hxx b/src/ApplicationFramework/TKStd/StdStorage/StdStorage_HSequenceOfRoots.hxx similarity index 100% rename from src/StdStorage/StdStorage_HSequenceOfRoots.hxx rename to src/ApplicationFramework/TKStd/StdStorage/StdStorage_HSequenceOfRoots.hxx diff --git a/src/StdStorage/StdStorage_HeaderData.cxx b/src/ApplicationFramework/TKStd/StdStorage/StdStorage_HeaderData.cxx similarity index 100% rename from src/StdStorage/StdStorage_HeaderData.cxx rename to src/ApplicationFramework/TKStd/StdStorage/StdStorage_HeaderData.cxx diff --git a/src/StdStorage/StdStorage_HeaderData.hxx b/src/ApplicationFramework/TKStd/StdStorage/StdStorage_HeaderData.hxx similarity index 100% rename from src/StdStorage/StdStorage_HeaderData.hxx rename to src/ApplicationFramework/TKStd/StdStorage/StdStorage_HeaderData.hxx diff --git a/src/StdStorage/StdStorage_MapOfRoots.hxx b/src/ApplicationFramework/TKStd/StdStorage/StdStorage_MapOfRoots.hxx similarity index 100% rename from src/StdStorage/StdStorage_MapOfRoots.hxx rename to src/ApplicationFramework/TKStd/StdStorage/StdStorage_MapOfRoots.hxx diff --git a/src/StdStorage/StdStorage_MapOfTypes.hxx b/src/ApplicationFramework/TKStd/StdStorage/StdStorage_MapOfTypes.hxx similarity index 100% rename from src/StdStorage/StdStorage_MapOfTypes.hxx rename to src/ApplicationFramework/TKStd/StdStorage/StdStorage_MapOfTypes.hxx diff --git a/src/StdStorage/StdStorage_Root.cxx b/src/ApplicationFramework/TKStd/StdStorage/StdStorage_Root.cxx similarity index 100% rename from src/StdStorage/StdStorage_Root.cxx rename to src/ApplicationFramework/TKStd/StdStorage/StdStorage_Root.cxx diff --git a/src/StdStorage/StdStorage_Root.hxx b/src/ApplicationFramework/TKStd/StdStorage/StdStorage_Root.hxx similarity index 100% rename from src/StdStorage/StdStorage_Root.hxx rename to src/ApplicationFramework/TKStd/StdStorage/StdStorage_Root.hxx diff --git a/src/StdStorage/StdStorage_RootData.cxx b/src/ApplicationFramework/TKStd/StdStorage/StdStorage_RootData.cxx similarity index 100% rename from src/StdStorage/StdStorage_RootData.cxx rename to src/ApplicationFramework/TKStd/StdStorage/StdStorage_RootData.cxx diff --git a/src/StdStorage/StdStorage_RootData.hxx b/src/ApplicationFramework/TKStd/StdStorage/StdStorage_RootData.hxx similarity index 100% rename from src/StdStorage/StdStorage_RootData.hxx rename to src/ApplicationFramework/TKStd/StdStorage/StdStorage_RootData.hxx diff --git a/src/StdStorage/StdStorage_SequenceOfRoots.hxx b/src/ApplicationFramework/TKStd/StdStorage/StdStorage_SequenceOfRoots.hxx similarity index 100% rename from src/StdStorage/StdStorage_SequenceOfRoots.hxx rename to src/ApplicationFramework/TKStd/StdStorage/StdStorage_SequenceOfRoots.hxx diff --git a/src/StdStorage/StdStorage_TypeData.cxx b/src/ApplicationFramework/TKStd/StdStorage/StdStorage_TypeData.cxx similarity index 100% rename from src/StdStorage/StdStorage_TypeData.cxx rename to src/ApplicationFramework/TKStd/StdStorage/StdStorage_TypeData.cxx diff --git a/src/StdStorage/StdStorage_TypeData.hxx b/src/ApplicationFramework/TKStd/StdStorage/StdStorage_TypeData.hxx similarity index 100% rename from src/StdStorage/StdStorage_TypeData.hxx rename to src/ApplicationFramework/TKStd/StdStorage/StdStorage_TypeData.hxx diff --git a/src/TKStdL/CMakeLists.txt b/src/ApplicationFramework/TKStdL/CMakeLists.txt similarity index 100% rename from src/TKStdL/CMakeLists.txt rename to src/ApplicationFramework/TKStdL/CMakeLists.txt diff --git a/src/ApplicationFramework/TKStdL/EXTERNLIB.cmake b/src/ApplicationFramework/TKStdL/EXTERNLIB.cmake new file mode 100644 index 0000000000..f137acf84a --- /dev/null +++ b/src/ApplicationFramework/TKStdL/EXTERNLIB.cmake @@ -0,0 +1,6 @@ +# External dependencies for TKStdL +set(OCCT_TKStdL_EXTERNAL_LIBS + TKernel + TKCDF + TKLCAF +) diff --git a/src/ApplicationFramework/TKStdL/FILES.cmake b/src/ApplicationFramework/TKStdL/FILES.cmake new file mode 100644 index 0000000000..ce784e90b7 --- /dev/null +++ b/src/ApplicationFramework/TKStdL/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKStdL +set(OCCT_TKStdL_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKStdL_FILES + PACKAGES + EXTERNLIB +) diff --git a/src/ApplicationFramework/TKStdL/PACKAGES.cmake b/src/ApplicationFramework/TKStdL/PACKAGES.cmake new file mode 100644 index 0000000000..2830162c98 --- /dev/null +++ b/src/ApplicationFramework/TKStdL/PACKAGES.cmake @@ -0,0 +1,6 @@ +# Auto-generated list of packages for TKStdL toolkit +set(OCCT_TKStdL_LIST_OF_PACKAGES + StdLDrivers + StdLPersistent + StdObjMgt +) diff --git a/src/ApplicationFramework/TKStdL/StdLDrivers/FILES.cmake b/src/ApplicationFramework/TKStdL/StdLDrivers/FILES.cmake new file mode 100644 index 0000000000..0d3febb930 --- /dev/null +++ b/src/ApplicationFramework/TKStdL/StdLDrivers/FILES.cmake @@ -0,0 +1,9 @@ +# Source files for StdLDrivers package +set(OCCT_StdLDrivers_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StdLDrivers_FILES + StdLDrivers.cxx + StdLDrivers.hxx + StdLDrivers_DocumentRetrievalDriver.cxx + StdLDrivers_DocumentRetrievalDriver.hxx +) diff --git a/src/StdLDrivers/StdLDrivers.cxx b/src/ApplicationFramework/TKStdL/StdLDrivers/StdLDrivers.cxx similarity index 100% rename from src/StdLDrivers/StdLDrivers.cxx rename to src/ApplicationFramework/TKStdL/StdLDrivers/StdLDrivers.cxx diff --git a/src/StdLDrivers/StdLDrivers.hxx b/src/ApplicationFramework/TKStdL/StdLDrivers/StdLDrivers.hxx similarity index 100% rename from src/StdLDrivers/StdLDrivers.hxx rename to src/ApplicationFramework/TKStdL/StdLDrivers/StdLDrivers.hxx diff --git a/src/StdLDrivers/StdLDrivers_DocumentRetrievalDriver.cxx b/src/ApplicationFramework/TKStdL/StdLDrivers/StdLDrivers_DocumentRetrievalDriver.cxx similarity index 100% rename from src/StdLDrivers/StdLDrivers_DocumentRetrievalDriver.cxx rename to src/ApplicationFramework/TKStdL/StdLDrivers/StdLDrivers_DocumentRetrievalDriver.cxx diff --git a/src/StdLDrivers/StdLDrivers_DocumentRetrievalDriver.hxx b/src/ApplicationFramework/TKStdL/StdLDrivers/StdLDrivers_DocumentRetrievalDriver.hxx similarity index 100% rename from src/StdLDrivers/StdLDrivers_DocumentRetrievalDriver.hxx rename to src/ApplicationFramework/TKStdL/StdLDrivers/StdLDrivers_DocumentRetrievalDriver.hxx diff --git a/src/ApplicationFramework/TKStdL/StdLPersistent/FILES.cmake b/src/ApplicationFramework/TKStdL/StdLPersistent/FILES.cmake new file mode 100644 index 0000000000..91118fd69a --- /dev/null +++ b/src/ApplicationFramework/TKStdL/StdLPersistent/FILES.cmake @@ -0,0 +1,32 @@ +# Source files for StdLPersistent package +set(OCCT_StdLPersistent_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StdLPersistent_FILES + StdLPersistent.cxx + StdLPersistent.hxx + StdLPersistent_Collection.cxx + StdLPersistent_Collection.hxx + StdLPersistent_Data.cxx + StdLPersistent_Data.hxx + StdLPersistent_Dependency.cxx + StdLPersistent_Dependency.hxx + StdLPersistent_Document.cxx + StdLPersistent_Document.hxx + StdLPersistent_Function.hxx + StdLPersistent_HArray1.cxx + StdLPersistent_HArray1.hxx + StdLPersistent_HArray2.cxx + StdLPersistent_HArray2.hxx + StdLPersistent_HString.cxx + StdLPersistent_HString.hxx + StdLPersistent_NamedData.cxx + StdLPersistent_NamedData.hxx + StdLPersistent_Real.hxx + StdLPersistent_TreeNode.cxx + StdLPersistent_TreeNode.hxx + StdLPersistent_Value.cxx + StdLPersistent_Value.hxx + StdLPersistent_Variable.hxx + StdLPersistent_Void.hxx + StdLPersistent_XLink.hxx +) diff --git a/src/StdLPersistent/StdLPersistent.cxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent.cxx similarity index 100% rename from src/StdLPersistent/StdLPersistent.cxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent.cxx diff --git a/src/StdLPersistent/StdLPersistent.hxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent.hxx similarity index 100% rename from src/StdLPersistent/StdLPersistent.hxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent.hxx diff --git a/src/StdLPersistent/StdLPersistent_Collection.cxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Collection.cxx similarity index 100% rename from src/StdLPersistent/StdLPersistent_Collection.cxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Collection.cxx diff --git a/src/StdLPersistent/StdLPersistent_Collection.hxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Collection.hxx similarity index 100% rename from src/StdLPersistent/StdLPersistent_Collection.hxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Collection.hxx diff --git a/src/StdLPersistent/StdLPersistent_Data.cxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Data.cxx similarity index 100% rename from src/StdLPersistent/StdLPersistent_Data.cxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Data.cxx diff --git a/src/StdLPersistent/StdLPersistent_Data.hxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Data.hxx similarity index 100% rename from src/StdLPersistent/StdLPersistent_Data.hxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Data.hxx diff --git a/src/StdLPersistent/StdLPersistent_Dependency.cxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Dependency.cxx similarity index 100% rename from src/StdLPersistent/StdLPersistent_Dependency.cxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Dependency.cxx diff --git a/src/StdLPersistent/StdLPersistent_Dependency.hxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Dependency.hxx similarity index 100% rename from src/StdLPersistent/StdLPersistent_Dependency.hxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Dependency.hxx diff --git a/src/StdLPersistent/StdLPersistent_Document.cxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Document.cxx similarity index 100% rename from src/StdLPersistent/StdLPersistent_Document.cxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Document.cxx diff --git a/src/StdLPersistent/StdLPersistent_Document.hxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Document.hxx similarity index 100% rename from src/StdLPersistent/StdLPersistent_Document.hxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Document.hxx diff --git a/src/StdLPersistent/StdLPersistent_Function.hxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Function.hxx similarity index 100% rename from src/StdLPersistent/StdLPersistent_Function.hxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Function.hxx diff --git a/src/StdLPersistent/StdLPersistent_HArray1.cxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_HArray1.cxx similarity index 100% rename from src/StdLPersistent/StdLPersistent_HArray1.cxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_HArray1.cxx diff --git a/src/StdLPersistent/StdLPersistent_HArray1.hxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_HArray1.hxx similarity index 100% rename from src/StdLPersistent/StdLPersistent_HArray1.hxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_HArray1.hxx diff --git a/src/StdLPersistent/StdLPersistent_HArray2.cxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_HArray2.cxx similarity index 100% rename from src/StdLPersistent/StdLPersistent_HArray2.cxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_HArray2.cxx diff --git a/src/StdLPersistent/StdLPersistent_HArray2.hxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_HArray2.hxx similarity index 100% rename from src/StdLPersistent/StdLPersistent_HArray2.hxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_HArray2.hxx diff --git a/src/StdLPersistent/StdLPersistent_HString.cxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_HString.cxx similarity index 100% rename from src/StdLPersistent/StdLPersistent_HString.cxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_HString.cxx diff --git a/src/StdLPersistent/StdLPersistent_HString.hxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_HString.hxx similarity index 100% rename from src/StdLPersistent/StdLPersistent_HString.hxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_HString.hxx diff --git a/src/StdLPersistent/StdLPersistent_NamedData.cxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_NamedData.cxx similarity index 100% rename from src/StdLPersistent/StdLPersistent_NamedData.cxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_NamedData.cxx diff --git a/src/StdLPersistent/StdLPersistent_NamedData.hxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_NamedData.hxx similarity index 100% rename from src/StdLPersistent/StdLPersistent_NamedData.hxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_NamedData.hxx diff --git a/src/StdLPersistent/StdLPersistent_Real.hxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Real.hxx similarity index 100% rename from src/StdLPersistent/StdLPersistent_Real.hxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Real.hxx diff --git a/src/StdLPersistent/StdLPersistent_TreeNode.cxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_TreeNode.cxx similarity index 100% rename from src/StdLPersistent/StdLPersistent_TreeNode.cxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_TreeNode.cxx diff --git a/src/StdLPersistent/StdLPersistent_TreeNode.hxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_TreeNode.hxx similarity index 100% rename from src/StdLPersistent/StdLPersistent_TreeNode.hxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_TreeNode.hxx diff --git a/src/StdLPersistent/StdLPersistent_Value.cxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Value.cxx similarity index 100% rename from src/StdLPersistent/StdLPersistent_Value.cxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Value.cxx diff --git a/src/StdLPersistent/StdLPersistent_Value.hxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Value.hxx similarity index 100% rename from src/StdLPersistent/StdLPersistent_Value.hxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Value.hxx diff --git a/src/StdLPersistent/StdLPersistent_Variable.hxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Variable.hxx similarity index 100% rename from src/StdLPersistent/StdLPersistent_Variable.hxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Variable.hxx diff --git a/src/StdLPersistent/StdLPersistent_Void.hxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Void.hxx similarity index 100% rename from src/StdLPersistent/StdLPersistent_Void.hxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_Void.hxx diff --git a/src/StdLPersistent/StdLPersistent_XLink.hxx b/src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_XLink.hxx similarity index 100% rename from src/StdLPersistent/StdLPersistent_XLink.hxx rename to src/ApplicationFramework/TKStdL/StdLPersistent/StdLPersistent_XLink.hxx diff --git a/src/ApplicationFramework/TKStdL/StdObjMgt/FILES.cmake b/src/ApplicationFramework/TKStdL/StdObjMgt/FILES.cmake new file mode 100644 index 0000000000..68f6e78858 --- /dev/null +++ b/src/ApplicationFramework/TKStdL/StdObjMgt/FILES.cmake @@ -0,0 +1,15 @@ +# Source files for StdObjMgt package +set(OCCT_StdObjMgt_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StdObjMgt_FILES + StdObjMgt_Attribute.hxx + StdObjMgt_MapOfInstantiators.hxx + StdObjMgt_Persistent.cxx + StdObjMgt_Persistent.hxx + StdObjMgt_ReadData.cxx + StdObjMgt_ReadData.hxx + StdObjMgt_WriteData.hxx + StdObjMgt_WriteData.cxx + StdObjMgt_SharedObject.hxx + StdObjMgt_TransientPersistentMap.hxx +) diff --git a/src/StdObjMgt/StdObjMgt_Attribute.hxx b/src/ApplicationFramework/TKStdL/StdObjMgt/StdObjMgt_Attribute.hxx similarity index 100% rename from src/StdObjMgt/StdObjMgt_Attribute.hxx rename to src/ApplicationFramework/TKStdL/StdObjMgt/StdObjMgt_Attribute.hxx diff --git a/src/StdObjMgt/StdObjMgt_MapOfInstantiators.hxx b/src/ApplicationFramework/TKStdL/StdObjMgt/StdObjMgt_MapOfInstantiators.hxx similarity index 100% rename from src/StdObjMgt/StdObjMgt_MapOfInstantiators.hxx rename to src/ApplicationFramework/TKStdL/StdObjMgt/StdObjMgt_MapOfInstantiators.hxx diff --git a/src/StdObjMgt/StdObjMgt_Persistent.cxx b/src/ApplicationFramework/TKStdL/StdObjMgt/StdObjMgt_Persistent.cxx similarity index 100% rename from src/StdObjMgt/StdObjMgt_Persistent.cxx rename to src/ApplicationFramework/TKStdL/StdObjMgt/StdObjMgt_Persistent.cxx diff --git a/src/StdObjMgt/StdObjMgt_Persistent.hxx b/src/ApplicationFramework/TKStdL/StdObjMgt/StdObjMgt_Persistent.hxx similarity index 100% rename from src/StdObjMgt/StdObjMgt_Persistent.hxx rename to src/ApplicationFramework/TKStdL/StdObjMgt/StdObjMgt_Persistent.hxx diff --git a/src/StdObjMgt/StdObjMgt_ReadData.cxx b/src/ApplicationFramework/TKStdL/StdObjMgt/StdObjMgt_ReadData.cxx similarity index 100% rename from src/StdObjMgt/StdObjMgt_ReadData.cxx rename to src/ApplicationFramework/TKStdL/StdObjMgt/StdObjMgt_ReadData.cxx diff --git a/src/StdObjMgt/StdObjMgt_ReadData.hxx b/src/ApplicationFramework/TKStdL/StdObjMgt/StdObjMgt_ReadData.hxx similarity index 100% rename from src/StdObjMgt/StdObjMgt_ReadData.hxx rename to src/ApplicationFramework/TKStdL/StdObjMgt/StdObjMgt_ReadData.hxx diff --git a/src/StdObjMgt/StdObjMgt_SharedObject.hxx b/src/ApplicationFramework/TKStdL/StdObjMgt/StdObjMgt_SharedObject.hxx similarity index 100% rename from src/StdObjMgt/StdObjMgt_SharedObject.hxx rename to src/ApplicationFramework/TKStdL/StdObjMgt/StdObjMgt_SharedObject.hxx diff --git a/src/StdObjMgt/StdObjMgt_TransientPersistentMap.hxx b/src/ApplicationFramework/TKStdL/StdObjMgt/StdObjMgt_TransientPersistentMap.hxx similarity index 100% rename from src/StdObjMgt/StdObjMgt_TransientPersistentMap.hxx rename to src/ApplicationFramework/TKStdL/StdObjMgt/StdObjMgt_TransientPersistentMap.hxx diff --git a/src/StdObjMgt/StdObjMgt_WriteData.cxx b/src/ApplicationFramework/TKStdL/StdObjMgt/StdObjMgt_WriteData.cxx similarity index 100% rename from src/StdObjMgt/StdObjMgt_WriteData.cxx rename to src/ApplicationFramework/TKStdL/StdObjMgt/StdObjMgt_WriteData.cxx diff --git a/src/StdObjMgt/StdObjMgt_WriteData.hxx b/src/ApplicationFramework/TKStdL/StdObjMgt/StdObjMgt_WriteData.hxx similarity index 100% rename from src/StdObjMgt/StdObjMgt_WriteData.hxx rename to src/ApplicationFramework/TKStdL/StdObjMgt/StdObjMgt_WriteData.hxx diff --git a/src/TKTObj/CMakeLists.txt b/src/ApplicationFramework/TKTObj/CMakeLists.txt similarity index 100% rename from src/TKTObj/CMakeLists.txt rename to src/ApplicationFramework/TKTObj/CMakeLists.txt diff --git a/src/ApplicationFramework/TKTObj/EXTERNLIB.cmake b/src/ApplicationFramework/TKTObj/EXTERNLIB.cmake new file mode 100644 index 0000000000..1ac1923438 --- /dev/null +++ b/src/ApplicationFramework/TKTObj/EXTERNLIB.cmake @@ -0,0 +1,7 @@ +# External dependencies for TKTObj +set(OCCT_TKTObj_EXTERNAL_LIBS + TKCDF + TKernel + TKMath + TKLCAF +) diff --git a/src/ApplicationFramework/TKTObj/FILES.cmake b/src/ApplicationFramework/TKTObj/FILES.cmake new file mode 100644 index 0000000000..cce8363d83 --- /dev/null +++ b/src/ApplicationFramework/TKTObj/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKTObj +set(OCCT_TKTObj_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKTObj_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ApplicationFramework/TKTObj/PACKAGES.cmake b/src/ApplicationFramework/TKTObj/PACKAGES.cmake new file mode 100644 index 0000000000..a56aaf895a --- /dev/null +++ b/src/ApplicationFramework/TKTObj/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKTObj toolkit +set(OCCT_TKTObj_LIST_OF_PACKAGES + TObj +) diff --git a/src/ApplicationFramework/TKTObj/TObj/FILES.cmake b/src/ApplicationFramework/TKTObj/TObj/FILES.cmake new file mode 100644 index 0000000000..d605ad6671 --- /dev/null +++ b/src/ApplicationFramework/TKTObj/TObj/FILES.cmake @@ -0,0 +1,50 @@ +# Source files for TObj package +set(OCCT_TObj_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TObj_FILES + TObj_Application.cxx + TObj_Application.hxx + TObj_Assistant.cxx + TObj_Assistant.hxx + TObj_CheckModel.cxx + TObj_CheckModel.hxx + TObj_Container.hxx + TObj_DeletingMode.hxx + TObj_HiddenPartition.cxx + TObj_HiddenPartition.hxx + TObj_LabelIterator.cxx + TObj_LabelIterator.hxx + TObj_Model.cxx + TObj_Model.hxx + TObj_ModelIterator.cxx + TObj_ModelIterator.hxx + TObj_Object.cxx + TObj_Object.hxx + TObj_ObjectIterator.cxx + TObj_ObjectIterator.hxx + TObj_OcafObjectIterator.cxx + TObj_OcafObjectIterator.hxx + TObj_Partition.cxx + TObj_Partition.hxx + TObj_Persistence.cxx + TObj_Persistence.hxx + TObj_ReferenceIterator.cxx + TObj_ReferenceIterator.hxx + TObj_SequenceIterator.cxx + TObj_SequenceIterator.hxx + TObj_SequenceOfIterator.hxx + TObj_SequenceOfObject.hxx + TObj_TIntSparseArray.cxx + TObj_TIntSparseArray.hxx + TObj_TModel.cxx + TObj_TModel.hxx + TObj_TNameContainer.cxx + TObj_TNameContainer.hxx + TObj_TObject.cxx + TObj_TObject.hxx + TObj_TReference.cxx + TObj_TReference.hxx + TObj_TXYZ.cxx + TObj_TXYZ.hxx + TObj_TObj_msg.pxx +) diff --git a/src/TObj/TObj_Application.cxx b/src/ApplicationFramework/TKTObj/TObj/TObj_Application.cxx similarity index 100% rename from src/TObj/TObj_Application.cxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_Application.cxx diff --git a/src/TObj/TObj_Application.hxx b/src/ApplicationFramework/TKTObj/TObj/TObj_Application.hxx similarity index 100% rename from src/TObj/TObj_Application.hxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_Application.hxx diff --git a/src/TObj/TObj_Assistant.cxx b/src/ApplicationFramework/TKTObj/TObj/TObj_Assistant.cxx similarity index 100% rename from src/TObj/TObj_Assistant.cxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_Assistant.cxx diff --git a/src/TObj/TObj_Assistant.hxx b/src/ApplicationFramework/TKTObj/TObj/TObj_Assistant.hxx similarity index 100% rename from src/TObj/TObj_Assistant.hxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_Assistant.hxx diff --git a/src/TObj/TObj_CheckModel.cxx b/src/ApplicationFramework/TKTObj/TObj/TObj_CheckModel.cxx similarity index 100% rename from src/TObj/TObj_CheckModel.cxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_CheckModel.cxx diff --git a/src/TObj/TObj_CheckModel.hxx b/src/ApplicationFramework/TKTObj/TObj/TObj_CheckModel.hxx similarity index 100% rename from src/TObj/TObj_CheckModel.hxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_CheckModel.hxx diff --git a/src/TObj/TObj_Container.hxx b/src/ApplicationFramework/TKTObj/TObj/TObj_Container.hxx similarity index 100% rename from src/TObj/TObj_Container.hxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_Container.hxx diff --git a/src/TObj/TObj_DeletingMode.hxx b/src/ApplicationFramework/TKTObj/TObj/TObj_DeletingMode.hxx similarity index 100% rename from src/TObj/TObj_DeletingMode.hxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_DeletingMode.hxx diff --git a/src/TObj/TObj_HiddenPartition.cxx b/src/ApplicationFramework/TKTObj/TObj/TObj_HiddenPartition.cxx similarity index 100% rename from src/TObj/TObj_HiddenPartition.cxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_HiddenPartition.cxx diff --git a/src/TObj/TObj_HiddenPartition.hxx b/src/ApplicationFramework/TKTObj/TObj/TObj_HiddenPartition.hxx similarity index 100% rename from src/TObj/TObj_HiddenPartition.hxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_HiddenPartition.hxx diff --git a/src/TObj/TObj_LabelIterator.cxx b/src/ApplicationFramework/TKTObj/TObj/TObj_LabelIterator.cxx similarity index 100% rename from src/TObj/TObj_LabelIterator.cxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_LabelIterator.cxx diff --git a/src/TObj/TObj_LabelIterator.hxx b/src/ApplicationFramework/TKTObj/TObj/TObj_LabelIterator.hxx similarity index 100% rename from src/TObj/TObj_LabelIterator.hxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_LabelIterator.hxx diff --git a/src/TObj/TObj_Model.cxx b/src/ApplicationFramework/TKTObj/TObj/TObj_Model.cxx similarity index 100% rename from src/TObj/TObj_Model.cxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_Model.cxx diff --git a/src/TObj/TObj_Model.hxx b/src/ApplicationFramework/TKTObj/TObj/TObj_Model.hxx similarity index 100% rename from src/TObj/TObj_Model.hxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_Model.hxx diff --git a/src/TObj/TObj_ModelIterator.cxx b/src/ApplicationFramework/TKTObj/TObj/TObj_ModelIterator.cxx similarity index 100% rename from src/TObj/TObj_ModelIterator.cxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_ModelIterator.cxx diff --git a/src/TObj/TObj_ModelIterator.hxx b/src/ApplicationFramework/TKTObj/TObj/TObj_ModelIterator.hxx similarity index 100% rename from src/TObj/TObj_ModelIterator.hxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_ModelIterator.hxx diff --git a/src/TObj/TObj_Object.cxx b/src/ApplicationFramework/TKTObj/TObj/TObj_Object.cxx similarity index 100% rename from src/TObj/TObj_Object.cxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_Object.cxx diff --git a/src/TObj/TObj_Object.hxx b/src/ApplicationFramework/TKTObj/TObj/TObj_Object.hxx similarity index 100% rename from src/TObj/TObj_Object.hxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_Object.hxx diff --git a/src/TObj/TObj_ObjectIterator.cxx b/src/ApplicationFramework/TKTObj/TObj/TObj_ObjectIterator.cxx similarity index 100% rename from src/TObj/TObj_ObjectIterator.cxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_ObjectIterator.cxx diff --git a/src/TObj/TObj_ObjectIterator.hxx b/src/ApplicationFramework/TKTObj/TObj/TObj_ObjectIterator.hxx similarity index 100% rename from src/TObj/TObj_ObjectIterator.hxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_ObjectIterator.hxx diff --git a/src/TObj/TObj_OcafObjectIterator.cxx b/src/ApplicationFramework/TKTObj/TObj/TObj_OcafObjectIterator.cxx similarity index 100% rename from src/TObj/TObj_OcafObjectIterator.cxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_OcafObjectIterator.cxx diff --git a/src/TObj/TObj_OcafObjectIterator.hxx b/src/ApplicationFramework/TKTObj/TObj/TObj_OcafObjectIterator.hxx similarity index 100% rename from src/TObj/TObj_OcafObjectIterator.hxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_OcafObjectIterator.hxx diff --git a/src/TObj/TObj_Partition.cxx b/src/ApplicationFramework/TKTObj/TObj/TObj_Partition.cxx similarity index 100% rename from src/TObj/TObj_Partition.cxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_Partition.cxx diff --git a/src/TObj/TObj_Partition.hxx b/src/ApplicationFramework/TKTObj/TObj/TObj_Partition.hxx similarity index 100% rename from src/TObj/TObj_Partition.hxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_Partition.hxx diff --git a/src/TObj/TObj_Persistence.cxx b/src/ApplicationFramework/TKTObj/TObj/TObj_Persistence.cxx similarity index 100% rename from src/TObj/TObj_Persistence.cxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_Persistence.cxx diff --git a/src/TObj/TObj_Persistence.hxx b/src/ApplicationFramework/TKTObj/TObj/TObj_Persistence.hxx similarity index 100% rename from src/TObj/TObj_Persistence.hxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_Persistence.hxx diff --git a/src/TObj/TObj_ReferenceIterator.cxx b/src/ApplicationFramework/TKTObj/TObj/TObj_ReferenceIterator.cxx similarity index 100% rename from src/TObj/TObj_ReferenceIterator.cxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_ReferenceIterator.cxx diff --git a/src/TObj/TObj_ReferenceIterator.hxx b/src/ApplicationFramework/TKTObj/TObj/TObj_ReferenceIterator.hxx similarity index 100% rename from src/TObj/TObj_ReferenceIterator.hxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_ReferenceIterator.hxx diff --git a/src/TObj/TObj_SequenceIterator.cxx b/src/ApplicationFramework/TKTObj/TObj/TObj_SequenceIterator.cxx similarity index 100% rename from src/TObj/TObj_SequenceIterator.cxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_SequenceIterator.cxx diff --git a/src/TObj/TObj_SequenceIterator.hxx b/src/ApplicationFramework/TKTObj/TObj/TObj_SequenceIterator.hxx similarity index 100% rename from src/TObj/TObj_SequenceIterator.hxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_SequenceIterator.hxx diff --git a/src/TObj/TObj_SequenceOfIterator.hxx b/src/ApplicationFramework/TKTObj/TObj/TObj_SequenceOfIterator.hxx similarity index 100% rename from src/TObj/TObj_SequenceOfIterator.hxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_SequenceOfIterator.hxx diff --git a/src/TObj/TObj_SequenceOfObject.hxx b/src/ApplicationFramework/TKTObj/TObj/TObj_SequenceOfObject.hxx similarity index 100% rename from src/TObj/TObj_SequenceOfObject.hxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_SequenceOfObject.hxx diff --git a/src/TObj/TObj_TIntSparseArray.cxx b/src/ApplicationFramework/TKTObj/TObj/TObj_TIntSparseArray.cxx similarity index 100% rename from src/TObj/TObj_TIntSparseArray.cxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_TIntSparseArray.cxx diff --git a/src/TObj/TObj_TIntSparseArray.hxx b/src/ApplicationFramework/TKTObj/TObj/TObj_TIntSparseArray.hxx similarity index 100% rename from src/TObj/TObj_TIntSparseArray.hxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_TIntSparseArray.hxx diff --git a/src/TObj/TObj_TModel.cxx b/src/ApplicationFramework/TKTObj/TObj/TObj_TModel.cxx similarity index 100% rename from src/TObj/TObj_TModel.cxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_TModel.cxx diff --git a/src/TObj/TObj_TModel.hxx b/src/ApplicationFramework/TKTObj/TObj/TObj_TModel.hxx similarity index 100% rename from src/TObj/TObj_TModel.hxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_TModel.hxx diff --git a/src/TObj/TObj_TNameContainer.cxx b/src/ApplicationFramework/TKTObj/TObj/TObj_TNameContainer.cxx similarity index 100% rename from src/TObj/TObj_TNameContainer.cxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_TNameContainer.cxx diff --git a/src/TObj/TObj_TNameContainer.hxx b/src/ApplicationFramework/TKTObj/TObj/TObj_TNameContainer.hxx similarity index 100% rename from src/TObj/TObj_TNameContainer.hxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_TNameContainer.hxx diff --git a/src/TObj/TObj_TObj_msg.pxx b/src/ApplicationFramework/TKTObj/TObj/TObj_TObj_msg.pxx similarity index 100% rename from src/TObj/TObj_TObj_msg.pxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_TObj_msg.pxx diff --git a/src/TObj/TObj_TObject.cxx b/src/ApplicationFramework/TKTObj/TObj/TObj_TObject.cxx similarity index 100% rename from src/TObj/TObj_TObject.cxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_TObject.cxx diff --git a/src/TObj/TObj_TObject.hxx b/src/ApplicationFramework/TKTObj/TObj/TObj_TObject.hxx similarity index 100% rename from src/TObj/TObj_TObject.hxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_TObject.hxx diff --git a/src/TObj/TObj_TReference.cxx b/src/ApplicationFramework/TKTObj/TObj/TObj_TReference.cxx similarity index 100% rename from src/TObj/TObj_TReference.cxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_TReference.cxx diff --git a/src/TObj/TObj_TReference.hxx b/src/ApplicationFramework/TKTObj/TObj/TObj_TReference.hxx similarity index 100% rename from src/TObj/TObj_TReference.hxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_TReference.hxx diff --git a/src/TObj/TObj_TXYZ.cxx b/src/ApplicationFramework/TKTObj/TObj/TObj_TXYZ.cxx similarity index 100% rename from src/TObj/TObj_TXYZ.cxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_TXYZ.cxx diff --git a/src/TObj/TObj_TXYZ.hxx b/src/ApplicationFramework/TKTObj/TObj/TObj_TXYZ.hxx similarity index 100% rename from src/TObj/TObj_TXYZ.hxx rename to src/ApplicationFramework/TKTObj/TObj/TObj_TXYZ.hxx diff --git a/src/TKVCAF/CMakeLists.txt b/src/ApplicationFramework/TKVCAF/CMakeLists.txt similarity index 100% rename from src/TKVCAF/CMakeLists.txt rename to src/ApplicationFramework/TKVCAF/CMakeLists.txt diff --git a/src/ApplicationFramework/TKVCAF/EXTERNLIB.cmake b/src/ApplicationFramework/TKVCAF/EXTERNLIB.cmake new file mode 100644 index 0000000000..181f2c4ae2 --- /dev/null +++ b/src/ApplicationFramework/TKVCAF/EXTERNLIB.cmake @@ -0,0 +1,16 @@ +# External dependencies for TKVCAF +set(OCCT_TKVCAF_EXTERNAL_LIBS + TKernel + TKGeomBase + TKBRep + TKTopAlgo + TKMath + TKService + TKG2d + TKG3d + TKCDF + TKLCAF + TKBO + TKCAF + TKV3d +) diff --git a/src/ApplicationFramework/TKVCAF/FILES.cmake b/src/ApplicationFramework/TKVCAF/FILES.cmake new file mode 100644 index 0000000000..8a442439df --- /dev/null +++ b/src/ApplicationFramework/TKVCAF/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKVCAF +set(OCCT_TKVCAF_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKVCAF_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ApplicationFramework/TKVCAF/PACKAGES.cmake b/src/ApplicationFramework/TKVCAF/PACKAGES.cmake new file mode 100644 index 0000000000..bcaee8452c --- /dev/null +++ b/src/ApplicationFramework/TKVCAF/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKVCAF toolkit +set(OCCT_TKVCAF_LIST_OF_PACKAGES + TPrsStd +) diff --git a/src/ApplicationFramework/TKVCAF/TPrsStd/FILES.cmake b/src/ApplicationFramework/TKVCAF/TPrsStd/FILES.cmake new file mode 100644 index 0000000000..58aac0b5bd --- /dev/null +++ b/src/ApplicationFramework/TKVCAF/TPrsStd/FILES.cmake @@ -0,0 +1,30 @@ +# Source files for TPrsStd package +set(OCCT_TPrsStd_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TPrsStd_FILES + GUID.txt + TPrsStd_AISPresentation.cxx + TPrsStd_AISPresentation.hxx + TPrsStd_AISViewer.cxx + TPrsStd_AISViewer.hxx + TPrsStd_AxisDriver.cxx + TPrsStd_AxisDriver.hxx + TPrsStd_ConstraintDriver.cxx + TPrsStd_ConstraintDriver.hxx + TPrsStd_ConstraintTools.cxx + TPrsStd_ConstraintTools.hxx + TPrsStd_DataMapIteratorOfDataMapOfGUIDDriver.hxx + TPrsStd_DataMapOfGUIDDriver.hxx + TPrsStd_Driver.cxx + TPrsStd_Driver.hxx + TPrsStd_DriverTable.cxx + TPrsStd_DriverTable.hxx + TPrsStd_GeometryDriver.cxx + TPrsStd_GeometryDriver.hxx + TPrsStd_NamedShapeDriver.cxx + TPrsStd_NamedShapeDriver.hxx + TPrsStd_PlaneDriver.cxx + TPrsStd_PlaneDriver.hxx + TPrsStd_PointDriver.cxx + TPrsStd_PointDriver.hxx +) diff --git a/src/TPrsStd/GUID.txt b/src/ApplicationFramework/TKVCAF/TPrsStd/GUID.txt similarity index 100% rename from src/TPrsStd/GUID.txt rename to src/ApplicationFramework/TKVCAF/TPrsStd/GUID.txt diff --git a/src/TPrsStd/TPrsStd_AISPresentation.cxx b/src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_AISPresentation.cxx similarity index 100% rename from src/TPrsStd/TPrsStd_AISPresentation.cxx rename to src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_AISPresentation.cxx diff --git a/src/TPrsStd/TPrsStd_AISPresentation.hxx b/src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_AISPresentation.hxx similarity index 100% rename from src/TPrsStd/TPrsStd_AISPresentation.hxx rename to src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_AISPresentation.hxx diff --git a/src/TPrsStd/TPrsStd_AISViewer.cxx b/src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_AISViewer.cxx similarity index 100% rename from src/TPrsStd/TPrsStd_AISViewer.cxx rename to src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_AISViewer.cxx diff --git a/src/TPrsStd/TPrsStd_AISViewer.hxx b/src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_AISViewer.hxx similarity index 100% rename from src/TPrsStd/TPrsStd_AISViewer.hxx rename to src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_AISViewer.hxx diff --git a/src/TPrsStd/TPrsStd_AxisDriver.cxx b/src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_AxisDriver.cxx similarity index 100% rename from src/TPrsStd/TPrsStd_AxisDriver.cxx rename to src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_AxisDriver.cxx diff --git a/src/TPrsStd/TPrsStd_AxisDriver.hxx b/src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_AxisDriver.hxx similarity index 100% rename from src/TPrsStd/TPrsStd_AxisDriver.hxx rename to src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_AxisDriver.hxx diff --git a/src/TPrsStd/TPrsStd_ConstraintDriver.cxx b/src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_ConstraintDriver.cxx similarity index 100% rename from src/TPrsStd/TPrsStd_ConstraintDriver.cxx rename to src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_ConstraintDriver.cxx diff --git a/src/TPrsStd/TPrsStd_ConstraintDriver.hxx b/src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_ConstraintDriver.hxx similarity index 100% rename from src/TPrsStd/TPrsStd_ConstraintDriver.hxx rename to src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_ConstraintDriver.hxx diff --git a/src/TPrsStd/TPrsStd_ConstraintTools.cxx b/src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_ConstraintTools.cxx similarity index 100% rename from src/TPrsStd/TPrsStd_ConstraintTools.cxx rename to src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_ConstraintTools.cxx diff --git a/src/TPrsStd/TPrsStd_ConstraintTools.hxx b/src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_ConstraintTools.hxx similarity index 100% rename from src/TPrsStd/TPrsStd_ConstraintTools.hxx rename to src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_ConstraintTools.hxx diff --git a/src/TPrsStd/TPrsStd_DataMapIteratorOfDataMapOfGUIDDriver.hxx b/src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_DataMapIteratorOfDataMapOfGUIDDriver.hxx similarity index 100% rename from src/TPrsStd/TPrsStd_DataMapIteratorOfDataMapOfGUIDDriver.hxx rename to src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_DataMapIteratorOfDataMapOfGUIDDriver.hxx diff --git a/src/TPrsStd/TPrsStd_DataMapOfGUIDDriver.hxx b/src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_DataMapOfGUIDDriver.hxx similarity index 100% rename from src/TPrsStd/TPrsStd_DataMapOfGUIDDriver.hxx rename to src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_DataMapOfGUIDDriver.hxx diff --git a/src/TPrsStd/TPrsStd_Driver.cxx b/src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_Driver.cxx similarity index 100% rename from src/TPrsStd/TPrsStd_Driver.cxx rename to src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_Driver.cxx diff --git a/src/TPrsStd/TPrsStd_Driver.hxx b/src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_Driver.hxx similarity index 100% rename from src/TPrsStd/TPrsStd_Driver.hxx rename to src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_Driver.hxx diff --git a/src/TPrsStd/TPrsStd_DriverTable.cxx b/src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_DriverTable.cxx similarity index 100% rename from src/TPrsStd/TPrsStd_DriverTable.cxx rename to src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_DriverTable.cxx diff --git a/src/TPrsStd/TPrsStd_DriverTable.hxx b/src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_DriverTable.hxx similarity index 100% rename from src/TPrsStd/TPrsStd_DriverTable.hxx rename to src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_DriverTable.hxx diff --git a/src/TPrsStd/TPrsStd_GeometryDriver.cxx b/src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_GeometryDriver.cxx similarity index 100% rename from src/TPrsStd/TPrsStd_GeometryDriver.cxx rename to src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_GeometryDriver.cxx diff --git a/src/TPrsStd/TPrsStd_GeometryDriver.hxx b/src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_GeometryDriver.hxx similarity index 100% rename from src/TPrsStd/TPrsStd_GeometryDriver.hxx rename to src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_GeometryDriver.hxx diff --git a/src/TPrsStd/TPrsStd_NamedShapeDriver.cxx b/src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_NamedShapeDriver.cxx similarity index 100% rename from src/TPrsStd/TPrsStd_NamedShapeDriver.cxx rename to src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_NamedShapeDriver.cxx diff --git a/src/TPrsStd/TPrsStd_NamedShapeDriver.hxx b/src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_NamedShapeDriver.hxx similarity index 100% rename from src/TPrsStd/TPrsStd_NamedShapeDriver.hxx rename to src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_NamedShapeDriver.hxx diff --git a/src/TPrsStd/TPrsStd_PlaneDriver.cxx b/src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_PlaneDriver.cxx similarity index 100% rename from src/TPrsStd/TPrsStd_PlaneDriver.cxx rename to src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_PlaneDriver.cxx diff --git a/src/TPrsStd/TPrsStd_PlaneDriver.hxx b/src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_PlaneDriver.hxx similarity index 100% rename from src/TPrsStd/TPrsStd_PlaneDriver.hxx rename to src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_PlaneDriver.hxx diff --git a/src/TPrsStd/TPrsStd_PointDriver.cxx b/src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_PointDriver.cxx similarity index 100% rename from src/TPrsStd/TPrsStd_PointDriver.cxx rename to src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_PointDriver.cxx diff --git a/src/TPrsStd/TPrsStd_PointDriver.hxx b/src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_PointDriver.hxx similarity index 100% rename from src/TPrsStd/TPrsStd_PointDriver.hxx rename to src/ApplicationFramework/TKVCAF/TPrsStd/TPrsStd_PointDriver.hxx diff --git a/src/TKXml/CMakeLists.txt b/src/ApplicationFramework/TKXml/CMakeLists.txt similarity index 100% rename from src/TKXml/CMakeLists.txt rename to src/ApplicationFramework/TKXml/CMakeLists.txt diff --git a/src/ApplicationFramework/TKXml/EXTERNLIB.cmake b/src/ApplicationFramework/TKXml/EXTERNLIB.cmake new file mode 100644 index 0000000000..dd0a5f85b4 --- /dev/null +++ b/src/ApplicationFramework/TKXml/EXTERNLIB.cmake @@ -0,0 +1,13 @@ +# External dependencies for TKXml +set(OCCT_TKXml_EXTERNAL_LIBS + TKCDF + TKernel + TKMath + TKBRep + TKG2d + TKGeomBase + TKG3d + TKLCAF + TKCAF + TKXmlL +) diff --git a/src/ApplicationFramework/TKXml/FILES.cmake b/src/ApplicationFramework/TKXml/FILES.cmake new file mode 100644 index 0000000000..2495a12468 --- /dev/null +++ b/src/ApplicationFramework/TKXml/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKXml +set(OCCT_TKXml_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKXml_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ApplicationFramework/TKXml/PACKAGES.cmake b/src/ApplicationFramework/TKXml/PACKAGES.cmake new file mode 100644 index 0000000000..ade33f5b40 --- /dev/null +++ b/src/ApplicationFramework/TKXml/PACKAGES.cmake @@ -0,0 +1,6 @@ +# Auto-generated list of packages for TKXml toolkit +set(OCCT_TKXml_LIST_OF_PACKAGES + XmlDrivers + XmlMDataXtd + XmlMNaming +) diff --git a/src/ApplicationFramework/TKXml/XmlDrivers/FILES.cmake b/src/ApplicationFramework/TKXml/XmlDrivers/FILES.cmake new file mode 100644 index 0000000000..aa5c042c2e --- /dev/null +++ b/src/ApplicationFramework/TKXml/XmlDrivers/FILES.cmake @@ -0,0 +1,11 @@ +# Source files for XmlDrivers package +set(OCCT_XmlDrivers_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XmlDrivers_FILES + XmlDrivers.cxx + XmlDrivers.hxx + XmlDrivers_DocumentRetrievalDriver.cxx + XmlDrivers_DocumentRetrievalDriver.hxx + XmlDrivers_DocumentStorageDriver.cxx + XmlDrivers_DocumentStorageDriver.hxx +) diff --git a/src/XmlDrivers/XmlDrivers.cxx b/src/ApplicationFramework/TKXml/XmlDrivers/XmlDrivers.cxx similarity index 100% rename from src/XmlDrivers/XmlDrivers.cxx rename to src/ApplicationFramework/TKXml/XmlDrivers/XmlDrivers.cxx diff --git a/src/XmlDrivers/XmlDrivers.hxx b/src/ApplicationFramework/TKXml/XmlDrivers/XmlDrivers.hxx similarity index 100% rename from src/XmlDrivers/XmlDrivers.hxx rename to src/ApplicationFramework/TKXml/XmlDrivers/XmlDrivers.hxx diff --git a/src/XmlDrivers/XmlDrivers_DocumentRetrievalDriver.cxx b/src/ApplicationFramework/TKXml/XmlDrivers/XmlDrivers_DocumentRetrievalDriver.cxx similarity index 100% rename from src/XmlDrivers/XmlDrivers_DocumentRetrievalDriver.cxx rename to src/ApplicationFramework/TKXml/XmlDrivers/XmlDrivers_DocumentRetrievalDriver.cxx diff --git a/src/XmlDrivers/XmlDrivers_DocumentRetrievalDriver.hxx b/src/ApplicationFramework/TKXml/XmlDrivers/XmlDrivers_DocumentRetrievalDriver.hxx similarity index 100% rename from src/XmlDrivers/XmlDrivers_DocumentRetrievalDriver.hxx rename to src/ApplicationFramework/TKXml/XmlDrivers/XmlDrivers_DocumentRetrievalDriver.hxx diff --git a/src/XmlDrivers/XmlDrivers_DocumentStorageDriver.cxx b/src/ApplicationFramework/TKXml/XmlDrivers/XmlDrivers_DocumentStorageDriver.cxx similarity index 100% rename from src/XmlDrivers/XmlDrivers_DocumentStorageDriver.cxx rename to src/ApplicationFramework/TKXml/XmlDrivers/XmlDrivers_DocumentStorageDriver.cxx diff --git a/src/XmlDrivers/XmlDrivers_DocumentStorageDriver.hxx b/src/ApplicationFramework/TKXml/XmlDrivers/XmlDrivers_DocumentStorageDriver.hxx similarity index 100% rename from src/XmlDrivers/XmlDrivers_DocumentStorageDriver.hxx rename to src/ApplicationFramework/TKXml/XmlDrivers/XmlDrivers_DocumentStorageDriver.hxx diff --git a/src/ApplicationFramework/TKXml/XmlMDataXtd/FILES.cmake b/src/ApplicationFramework/TKXml/XmlMDataXtd/FILES.cmake new file mode 100644 index 0000000000..ababba6162 --- /dev/null +++ b/src/ApplicationFramework/TKXml/XmlMDataXtd/FILES.cmake @@ -0,0 +1,19 @@ +# Source files for XmlMDataXtd package +set(OCCT_XmlMDataXtd_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XmlMDataXtd_FILES + XmlMDataXtd.cxx + XmlMDataXtd.hxx + XmlMDataXtd_ConstraintDriver.cxx + XmlMDataXtd_ConstraintDriver.hxx + XmlMDataXtd_GeometryDriver.cxx + XmlMDataXtd_GeometryDriver.hxx + XmlMDataXtd_PatternStdDriver.cxx + XmlMDataXtd_PatternStdDriver.hxx + XmlMDataXtd_PositionDriver.hxx + XmlMDataXtd_PositionDriver.cxx + XmlMDataXtd_PresentationDriver.hxx + XmlMDataXtd_PresentationDriver.cxx + XmlMDataXtd_TriangulationDriver.cxx + XmlMDataXtd_TriangulationDriver.hxx +) diff --git a/src/XmlMDataXtd/XmlMDataXtd.cxx b/src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd.cxx similarity index 100% rename from src/XmlMDataXtd/XmlMDataXtd.cxx rename to src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd.cxx diff --git a/src/XmlMDataXtd/XmlMDataXtd.hxx b/src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd.hxx similarity index 100% rename from src/XmlMDataXtd/XmlMDataXtd.hxx rename to src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd.hxx diff --git a/src/XmlMDataXtd/XmlMDataXtd_ConstraintDriver.cxx b/src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd_ConstraintDriver.cxx similarity index 100% rename from src/XmlMDataXtd/XmlMDataXtd_ConstraintDriver.cxx rename to src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd_ConstraintDriver.cxx diff --git a/src/XmlMDataXtd/XmlMDataXtd_ConstraintDriver.hxx b/src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd_ConstraintDriver.hxx similarity index 100% rename from src/XmlMDataXtd/XmlMDataXtd_ConstraintDriver.hxx rename to src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd_ConstraintDriver.hxx diff --git a/src/XmlMDataXtd/XmlMDataXtd_GeometryDriver.cxx b/src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd_GeometryDriver.cxx similarity index 100% rename from src/XmlMDataXtd/XmlMDataXtd_GeometryDriver.cxx rename to src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd_GeometryDriver.cxx diff --git a/src/XmlMDataXtd/XmlMDataXtd_GeometryDriver.hxx b/src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd_GeometryDriver.hxx similarity index 100% rename from src/XmlMDataXtd/XmlMDataXtd_GeometryDriver.hxx rename to src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd_GeometryDriver.hxx diff --git a/src/XmlMDataXtd/XmlMDataXtd_PatternStdDriver.cxx b/src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd_PatternStdDriver.cxx similarity index 100% rename from src/XmlMDataXtd/XmlMDataXtd_PatternStdDriver.cxx rename to src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd_PatternStdDriver.cxx diff --git a/src/XmlMDataXtd/XmlMDataXtd_PatternStdDriver.hxx b/src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd_PatternStdDriver.hxx similarity index 100% rename from src/XmlMDataXtd/XmlMDataXtd_PatternStdDriver.hxx rename to src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd_PatternStdDriver.hxx diff --git a/src/XmlMDataXtd/XmlMDataXtd_PositionDriver.cxx b/src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd_PositionDriver.cxx similarity index 100% rename from src/XmlMDataXtd/XmlMDataXtd_PositionDriver.cxx rename to src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd_PositionDriver.cxx diff --git a/src/XmlMDataXtd/XmlMDataXtd_PositionDriver.hxx b/src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd_PositionDriver.hxx similarity index 100% rename from src/XmlMDataXtd/XmlMDataXtd_PositionDriver.hxx rename to src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd_PositionDriver.hxx diff --git a/src/XmlMDataXtd/XmlMDataXtd_PresentationDriver.cxx b/src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd_PresentationDriver.cxx similarity index 100% rename from src/XmlMDataXtd/XmlMDataXtd_PresentationDriver.cxx rename to src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd_PresentationDriver.cxx diff --git a/src/XmlMDataXtd/XmlMDataXtd_PresentationDriver.hxx b/src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd_PresentationDriver.hxx similarity index 100% rename from src/XmlMDataXtd/XmlMDataXtd_PresentationDriver.hxx rename to src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd_PresentationDriver.hxx diff --git a/src/XmlMDataXtd/XmlMDataXtd_TriangulationDriver.cxx b/src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd_TriangulationDriver.cxx similarity index 100% rename from src/XmlMDataXtd/XmlMDataXtd_TriangulationDriver.cxx rename to src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd_TriangulationDriver.cxx diff --git a/src/XmlMDataXtd/XmlMDataXtd_TriangulationDriver.hxx b/src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd_TriangulationDriver.hxx similarity index 100% rename from src/XmlMDataXtd/XmlMDataXtd_TriangulationDriver.hxx rename to src/ApplicationFramework/TKXml/XmlMDataXtd/XmlMDataXtd_TriangulationDriver.hxx diff --git a/src/ApplicationFramework/TKXml/XmlMNaming/FILES.cmake b/src/ApplicationFramework/TKXml/XmlMNaming/FILES.cmake new file mode 100644 index 0000000000..65adabd80e --- /dev/null +++ b/src/ApplicationFramework/TKXml/XmlMNaming/FILES.cmake @@ -0,0 +1,14 @@ +# Source files for XmlMNaming package +set(OCCT_XmlMNaming_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XmlMNaming_FILES + XmlMNaming.cxx + XmlMNaming.hxx + XmlMNaming_NamedShapeDriver.cxx + XmlMNaming_NamedShapeDriver.hxx + XmlMNaming_NamedShapeDriver.lxx + XmlMNaming_NamingDriver.cxx + XmlMNaming_NamingDriver.hxx + XmlMNaming_Shape1.cxx + XmlMNaming_Shape1.hxx +) diff --git a/src/XmlMNaming/XmlMNaming.cxx b/src/ApplicationFramework/TKXml/XmlMNaming/XmlMNaming.cxx similarity index 100% rename from src/XmlMNaming/XmlMNaming.cxx rename to src/ApplicationFramework/TKXml/XmlMNaming/XmlMNaming.cxx diff --git a/src/XmlMNaming/XmlMNaming.hxx b/src/ApplicationFramework/TKXml/XmlMNaming/XmlMNaming.hxx similarity index 100% rename from src/XmlMNaming/XmlMNaming.hxx rename to src/ApplicationFramework/TKXml/XmlMNaming/XmlMNaming.hxx diff --git a/src/XmlMNaming/XmlMNaming_NamedShapeDriver.cxx b/src/ApplicationFramework/TKXml/XmlMNaming/XmlMNaming_NamedShapeDriver.cxx similarity index 100% rename from src/XmlMNaming/XmlMNaming_NamedShapeDriver.cxx rename to src/ApplicationFramework/TKXml/XmlMNaming/XmlMNaming_NamedShapeDriver.cxx diff --git a/src/XmlMNaming/XmlMNaming_NamedShapeDriver.hxx b/src/ApplicationFramework/TKXml/XmlMNaming/XmlMNaming_NamedShapeDriver.hxx similarity index 100% rename from src/XmlMNaming/XmlMNaming_NamedShapeDriver.hxx rename to src/ApplicationFramework/TKXml/XmlMNaming/XmlMNaming_NamedShapeDriver.hxx diff --git a/src/XmlMNaming/XmlMNaming_NamedShapeDriver.lxx b/src/ApplicationFramework/TKXml/XmlMNaming/XmlMNaming_NamedShapeDriver.lxx similarity index 100% rename from src/XmlMNaming/XmlMNaming_NamedShapeDriver.lxx rename to src/ApplicationFramework/TKXml/XmlMNaming/XmlMNaming_NamedShapeDriver.lxx diff --git a/src/XmlMNaming/XmlMNaming_NamingDriver.cxx b/src/ApplicationFramework/TKXml/XmlMNaming/XmlMNaming_NamingDriver.cxx similarity index 100% rename from src/XmlMNaming/XmlMNaming_NamingDriver.cxx rename to src/ApplicationFramework/TKXml/XmlMNaming/XmlMNaming_NamingDriver.cxx diff --git a/src/XmlMNaming/XmlMNaming_NamingDriver.hxx b/src/ApplicationFramework/TKXml/XmlMNaming/XmlMNaming_NamingDriver.hxx similarity index 100% rename from src/XmlMNaming/XmlMNaming_NamingDriver.hxx rename to src/ApplicationFramework/TKXml/XmlMNaming/XmlMNaming_NamingDriver.hxx diff --git a/src/XmlMNaming/XmlMNaming_Shape1.cxx b/src/ApplicationFramework/TKXml/XmlMNaming/XmlMNaming_Shape1.cxx similarity index 100% rename from src/XmlMNaming/XmlMNaming_Shape1.cxx rename to src/ApplicationFramework/TKXml/XmlMNaming/XmlMNaming_Shape1.cxx diff --git a/src/XmlMNaming/XmlMNaming_Shape1.hxx b/src/ApplicationFramework/TKXml/XmlMNaming/XmlMNaming_Shape1.hxx similarity index 100% rename from src/XmlMNaming/XmlMNaming_Shape1.hxx rename to src/ApplicationFramework/TKXml/XmlMNaming/XmlMNaming_Shape1.hxx diff --git a/src/TKXmlL/CMakeLists.txt b/src/ApplicationFramework/TKXmlL/CMakeLists.txt similarity index 100% rename from src/TKXmlL/CMakeLists.txt rename to src/ApplicationFramework/TKXmlL/CMakeLists.txt diff --git a/src/ApplicationFramework/TKXmlL/EXTERNLIB.cmake b/src/ApplicationFramework/TKXmlL/EXTERNLIB.cmake new file mode 100644 index 0000000000..6c3fc5ff96 --- /dev/null +++ b/src/ApplicationFramework/TKXmlL/EXTERNLIB.cmake @@ -0,0 +1,7 @@ +# External dependencies for TKXmlL +set(OCCT_TKXmlL_EXTERNAL_LIBS + TKCDF + TKernel + TKMath + TKLCAF +) diff --git a/src/ApplicationFramework/TKXmlL/FILES.cmake b/src/ApplicationFramework/TKXmlL/FILES.cmake new file mode 100644 index 0000000000..558e0f8007 --- /dev/null +++ b/src/ApplicationFramework/TKXmlL/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKXmlL +set(OCCT_TKXmlL_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKXmlL_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ApplicationFramework/TKXmlL/PACKAGES.cmake b/src/ApplicationFramework/TKXmlL/PACKAGES.cmake new file mode 100644 index 0000000000..02d34e29ab --- /dev/null +++ b/src/ApplicationFramework/TKXmlL/PACKAGES.cmake @@ -0,0 +1,9 @@ +# Auto-generated list of packages for TKXmlL toolkit +set(OCCT_TKXmlL_LIST_OF_PACKAGES + XmlLDrivers + XmlMDF + XmlMDataStd + XmlMDocStd + XmlMFunction + XmlObjMgt +) diff --git a/src/ApplicationFramework/TKXmlL/XmlLDrivers/FILES.cmake b/src/ApplicationFramework/TKXmlL/XmlLDrivers/FILES.cmake new file mode 100644 index 0000000000..c09a982f43 --- /dev/null +++ b/src/ApplicationFramework/TKXmlL/XmlLDrivers/FILES.cmake @@ -0,0 +1,14 @@ +# Source files for XmlLDrivers package +set(OCCT_XmlLDrivers_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XmlLDrivers_FILES + XmlLDrivers.cxx + XmlLDrivers.hxx + XmlLDrivers_DocumentRetrievalDriver.cxx + XmlLDrivers_DocumentRetrievalDriver.hxx + XmlLDrivers_DocumentStorageDriver.cxx + XmlLDrivers_DocumentStorageDriver.hxx + XmlLDrivers_NamespaceDef.cxx + XmlLDrivers_NamespaceDef.hxx + XmlLDrivers_SequenceOfNamespaceDef.hxx +) diff --git a/src/XmlLDrivers/XmlLDrivers.cxx b/src/ApplicationFramework/TKXmlL/XmlLDrivers/XmlLDrivers.cxx similarity index 100% rename from src/XmlLDrivers/XmlLDrivers.cxx rename to src/ApplicationFramework/TKXmlL/XmlLDrivers/XmlLDrivers.cxx diff --git a/src/XmlLDrivers/XmlLDrivers.hxx b/src/ApplicationFramework/TKXmlL/XmlLDrivers/XmlLDrivers.hxx similarity index 100% rename from src/XmlLDrivers/XmlLDrivers.hxx rename to src/ApplicationFramework/TKXmlL/XmlLDrivers/XmlLDrivers.hxx diff --git a/src/XmlLDrivers/XmlLDrivers_DocumentRetrievalDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlLDrivers/XmlLDrivers_DocumentRetrievalDriver.cxx similarity index 100% rename from src/XmlLDrivers/XmlLDrivers_DocumentRetrievalDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlLDrivers/XmlLDrivers_DocumentRetrievalDriver.cxx diff --git a/src/XmlLDrivers/XmlLDrivers_DocumentRetrievalDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlLDrivers/XmlLDrivers_DocumentRetrievalDriver.hxx similarity index 100% rename from src/XmlLDrivers/XmlLDrivers_DocumentRetrievalDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlLDrivers/XmlLDrivers_DocumentRetrievalDriver.hxx diff --git a/src/XmlLDrivers/XmlLDrivers_DocumentStorageDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlLDrivers/XmlLDrivers_DocumentStorageDriver.cxx similarity index 100% rename from src/XmlLDrivers/XmlLDrivers_DocumentStorageDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlLDrivers/XmlLDrivers_DocumentStorageDriver.cxx diff --git a/src/XmlLDrivers/XmlLDrivers_DocumentStorageDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlLDrivers/XmlLDrivers_DocumentStorageDriver.hxx similarity index 100% rename from src/XmlLDrivers/XmlLDrivers_DocumentStorageDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlLDrivers/XmlLDrivers_DocumentStorageDriver.hxx diff --git a/src/XmlLDrivers/XmlLDrivers_NamespaceDef.cxx b/src/ApplicationFramework/TKXmlL/XmlLDrivers/XmlLDrivers_NamespaceDef.cxx similarity index 100% rename from src/XmlLDrivers/XmlLDrivers_NamespaceDef.cxx rename to src/ApplicationFramework/TKXmlL/XmlLDrivers/XmlLDrivers_NamespaceDef.cxx diff --git a/src/XmlLDrivers/XmlLDrivers_NamespaceDef.hxx b/src/ApplicationFramework/TKXmlL/XmlLDrivers/XmlLDrivers_NamespaceDef.hxx similarity index 100% rename from src/XmlLDrivers/XmlLDrivers_NamespaceDef.hxx rename to src/ApplicationFramework/TKXmlL/XmlLDrivers/XmlLDrivers_NamespaceDef.hxx diff --git a/src/XmlLDrivers/XmlLDrivers_SequenceOfNamespaceDef.hxx b/src/ApplicationFramework/TKXmlL/XmlLDrivers/XmlLDrivers_SequenceOfNamespaceDef.hxx similarity index 100% rename from src/XmlLDrivers/XmlLDrivers_SequenceOfNamespaceDef.hxx rename to src/ApplicationFramework/TKXmlL/XmlLDrivers/XmlLDrivers_SequenceOfNamespaceDef.hxx diff --git a/src/ApplicationFramework/TKXmlL/XmlMDF/FILES.cmake b/src/ApplicationFramework/TKXmlL/XmlMDF/FILES.cmake new file mode 100644 index 0000000000..ec93069fcf --- /dev/null +++ b/src/ApplicationFramework/TKXmlL/XmlMDF/FILES.cmake @@ -0,0 +1,21 @@ +# Source files for XmlMDF package +set(OCCT_XmlMDF_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XmlMDF_FILES + XmlMDF.cxx + XmlMDF.hxx + XmlMDF_ADriver.cxx + XmlMDF_ADriver.hxx + XmlMDF_ADriverTable.cxx + XmlMDF_ADriverTable.hxx + XmlMDF_DataMapIteratorOfMapOfDriver.hxx + XmlMDF_DataMapIteratorOfTypeADriverMap.hxx + XmlMDF_MapOfDriver.hxx + XmlMDF_ReferenceDriver.cxx + XmlMDF_ReferenceDriver.hxx + XmlMDF_TagSourceDriver.cxx + XmlMDF_TagSourceDriver.hxx + XmlMDF_TypeADriverMap.hxx + XmlMDF_DerivedDriver.cxx + XmlMDF_DerivedDriver.hxx +) diff --git a/src/XmlMDF/XmlMDF.cxx b/src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF.cxx similarity index 100% rename from src/XmlMDF/XmlMDF.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF.cxx diff --git a/src/XmlMDF/XmlMDF.hxx b/src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF.hxx similarity index 100% rename from src/XmlMDF/XmlMDF.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF.hxx diff --git a/src/XmlMDF/XmlMDF_ADriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_ADriver.cxx similarity index 100% rename from src/XmlMDF/XmlMDF_ADriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_ADriver.cxx diff --git a/src/XmlMDF/XmlMDF_ADriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_ADriver.hxx similarity index 100% rename from src/XmlMDF/XmlMDF_ADriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_ADriver.hxx diff --git a/src/XmlMDF/XmlMDF_ADriverTable.cxx b/src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_ADriverTable.cxx similarity index 100% rename from src/XmlMDF/XmlMDF_ADriverTable.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_ADriverTable.cxx diff --git a/src/XmlMDF/XmlMDF_ADriverTable.hxx b/src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_ADriverTable.hxx similarity index 100% rename from src/XmlMDF/XmlMDF_ADriverTable.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_ADriverTable.hxx diff --git a/src/XmlMDF/XmlMDF_DataMapIteratorOfMapOfDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_DataMapIteratorOfMapOfDriver.hxx similarity index 100% rename from src/XmlMDF/XmlMDF_DataMapIteratorOfMapOfDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_DataMapIteratorOfMapOfDriver.hxx diff --git a/src/XmlMDF/XmlMDF_DataMapIteratorOfTypeADriverMap.hxx b/src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_DataMapIteratorOfTypeADriverMap.hxx similarity index 100% rename from src/XmlMDF/XmlMDF_DataMapIteratorOfTypeADriverMap.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_DataMapIteratorOfTypeADriverMap.hxx diff --git a/src/XmlMDF/XmlMDF_DerivedDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_DerivedDriver.cxx similarity index 100% rename from src/XmlMDF/XmlMDF_DerivedDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_DerivedDriver.cxx diff --git a/src/XmlMDF/XmlMDF_DerivedDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_DerivedDriver.hxx similarity index 100% rename from src/XmlMDF/XmlMDF_DerivedDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_DerivedDriver.hxx diff --git a/src/XmlMDF/XmlMDF_MapOfDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_MapOfDriver.hxx similarity index 100% rename from src/XmlMDF/XmlMDF_MapOfDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_MapOfDriver.hxx diff --git a/src/XmlMDF/XmlMDF_ReferenceDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_ReferenceDriver.cxx similarity index 100% rename from src/XmlMDF/XmlMDF_ReferenceDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_ReferenceDriver.cxx diff --git a/src/XmlMDF/XmlMDF_ReferenceDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_ReferenceDriver.hxx similarity index 100% rename from src/XmlMDF/XmlMDF_ReferenceDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_ReferenceDriver.hxx diff --git a/src/XmlMDF/XmlMDF_TagSourceDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_TagSourceDriver.cxx similarity index 100% rename from src/XmlMDF/XmlMDF_TagSourceDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_TagSourceDriver.cxx diff --git a/src/XmlMDF/XmlMDF_TagSourceDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_TagSourceDriver.hxx similarity index 100% rename from src/XmlMDF/XmlMDF_TagSourceDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_TagSourceDriver.hxx diff --git a/src/XmlMDF/XmlMDF_TypeADriverMap.hxx b/src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_TypeADriverMap.hxx similarity index 100% rename from src/XmlMDF/XmlMDF_TypeADriverMap.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDF/XmlMDF_TypeADriverMap.hxx diff --git a/src/ApplicationFramework/TKXmlL/XmlMDataStd/FILES.cmake b/src/ApplicationFramework/TKXmlL/XmlMDataStd/FILES.cmake new file mode 100644 index 0000000000..ad3ca58c32 --- /dev/null +++ b/src/ApplicationFramework/TKXmlL/XmlMDataStd/FILES.cmake @@ -0,0 +1,51 @@ +# Source files for XmlMDataStd package +set(OCCT_XmlMDataStd_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XmlMDataStd_FILES + XmlMDataStd.cxx + XmlMDataStd.hxx + XmlMDataStd_AsciiStringDriver.cxx + XmlMDataStd_AsciiStringDriver.hxx + XmlMDataStd_BooleanArrayDriver.cxx + XmlMDataStd_BooleanArrayDriver.hxx + XmlMDataStd_BooleanListDriver.cxx + XmlMDataStd_BooleanListDriver.hxx + XmlMDataStd_ByteArrayDriver.cxx + XmlMDataStd_ByteArrayDriver.hxx + XmlMDataStd_ExpressionDriver.cxx + XmlMDataStd_ExpressionDriver.hxx + XmlMDataStd_ExtStringArrayDriver.cxx + XmlMDataStd_ExtStringArrayDriver.hxx + XmlMDataStd_ExtStringListDriver.cxx + XmlMDataStd_ExtStringListDriver.hxx + XmlMDataStd_IntegerArrayDriver.cxx + XmlMDataStd_IntegerArrayDriver.hxx + XmlMDataStd_IntegerDriver.cxx + XmlMDataStd_IntegerDriver.hxx + XmlMDataStd_IntegerListDriver.cxx + XmlMDataStd_IntegerListDriver.hxx + XmlMDataStd_IntPackedMapDriver.cxx + XmlMDataStd_IntPackedMapDriver.hxx + XmlMDataStd_NamedDataDriver.cxx + XmlMDataStd_NamedDataDriver.hxx + XmlMDataStd_GenericExtStringDriver.cxx + XmlMDataStd_GenericExtStringDriver.hxx + XmlMDataStd_RealArrayDriver.cxx + XmlMDataStd_RealArrayDriver.hxx + XmlMDataStd_RealDriver.cxx + XmlMDataStd_RealDriver.hxx + XmlMDataStd_RealListDriver.cxx + XmlMDataStd_RealListDriver.hxx + XmlMDataStd_ReferenceArrayDriver.cxx + XmlMDataStd_ReferenceArrayDriver.hxx + XmlMDataStd_ReferenceListDriver.cxx + XmlMDataStd_ReferenceListDriver.hxx + XmlMDataStd_GenericEmptyDriver.cxx + XmlMDataStd_GenericEmptyDriver.hxx + XmlMDataStd_TreeNodeDriver.cxx + XmlMDataStd_TreeNodeDriver.hxx + XmlMDataStd_UAttributeDriver.cxx + XmlMDataStd_UAttributeDriver.hxx + XmlMDataStd_VariableDriver.cxx + XmlMDataStd_VariableDriver.hxx +) diff --git a/src/XmlMDataStd/XmlMDataStd.cxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd.cxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd.cxx diff --git a/src/XmlMDataStd/XmlMDataStd.hxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd.hxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd.hxx diff --git a/src/XmlMDataStd/XmlMDataStd_AsciiStringDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_AsciiStringDriver.cxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_AsciiStringDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_AsciiStringDriver.cxx diff --git a/src/XmlMDataStd/XmlMDataStd_AsciiStringDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_AsciiStringDriver.hxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_AsciiStringDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_AsciiStringDriver.hxx diff --git a/src/XmlMDataStd/XmlMDataStd_BooleanArrayDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_BooleanArrayDriver.cxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_BooleanArrayDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_BooleanArrayDriver.cxx diff --git a/src/XmlMDataStd/XmlMDataStd_BooleanArrayDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_BooleanArrayDriver.hxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_BooleanArrayDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_BooleanArrayDriver.hxx diff --git a/src/XmlMDataStd/XmlMDataStd_BooleanListDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_BooleanListDriver.cxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_BooleanListDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_BooleanListDriver.cxx diff --git a/src/XmlMDataStd/XmlMDataStd_BooleanListDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_BooleanListDriver.hxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_BooleanListDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_BooleanListDriver.hxx diff --git a/src/XmlMDataStd/XmlMDataStd_ByteArrayDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_ByteArrayDriver.cxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_ByteArrayDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_ByteArrayDriver.cxx diff --git a/src/XmlMDataStd/XmlMDataStd_ByteArrayDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_ByteArrayDriver.hxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_ByteArrayDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_ByteArrayDriver.hxx diff --git a/src/XmlMDataStd/XmlMDataStd_ExpressionDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_ExpressionDriver.cxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_ExpressionDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_ExpressionDriver.cxx diff --git a/src/XmlMDataStd/XmlMDataStd_ExpressionDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_ExpressionDriver.hxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_ExpressionDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_ExpressionDriver.hxx diff --git a/src/XmlMDataStd/XmlMDataStd_ExtStringArrayDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_ExtStringArrayDriver.cxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_ExtStringArrayDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_ExtStringArrayDriver.cxx diff --git a/src/XmlMDataStd/XmlMDataStd_ExtStringArrayDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_ExtStringArrayDriver.hxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_ExtStringArrayDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_ExtStringArrayDriver.hxx diff --git a/src/XmlMDataStd/XmlMDataStd_ExtStringListDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_ExtStringListDriver.cxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_ExtStringListDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_ExtStringListDriver.cxx diff --git a/src/XmlMDataStd/XmlMDataStd_ExtStringListDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_ExtStringListDriver.hxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_ExtStringListDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_ExtStringListDriver.hxx diff --git a/src/XmlMDataStd/XmlMDataStd_GenericEmptyDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_GenericEmptyDriver.cxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_GenericEmptyDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_GenericEmptyDriver.cxx diff --git a/src/XmlMDataStd/XmlMDataStd_GenericEmptyDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_GenericEmptyDriver.hxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_GenericEmptyDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_GenericEmptyDriver.hxx diff --git a/src/XmlMDataStd/XmlMDataStd_GenericExtStringDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_GenericExtStringDriver.cxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_GenericExtStringDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_GenericExtStringDriver.cxx diff --git a/src/XmlMDataStd/XmlMDataStd_GenericExtStringDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_GenericExtStringDriver.hxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_GenericExtStringDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_GenericExtStringDriver.hxx diff --git a/src/XmlMDataStd/XmlMDataStd_IntPackedMapDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_IntPackedMapDriver.cxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_IntPackedMapDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_IntPackedMapDriver.cxx diff --git a/src/XmlMDataStd/XmlMDataStd_IntPackedMapDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_IntPackedMapDriver.hxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_IntPackedMapDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_IntPackedMapDriver.hxx diff --git a/src/XmlMDataStd/XmlMDataStd_IntegerArrayDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_IntegerArrayDriver.cxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_IntegerArrayDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_IntegerArrayDriver.cxx diff --git a/src/XmlMDataStd/XmlMDataStd_IntegerArrayDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_IntegerArrayDriver.hxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_IntegerArrayDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_IntegerArrayDriver.hxx diff --git a/src/XmlMDataStd/XmlMDataStd_IntegerDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_IntegerDriver.cxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_IntegerDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_IntegerDriver.cxx diff --git a/src/XmlMDataStd/XmlMDataStd_IntegerDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_IntegerDriver.hxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_IntegerDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_IntegerDriver.hxx diff --git a/src/XmlMDataStd/XmlMDataStd_IntegerListDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_IntegerListDriver.cxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_IntegerListDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_IntegerListDriver.cxx diff --git a/src/XmlMDataStd/XmlMDataStd_IntegerListDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_IntegerListDriver.hxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_IntegerListDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_IntegerListDriver.hxx diff --git a/src/XmlMDataStd/XmlMDataStd_NamedDataDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_NamedDataDriver.cxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_NamedDataDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_NamedDataDriver.cxx diff --git a/src/XmlMDataStd/XmlMDataStd_NamedDataDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_NamedDataDriver.hxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_NamedDataDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_NamedDataDriver.hxx diff --git a/src/XmlMDataStd/XmlMDataStd_RealArrayDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_RealArrayDriver.cxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_RealArrayDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_RealArrayDriver.cxx diff --git a/src/XmlMDataStd/XmlMDataStd_RealArrayDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_RealArrayDriver.hxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_RealArrayDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_RealArrayDriver.hxx diff --git a/src/XmlMDataStd/XmlMDataStd_RealDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_RealDriver.cxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_RealDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_RealDriver.cxx diff --git a/src/XmlMDataStd/XmlMDataStd_RealDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_RealDriver.hxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_RealDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_RealDriver.hxx diff --git a/src/XmlMDataStd/XmlMDataStd_RealListDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_RealListDriver.cxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_RealListDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_RealListDriver.cxx diff --git a/src/XmlMDataStd/XmlMDataStd_RealListDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_RealListDriver.hxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_RealListDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_RealListDriver.hxx diff --git a/src/XmlMDataStd/XmlMDataStd_ReferenceArrayDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_ReferenceArrayDriver.cxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_ReferenceArrayDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_ReferenceArrayDriver.cxx diff --git a/src/XmlMDataStd/XmlMDataStd_ReferenceArrayDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_ReferenceArrayDriver.hxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_ReferenceArrayDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_ReferenceArrayDriver.hxx diff --git a/src/XmlMDataStd/XmlMDataStd_ReferenceListDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_ReferenceListDriver.cxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_ReferenceListDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_ReferenceListDriver.cxx diff --git a/src/XmlMDataStd/XmlMDataStd_ReferenceListDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_ReferenceListDriver.hxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_ReferenceListDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_ReferenceListDriver.hxx diff --git a/src/XmlMDataStd/XmlMDataStd_TreeNodeDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_TreeNodeDriver.cxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_TreeNodeDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_TreeNodeDriver.cxx diff --git a/src/XmlMDataStd/XmlMDataStd_TreeNodeDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_TreeNodeDriver.hxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_TreeNodeDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_TreeNodeDriver.hxx diff --git a/src/XmlMDataStd/XmlMDataStd_UAttributeDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_UAttributeDriver.cxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_UAttributeDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_UAttributeDriver.cxx diff --git a/src/XmlMDataStd/XmlMDataStd_UAttributeDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_UAttributeDriver.hxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_UAttributeDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_UAttributeDriver.hxx diff --git a/src/XmlMDataStd/XmlMDataStd_VariableDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_VariableDriver.cxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_VariableDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_VariableDriver.cxx diff --git a/src/XmlMDataStd/XmlMDataStd_VariableDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_VariableDriver.hxx similarity index 100% rename from src/XmlMDataStd/XmlMDataStd_VariableDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDataStd/XmlMDataStd_VariableDriver.hxx diff --git a/src/ApplicationFramework/TKXmlL/XmlMDocStd/FILES.cmake b/src/ApplicationFramework/TKXmlL/XmlMDocStd/FILES.cmake new file mode 100644 index 0000000000..4e25d52bea --- /dev/null +++ b/src/ApplicationFramework/TKXmlL/XmlMDocStd/FILES.cmake @@ -0,0 +1,9 @@ +# Source files for XmlMDocStd package +set(OCCT_XmlMDocStd_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XmlMDocStd_FILES + XmlMDocStd.cxx + XmlMDocStd.hxx + XmlMDocStd_XLinkDriver.cxx + XmlMDocStd_XLinkDriver.hxx +) diff --git a/src/XmlMDocStd/XmlMDocStd.cxx b/src/ApplicationFramework/TKXmlL/XmlMDocStd/XmlMDocStd.cxx similarity index 100% rename from src/XmlMDocStd/XmlMDocStd.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDocStd/XmlMDocStd.cxx diff --git a/src/XmlMDocStd/XmlMDocStd.hxx b/src/ApplicationFramework/TKXmlL/XmlMDocStd/XmlMDocStd.hxx similarity index 100% rename from src/XmlMDocStd/XmlMDocStd.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDocStd/XmlMDocStd.hxx diff --git a/src/XmlMDocStd/XmlMDocStd_XLinkDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMDocStd/XmlMDocStd_XLinkDriver.cxx similarity index 100% rename from src/XmlMDocStd/XmlMDocStd_XLinkDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMDocStd/XmlMDocStd_XLinkDriver.cxx diff --git a/src/XmlMDocStd/XmlMDocStd_XLinkDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMDocStd/XmlMDocStd_XLinkDriver.hxx similarity index 100% rename from src/XmlMDocStd/XmlMDocStd_XLinkDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMDocStd/XmlMDocStd_XLinkDriver.hxx diff --git a/src/ApplicationFramework/TKXmlL/XmlMFunction/FILES.cmake b/src/ApplicationFramework/TKXmlL/XmlMFunction/FILES.cmake new file mode 100644 index 0000000000..faee5397c9 --- /dev/null +++ b/src/ApplicationFramework/TKXmlL/XmlMFunction/FILES.cmake @@ -0,0 +1,13 @@ +# Source files for XmlMFunction package +set(OCCT_XmlMFunction_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XmlMFunction_FILES + XmlMFunction.cxx + XmlMFunction.hxx + XmlMFunction_FunctionDriver.cxx + XmlMFunction_FunctionDriver.hxx + XmlMFunction_GraphNodeDriver.cxx + XmlMFunction_GraphNodeDriver.hxx + XmlMFunction_ScopeDriver.cxx + XmlMFunction_ScopeDriver.hxx +) diff --git a/src/XmlMFunction/XmlMFunction.cxx b/src/ApplicationFramework/TKXmlL/XmlMFunction/XmlMFunction.cxx similarity index 100% rename from src/XmlMFunction/XmlMFunction.cxx rename to src/ApplicationFramework/TKXmlL/XmlMFunction/XmlMFunction.cxx diff --git a/src/XmlMFunction/XmlMFunction.hxx b/src/ApplicationFramework/TKXmlL/XmlMFunction/XmlMFunction.hxx similarity index 100% rename from src/XmlMFunction/XmlMFunction.hxx rename to src/ApplicationFramework/TKXmlL/XmlMFunction/XmlMFunction.hxx diff --git a/src/XmlMFunction/XmlMFunction_FunctionDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMFunction/XmlMFunction_FunctionDriver.cxx similarity index 100% rename from src/XmlMFunction/XmlMFunction_FunctionDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMFunction/XmlMFunction_FunctionDriver.cxx diff --git a/src/XmlMFunction/XmlMFunction_FunctionDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMFunction/XmlMFunction_FunctionDriver.hxx similarity index 100% rename from src/XmlMFunction/XmlMFunction_FunctionDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMFunction/XmlMFunction_FunctionDriver.hxx diff --git a/src/XmlMFunction/XmlMFunction_GraphNodeDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMFunction/XmlMFunction_GraphNodeDriver.cxx similarity index 100% rename from src/XmlMFunction/XmlMFunction_GraphNodeDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMFunction/XmlMFunction_GraphNodeDriver.cxx diff --git a/src/XmlMFunction/XmlMFunction_GraphNodeDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMFunction/XmlMFunction_GraphNodeDriver.hxx similarity index 100% rename from src/XmlMFunction/XmlMFunction_GraphNodeDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMFunction/XmlMFunction_GraphNodeDriver.hxx diff --git a/src/XmlMFunction/XmlMFunction_ScopeDriver.cxx b/src/ApplicationFramework/TKXmlL/XmlMFunction/XmlMFunction_ScopeDriver.cxx similarity index 100% rename from src/XmlMFunction/XmlMFunction_ScopeDriver.cxx rename to src/ApplicationFramework/TKXmlL/XmlMFunction/XmlMFunction_ScopeDriver.cxx diff --git a/src/XmlMFunction/XmlMFunction_ScopeDriver.hxx b/src/ApplicationFramework/TKXmlL/XmlMFunction/XmlMFunction_ScopeDriver.hxx similarity index 100% rename from src/XmlMFunction/XmlMFunction_ScopeDriver.hxx rename to src/ApplicationFramework/TKXmlL/XmlMFunction/XmlMFunction_ScopeDriver.hxx diff --git a/src/ApplicationFramework/TKXmlL/XmlObjMgt/FILES.cmake b/src/ApplicationFramework/TKXmlL/XmlObjMgt/FILES.cmake new file mode 100644 index 0000000000..97974924f6 --- /dev/null +++ b/src/ApplicationFramework/TKXmlL/XmlObjMgt/FILES.cmake @@ -0,0 +1,22 @@ +# Source files for XmlObjMgt package +set(OCCT_XmlObjMgt_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XmlObjMgt_FILES + XmlObjMgt.cxx + XmlObjMgt.hxx + XmlObjMgt_Array1.cxx + XmlObjMgt_Array1.hxx + XmlObjMgt_Array1.lxx + XmlObjMgt_Document.hxx + XmlObjMgt_DOMString.hxx + XmlObjMgt_Element.hxx + XmlObjMgt_GP.cxx + XmlObjMgt_GP.hxx + XmlObjMgt_Persistent.cxx + XmlObjMgt_Persistent.hxx + XmlObjMgt_Persistent.lxx + XmlObjMgt_RRelocationTable.cxx + XmlObjMgt_RRelocationTable.hxx + XmlObjMgt_SRelocationTable.cxx + XmlObjMgt_SRelocationTable.hxx +) diff --git a/src/XmlObjMgt/XmlObjMgt.cxx b/src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt.cxx similarity index 100% rename from src/XmlObjMgt/XmlObjMgt.cxx rename to src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt.cxx diff --git a/src/XmlObjMgt/XmlObjMgt.hxx b/src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt.hxx similarity index 100% rename from src/XmlObjMgt/XmlObjMgt.hxx rename to src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt.hxx diff --git a/src/XmlObjMgt/XmlObjMgt_Array1.cxx b/src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_Array1.cxx similarity index 100% rename from src/XmlObjMgt/XmlObjMgt_Array1.cxx rename to src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_Array1.cxx diff --git a/src/XmlObjMgt/XmlObjMgt_Array1.hxx b/src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_Array1.hxx similarity index 100% rename from src/XmlObjMgt/XmlObjMgt_Array1.hxx rename to src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_Array1.hxx diff --git a/src/XmlObjMgt/XmlObjMgt_Array1.lxx b/src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_Array1.lxx similarity index 100% rename from src/XmlObjMgt/XmlObjMgt_Array1.lxx rename to src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_Array1.lxx diff --git a/src/XmlObjMgt/XmlObjMgt_DOMString.hxx b/src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_DOMString.hxx similarity index 100% rename from src/XmlObjMgt/XmlObjMgt_DOMString.hxx rename to src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_DOMString.hxx diff --git a/src/XmlObjMgt/XmlObjMgt_Document.hxx b/src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_Document.hxx similarity index 100% rename from src/XmlObjMgt/XmlObjMgt_Document.hxx rename to src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_Document.hxx diff --git a/src/XmlObjMgt/XmlObjMgt_Element.hxx b/src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_Element.hxx similarity index 100% rename from src/XmlObjMgt/XmlObjMgt_Element.hxx rename to src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_Element.hxx diff --git a/src/XmlObjMgt/XmlObjMgt_GP.cxx b/src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_GP.cxx similarity index 100% rename from src/XmlObjMgt/XmlObjMgt_GP.cxx rename to src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_GP.cxx diff --git a/src/XmlObjMgt/XmlObjMgt_GP.hxx b/src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_GP.hxx similarity index 100% rename from src/XmlObjMgt/XmlObjMgt_GP.hxx rename to src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_GP.hxx diff --git a/src/XmlObjMgt/XmlObjMgt_Persistent.cxx b/src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_Persistent.cxx similarity index 100% rename from src/XmlObjMgt/XmlObjMgt_Persistent.cxx rename to src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_Persistent.cxx diff --git a/src/XmlObjMgt/XmlObjMgt_Persistent.hxx b/src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_Persistent.hxx similarity index 100% rename from src/XmlObjMgt/XmlObjMgt_Persistent.hxx rename to src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_Persistent.hxx diff --git a/src/XmlObjMgt/XmlObjMgt_Persistent.lxx b/src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_Persistent.lxx similarity index 100% rename from src/XmlObjMgt/XmlObjMgt_Persistent.lxx rename to src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_Persistent.lxx diff --git a/src/XmlObjMgt/XmlObjMgt_RRelocationTable.cxx b/src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_RRelocationTable.cxx similarity index 100% rename from src/XmlObjMgt/XmlObjMgt_RRelocationTable.cxx rename to src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_RRelocationTable.cxx diff --git a/src/XmlObjMgt/XmlObjMgt_RRelocationTable.hxx b/src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_RRelocationTable.hxx similarity index 100% rename from src/XmlObjMgt/XmlObjMgt_RRelocationTable.hxx rename to src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_RRelocationTable.hxx diff --git a/src/XmlObjMgt/XmlObjMgt_SRelocationTable.cxx b/src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_SRelocationTable.cxx similarity index 100% rename from src/XmlObjMgt/XmlObjMgt_SRelocationTable.cxx rename to src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_SRelocationTable.cxx diff --git a/src/XmlObjMgt/XmlObjMgt_SRelocationTable.hxx b/src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_SRelocationTable.hxx similarity index 100% rename from src/XmlObjMgt/XmlObjMgt_SRelocationTable.hxx rename to src/ApplicationFramework/TKXmlL/XmlObjMgt/XmlObjMgt_SRelocationTable.hxx diff --git a/src/TKXmlTObj/CMakeLists.txt b/src/ApplicationFramework/TKXmlTObj/CMakeLists.txt similarity index 100% rename from src/TKXmlTObj/CMakeLists.txt rename to src/ApplicationFramework/TKXmlTObj/CMakeLists.txt diff --git a/src/ApplicationFramework/TKXmlTObj/EXTERNLIB.cmake b/src/ApplicationFramework/TKXmlTObj/EXTERNLIB.cmake new file mode 100644 index 0000000000..79d0a9dced --- /dev/null +++ b/src/ApplicationFramework/TKXmlTObj/EXTERNLIB.cmake @@ -0,0 +1,9 @@ +# External dependencies for TKXmlTObj +set(OCCT_TKXmlTObj_EXTERNAL_LIBS + TKCDF + TKernel + TKTObj + TKMath + TKLCAF + TKXmlL +) diff --git a/src/ApplicationFramework/TKXmlTObj/FILES.cmake b/src/ApplicationFramework/TKXmlTObj/FILES.cmake new file mode 100644 index 0000000000..f937251d97 --- /dev/null +++ b/src/ApplicationFramework/TKXmlTObj/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKXmlTObj +set(OCCT_TKXmlTObj_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKXmlTObj_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ApplicationFramework/TKXmlTObj/PACKAGES.cmake b/src/ApplicationFramework/TKXmlTObj/PACKAGES.cmake new file mode 100644 index 0000000000..18438b9b00 --- /dev/null +++ b/src/ApplicationFramework/TKXmlTObj/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKXmlTObj toolkit +set(OCCT_TKXmlTObj_LIST_OF_PACKAGES + XmlTObjDrivers +) diff --git a/src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/FILES.cmake b/src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/FILES.cmake new file mode 100644 index 0000000000..f5e2be2035 --- /dev/null +++ b/src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/FILES.cmake @@ -0,0 +1,21 @@ +# Source files for XmlTObjDrivers package +set(OCCT_XmlTObjDrivers_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XmlTObjDrivers_FILES + XmlTObjDrivers.cxx + XmlTObjDrivers.hxx + XmlTObjDrivers_DocumentRetrievalDriver.cxx + XmlTObjDrivers_DocumentRetrievalDriver.hxx + XmlTObjDrivers_DocumentStorageDriver.cxx + XmlTObjDrivers_DocumentStorageDriver.hxx + XmlTObjDrivers_IntSparseArrayDriver.cxx + XmlTObjDrivers_IntSparseArrayDriver.hxx + XmlTObjDrivers_ModelDriver.cxx + XmlTObjDrivers_ModelDriver.hxx + XmlTObjDrivers_ObjectDriver.cxx + XmlTObjDrivers_ObjectDriver.hxx + XmlTObjDrivers_ReferenceDriver.cxx + XmlTObjDrivers_ReferenceDriver.hxx + XmlTObjDrivers_XYZDriver.cxx + XmlTObjDrivers_XYZDriver.hxx +) diff --git a/src/XmlTObjDrivers/XmlTObjDrivers.cxx b/src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers.cxx similarity index 100% rename from src/XmlTObjDrivers/XmlTObjDrivers.cxx rename to src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers.cxx diff --git a/src/XmlTObjDrivers/XmlTObjDrivers.hxx b/src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers.hxx similarity index 100% rename from src/XmlTObjDrivers/XmlTObjDrivers.hxx rename to src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers.hxx diff --git a/src/XmlTObjDrivers/XmlTObjDrivers_DocumentRetrievalDriver.cxx b/src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_DocumentRetrievalDriver.cxx similarity index 100% rename from src/XmlTObjDrivers/XmlTObjDrivers_DocumentRetrievalDriver.cxx rename to src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_DocumentRetrievalDriver.cxx diff --git a/src/XmlTObjDrivers/XmlTObjDrivers_DocumentRetrievalDriver.hxx b/src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_DocumentRetrievalDriver.hxx similarity index 100% rename from src/XmlTObjDrivers/XmlTObjDrivers_DocumentRetrievalDriver.hxx rename to src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_DocumentRetrievalDriver.hxx diff --git a/src/XmlTObjDrivers/XmlTObjDrivers_DocumentStorageDriver.cxx b/src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_DocumentStorageDriver.cxx similarity index 100% rename from src/XmlTObjDrivers/XmlTObjDrivers_DocumentStorageDriver.cxx rename to src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_DocumentStorageDriver.cxx diff --git a/src/XmlTObjDrivers/XmlTObjDrivers_DocumentStorageDriver.hxx b/src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_DocumentStorageDriver.hxx similarity index 100% rename from src/XmlTObjDrivers/XmlTObjDrivers_DocumentStorageDriver.hxx rename to src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_DocumentStorageDriver.hxx diff --git a/src/XmlTObjDrivers/XmlTObjDrivers_IntSparseArrayDriver.cxx b/src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_IntSparseArrayDriver.cxx similarity index 100% rename from src/XmlTObjDrivers/XmlTObjDrivers_IntSparseArrayDriver.cxx rename to src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_IntSparseArrayDriver.cxx diff --git a/src/XmlTObjDrivers/XmlTObjDrivers_IntSparseArrayDriver.hxx b/src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_IntSparseArrayDriver.hxx similarity index 100% rename from src/XmlTObjDrivers/XmlTObjDrivers_IntSparseArrayDriver.hxx rename to src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_IntSparseArrayDriver.hxx diff --git a/src/XmlTObjDrivers/XmlTObjDrivers_ModelDriver.cxx b/src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_ModelDriver.cxx similarity index 100% rename from src/XmlTObjDrivers/XmlTObjDrivers_ModelDriver.cxx rename to src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_ModelDriver.cxx diff --git a/src/XmlTObjDrivers/XmlTObjDrivers_ModelDriver.hxx b/src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_ModelDriver.hxx similarity index 100% rename from src/XmlTObjDrivers/XmlTObjDrivers_ModelDriver.hxx rename to src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_ModelDriver.hxx diff --git a/src/XmlTObjDrivers/XmlTObjDrivers_ObjectDriver.cxx b/src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_ObjectDriver.cxx similarity index 100% rename from src/XmlTObjDrivers/XmlTObjDrivers_ObjectDriver.cxx rename to src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_ObjectDriver.cxx diff --git a/src/XmlTObjDrivers/XmlTObjDrivers_ObjectDriver.hxx b/src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_ObjectDriver.hxx similarity index 100% rename from src/XmlTObjDrivers/XmlTObjDrivers_ObjectDriver.hxx rename to src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_ObjectDriver.hxx diff --git a/src/XmlTObjDrivers/XmlTObjDrivers_ReferenceDriver.cxx b/src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_ReferenceDriver.cxx similarity index 100% rename from src/XmlTObjDrivers/XmlTObjDrivers_ReferenceDriver.cxx rename to src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_ReferenceDriver.cxx diff --git a/src/XmlTObjDrivers/XmlTObjDrivers_ReferenceDriver.hxx b/src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_ReferenceDriver.hxx similarity index 100% rename from src/XmlTObjDrivers/XmlTObjDrivers_ReferenceDriver.hxx rename to src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_ReferenceDriver.hxx diff --git a/src/XmlTObjDrivers/XmlTObjDrivers_XYZDriver.cxx b/src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_XYZDriver.cxx similarity index 100% rename from src/XmlTObjDrivers/XmlTObjDrivers_XYZDriver.cxx rename to src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_XYZDriver.cxx diff --git a/src/XmlTObjDrivers/XmlTObjDrivers_XYZDriver.hxx b/src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_XYZDriver.hxx similarity index 100% rename from src/XmlTObjDrivers/XmlTObjDrivers_XYZDriver.hxx rename to src/ApplicationFramework/TKXmlTObj/XmlTObjDrivers/XmlTObjDrivers_XYZDriver.hxx diff --git a/src/ApplicationFramework/TOOLKITS.cmake b/src/ApplicationFramework/TOOLKITS.cmake new file mode 100644 index 0000000000..7eb750f1a1 --- /dev/null +++ b/src/ApplicationFramework/TOOLKITS.cmake @@ -0,0 +1,16 @@ +# Auto-generated list of toolkits for ApplicationFramework module +set(OCCT_ApplicationFramework_LIST_OF_TOOLKITS + TKCDF + TKLCAF + TKCAF + TKBinL + TKXmlL + TKBin + TKXml + TKStdL + TKStd + TKTObj + TKBinTObj + TKXmlTObj + TKVCAF +) diff --git a/src/Approx/FILES b/src/Approx/FILES deleted file mode 100644 index 939d6e53d5..0000000000 --- a/src/Approx/FILES +++ /dev/null @@ -1,33 +0,0 @@ -Approx_Array1OfAdHSurface.hxx -Approx_Array1OfGTrsf2d.hxx -Approx_BSplComputeLine.gxx -Approx_ComputeCLine.gxx -Approx_ComputeLine.gxx -Approx_Curve2d.cxx -Approx_Curve2d.hxx -Approx_Curve3d.cxx -Approx_Curve3d.hxx -Approx_CurveOnSurface.cxx -Approx_CurveOnSurface.hxx -Approx_CurvilinearParameter.cxx -Approx_CurvilinearParameter.hxx -Approx_CurvlinFunc.cxx -Approx_CurvlinFunc.hxx -Approx_FitAndDivide.hxx -Approx_FitAndDivide2d.hxx -Approx_FitAndDivide2d_0.cxx -Approx_FitAndDivide_0.cxx -Approx_HArray1OfAdHSurface.hxx -Approx_HArray1OfGTrsf2d.hxx -Approx_MCurvesToBSpCurve.cxx -Approx_MCurvesToBSpCurve.hxx -Approx_ParametrizationType.hxx -Approx_SameParameter.cxx -Approx_SameParameter.hxx -Approx_SequenceOfHArray1OfReal.hxx -Approx_Status.hxx -Approx_SweepApproximation.cxx -Approx_SweepApproximation.hxx -Approx_SweepApproximation.lxx -Approx_SweepFunction.cxx -Approx_SweepFunction.hxx diff --git a/src/ApproxInt/FILES b/src/ApproxInt/FILES deleted file mode 100755 index 650bb4dcca..0000000000 --- a/src/ApproxInt/FILES +++ /dev/null @@ -1,9 +0,0 @@ -ApproxInt_Approx.gxx -ApproxInt_ImpPrmSvSurfaces.gxx -ApproxInt_MultiLine.gxx -ApproxInt_KnotTools.hxx -ApproxInt_KnotTools.cxx -ApproxInt_MultiLineTool.lxx -ApproxInt_PrmPrmSvSurfaces.gxx -ApproxInt_SvSurfaces.cxx -ApproxInt_SvSurfaces.hxx diff --git a/src/Aspect/FILES b/src/Aspect/FILES deleted file mode 100755 index b1c7fa3f98..0000000000 --- a/src/Aspect/FILES +++ /dev/null @@ -1,83 +0,0 @@ -Aspect_AspectFillAreaDefinitionError.hxx -Aspect_AspectLineDefinitionError.hxx -Aspect_AspectMarkerDefinitionError.hxx -Aspect_Background.cxx -Aspect_Background.hxx -Aspect_CircularGrid.cxx -Aspect_CircularGrid.hxx -Aspect_ColorSpace.hxx -Aspect_Display.hxx -Aspect_DisplayConnection.cxx -Aspect_DisplayConnection.hxx -Aspect_DisplayConnectionDefinitionError.hxx -Aspect_Drawable.hxx -Aspect_Eye.hxx -Aspect_FBConfig.hxx -Aspect_FillMethod.hxx -Aspect_FrustumLRBT.hxx -Aspect_GenId.cxx -Aspect_GenId.hxx -Aspect_GradientBackground.cxx -Aspect_GradientBackground.hxx -Aspect_GradientFillMethod.hxx -Aspect_GraphicDeviceDefinitionError.hxx -Aspect_GraphicsLibrary.hxx -Aspect_Grid.cxx -Aspect_Grid.hxx -Aspect_GridDrawMode.hxx -Aspect_GridType.hxx -Aspect_NeutralWindow.cxx -Aspect_NeutralWindow.hxx -Aspect_OpenVRSession.cxx -Aspect_OpenVRSession.hxx -Aspect_Handle.hxx -Aspect_HatchStyle.hxx -Aspect_IdentDefinitionError.hxx -Aspect_InteriorStyle.hxx -Aspect_PolygonOffsetMode.hxx -Aspect_RectangularGrid.cxx -Aspect_RectangularGrid.hxx -Aspect_RenderingContext.hxx -Aspect_SequenceOfColor.hxx -Aspect_ScrollDelta.hxx -Aspect_SkydomeBackground.cxx -Aspect_SkydomeBackground.hxx -Aspect_Touch.hxx -Aspect_TouchMap.hxx -Aspect_TrackedDevicePose.hxx -Aspect_TypeOfColorScaleData.hxx -Aspect_TypeOfColorScaleOrientation.hxx -Aspect_TypeOfColorScalePosition.hxx -Aspect_TypeOfDeflection.hxx -Aspect_TypeOfDisplayText.hxx -Aspect_TypeOfFacingModel.hxx -Aspect_TypeOfHighlightMethod.hxx -Aspect_TypeOfLine.hxx -Aspect_TypeOfMarker.hxx -Aspect_TypeOfResize.hxx -Aspect_TypeOfStyleText.hxx -Aspect_TypeOfTriedronPosition.hxx -Aspect_Units.hxx -Aspect_VKey.hxx -Aspect_VKeyFlags.hxx -Aspect_VKeySet.cxx -Aspect_VKeySet.hxx -Aspect_WidthOfLine.hxx -Aspect_Window.cxx -Aspect_Window.hxx -Aspect_WindowDefinitionError.hxx -Aspect_WindowError.hxx -Aspect_WindowInputListener.cxx -Aspect_WindowInputListener.hxx -Aspect_XAtom.hxx -Aspect_XRAction.hxx -Aspect_XRActionSet.hxx -Aspect_XRActionType.hxx -Aspect_XRAnalogActionData.hxx -Aspect_XRDigitalActionData.hxx -Aspect_XRGenericAction.hxx -Aspect_XRHapticActionData.hxx -Aspect_XRPoseActionData.hxx -Aspect_XRSession.cxx -Aspect_XRSession.hxx -Aspect_XRTrackedDeviceRole.hxx diff --git a/src/BOPAlgo/FILES b/src/BOPAlgo/FILES deleted file mode 100644 index f8cf11de6f..0000000000 --- a/src/BOPAlgo/FILES +++ /dev/null @@ -1,80 +0,0 @@ -BOPAlgo_Algo.cxx -BOPAlgo_Algo.hxx -BOPAlgo_ArgumentAnalyzer.cxx -BOPAlgo_ArgumentAnalyzer.hxx -BOPAlgo_ArgumentAnalyzer.lxx -BOPAlgo_ToolsProvider.cxx -BOPAlgo_ToolsProvider.hxx -BOPAlgo_BOP.cxx -BOPAlgo_BOP.hxx -BOPAlgo_Builder.cxx -BOPAlgo_Builder.hxx -BOPAlgo_Builder_1.cxx -BOPAlgo_Builder_2.cxx -BOPAlgo_Builder_3.cxx -BOPAlgo_Builder_4.cxx -BOPAlgo_BuilderArea.cxx -BOPAlgo_BuilderArea.hxx -BOPAlgo_BuilderFace.cxx -BOPAlgo_BuilderFace.hxx -BOPAlgo_BuilderShape.hxx -BOPAlgo_BuilderSolid.cxx -BOPAlgo_BuilderSolid.hxx -BOPAlgo_CheckerSI.cxx -BOPAlgo_CheckerSI.hxx -BOPAlgo_CheckerSI_1.cxx -BOPAlgo_CheckResult.cxx -BOPAlgo_CheckResult.hxx -BOPAlgo_CheckStatus.hxx -BOPAlgo_ListOfCheckResult.hxx -BOPAlgo_MakeConnected.cxx -BOPAlgo_MakeConnected.hxx -BOPAlgo_MakePeriodic.cxx -BOPAlgo_MakePeriodic.hxx -BOPAlgo_MakerVolume.cxx -BOPAlgo_MakerVolume.hxx -BOPAlgo_MakerVolume.lxx -BOPAlgo_Operation.hxx -BOPAlgo_Options.cxx -BOPAlgo_Options.hxx -BOPAlgo_PArgumentAnalyzer.hxx -BOPAlgo_PaveFiller.cxx -BOPAlgo_PaveFiller.hxx -BOPAlgo_PaveFiller_1.cxx -BOPAlgo_PaveFiller_2.cxx -BOPAlgo_PaveFiller_3.cxx -BOPAlgo_PaveFiller_4.cxx -BOPAlgo_PaveFiller_5.cxx -BOPAlgo_PaveFiller_6.cxx -BOPAlgo_PaveFiller_7.cxx -BOPAlgo_PaveFiller_8.cxx -BOPAlgo_PaveFiller_9.cxx -BOPAlgo_PaveFiller_10.cxx -BOPAlgo_PaveFiller_11.cxx -BOPAlgo_PBOP.hxx -BOPAlgo_PBuilder.hxx -BOPAlgo_PPaveFiller.hxx -BOPAlgo_PSection.hxx -BOPAlgo_PWireEdgeSet.hxx -BOPAlgo_RemoveFeatures.cxx -BOPAlgo_RemoveFeatures.hxx -BOPAlgo_Section.cxx -BOPAlgo_Section.hxx -BOPAlgo_SectionAttribute.hxx -BOPAlgo_ShellSplitter.cxx -BOPAlgo_ShellSplitter.hxx -BOPAlgo_Tools.cxx -BOPAlgo_Tools.hxx -BOPAlgo_WireEdgeSet.hxx -BOPAlgo_WireEdgeSet.lxx -BOPAlgo_WireSplitter.cxx -BOPAlgo_WireSplitter.hxx -BOPAlgo_WireSplitter.lxx -BOPAlgo_WireSplitter_1.cxx -BOPAlgo_CellsBuilder.cxx -BOPAlgo_CellsBuilder.hxx -BOPAlgo_GlueEnum.hxx -BOPAlgo_Splitter.hxx -BOPAlgo_Splitter.cxx -BOPAlgo_Alerts.hxx -BOPAlgo_BOPAlgo_msg.pxx diff --git a/src/BOPDS/FILES b/src/BOPDS/FILES deleted file mode 100644 index f7ce702c13..0000000000 --- a/src/BOPDS/FILES +++ /dev/null @@ -1,70 +0,0 @@ -BOPDS_CommonBlock.cxx -BOPDS_CommonBlock.hxx -BOPDS_CoupleOfPaveBlocks.hxx -BOPDS_Curve.hxx -BOPDS_Curve.lxx -BOPDS_DataMapOfIntegerListOfPaveBlock.hxx -BOPDS_DataMapOfPaveBlockCommonBlock.hxx -BOPDS_DataMapOfPaveBlockListOfInteger.hxx -BOPDS_DataMapOfPaveBlockListOfPaveBlock.hxx -BOPDS_DataMapOfShapeCoupleOfPaveBlocks.hxx -BOPDS_DS.cxx -BOPDS_DS.hxx -BOPDS_DS.lxx -BOPDS_FaceInfo.hxx -BOPDS_FaceInfo.lxx -BOPDS_IndexedDataMapOfPaveBlockListOfInteger.hxx -BOPDS_IndexedDataMapOfPaveBlockListOfPaveBlock.hxx -BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks.hxx -BOPDS_IndexedMapOfPaveBlock.hxx -BOPDS_IndexRange.cxx -BOPDS_IndexRange.hxx -BOPDS_IndexRange.lxx -BOPDS_Interf.hxx -BOPDS_Iterator.cxx -BOPDS_Iterator.hxx -BOPDS_IteratorSI.cxx -BOPDS_IteratorSI.hxx -BOPDS_ListOfPave.hxx -BOPDS_ListOfPaveBlock.hxx -BOPDS_MapOfCommonBlock.hxx -BOPDS_MapOfPave.hxx -BOPDS_MapOfPaveBlock.hxx -BOPDS_Pave.cxx -BOPDS_Pave.hxx -BOPDS_Pave.lxx -BOPDS_PaveBlock.cxx -BOPDS_PaveBlock.hxx -BOPDS_PDS.hxx -BOPDS_PIterator.hxx -BOPDS_PIteratorSI.hxx -BOPDS_Point.hxx -BOPDS_Point.lxx -BOPDS_ShapeInfo.cxx -BOPDS_ShapeInfo.hxx -BOPDS_ShapeInfo.lxx -BOPDS_SubIterator.cxx -BOPDS_SubIterator.hxx -BOPDS_Tools.hxx -BOPDS_Tools.lxx -BOPDS_VectorOfCurve.hxx -BOPDS_VectorOfFaceInfo.hxx -BOPDS_VectorOfIndexRange.hxx -BOPDS_VectorOfInterfEE.hxx -BOPDS_VectorOfInterfEF.hxx -BOPDS_VectorOfInterfEZ.hxx -BOPDS_VectorOfInterfFF.hxx -BOPDS_VectorOfInterfFZ.hxx -BOPDS_VectorOfInterfVE.hxx -BOPDS_VectorOfInterfVF.hxx -BOPDS_VectorOfInterfVV.hxx -BOPDS_VectorOfInterfVZ.hxx -BOPDS_VectorOfInterfZZ.hxx -BOPDS_VectorOfListOfPaveBlock.hxx -BOPDS_VectorOfPave.hxx -BOPDS_VectorOfPoint.hxx -BOPDS_VectorOfShapeInfo.hxx -BOPDS_Pair.hxx -BOPDS_MapOfPair.hxx -BOPDS_VectorOfPair.hxx -BOPDS_VectorOfVectorOfPair.hxx diff --git a/src/BOPTest/FILES b/src/BOPTest/FILES deleted file mode 100755 index dfac503cc5..0000000000 --- a/src/BOPTest/FILES +++ /dev/null @@ -1,20 +0,0 @@ -BOPTest.cxx -BOPTest.hxx -BOPTest_APICommands.cxx -BOPTest_BOPCommands.cxx -BOPTest_CheckCommands.cxx -BOPTest_DrawableShape.cxx -BOPTest_DrawableShape.hxx -BOPTest_LowCommands.cxx -BOPTest_MkConnectedCommands.cxx -BOPTest_ObjCommands.cxx -BOPTest_Objects.cxx -BOPTest_Objects.hxx -BOPTest_OptionCommands.cxx -BOPTest_PartitionCommands.cxx -BOPTest_PeriodicityCommands.cxx -BOPTest_TolerCommands.cxx -BOPTest_DebugCommands.cxx -BOPTest_CellsCommands.cxx -BOPTest_RemoveFeaturesCommands.cxx -BOPTest_UtilityCommands.cxx \ No newline at end of file diff --git a/src/BOPTools/FILES b/src/BOPTools/FILES deleted file mode 100755 index 3e6777deae..0000000000 --- a/src/BOPTools/FILES +++ /dev/null @@ -1,21 +0,0 @@ -BOPTools_AlgoTools.cxx -BOPTools_AlgoTools.hxx -BOPTools_AlgoTools2D.cxx -BOPTools_AlgoTools2D.hxx -BOPTools_AlgoTools2D_1.cxx -BOPTools_AlgoTools3D.cxx -BOPTools_AlgoTools3D.hxx -BOPTools_AlgoTools_1.cxx -BOPTools_AlgoTools_2.cxx -BOPTools_BoxSelector.hxx -BOPTools_BoxTree.hxx -BOPTools_ConnexityBlock.hxx -BOPTools_CoupleOfShape.hxx -BOPTools_IndexedDataMapOfSetShape.hxx -BOPTools_ListOfConnexityBlock.hxx -BOPTools_ListOfCoupleOfShape.hxx -BOPTools_MapOfSet.hxx -BOPTools_PairSelector.hxx -BOPTools_Parallel.hxx -BOPTools_Set.cxx -BOPTools_Set.hxx diff --git a/src/BRep/FILES b/src/BRep/FILES deleted file mode 100644 index ada2d5aece..0000000000 --- a/src/BRep/FILES +++ /dev/null @@ -1,54 +0,0 @@ -BRep_Builder.cxx -BRep_Builder.hxx -BRep_Builder.lxx -BRep_Curve3D.cxx -BRep_Curve3D.hxx -BRep_CurveOn2Surfaces.cxx -BRep_CurveOn2Surfaces.hxx -BRep_CurveOnClosedSurface.cxx -BRep_CurveOnClosedSurface.hxx -BRep_CurveOnClosedSurface.lxx -BRep_CurveOnSurface.cxx -BRep_CurveOnSurface.hxx -BRep_CurveOnSurface.lxx -BRep_CurveRepresentation.cxx -BRep_CurveRepresentation.hxx -BRep_CurveRepresentation.lxx -BRep_GCurve.cxx -BRep_GCurve.hxx -BRep_GCurve.lxx -BRep_ListIteratorOfListOfCurveRepresentation.hxx -BRep_ListIteratorOfListOfPointRepresentation.hxx -BRep_ListOfCurveRepresentation.hxx -BRep_ListOfPointRepresentation.hxx -BRep_PointOnCurve.cxx -BRep_PointOnCurve.hxx -BRep_PointOnCurveOnSurface.cxx -BRep_PointOnCurveOnSurface.hxx -BRep_PointOnSurface.cxx -BRep_PointOnSurface.hxx -BRep_PointRepresentation.cxx -BRep_PointRepresentation.hxx -BRep_PointRepresentation.lxx -BRep_PointsOnSurface.cxx -BRep_PointsOnSurface.hxx -BRep_Polygon3D.cxx -BRep_Polygon3D.hxx -BRep_PolygonOnClosedSurface.cxx -BRep_PolygonOnClosedSurface.hxx -BRep_PolygonOnClosedTriangulation.cxx -BRep_PolygonOnClosedTriangulation.hxx -BRep_PolygonOnSurface.cxx -BRep_PolygonOnSurface.hxx -BRep_PolygonOnTriangulation.cxx -BRep_PolygonOnTriangulation.hxx -BRep_TEdge.cxx -BRep_TEdge.hxx -BRep_TEdge.lxx -BRep_TFace.cxx -BRep_TFace.hxx -BRep_Tool.cxx -BRep_Tool.hxx -BRep_TVertex.cxx -BRep_TVertex.hxx -BRep_TVertex.lxx diff --git a/src/BRepAdaptor/FILES b/src/BRepAdaptor/FILES deleted file mode 100644 index 2b2dd8dafb..0000000000 --- a/src/BRepAdaptor/FILES +++ /dev/null @@ -1,10 +0,0 @@ -BRepAdaptor_Array1OfCurve.hxx -BRepAdaptor_CompCurve.cxx -BRepAdaptor_CompCurve.hxx -BRepAdaptor_Curve.cxx -BRepAdaptor_Curve.hxx -BRepAdaptor_Curve2d.cxx -BRepAdaptor_Curve2d.hxx -BRepAdaptor_HArray1OfCurve.hxx -BRepAdaptor_Surface.cxx -BRepAdaptor_Surface.hxx diff --git a/src/BRepAlgo/FILES b/src/BRepAlgo/FILES deleted file mode 100755 index b2f09b0cc4..0000000000 --- a/src/BRepAlgo/FILES +++ /dev/null @@ -1,13 +0,0 @@ -BRepAlgo.cxx -BRepAlgo.hxx -BRepAlgo_1.cxx -BRepAlgo_AsDes.cxx -BRepAlgo_AsDes.hxx -BRepAlgo_FaceRestrictor.cxx -BRepAlgo_FaceRestrictor.hxx -BRepAlgo_Image.cxx -BRepAlgo_Image.hxx -BRepAlgo_Loop.cxx -BRepAlgo_Loop.hxx -BRepAlgo_NormalProjection.cxx -BRepAlgo_NormalProjection.hxx diff --git a/src/BRepAlgoAPI/FILES b/src/BRepAlgoAPI/FILES deleted file mode 100644 index ac68df71e2..0000000000 --- a/src/BRepAlgoAPI/FILES +++ /dev/null @@ -1,20 +0,0 @@ -BRepAlgoAPI_Algo.cxx -BRepAlgoAPI_Algo.hxx -BRepAlgoAPI_BooleanOperation.cxx -BRepAlgoAPI_BooleanOperation.hxx -BRepAlgoAPI_BuilderAlgo.cxx -BRepAlgoAPI_BuilderAlgo.hxx -BRepAlgoAPI_Check.cxx -BRepAlgoAPI_Check.hxx -BRepAlgoAPI_Common.cxx -BRepAlgoAPI_Common.hxx -BRepAlgoAPI_Cut.cxx -BRepAlgoAPI_Cut.hxx -BRepAlgoAPI_Defeaturing.cxx -BRepAlgoAPI_Defeaturing.hxx -BRepAlgoAPI_Fuse.cxx -BRepAlgoAPI_Fuse.hxx -BRepAlgoAPI_Section.cxx -BRepAlgoAPI_Section.hxx -BRepAlgoAPI_Splitter.cxx -BRepAlgoAPI_Splitter.hxx \ No newline at end of file diff --git a/src/BRepApprox/FILES b/src/BRepApprox/FILES deleted file mode 100644 index a24e45a296..0000000000 --- a/src/BRepApprox/FILES +++ /dev/null @@ -1,52 +0,0 @@ -BRepApprox_Approx.hxx -BRepApprox_Approx_0.cxx -BRepApprox_ApproxLine.cxx -BRepApprox_ApproxLine.hxx -BRepApprox_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfApprox.hxx -BRepApprox_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfApprox_0.cxx -BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox.hxx -BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox_0.cxx -BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox.hxx -BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox_0.cxx -BRepApprox_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfApprox.hxx -BRepApprox_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfApprox_0.cxx -BRepApprox_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfApprox.hxx -BRepApprox_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfApprox_0.cxx -BRepApprox_MyBSplGradientOfTheComputeLineOfApprox.hxx -BRepApprox_MyBSplGradientOfTheComputeLineOfApprox_0.cxx -BRepApprox_MyGradientbisOfTheComputeLineOfApprox.hxx -BRepApprox_MyGradientbisOfTheComputeLineOfApprox_0.cxx -BRepApprox_MyGradientOfTheComputeLineBezierOfApprox.hxx -BRepApprox_MyGradientOfTheComputeLineBezierOfApprox_0.cxx -BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox.hxx -BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox_0.cxx -BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox.hxx -BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox_0.cxx -BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox.hxx -BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox_0.cxx -BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox.hxx -BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox_0.cxx -BRepApprox_ResConstraintOfMyGradientbisOfTheComputeLineOfApprox.hxx -BRepApprox_ResConstraintOfMyGradientbisOfTheComputeLineOfApprox_0.cxx -BRepApprox_ResConstraintOfMyGradientOfTheComputeLineBezierOfApprox.hxx -BRepApprox_ResConstraintOfMyGradientOfTheComputeLineBezierOfApprox_0.cxx -BRepApprox_SurfaceTool.cxx -BRepApprox_SurfaceTool.hxx -BRepApprox_SurfaceTool.lxx -BRepApprox_TheComputeLineBezierOfApprox.hxx -BRepApprox_TheComputeLineBezierOfApprox_0.cxx -BRepApprox_TheComputeLineOfApprox.hxx -BRepApprox_TheComputeLineOfApprox_0.cxx -BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox.hxx -BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox_0.cxx -BRepApprox_TheImpPrmSvSurfacesOfApprox.hxx -BRepApprox_TheImpPrmSvSurfacesOfApprox_0.cxx -BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox.hxx -BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox_0.cxx -BRepApprox_TheMultiLineOfApprox.hxx -BRepApprox_TheMultiLineOfApprox_0.cxx -BRepApprox_TheMultiLineToolOfApprox.hxx -BRepApprox_ThePrmPrmSvSurfacesOfApprox.hxx -BRepApprox_ThePrmPrmSvSurfacesOfApprox_0.cxx -BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox.hxx -BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox_0.cxx diff --git a/src/BRepBlend/FILES b/src/BRepBlend/FILES deleted file mode 100644 index 7ef216819e..0000000000 --- a/src/BRepBlend/FILES +++ /dev/null @@ -1,77 +0,0 @@ -BRepBlend_AppFunc.cxx -BRepBlend_AppFunc.hxx -BRepBlend_AppFuncRoot.cxx -BRepBlend_AppFuncRoot.hxx -BRepBlend_AppFuncRst.cxx -BRepBlend_AppFuncRst.hxx -BRepBlend_AppFuncRstRst.cxx -BRepBlend_AppFuncRstRst.hxx -BRepBlend_AppSurf.hxx -BRepBlend_AppSurf_0.cxx -BRepBlend_AppSurface.cxx -BRepBlend_AppSurface.hxx -BRepBlend_AppSurface.lxx -BRepBlend_BlendTool.cxx -BRepBlend_BlendTool.hxx -BRepBlend_BlendTool.lxx -BRepBlend_Chamfer.hxx -BRepBlend_ChamfInv.hxx -BRepBlend_ConstThroat.hxx -BRepBlend_ConstThroatInv.hxx -BRepBlend_ConstThroatWithPenetration.hxx -BRepBlend_ConstThroatWithPenetrationInv.hxx -BRepBlend_ChAsym.hxx -BRepBlend_ChAsymInv.hxx -BRepBlend_ConstRad.hxx -BRepBlend_ConstRadInv.hxx -BRepBlend_CSCircular.hxx -BRepBlend_CSConstRad.hxx -BRepBlend_CSWalking.hxx -BRepBlend_CSWalking.cxx -BRepBlend_CurvPointRadInv.cxx -BRepBlend_CurvPointRadInv.hxx -BRepBlend_EvolRad.hxx -BRepBlend_EvolRadInv.hxx -BRepBlend_Extremity.cxx -BRepBlend_Extremity.hxx -BRepBlend_Extremity.lxx -BRepBlend_HCurve2dTool.cxx -BRepBlend_HCurve2dTool.hxx -BRepBlend_HCurve2dTool.lxx -BRepBlend_HCurveTool.cxx -BRepBlend_HCurveTool.hxx -BRepBlend_HCurveTool.lxx -BRepBlend_Line.cxx -BRepBlend_Line.hxx -BRepBlend_Line.lxx -BRepBlend_PointOnRst.cxx -BRepBlend_PointOnRst.hxx -BRepBlend_PointOnRst.lxx -BRepBlend_RstRstConstRad.cxx -BRepBlend_RstRstConstRad.hxx -BRepBlend_RstRstEvolRad.cxx -BRepBlend_RstRstEvolRad.hxx -BRepBlend_RstRstLineBuilder.cxx -BRepBlend_RstRstLineBuilder.hxx -BRepBlend_RstRstLineBuilder.lxx -BRepBlend_Ruled.hxx -BRepBlend_RuledInv.hxx -BRepBlend_SequenceOfLine.hxx -BRepBlend_SequenceOfPointOnRst.hxx -BRepBlend_SurfCurvConstRadInv.cxx -BRepBlend_SurfCurvConstRadInv.hxx -BRepBlend_SurfCurvEvolRadInv.cxx -BRepBlend_SurfCurvEvolRadInv.hxx -BRepBlend_SurfPointConstRadInv.cxx -BRepBlend_SurfPointConstRadInv.hxx -BRepBlend_SurfPointEvolRadInv.cxx -BRepBlend_SurfPointEvolRadInv.hxx -BRepBlend_SurfRstConstRad.cxx -BRepBlend_SurfRstConstRad.hxx -BRepBlend_SurfRstEvolRad.cxx -BRepBlend_SurfRstEvolRad.hxx -BRepBlend_SurfRstLineBuilder.cxx -BRepBlend_SurfRstLineBuilder.hxx -BRepBlend_SurfRstLineBuilder.lxx -BRepBlend_Walking.hxx -BRepBlend_Walking.cxx diff --git a/src/BRepBndLib/FILES b/src/BRepBndLib/FILES deleted file mode 100644 index d05bed4f20..0000000000 --- a/src/BRepBndLib/FILES +++ /dev/null @@ -1,3 +0,0 @@ -BRepBndLib.cxx -BRepBndLib.hxx -BRepBndLib_1.cxx \ No newline at end of file diff --git a/src/BRepBuilderAPI/FILES b/src/BRepBuilderAPI/FILES deleted file mode 100644 index aff1334a50..0000000000 --- a/src/BRepBuilderAPI/FILES +++ /dev/null @@ -1,53 +0,0 @@ -BRepBuilderAPI.cxx -BRepBuilderAPI.hxx -BRepBuilderAPI_BndBoxTreeSelector.hxx -BRepBuilderAPI_CellFilter.hxx -BRepBuilderAPI_Collect.cxx -BRepBuilderAPI_Collect.hxx -BRepBuilderAPI_Command.cxx -BRepBuilderAPI_Command.hxx -BRepBuilderAPI_Copy.cxx -BRepBuilderAPI_Copy.hxx -BRepBuilderAPI_EdgeError.hxx -BRepBuilderAPI_FaceError.hxx -BRepBuilderAPI_FastSewing.cxx -BRepBuilderAPI_FastSewing.hxx -BRepBuilderAPI_FindPlane.cxx -BRepBuilderAPI_FindPlane.hxx -BRepBuilderAPI_GTransform.cxx -BRepBuilderAPI_GTransform.hxx -BRepBuilderAPI_MakeEdge.cxx -BRepBuilderAPI_MakeEdge.hxx -BRepBuilderAPI_MakeEdge2d.cxx -BRepBuilderAPI_MakeEdge2d.hxx -BRepBuilderAPI_MakeFace.cxx -BRepBuilderAPI_MakeFace.hxx -BRepBuilderAPI_MakePolygon.cxx -BRepBuilderAPI_MakePolygon.hxx -BRepBuilderAPI_MakeShape.cxx -BRepBuilderAPI_MakeShape.hxx -BRepBuilderAPI_MakeShapeOnMesh.cxx -BRepBuilderAPI_MakeShapeOnMesh.hxx -BRepBuilderAPI_MakeShell.cxx -BRepBuilderAPI_MakeShell.hxx -BRepBuilderAPI_MakeSolid.cxx -BRepBuilderAPI_MakeSolid.hxx -BRepBuilderAPI_MakeVertex.cxx -BRepBuilderAPI_MakeVertex.hxx -BRepBuilderAPI_MakeWire.cxx -BRepBuilderAPI_MakeWire.hxx -BRepBuilderAPI_ModifyShape.cxx -BRepBuilderAPI_ModifyShape.hxx -BRepBuilderAPI_NurbsConvert.cxx -BRepBuilderAPI_NurbsConvert.hxx -BRepBuilderAPI_PipeError.hxx -BRepBuilderAPI_Sewing.cxx -BRepBuilderAPI_Sewing.hxx -BRepBuilderAPI_Sewing.lxx -BRepBuilderAPI_ShapeModification.hxx -BRepBuilderAPI_ShellError.hxx -BRepBuilderAPI_Transform.cxx -BRepBuilderAPI_Transform.hxx -BRepBuilderAPI_TransitionMode.hxx -BRepBuilderAPI_VertexInspector.hxx -BRepBuilderAPI_WireError.hxx diff --git a/src/BRepCheck/FILES b/src/BRepCheck/FILES deleted file mode 100644 index 134942d9ea..0000000000 --- a/src/BRepCheck/FILES +++ /dev/null @@ -1,23 +0,0 @@ -BRepCheck.cxx -BRepCheck.hxx -BRepCheck_Analyzer.cxx -BRepCheck_Analyzer.hxx -BRepCheck_DataMapOfShapeListOfStatus.hxx -BRepCheck_Edge.cxx -BRepCheck_Edge.hxx -BRepCheck_Face.cxx -BRepCheck_Face.hxx -BRepCheck_IndexedDataMapOfShapeResult.hxx -BRepCheck_ListIteratorOfListOfStatus.hxx -BRepCheck_ListOfStatus.hxx -BRepCheck_Result.cxx -BRepCheck_Result.hxx -BRepCheck_Shell.cxx -BRepCheck_Shell.hxx -BRepCheck_Solid.cxx -BRepCheck_Solid.hxx -BRepCheck_Status.hxx -BRepCheck_Vertex.cxx -BRepCheck_Vertex.hxx -BRepCheck_Wire.cxx -BRepCheck_Wire.hxx diff --git a/src/BRepClass/FILES b/src/BRepClass/FILES deleted file mode 100644 index 3ead0971f8..0000000000 --- a/src/BRepClass/FILES +++ /dev/null @@ -1,16 +0,0 @@ -BRepClass_Edge.cxx -BRepClass_Edge.hxx -BRepClass_Edge.lxx -BRepClass_FaceClassifier.cxx -BRepClass_FaceClassifier.hxx -BRepClass_FaceExplorer.cxx -BRepClass_FaceExplorer.hxx -BRepClass_FaceExplorer.lxx -BRepClass_FacePassiveClassifier.hxx -BRepClass_FacePassiveClassifier_0.cxx -BRepClass_FClass2dOfFClassifier.hxx -BRepClass_FClass2dOfFClassifier_0.cxx -BRepClass_FClassifier.hxx -BRepClass_FClassifier_0.cxx -BRepClass_Intersector.cxx -BRepClass_Intersector.hxx diff --git a/src/BRepClass3d/FILES b/src/BRepClass3d/FILES deleted file mode 100644 index 066304cf3c..0000000000 --- a/src/BRepClass3d/FILES +++ /dev/null @@ -1,17 +0,0 @@ -BRepClass3d.cxx -BRepClass3d.hxx -BRepClass3d_BndBoxTree.hxx -BRepClass3d_BndBoxTree.cxx -BRepClass3d_DataMapIteratorOfMapOfInter.hxx -BRepClass3d_Intersector3d.cxx -BRepClass3d_Intersector3d.hxx -BRepClass3d_Intersector3d.lxx -BRepClass3d_MapOfInter.hxx -BRepClass3d_SClassifier.cxx -BRepClass3d_SClassifier.hxx -BRepClass3d_SolidClassifier.cxx -BRepClass3d_SolidClassifier.hxx -BRepClass3d_SolidExplorer.cxx -BRepClass3d_SolidExplorer.hxx -BRepClass3d_SolidPassiveClassifier.hxx -BRepClass3d_SolidPassiveClassifier.cxx diff --git a/src/BRepExtrema/FILES b/src/BRepExtrema/FILES deleted file mode 100644 index b7405afc30..0000000000 --- a/src/BRepExtrema/FILES +++ /dev/null @@ -1,34 +0,0 @@ -BRepExtrema_DistanceSS.cxx -BRepExtrema_DistanceSS.hxx -BRepExtrema_DistShapeShape.cxx -BRepExtrema_DistShapeShape.hxx -BRepExtrema_ElementFilter.hxx -BRepExtrema_ExtCC.cxx -BRepExtrema_ExtCC.hxx -BRepExtrema_ExtCF.cxx -BRepExtrema_ExtCF.hxx -BRepExtrema_ExtFF.cxx -BRepExtrema_ExtFF.hxx -BRepExtrema_ExtPC.cxx -BRepExtrema_ExtPC.hxx -BRepExtrema_ExtPF.cxx -BRepExtrema_ExtPF.hxx -BRepExtrema_MapOfIntegerPackedMapOfInteger.hxx -BRepExtrema_OverlapTool.cxx -BRepExtrema_OverlapTool.hxx -BRepExtrema_Poly.cxx -BRepExtrema_Poly.hxx -BRepExtrema_ProximityValueTool.cxx -BRepExtrema_ProximityValueTool.hxx -BRepExtrema_ProximityDistTool.cxx -BRepExtrema_ProximityDistTool.hxx -BRepExtrema_SelfIntersection.cxx -BRepExtrema_SelfIntersection.hxx -BRepExtrema_SeqOfSolution.hxx -BRepExtrema_ShapeProximity.cxx -BRepExtrema_ShapeProximity.hxx -BRepExtrema_SolutionElem.hxx -BRepExtrema_SupportType.hxx -BRepExtrema_TriangleSet.cxx -BRepExtrema_TriangleSet.hxx -BRepExtrema_UnCompatibleShape.hxx diff --git a/src/BRepFeat/FILES b/src/BRepFeat/FILES deleted file mode 100755 index 1af963d4dd..0000000000 --- a/src/BRepFeat/FILES +++ /dev/null @@ -1,40 +0,0 @@ -BRepFeat.cxx -BRepFeat.hxx -BRepFeat_Builder.cxx -BRepFeat_Builder.hxx -BRepFeat_Form.cxx -BRepFeat_Form.hxx -BRepFeat_Form.lxx -BRepFeat_Gluer.cxx -BRepFeat_Gluer.hxx -BRepFeat_Gluer.lxx -BRepFeat_MakeCylindricalHole.cxx -BRepFeat_MakeCylindricalHole.hxx -BRepFeat_MakeCylindricalHole.lxx -BRepFeat_MakeDPrism.cxx -BRepFeat_MakeDPrism.hxx -BRepFeat_MakeLinearForm.cxx -BRepFeat_MakeLinearForm.hxx -BRepFeat_MakeLinearForm.lxx -BRepFeat_MakePipe.cxx -BRepFeat_MakePipe.hxx -BRepFeat_MakePipe.lxx -BRepFeat_MakePrism.cxx -BRepFeat_MakePrism.hxx -BRepFeat_MakePrism.lxx -BRepFeat_MakeRevol.cxx -BRepFeat_MakeRevol.hxx -BRepFeat_MakeRevol.lxx -BRepFeat_MakeRevolutionForm.cxx -BRepFeat_MakeRevolutionForm.hxx -BRepFeat_MakeRevolutionForm.lxx -BRepFeat_PerfSelection.hxx -BRepFeat_RibSlot.cxx -BRepFeat_RibSlot.hxx -BRepFeat_RibSlot.lxx -BRepFeat_SplitShape.cxx -BRepFeat_SplitShape.hxx -BRepFeat_SplitShape.lxx -BRepFeat_Status.hxx -BRepFeat_StatusError.hxx -BRepFeat_trace.cxx diff --git a/src/BRepFill/FILES b/src/BRepFill/FILES deleted file mode 100644 index 655a1ff3c8..0000000000 --- a/src/BRepFill/FILES +++ /dev/null @@ -1,88 +0,0 @@ -BRepFill.cxx -BRepFill.hxx -BRepFill_ACRLaw.cxx -BRepFill_ACRLaw.hxx -BRepFill_AdvancedEvolved.cxx -BRepFill_AdvancedEvolved.hxx -BRepFill_ApproxSeewing.cxx -BRepFill_ApproxSeewing.hxx -BRepFill_CompatibleWires.cxx -BRepFill_CompatibleWires.hxx -BRepFill_ComputeCLine.hxx -BRepFill_ComputeCLine_0.cxx -BRepFill_CurveConstraint.cxx -BRepFill_CurveConstraint.hxx -BRepFill_DataMapIteratorOfDataMapOfNodeDataMapOfShapeShape.hxx -BRepFill_DataMapIteratorOfDataMapOfNodeShape.hxx -BRepFill_DataMapIteratorOfDataMapOfOrientedShapeListOfShape.hxx -BRepFill_DataMapIteratorOfDataMapOfShapeDataMapOfShapeListOfShape.hxx -BRepFill_DataMapIteratorOfDataMapOfShapeHArray2OfShape.hxx -BRepFill_DataMapIteratorOfDataMapOfShapeSequenceOfPnt.hxx -BRepFill_DataMapIteratorOfDataMapOfShapeSequenceOfReal.hxx -BRepFill_DataMapOfNodeDataMapOfShapeShape.hxx -BRepFill_DataMapOfNodeShape.hxx -BRepFill_DataMapOfOrientedShapeListOfShape.hxx -BRepFill_DataMapOfShapeDataMapOfShapeListOfShape.hxx -BRepFill_DataMapOfShapeHArray2OfShape.hxx -BRepFill_DataMapOfShapeSequenceOfPnt.hxx -BRepFill_DataMapOfShapeSequenceOfReal.hxx -BRepFill_Draft.cxx -BRepFill_Draft.hxx -BRepFill_DraftLaw.cxx -BRepFill_DraftLaw.hxx -BRepFill_Edge3DLaw.cxx -BRepFill_Edge3DLaw.hxx -BRepFill_EdgeFaceAndOrder.cxx -BRepFill_EdgeFaceAndOrder.hxx -BRepFill_EdgeOnSurfLaw.cxx -BRepFill_EdgeOnSurfLaw.hxx -BRepFill_Evolved.cxx -BRepFill_Evolved.hxx -BRepFill_FaceAndOrder.cxx -BRepFill_FaceAndOrder.hxx -BRepFill_Filling.cxx -BRepFill_Filling.hxx -BRepFill_Generator.cxx -BRepFill_Generator.hxx -BRepFill_Generator.lxx -BRepFill_IndexedDataMapOfOrientedShapeListOfShape.hxx -BRepFill_ListIteratorOfListOfOffsetWire.hxx -BRepFill_ListOfOffsetWire.hxx -BRepFill_LocationLaw.cxx -BRepFill_LocationLaw.hxx -BRepFill_MultiLine.cxx -BRepFill_MultiLine.hxx -BRepFill_NSections.cxx -BRepFill_NSections.hxx -BRepFill_OffsetAncestors.cxx -BRepFill_OffsetAncestors.hxx -BRepFill_OffsetWire.cxx -BRepFill_OffsetWire.hxx -BRepFill_Pipe.cxx -BRepFill_Pipe.hxx -BRepFill_PipeShell.cxx -BRepFill_PipeShell.hxx -BRepFill_Section.cxx -BRepFill_Section.hxx -BRepFill_Section.lxx -BRepFill_SectionLaw.cxx -BRepFill_SectionLaw.hxx -BRepFill_SectionPlacement.cxx -BRepFill_SectionPlacement.hxx -BRepFill_SequenceOfEdgeFaceAndOrder.hxx -BRepFill_SequenceOfFaceAndOrder.hxx -BRepFill_SequenceOfSection.hxx -BRepFill_ShapeLaw.cxx -BRepFill_ShapeLaw.hxx -BRepFill_ShapeLaw.lxx -BRepFill_Sweep.cxx -BRepFill_Sweep.hxx -BRepFill_ThruSectionErrorStatus.hxx -BRepFill_TransitionStyle.hxx -BRepFill_TrimEdgeTool.cxx -BRepFill_TrimEdgeTool.hxx -BRepFill_TrimShellCorner.cxx -BRepFill_TrimShellCorner.hxx -BRepFill_TrimSurfaceTool.cxx -BRepFill_TrimSurfaceTool.hxx -BRepFill_TypeOfContact.hxx diff --git a/src/BRepFilletAPI/FILES b/src/BRepFilletAPI/FILES deleted file mode 100644 index 497c29905b..0000000000 --- a/src/BRepFilletAPI/FILES +++ /dev/null @@ -1,8 +0,0 @@ -BRepFilletAPI_LocalOperation.hxx -BRepFilletAPI_MakeChamfer.cxx -BRepFilletAPI_MakeChamfer.hxx -BRepFilletAPI_MakeFillet.cxx -BRepFilletAPI_MakeFillet.hxx -BRepFilletAPI_MakeFillet2d.cxx -BRepFilletAPI_MakeFillet2d.hxx -BRepFilletAPI_MakeFillet2d.lxx diff --git a/src/BRepGProp/FILES b/src/BRepGProp/FILES deleted file mode 100644 index 7018d7221b..0000000000 --- a/src/BRepGProp/FILES +++ /dev/null @@ -1,30 +0,0 @@ -BRepGProp.cxx -BRepGProp.hxx -BRepGProp_Cinert.cxx -BRepGProp_Cinert.hxx -BRepGProp_Domain.cxx -BRepGProp_Domain.hxx -BRepGProp_Domain.lxx -BRepGProp_EdgeTool.cxx -BRepGProp_EdgeTool.hxx -BRepGProp_Face.cxx -BRepGProp_Face.hxx -BRepGProp_Face.lxx -BRepGProp_Gauss.cxx -BRepGProp_Gauss.hxx -BRepGProp_Sinert.cxx -BRepGProp_Sinert.hxx -BRepGProp_TFunction.cxx -BRepGProp_TFunction.hxx -BRepGProp_TFunction.lxx -BRepGProp_UFunction.cxx -BRepGProp_UFunction.hxx -BRepGProp_UFunction.lxx -BRepGProp_Vinert.cxx -BRepGProp_Vinert.hxx -BRepGProp_VinertGK.cxx -BRepGProp_VinertGK.hxx -BRepGProp_MeshCinert.hxx -BRepGProp_MeshCinert.cxx -BRepGProp_MeshProps.hxx -BRepGProp_MeshProps.cxx diff --git a/src/BRepIntCurveSurface/FILES b/src/BRepIntCurveSurface/FILES deleted file mode 100644 index f262a9c4ca..0000000000 --- a/src/BRepIntCurveSurface/FILES +++ /dev/null @@ -1,2 +0,0 @@ -BRepIntCurveSurface_Inter.cxx -BRepIntCurveSurface_Inter.hxx diff --git a/src/BRepLProp/FILES b/src/BRepLProp/FILES deleted file mode 100644 index 3f312a0482..0000000000 --- a/src/BRepLProp/FILES +++ /dev/null @@ -1,10 +0,0 @@ -BRepLProp.cxx -BRepLProp.hxx -BRepLProp_CLProps.hxx -BRepLProp_CLProps_0.cxx -BRepLProp_CurveTool.cxx -BRepLProp_CurveTool.hxx -BRepLProp_SLProps.hxx -BRepLProp_SLProps_0.cxx -BRepLProp_SurfaceTool.cxx -BRepLProp_SurfaceTool.hxx diff --git a/src/BRepLib/FILES b/src/BRepLib/FILES deleted file mode 100755 index 2a967b5023..0000000000 --- a/src/BRepLib/FILES +++ /dev/null @@ -1,41 +0,0 @@ -BRepLib.cxx -BRepLib.hxx -BRepLib_1.cxx -BRepLib_CheckCurveOnSurface.cxx -BRepLib_CheckCurveOnSurface.hxx -BRepLib_Command.cxx -BRepLib_Command.hxx -BRepLib_EdgeError.hxx -BRepLib_FaceError.hxx -BRepLib_FindSurface.cxx -BRepLib_FindSurface.hxx -BRepLib_FuseEdges.cxx -BRepLib_FuseEdges.hxx -BRepLib_MakeEdge.cxx -BRepLib_MakeEdge.hxx -BRepLib_MakeEdge2d.cxx -BRepLib_MakeEdge2d.hxx -BRepLib_MakeFace.cxx -BRepLib_MakeFace.hxx -BRepLib_MakePolygon.cxx -BRepLib_MakePolygon.hxx -BRepLib_MakeShape.cxx -BRepLib_MakeShape.hxx -BRepLib_MakeShell.cxx -BRepLib_MakeShell.hxx -BRepLib_MakeSolid.cxx -BRepLib_MakeSolid.hxx -BRepLib_MakeVertex.cxx -BRepLib_MakeVertex.hxx -BRepLib_MakeWire.cxx -BRepLib_MakeWire.hxx -BRepLib_MakeWire_1.cxx -BRepLib_PointCloudShape.hxx -BRepLib_PointCloudShape.cxx -BRepLib_ShapeModification.hxx -BRepLib_ShellError.hxx -BRepLib_ToolTriangulatedShape.hxx -BRepLib_ToolTriangulatedShape.cxx -BRepLib_ValidateEdge.cxx -BRepLib_ValidateEdge.hxx -BRepLib_WireError.hxx diff --git a/src/BRepMAT2d/FILES b/src/BRepMAT2d/FILES deleted file mode 100644 index 8532dadc30..0000000000 --- a/src/BRepMAT2d/FILES +++ /dev/null @@ -1,10 +0,0 @@ -BRepMAT2d_BisectingLocus.cxx -BRepMAT2d_BisectingLocus.hxx -BRepMAT2d_DataMapIteratorOfDataMapOfBasicEltShape.hxx -BRepMAT2d_DataMapIteratorOfDataMapOfShapeSequenceOfBasicElt.hxx -BRepMAT2d_DataMapOfBasicEltShape.hxx -BRepMAT2d_DataMapOfShapeSequenceOfBasicElt.hxx -BRepMAT2d_Explorer.cxx -BRepMAT2d_Explorer.hxx -BRepMAT2d_LinkTopoBilo.cxx -BRepMAT2d_LinkTopoBilo.hxx diff --git a/src/BRepMesh/FILES b/src/BRepMesh/FILES deleted file mode 100755 index 07fbe7e0dd..0000000000 --- a/src/BRepMesh/FILES +++ /dev/null @@ -1,102 +0,0 @@ -BRepMesh_BaseMeshAlgo.cxx -BRepMesh_BaseMeshAlgo.hxx -BRepMesh_ConstrainedBaseMeshAlgo.hxx -BRepMesh_ConstrainedBaseMeshAlgo.cxx -BRepMesh_BoundaryParamsRangeSplitter.hxx -BRepMesh_Circle.hxx -BRepMesh_CircleInspector.hxx -BRepMesh_CircleTool.cxx -BRepMesh_CircleTool.hxx -BRepMesh_Classifier.cxx -BRepMesh_Classifier.hxx -BRepMesh_ConeRangeSplitter.cxx -BRepMesh_ConeRangeSplitter.hxx -BRepMesh_Context.cxx -BRepMesh_Context.hxx -BRepMesh_CurveTessellator.cxx -BRepMesh_CurveTessellator.hxx -BRepMesh_CylinderRangeSplitter.cxx -BRepMesh_CylinderRangeSplitter.hxx -BRepMesh_DataStructureOfDelaun.cxx -BRepMesh_DataStructureOfDelaun.hxx -BRepMesh_DefaultRangeSplitter.cxx -BRepMesh_DefaultRangeSplitter.hxx -BRepMesh_Deflection.cxx -BRepMesh_Deflection.hxx -BRepMesh_DegreeOfFreedom.hxx -BRepMesh_Delaun.cxx -BRepMesh_Delaun.hxx -BRepMesh_DelaunayBaseMeshAlgo.cxx -BRepMesh_DelaunayBaseMeshAlgo.hxx -BRepMesh_DelaunayDeflectionControlMeshAlgo.hxx -BRepMesh_DelaunayNodeInsertionMeshAlgo.hxx -BRepMesh_DiscretFactory.cxx -BRepMesh_DiscretFactory.hxx -BRepMesh_DiscretRoot.cxx -BRepMesh_DiscretRoot.hxx -BRepMesh_Edge.hxx -BRepMesh_EdgeDiscret.cxx -BRepMesh_EdgeDiscret.hxx -BRepMesh_EdgeParameterProvider.hxx -BRepMesh_EdgeTessellationExtractor.cxx -BRepMesh_EdgeTessellationExtractor.hxx -BRepMesh_ExtrusionRangeSplitter.cxx -BRepMesh_ExtrusionRangeSplitter.hxx -BRepMesh_FaceChecker.cxx -BRepMesh_FaceChecker.hxx -BRepMesh_FaceDiscret.cxx -BRepMesh_FaceDiscret.hxx -BRepMesh_FactoryError.hxx -BRepMesh_FastDiscret.hxx -BRepMesh_GeomTool.cxx -BRepMesh_GeomTool.hxx -BRepMesh_IncrementalMesh.cxx -BRepMesh_IncrementalMesh.hxx -BRepMesh_MeshAlgoFactory.cxx -BRepMesh_MeshAlgoFactory.hxx -BRepMesh_MeshTool.cxx -BRepMesh_MeshTool.hxx -BRepMesh_ModelBuilder.cxx -BRepMesh_ModelBuilder.hxx -BRepMesh_ModelHealer.cxx -BRepMesh_ModelHealer.hxx -BRepMesh_ModelPostProcessor.cxx -BRepMesh_ModelPostProcessor.hxx -BRepMesh_ModelPreProcessor.cxx -BRepMesh_ModelPreProcessor.hxx -BRepMesh_NURBSRangeSplitter.cxx -BRepMesh_NURBSRangeSplitter.hxx -BRepMesh_NodeInsertionMeshAlgo.hxx -BRepMesh_OrientedEdge.hxx -BRepMesh_PairOfIndex.hxx -BRepMesh_PluginEntryType.hxx -BRepMesh_PluginMacro.hxx -BRepMesh_SelectorOfDataStructureOfDelaun.cxx -BRepMesh_SelectorOfDataStructureOfDelaun.hxx -BRepMesh_ShapeTool.cxx -BRepMesh_ShapeTool.hxx -BRepMesh_ShapeVisitor.cxx -BRepMesh_ShapeVisitor.hxx -BRepMesh_SphereRangeSplitter.cxx -BRepMesh_SphereRangeSplitter.hxx -BRepMesh_TorusRangeSplitter.cxx -BRepMesh_TorusRangeSplitter.hxx -BRepMesh_Triangle.hxx -BRepMesh_UndefinedRangeSplitter.cxx -BRepMesh_UndefinedRangeSplitter.hxx -BRepMesh_UVParamRangeSplitter.hxx -BRepMesh_Vertex.hxx -BRepMesh_VertexInspector.hxx -BRepMesh_VertexTool.cxx -BRepMesh_VertexTool.hxx -BRepMesh_CustomBaseMeshAlgo.hxx -BRepMesh_CustomBaseMeshAlgo.cxx -BRepMesh_CustomDelaunayBaseMeshAlgo.hxx -delabella.pxx -delabella.cpp -BRepMesh_DelabellaBaseMeshAlgo.hxx -BRepMesh_DelabellaBaseMeshAlgo.cxx -BRepMesh_DelabellaMeshAlgoFactory.hxx -BRepMesh_DelabellaMeshAlgoFactory.cxx -BRepMesh_Triangulator.cxx -BRepMesh_Triangulator.hxx diff --git a/src/BRepMeshData/FILES b/src/BRepMeshData/FILES deleted file mode 100644 index eb27095179..0000000000 --- a/src/BRepMeshData/FILES +++ /dev/null @@ -1,12 +0,0 @@ -BRepMeshData_Curve.cxx -BRepMeshData_Curve.hxx -BRepMeshData_Edge.cxx -BRepMeshData_Edge.hxx -BRepMeshData_Face.cxx -BRepMeshData_Face.hxx -BRepMeshData_Model.cxx -BRepMeshData_Model.hxx -BRepMeshData_PCurve.cxx -BRepMeshData_PCurve.hxx -BRepMeshData_Wire.cxx -BRepMeshData_Wire.hxx diff --git a/src/BRepOffset/FILES b/src/BRepOffset/FILES deleted file mode 100644 index 6a70be1cc8..0000000000 --- a/src/BRepOffset/FILES +++ /dev/null @@ -1,36 +0,0 @@ -BRepOffset.cxx -BRepOffset.hxx -BRepOffset_Analyse.cxx -BRepOffset_Analyse.hxx -BRepOffset_DataMapIteratorOfDataMapOfShapeListOfInterval.hxx -BRepOffset_DataMapIteratorOfDataMapOfShapeMapOfShape.hxx -BRepOffset_DataMapIteratorOfDataMapOfShapeOffset.hxx -BRepOffset_DataMapOfShapeListOfInterval.hxx -BRepOffset_DataMapOfShapeMapOfShape.hxx -BRepOffset_DataMapOfShapeOffset.hxx -BRepOffset_Error.hxx -BRepOffset_Inter2d.cxx -BRepOffset_Inter2d.hxx -BRepOffset_Inter3d.cxx -BRepOffset_Inter3d.hxx -BRepOffset_Interval.cxx -BRepOffset_Interval.hxx -BRepOffset_Interval.lxx -BRepOffset_ListIteratorOfListOfInterval.hxx -BRepOffset_ListOfInterval.hxx -BRepOffset_MakeLoops.cxx -BRepOffset_MakeLoops.hxx -BRepOffset_MakeOffset.cxx -BRepOffset_MakeOffset_1.cxx -BRepOffset_MakeOffset.hxx -BRepOffset_MakeSimpleOffset.cxx -BRepOffset_MakeSimpleOffset.hxx -BRepOffset_Mode.hxx -BRepOffset_Offset.cxx -BRepOffset_Offset.hxx -BRepOffset_SimpleOffset.cxx -BRepOffset_SimpleOffset.hxx -BRepOffset_Offset.lxx -BRepOffset_Status.hxx -BRepOffset_Tool.cxx -BRepOffset_Tool.hxx diff --git a/src/BRepOffsetAPI/FILES b/src/BRepOffsetAPI/FILES deleted file mode 100644 index 4680ffd109..0000000000 --- a/src/BRepOffsetAPI/FILES +++ /dev/null @@ -1,29 +0,0 @@ -BRepOffsetAPI_DraftAngle.cxx -BRepOffsetAPI_DraftAngle.hxx -BRepOffsetAPI_FindContigousEdges.cxx -BRepOffsetAPI_FindContigousEdges.hxx -BRepOffsetAPI_MakeDraft.cxx -BRepOffsetAPI_MakeDraft.hxx -BRepOffsetAPI_MakeEvolved.cxx -BRepOffsetAPI_MakeEvolved.hxx -BRepOffsetAPI_MakeFilling.cxx -BRepOffsetAPI_MakeFilling.hxx -BRepOffsetAPI_MakeOffset.cxx -BRepOffsetAPI_MakeOffset.hxx -BRepOffsetAPI_MakeOffsetShape.cxx -BRepOffsetAPI_MakeOffsetShape.hxx -BRepOffsetAPI_MakePipe.cxx -BRepOffsetAPI_MakePipe.hxx -BRepOffsetAPI_MakePipeShell.cxx -BRepOffsetAPI_MakePipeShell.hxx -BRepOffsetAPI_MakeThickSolid.cxx -BRepOffsetAPI_MakeThickSolid.hxx -BRepOffsetAPI_MiddlePath.cxx -BRepOffsetAPI_MiddlePath.hxx -BRepOffsetAPI_NormalProjection.cxx -BRepOffsetAPI_NormalProjection.hxx -BRepOffsetAPI_SequenceOfSequenceOfReal.hxx -BRepOffsetAPI_SequenceOfSequenceOfShape.hxx -BRepOffsetAPI_Sewing.hxx -BRepOffsetAPI_ThruSections.cxx -BRepOffsetAPI_ThruSections.hxx diff --git a/src/BRepPreviewAPI/FILES b/src/BRepPreviewAPI/FILES deleted file mode 100644 index 603024d82a..0000000000 --- a/src/BRepPreviewAPI/FILES +++ /dev/null @@ -1,2 +0,0 @@ -BRepPreviewAPI_MakeBox.hxx -BRepPreviewAPI_MakeBox.cxx diff --git a/src/BRepPrim/FILES b/src/BRepPrim/FILES deleted file mode 100644 index 6515233cf6..0000000000 --- a/src/BRepPrim/FILES +++ /dev/null @@ -1,22 +0,0 @@ -BRepPrim_Builder.cxx -BRepPrim_Builder.hxx -BRepPrim_Builder.lxx -BRepPrim_Cone.cxx -BRepPrim_Cone.hxx -BRepPrim_Cylinder.cxx -BRepPrim_Cylinder.hxx -BRepPrim_Direction.hxx -BRepPrim_FaceBuilder.cxx -BRepPrim_FaceBuilder.hxx -BRepPrim_GWedge.cxx -BRepPrim_GWedge.hxx -BRepPrim_OneAxis.cxx -BRepPrim_OneAxis.hxx -BRepPrim_Revolution.cxx -BRepPrim_Revolution.hxx -BRepPrim_Sphere.cxx -BRepPrim_Sphere.hxx -BRepPrim_Torus.cxx -BRepPrim_Torus.hxx -BRepPrim_Wedge.cxx -BRepPrim_Wedge.hxx diff --git a/src/BRepPrimAPI/FILES b/src/BRepPrimAPI/FILES deleted file mode 100644 index f7d3a6a964..0000000000 --- a/src/BRepPrimAPI/FILES +++ /dev/null @@ -1,23 +0,0 @@ -BRepPrimAPI_MakeBox.cxx -BRepPrimAPI_MakeBox.hxx -BRepPrimAPI_MakeCone.cxx -BRepPrimAPI_MakeCone.hxx -BRepPrimAPI_MakeCylinder.cxx -BRepPrimAPI_MakeCylinder.hxx -BRepPrimAPI_MakeHalfSpace.cxx -BRepPrimAPI_MakeHalfSpace.hxx -BRepPrimAPI_MakeOneAxis.cxx -BRepPrimAPI_MakeOneAxis.hxx -BRepPrimAPI_MakePrism.cxx -BRepPrimAPI_MakePrism.hxx -BRepPrimAPI_MakeRevol.cxx -BRepPrimAPI_MakeRevol.hxx -BRepPrimAPI_MakeRevolution.cxx -BRepPrimAPI_MakeRevolution.hxx -BRepPrimAPI_MakeSphere.cxx -BRepPrimAPI_MakeSphere.hxx -BRepPrimAPI_MakeSweep.hxx -BRepPrimAPI_MakeTorus.cxx -BRepPrimAPI_MakeTorus.hxx -BRepPrimAPI_MakeWedge.cxx -BRepPrimAPI_MakeWedge.hxx diff --git a/src/BRepProj/FILES b/src/BRepProj/FILES deleted file mode 100644 index 0cf02dce18..0000000000 --- a/src/BRepProj/FILES +++ /dev/null @@ -1,3 +0,0 @@ -BRepProj_Projection.cxx -BRepProj_Projection.hxx -BRepProj_Projection.lxx diff --git a/src/BRepSweep/FILES b/src/BRepSweep/FILES deleted file mode 100644 index d0a626cbbf..0000000000 --- a/src/BRepSweep/FILES +++ /dev/null @@ -1,20 +0,0 @@ -BRepSweep_Builder.cxx -BRepSweep_Builder.hxx -BRepSweep_Builder.lxx -BRepSweep_Iterator.cxx -BRepSweep_Iterator.hxx -BRepSweep_Iterator.lxx -BRepSweep_NumLinearRegularSweep.cxx -BRepSweep_NumLinearRegularSweep.hxx -BRepSweep_Prism.cxx -BRepSweep_Prism.hxx -BRepSweep_Revol.cxx -BRepSweep_Revol.hxx -BRepSweep_Rotation.cxx -BRepSweep_Rotation.hxx -BRepSweep_Tool.cxx -BRepSweep_Tool.hxx -BRepSweep_Translation.cxx -BRepSweep_Translation.hxx -BRepSweep_Trsf.cxx -BRepSweep_Trsf.hxx diff --git a/src/BRepTest/FILES b/src/BRepTest/FILES deleted file mode 100755 index 2a82d4cddb..0000000000 --- a/src/BRepTest/FILES +++ /dev/null @@ -1,25 +0,0 @@ -BRepTest.cxx -BRepTest.hxx -BRepTest_BasicCommands.cxx -BRepTest_ChamferCommands.cxx -BRepTest_CheckCommands.cxx -BRepTest_CurveCommands.cxx -BRepTest_DraftAngleCommands.cxx -BRepTest_DrawableHistory.cxx -BRepTest_DrawableHistory.hxx -BRepTest_ExtremaCommands.cxx -BRepTest_FeatureCommands.cxx -BRepTest_Fillet2DCommands.cxx -BRepTest_FilletCommands.cxx -BRepTest_FillingCommands.cxx -BRepTest_GPropCommands.cxx -BRepTest_HistoryCommands.cxx -BRepTest_MatCommands.cxx -BRepTest_Objects.cxx -BRepTest_Objects.hxx -BRepTest_OtherCommands.cxx -BRepTest_PrimitiveCommands.cxx -BRepTest_ProjectionCommands.cxx -BRepTest_SurfaceCommands.cxx -BRepTest_SweepCommands.cxx -BRepTest_TopologyCommands.cxx diff --git a/src/BRepToIGES/FILES b/src/BRepToIGES/FILES deleted file mode 100644 index 275a53578f..0000000000 --- a/src/BRepToIGES/FILES +++ /dev/null @@ -1,8 +0,0 @@ -BRepToIGES_BREntity.cxx -BRepToIGES_BREntity.hxx -BRepToIGES_BRShell.cxx -BRepToIGES_BRShell.hxx -BRepToIGES_BRSolid.cxx -BRepToIGES_BRSolid.hxx -BRepToIGES_BRWire.cxx -BRepToIGES_BRWire.hxx diff --git a/src/BRepToIGESBRep/FILES b/src/BRepToIGESBRep/FILES deleted file mode 100644 index 50bb7336be..0000000000 --- a/src/BRepToIGESBRep/FILES +++ /dev/null @@ -1,2 +0,0 @@ -BRepToIGESBRep_Entity.cxx -BRepToIGESBRep_Entity.hxx diff --git a/src/BRepTools/FILES b/src/BRepTools/FILES deleted file mode 100644 index 3b1286ee80..0000000000 --- a/src/BRepTools/FILES +++ /dev/null @@ -1,32 +0,0 @@ -BRepTools.cxx -BRepTools.hxx -BRepTools_CopyModification.cxx -BRepTools_CopyModification.hxx -BRepTools_DataMapIteratorOfMapOfVertexPnt2d.hxx -BRepTools_Debug.cxx -BRepTools_GTrsfModification.cxx -BRepTools_GTrsfModification.hxx -BRepTools_History.hxx -BRepTools_History.cxx -BRepTools_MapOfVertexPnt2d.hxx -BRepTools_Modification.cxx -BRepTools_Modification.hxx -BRepTools_Modifier.cxx -BRepTools_Modifier.hxx -BRepTools_Modifier.lxx -BRepTools_NurbsConvertModification.cxx -BRepTools_NurbsConvertModification.hxx -BRepTools_Quilt.cxx -BRepTools_Quilt.hxx -BRepTools_ReShape.cxx -BRepTools_ReShape.hxx -BRepTools_ShapeSet.cxx -BRepTools_ShapeSet.hxx -BRepTools_Substitution.cxx -BRepTools_Substitution.hxx -BRepTools_TrsfModification.cxx -BRepTools_TrsfModification.hxx -BRepTools_WireExplorer.cxx -BRepTools_WireExplorer.hxx -BRepTools_PurgeLocations.cxx -BRepTools_PurgeLocations.hxx \ No newline at end of file diff --git a/src/BRepTopAdaptor/FILES b/src/BRepTopAdaptor/FILES deleted file mode 100644 index 4ec4f6ad7a..0000000000 --- a/src/BRepTopAdaptor/FILES +++ /dev/null @@ -1,12 +0,0 @@ -BRepTopAdaptor_DataMapIteratorOfMapOfShapeTool.hxx -BRepTopAdaptor_FClass2d.cxx -BRepTopAdaptor_FClass2d.hxx -BRepTopAdaptor_HVertex.cxx -BRepTopAdaptor_HVertex.hxx -BRepTopAdaptor_HVertex.lxx -BRepTopAdaptor_MapOfShapeTool.hxx -BRepTopAdaptor_SeqOfPtr.hxx -BRepTopAdaptor_Tool.cxx -BRepTopAdaptor_Tool.hxx -BRepTopAdaptor_TopolTool.cxx -BRepTopAdaptor_TopolTool.hxx diff --git a/src/BSplCLib/FILES b/src/BSplCLib/FILES deleted file mode 100755 index 5aec2f5496..0000000000 --- a/src/BSplCLib/FILES +++ /dev/null @@ -1,14 +0,0 @@ -BSplCLib.cxx -BSplCLib.hxx -BSplCLib.lxx -BSplCLib_1.cxx -BSplCLib_2.cxx -BSplCLib_3.cxx -BSplCLib_BzSyntaxes.cxx -BSplCLib_Cache.cxx -BSplCLib_Cache.hxx -BSplCLib_CacheParams.hxx -BSplCLib_CurveComputation.gxx -BSplCLib_EvaluatorFunction.hxx -BSplCLib_KnotDistribution.hxx -BSplCLib_MultDistribution.hxx diff --git a/src/BSplSLib/FILES b/src/BSplSLib/FILES deleted file mode 100755 index a8a96a2cb7..0000000000 --- a/src/BSplSLib/FILES +++ /dev/null @@ -1,7 +0,0 @@ -BSplSLib.cxx -BSplSLib.hxx -BSplSLib.lxx -BSplSLib_BzSyntaxes.cxx -BSplSLib_Cache.cxx -BSplSLib_Cache.hxx -BSplSLib_EvaluatorFunction.hxx diff --git a/src/BVH/FILES b/src/BVH/FILES deleted file mode 100644 index df24705741..0000000000 --- a/src/BVH/FILES +++ /dev/null @@ -1,40 +0,0 @@ -BVH.cxx -BVH_BinnedBuilder.hxx -BVH_Box.hxx -BVH_BoxSet.hxx -BVH_Builder.hxx -BVH_Builder3d.hxx -BVH_BuildQueue.hxx -BVH_BuildQueue.cxx -BVH_BuildThread.hxx -BVH_BuildThread.cxx -BVH_Constants.hxx -BVH_Distance.hxx -BVH_DistanceField.hxx -BVH_DistanceField.lxx -BVH_Geometry.hxx -BVH_IndexedBoxSet.hxx -BVH_LinearBuilder.hxx -BVH_Object.hxx -BVH_ObjectSet.hxx -BVH_PairDistance.hxx -BVH_PrimitiveSet.hxx -BVH_PrimitiveSet3d.hxx -BVH_Properties.cxx -BVH_Properties.hxx -BVH_QueueBuilder.hxx -BVH_Ray.hxx -BVH_Set.hxx -BVH_Sorter.hxx -BVH_QuickSorter.hxx -BVH_RadixSorter.hxx -BVH_SpatialMedianBuilder.hxx -BVH_SweepPlaneBuilder.hxx -BVH_Tools.hxx -BVH_Traverse.hxx -BVH_Traverse.lxx -BVH_Tree.hxx -BVH_BinaryTree.hxx -BVH_QuadTree.hxx -BVH_Triangulation.hxx -BVH_Types.hxx diff --git a/src/BiTgte/FILES b/src/BiTgte/FILES deleted file mode 100644 index 479b892fb4..0000000000 --- a/src/BiTgte/FILES +++ /dev/null @@ -1,7 +0,0 @@ -BiTgte_Blend.cxx -BiTgte_Blend.hxx -BiTgte_ContactType.hxx -BiTgte_CurveOnEdge.cxx -BiTgte_CurveOnEdge.hxx -BiTgte_CurveOnVertex.cxx -BiTgte_CurveOnVertex.hxx diff --git a/src/BinDrivers/FILES b/src/BinDrivers/FILES deleted file mode 100755 index f8bea589c6..0000000000 --- a/src/BinDrivers/FILES +++ /dev/null @@ -1,7 +0,0 @@ -BinDrivers.cxx -BinDrivers.hxx -BinDrivers_DocumentRetrievalDriver.cxx -BinDrivers_DocumentRetrievalDriver.hxx -BinDrivers_DocumentStorageDriver.cxx -BinDrivers_DocumentStorageDriver.hxx -BinDrivers_Marker.hxx diff --git a/src/BinLDrivers/FILES b/src/BinLDrivers/FILES deleted file mode 100755 index 9d52e0d2b9..0000000000 --- a/src/BinLDrivers/FILES +++ /dev/null @@ -1,10 +0,0 @@ -BinLDrivers.cxx -BinLDrivers.hxx -BinLDrivers_DocumentRetrievalDriver.cxx -BinLDrivers_DocumentRetrievalDriver.hxx -BinLDrivers_DocumentSection.cxx -BinLDrivers_DocumentSection.hxx -BinLDrivers_DocumentStorageDriver.cxx -BinLDrivers_DocumentStorageDriver.hxx -BinLDrivers_Marker.hxx -BinLDrivers_VectorOfDocumentSection.hxx diff --git a/src/BinMDF/FILES b/src/BinMDF/FILES deleted file mode 100644 index 569e29b116..0000000000 --- a/src/BinMDF/FILES +++ /dev/null @@ -1,19 +0,0 @@ -BinMDF.cxx -BinMDF.hxx -BinMDF_ADriver.cxx -BinMDF_ADriver.hxx -BinMDF_ADriver.lxx -BinMDF_ADriverTable.cxx -BinMDF_ADriverTable.hxx -BinMDF_ADriverTable.lxx -BinMDF_DataMapIteratorOfTypeADriverMap.hxx -BinMDF_DoubleMapIteratorOfTypeIdMap.hxx -BinMDF_ReferenceDriver.cxx -BinMDF_ReferenceDriver.hxx -BinMDF_StringIdMap.hxx -BinMDF_TagSourceDriver.cxx -BinMDF_TagSourceDriver.hxx -BinMDF_TypeADriverMap.hxx -BinMDF_TypeIdMap.hxx -BinMDF_DerivedDriver.cxx -BinMDF_DerivedDriver.hxx diff --git a/src/BinMDataStd/FILES b/src/BinMDataStd/FILES deleted file mode 100644 index 35832aeef1..0000000000 --- a/src/BinMDataStd/FILES +++ /dev/null @@ -1,46 +0,0 @@ -BinMDataStd.cxx -BinMDataStd.hxx -BinMDataStd_AsciiStringDriver.cxx -BinMDataStd_AsciiStringDriver.hxx -BinMDataStd_BooleanArrayDriver.cxx -BinMDataStd_BooleanArrayDriver.hxx -BinMDataStd_BooleanListDriver.cxx -BinMDataStd_BooleanListDriver.hxx -BinMDataStd_ByteArrayDriver.cxx -BinMDataStd_ByteArrayDriver.hxx -BinMDataStd_ExpressionDriver.cxx -BinMDataStd_ExpressionDriver.hxx -BinMDataStd_ExtStringArrayDriver.cxx -BinMDataStd_ExtStringArrayDriver.hxx -BinMDataStd_ExtStringListDriver.cxx -BinMDataStd_ExtStringListDriver.hxx -BinMDataStd_IntegerArrayDriver.cxx -BinMDataStd_IntegerArrayDriver.hxx -BinMDataStd_IntegerDriver.cxx -BinMDataStd_IntegerDriver.hxx -BinMDataStd_IntegerListDriver.cxx -BinMDataStd_IntegerListDriver.hxx -BinMDataStd_IntPackedMapDriver.cxx -BinMDataStd_IntPackedMapDriver.hxx -BinMDataStd_NamedDataDriver.cxx -BinMDataStd_NamedDataDriver.hxx -BinMDataStd_GenericExtStringDriver.cxx -BinMDataStd_GenericExtStringDriver.hxx -BinMDataStd_RealArrayDriver.cxx -BinMDataStd_RealArrayDriver.hxx -BinMDataStd_RealDriver.cxx -BinMDataStd_RealDriver.hxx -BinMDataStd_RealListDriver.cxx -BinMDataStd_RealListDriver.hxx -BinMDataStd_ReferenceArrayDriver.cxx -BinMDataStd_ReferenceArrayDriver.hxx -BinMDataStd_ReferenceListDriver.cxx -BinMDataStd_ReferenceListDriver.hxx -BinMDataStd_GenericEmptyDriver.cxx -BinMDataStd_GenericEmptyDriver.hxx -BinMDataStd_TreeNodeDriver.cxx -BinMDataStd_TreeNodeDriver.hxx -BinMDataStd_UAttributeDriver.cxx -BinMDataStd_UAttributeDriver.hxx -BinMDataStd_VariableDriver.cxx -BinMDataStd_VariableDriver.hxx diff --git a/src/BinMDataXtd/FILES b/src/BinMDataXtd/FILES deleted file mode 100644 index fb15e5951d..0000000000 --- a/src/BinMDataXtd/FILES +++ /dev/null @@ -1,14 +0,0 @@ -BinMDataXtd.cxx -BinMDataXtd.hxx -BinMDataXtd_ConstraintDriver.cxx -BinMDataXtd_ConstraintDriver.hxx -BinMDataXtd_GeometryDriver.cxx -BinMDataXtd_GeometryDriver.hxx -BinMDataXtd_PatternStdDriver.cxx -BinMDataXtd_PatternStdDriver.hxx -BinMDataXtd_PresentationDriver.hxx -BinMDataXtd_PresentationDriver.cxx -BinMDataXtd_PositionDriver.hxx -BinMDataXtd_PositionDriver.cxx -BinMDataXtd_TriangulationDriver.cxx -BinMDataXtd_TriangulationDriver.hxx diff --git a/src/BinMDocStd/FILES b/src/BinMDocStd/FILES deleted file mode 100644 index 71af5b7e27..0000000000 --- a/src/BinMDocStd/FILES +++ /dev/null @@ -1,4 +0,0 @@ -BinMDocStd.cxx -BinMDocStd.hxx -BinMDocStd_XLinkDriver.cxx -BinMDocStd_XLinkDriver.hxx diff --git a/src/BinMFunction/FILES b/src/BinMFunction/FILES deleted file mode 100644 index 6ec18b0d93..0000000000 --- a/src/BinMFunction/FILES +++ /dev/null @@ -1,8 +0,0 @@ -BinMFunction.cxx -BinMFunction.hxx -BinMFunction_FunctionDriver.cxx -BinMFunction_FunctionDriver.hxx -BinMFunction_GraphNodeDriver.cxx -BinMFunction_GraphNodeDriver.hxx -BinMFunction_ScopeDriver.cxx -BinMFunction_ScopeDriver.hxx diff --git a/src/BinMNaming/FILES b/src/BinMNaming/FILES deleted file mode 100644 index 6dbd900ddf..0000000000 --- a/src/BinMNaming/FILES +++ /dev/null @@ -1,7 +0,0 @@ -BinMNaming.cxx -BinMNaming.hxx -BinMNaming_NamedShapeDriver.cxx -BinMNaming_NamedShapeDriver.hxx -BinMNaming_NamedShapeDriver.lxx -BinMNaming_NamingDriver.cxx -BinMNaming_NamingDriver.hxx diff --git a/src/BinMXCAFDoc/FILES b/src/BinMXCAFDoc/FILES deleted file mode 100644 index 19026ccd2c..0000000000 --- a/src/BinMXCAFDoc/FILES +++ /dev/null @@ -1,30 +0,0 @@ -BinMXCAFDoc.cxx -BinMXCAFDoc.hxx -BinMXCAFDoc_AssemblyItemRefDriver.cxx -BinMXCAFDoc_AssemblyItemRefDriver.hxx -BinMXCAFDoc_CentroidDriver.cxx -BinMXCAFDoc_CentroidDriver.hxx -BinMXCAFDoc_ColorDriver.cxx -BinMXCAFDoc_ColorDriver.hxx -BinMXCAFDoc_DatumDriver.cxx -BinMXCAFDoc_DatumDriver.hxx -BinMXCAFDoc_DimTolDriver.cxx -BinMXCAFDoc_DimTolDriver.hxx -BinMXCAFDoc_GraphNodeDriver.cxx -BinMXCAFDoc_GraphNodeDriver.hxx -BinMXCAFDoc_LengthUnitDriver.cxx -BinMXCAFDoc_LengthUnitDriver.hxx -BinMXCAFDoc_LocationDriver.cxx -BinMXCAFDoc_LocationDriver.hxx -BinMXCAFDoc_MaterialDriver.cxx -BinMXCAFDoc_MaterialDriver.hxx -BinMXCAFDoc_NoteDriver.cxx -BinMXCAFDoc_NoteDriver.hxx -BinMXCAFDoc_NoteCommentDriver.cxx -BinMXCAFDoc_NoteCommentDriver.hxx -BinMXCAFDoc_NoteBinDataDriver.cxx -BinMXCAFDoc_NoteBinDataDriver.hxx -BinMXCAFDoc_VisMaterialDriver.cxx -BinMXCAFDoc_VisMaterialDriver.hxx -BinMXCAFDoc_VisMaterialToolDriver.cxx -BinMXCAFDoc_VisMaterialToolDriver.hxx diff --git a/src/BinObjMgt/FILES b/src/BinObjMgt/FILES deleted file mode 100755 index 4683730dcb..0000000000 --- a/src/BinObjMgt/FILES +++ /dev/null @@ -1,14 +0,0 @@ -BinObjMgt_PByte.hxx -BinObjMgt_PChar.hxx -BinObjMgt_Persistent.cxx -BinObjMgt_Persistent.hxx -BinObjMgt_Persistent.lxx -BinObjMgt_PExtChar.hxx -BinObjMgt_PInteger.hxx -BinObjMgt_Position.cxx -BinObjMgt_Position.hxx -BinObjMgt_PReal.hxx -BinObjMgt_PShortReal.hxx -BinObjMgt_RRelocationTable.cxx -BinObjMgt_RRelocationTable.hxx -BinObjMgt_SRelocationTable.hxx diff --git a/src/BinTObjDrivers/FILES b/src/BinTObjDrivers/FILES deleted file mode 100755 index 98d4b1b421..0000000000 --- a/src/BinTObjDrivers/FILES +++ /dev/null @@ -1,16 +0,0 @@ -BinTObjDrivers.cxx -BinTObjDrivers.hxx -BinTObjDrivers_DocumentRetrievalDriver.cxx -BinTObjDrivers_DocumentRetrievalDriver.hxx -BinTObjDrivers_DocumentStorageDriver.cxx -BinTObjDrivers_DocumentStorageDriver.hxx -BinTObjDrivers_IntSparseArrayDriver.cxx -BinTObjDrivers_IntSparseArrayDriver.hxx -BinTObjDrivers_ModelDriver.cxx -BinTObjDrivers_ModelDriver.hxx -BinTObjDrivers_ObjectDriver.cxx -BinTObjDrivers_ObjectDriver.hxx -BinTObjDrivers_ReferenceDriver.cxx -BinTObjDrivers_ReferenceDriver.hxx -BinTObjDrivers_XYZDriver.cxx -BinTObjDrivers_XYZDriver.hxx diff --git a/src/BinTools/FILES b/src/BinTools/FILES deleted file mode 100644 index a8c3e7b8bb..0000000000 --- a/src/BinTools/FILES +++ /dev/null @@ -1,25 +0,0 @@ -BinTools.cxx -BinTools.hxx -BinTools_Curve2dSet.cxx -BinTools_Curve2dSet.hxx -BinTools_CurveSet.cxx -BinTools_CurveSet.hxx -BinTools_FormatVersion.hxx -BinTools_IStream.cxx -BinTools_IStream.hxx -BinTools_LocationSet.cxx -BinTools_LocationSet.hxx -BinTools_LocationSetPtr.hxx -BinTools_ShapeSet.cxx -BinTools_ShapeSet.hxx -BinTools_ShapeSetBase.cxx -BinTools_ShapeSetBase.hxx -BinTools_SurfaceSet.cxx -BinTools_SurfaceSet.hxx -BinTools_ObjectType.hxx -BinTools_OStream.cxx -BinTools_OStream.hxx -BinTools_ShapeReader.hxx -BinTools_ShapeReader.cxx -BinTools_ShapeWriter.hxx -BinTools_ShapeWriter.cxx diff --git a/src/BinXCAFDrivers/FILES b/src/BinXCAFDrivers/FILES deleted file mode 100644 index 8ae7c837f1..0000000000 --- a/src/BinXCAFDrivers/FILES +++ /dev/null @@ -1,6 +0,0 @@ -BinXCAFDrivers.cxx -BinXCAFDrivers.hxx -BinXCAFDrivers_DocumentRetrievalDriver.cxx -BinXCAFDrivers_DocumentRetrievalDriver.hxx -BinXCAFDrivers_DocumentStorageDriver.cxx -BinXCAFDrivers_DocumentStorageDriver.hxx diff --git a/src/Bisector/FILES b/src/Bisector/FILES deleted file mode 100644 index 586e8afda5..0000000000 --- a/src/Bisector/FILES +++ /dev/null @@ -1,22 +0,0 @@ -Bisector.cxx -Bisector.hxx -Bisector_Bisec.cxx -Bisector_Bisec.hxx -Bisector_BisecAna.cxx -Bisector_BisecAna.hxx -Bisector_BisecCC.cxx -Bisector_BisecCC.hxx -Bisector_BisecPC.cxx -Bisector_BisecPC.hxx -Bisector_Curve.cxx -Bisector_Curve.hxx -Bisector_FunctionH.cxx -Bisector_FunctionH.hxx -Bisector_FunctionInter.cxx -Bisector_FunctionInter.hxx -Bisector_Inter.cxx -Bisector_Inter.hxx -Bisector_PointOnBis.cxx -Bisector_PointOnBis.hxx -Bisector_PolyBis.cxx -Bisector_PolyBis.hxx diff --git a/src/Blend/FILES b/src/Blend/FILES deleted file mode 100755 index c98b0df816..0000000000 --- a/src/Blend/FILES +++ /dev/null @@ -1,25 +0,0 @@ -Blend_AppFunction.cxx -Blend_AppFunction.hxx -Blend_CSFunction.cxx -Blend_CSFunction.hxx -Blend_CurvPointFuncInv.cxx -Blend_CurvPointFuncInv.hxx -Blend_Debug.cxx -Blend_DecrochStatus.hxx -Blend_FuncInv.cxx -Blend_FuncInv.hxx -Blend_Function.cxx -Blend_Function.hxx -Blend_Point.cxx -Blend_Point.hxx -Blend_Point.lxx -Blend_RstRstFunction.cxx -Blend_RstRstFunction.hxx -Blend_SequenceOfPoint.hxx -Blend_Status.hxx -Blend_SurfCurvFuncInv.cxx -Blend_SurfCurvFuncInv.hxx -Blend_SurfPointFuncInv.cxx -Blend_SurfPointFuncInv.hxx -Blend_SurfRstFunction.cxx -Blend_SurfRstFunction.hxx diff --git a/src/BlendFunc/FILES b/src/BlendFunc/FILES deleted file mode 100644 index e353a11449..0000000000 --- a/src/BlendFunc/FILES +++ /dev/null @@ -1,44 +0,0 @@ -BlendFunc.cxx -BlendFunc.hxx -BlendFunc_GenChamfer.cxx -BlendFunc_GenChamfer.hxx -BlendFunc_GenChamfInv.cxx -BlendFunc_GenChamfInv.hxx -BlendFunc_Chamfer.cxx -BlendFunc_Chamfer.hxx -BlendFunc_ChamfInv.cxx -BlendFunc_ChamfInv.hxx -BlendFunc_ChAsym.cxx -BlendFunc_ChAsym.hxx -BlendFunc_ChAsymInv.cxx -BlendFunc_ChAsymInv.hxx -BlendFunc_ConstRad.cxx -BlendFunc_ConstRad.hxx -BlendFunc_ConstRadInv.cxx -BlendFunc_ConstRadInv.hxx -BlendFunc_Corde.cxx -BlendFunc_Corde.hxx -BlendFunc_CSCircular.cxx -BlendFunc_CSCircular.hxx -BlendFunc_CSConstRad.cxx -BlendFunc_CSConstRad.hxx -BlendFunc_EvolRad.cxx -BlendFunc_EvolRad.hxx -BlendFunc_EvolRadInv.cxx -BlendFunc_EvolRadInv.hxx -BlendFunc_Ruled.cxx -BlendFunc_Ruled.hxx -BlendFunc_RuledInv.cxx -BlendFunc_RuledInv.hxx -BlendFunc_SectionShape.hxx -BlendFunc_Tensor.cxx -BlendFunc_Tensor.hxx -BlendFunc_Tensor.lxx -BlendFunc_ConstThroat.cxx -BlendFunc_ConstThroat.hxx -BlendFunc_ConstThroatInv.cxx -BlendFunc_ConstThroatInv.hxx -BlendFunc_ConstThroatWithPenetration.cxx -BlendFunc_ConstThroatWithPenetration.hxx -BlendFunc_ConstThroatWithPenetrationInv.cxx -BlendFunc_ConstThroatWithPenetrationInv.hxx diff --git a/src/Bnd/FILES b/src/Bnd/FILES deleted file mode 100644 index a885a15174..0000000000 --- a/src/Bnd/FILES +++ /dev/null @@ -1,32 +0,0 @@ -Bnd_Array1OfBox.hxx -Bnd_Array1OfBox2d.hxx -Bnd_Array1OfSphere.hxx -Bnd_B2d.hxx -Bnd_B2d_0.cxx -Bnd_B2f.hxx -Bnd_B2f_0.cxx -Bnd_B2x.gxx -Bnd_B2x.lxx -Bnd_B3d.hxx -Bnd_B3d_0.cxx -Bnd_B3f.hxx -Bnd_B3f_0.cxx -Bnd_B3x.gxx -Bnd_B3x.lxx -Bnd_BoundSortBox.cxx -Bnd_BoundSortBox.hxx -Bnd_Box.cxx -Bnd_Box.hxx -Bnd_Box2d.cxx -Bnd_Box2d.hxx -Bnd_HArray1OfBox.hxx -Bnd_HArray1OfBox2d.hxx -Bnd_HArray1OfSphere.hxx -Bnd_OBB.cxx -Bnd_OBB.hxx -Bnd_Range.cxx -Bnd_Range.hxx -Bnd_Sphere.cxx -Bnd_Sphere.hxx -Bnd_Sphere.lxx -Bnd_Tools.hxx diff --git a/src/BndLib/FILES b/src/BndLib/FILES deleted file mode 100644 index d3cdcf2891..0000000000 --- a/src/BndLib/FILES +++ /dev/null @@ -1,8 +0,0 @@ -BndLib.cxx -BndLib.hxx -BndLib_Add2dCurve.cxx -BndLib_Add2dCurve.hxx -BndLib_Add3dCurve.cxx -BndLib_Add3dCurve.hxx -BndLib_AddSurface.cxx -BndLib_AddSurface.hxx diff --git a/src/CDF/FILES b/src/CDF/FILES deleted file mode 100755 index fdf055df2c..0000000000 --- a/src/CDF/FILES +++ /dev/null @@ -1,20 +0,0 @@ -CDF_Application.cxx -CDF_Application.hxx -CDF_Directory.cxx -CDF_Directory.hxx -CDF_DirectoryIterator.cxx -CDF_DirectoryIterator.hxx -CDF_FWOSDriver.cxx -CDF_FWOSDriver.hxx -CDF_MetaDataDriver.cxx -CDF_MetaDataDriver.hxx -CDF_MetaDataDriverFactory.cxx -CDF_MetaDataDriverFactory.hxx -CDF_Store.cxx -CDF_Store.hxx -CDF_StoreList.cxx -CDF_StoreList.hxx -CDF_StoreSetNameStatus.hxx -CDF_SubComponentStatus.hxx -CDF_TryStoreStatus.hxx -CDF_TypeOfActivation.hxx diff --git a/src/CDM/FILES b/src/CDM/FILES deleted file mode 100644 index 694470edb8..0000000000 --- a/src/CDM/FILES +++ /dev/null @@ -1,21 +0,0 @@ -CDM_Application.cxx -CDM_Application.hxx -CDM_CanCloseStatus.hxx -CDM_DataMapIteratorOfMetaDataLookUpTable.hxx -CDM_Document.cxx -CDM_Document.hxx -CDM_DocumentPointer.hxx -CDM_ListIteratorOfListOfDocument.hxx -CDM_ListIteratorOfListOfReferences.hxx -CDM_ListOfDocument.hxx -CDM_ListOfReferences.hxx -CDM_MapIteratorOfMapOfDocument.hxx -CDM_MapOfDocument.hxx -CDM_MetaData.cxx -CDM_MetaData.hxx -CDM_MetaDataLookUpTable.hxx -CDM_NamesDirectory.hxx -CDM_Reference.cxx -CDM_Reference.hxx -CDM_ReferenceIterator.cxx -CDM_ReferenceIterator.hxx diff --git a/src/CPnts/FILES b/src/CPnts/FILES deleted file mode 100755 index a8bf59e99b..0000000000 --- a/src/CPnts/FILES +++ /dev/null @@ -1,13 +0,0 @@ -CPnts_AbscissaPoint.cxx -CPnts_AbscissaPoint.hxx -CPnts_AbscissaPoint.lxx -CPnts_MyGaussFunction.cxx -CPnts_MyGaussFunction.hxx -CPnts_MyGaussFunction.lxx -CPnts_MyRootFunction.cxx -CPnts_MyRootFunction.hxx -CPnts_MyRootFunction.lxx -CPnts_RealFunction.hxx -CPnts_UniformDeflection.cxx -CPnts_UniformDeflection.hxx -CPnts_UniformDeflection.lxx diff --git a/src/CSLib/FILES b/src/CSLib/FILES deleted file mode 100644 index 65d03a194f..0000000000 --- a/src/CSLib/FILES +++ /dev/null @@ -1,8 +0,0 @@ -CSLib.cxx -CSLib.hxx -CSLib_Class2d.cxx -CSLib_Class2d.hxx -CSLib_DerivativeStatus.hxx -CSLib_NormalPolyDef.cxx -CSLib_NormalPolyDef.hxx -CSLib_NormalStatus.hxx diff --git a/src/ChFi2d/FILES b/src/ChFi2d/FILES deleted file mode 100755 index 9aec2e3d1f..0000000000 --- a/src/ChFi2d/FILES +++ /dev/null @@ -1,15 +0,0 @@ -ChFi2d.cxx -ChFi2d.hxx -ChFi2d_AnaFilletAlgo.cxx -ChFi2d_AnaFilletAlgo.hxx -ChFi2d_Builder.cxx -ChFi2d_Builder.hxx -ChFi2d_Builder.lxx -ChFi2d_Builder_0.cxx -ChFi2d_ChamferAPI.cxx -ChFi2d_ChamferAPI.hxx -ChFi2d_ConstructionError.hxx -ChFi2d_FilletAlgo.cxx -ChFi2d_FilletAlgo.hxx -ChFi2d_FilletAPI.cxx -ChFi2d_FilletAPI.hxx diff --git a/src/ChFi3d/FILES b/src/ChFi3d/FILES deleted file mode 100755 index 61ef2e803a..0000000000 --- a/src/ChFi3d/FILES +++ /dev/null @@ -1,26 +0,0 @@ -ChFi3d.cxx -ChFi3d.hxx -ChFi3d_Builder.cxx -ChFi3d_Builder.hxx -ChFi3d_Builder_0.cxx -ChFi3d_Builder_0.hxx -ChFi3d_Builder_1.cxx -ChFi3d_Builder_2.cxx -ChFi3d_Builder_6.cxx -ChFi3d_Builder_C1.cxx -ChFi3d_Builder_C2.cxx -ChFi3d_Builder_CnCrn.cxx -ChFi3d_Builder_NotImp.cxx -ChFi3d_Builder_SpKP.cxx -ChFi3d_ChBuilder.cxx -ChFi3d_ChBuilder.hxx -ChFi3d_ChBuilder_C2.cxx -ChFi3d_ChBuilder_C3.cxx -ChFi3d_Debug.cxx -ChFi3d_FilBuilder.cxx -ChFi3d_FilBuilder.hxx -ChFi3d_FilBuilder_C2.cxx -ChFi3d_FilBuilder_C3.cxx -ChFi3d_FilletShape.hxx -ChFi3d_SearchSing.cxx -ChFi3d_SearchSing.hxx diff --git a/src/ChFiDS/FILES b/src/ChFiDS/FILES deleted file mode 100644 index c4ea1e706f..0000000000 --- a/src/ChFiDS/FILES +++ /dev/null @@ -1,47 +0,0 @@ -ChFiDS_ChamfMethod.hxx -ChFiDS_ChamfMode.hxx -ChFiDS_ChamfSpine.cxx -ChFiDS_ChamfSpine.hxx -ChFiDS_CircSection.cxx -ChFiDS_CircSection.hxx -ChFiDS_CommonPoint.cxx -ChFiDS_CommonPoint.hxx -ChFiDS_ElSpine.cxx -ChFiDS_ElSpine.hxx -ChFiDS_ErrorStatus.hxx -ChFiDS_FaceInterference.cxx -ChFiDS_FaceInterference.hxx -ChFiDS_FaceInterference.lxx -ChFiDS_FilSpine.cxx -ChFiDS_FilSpine.hxx -ChFiDS_HData.hxx -ChFiDS_IndexedDataMapOfVertexListOfStripe.hxx -ChFiDS_ListIteratorOfListOfHElSpine.hxx -ChFiDS_ListIteratorOfListOfStripe.hxx -ChFiDS_ListIteratorOfRegularities.hxx -ChFiDS_ListOfHElSpine.hxx -ChFiDS_ListOfStripe.hxx -ChFiDS_Map.cxx -ChFiDS_Map.hxx -ChFiDS_Regul.cxx -ChFiDS_Regul.hxx -ChFiDS_Regularities.hxx -ChFiDS_SecArray1.hxx -ChFiDS_SecHArray1.hxx -ChFiDS_SequenceOfSpine.hxx -ChFiDS_SequenceOfSurfData.hxx -ChFiDS_Spine.cxx -ChFiDS_Spine.hxx -ChFiDS_Spine.lxx -ChFiDS_State.hxx -ChFiDS_Stripe.cxx -ChFiDS_Stripe.hxx -ChFiDS_Stripe.lxx -ChFiDS_StripeArray1.hxx -ChFiDS_StripeMap.cxx -ChFiDS_StripeMap.hxx -ChFiDS_StripeMap.lxx -ChFiDS_SurfData.cxx -ChFiDS_SurfData.hxx -ChFiDS_SurfData.lxx -ChFiDS_TypeOfConcavity.hxx \ No newline at end of file diff --git a/src/ChFiKPart/FILES b/src/ChFiKPart/FILES deleted file mode 100755 index bb60ce4492..0000000000 --- a/src/ChFiKPart/FILES +++ /dev/null @@ -1,30 +0,0 @@ -ChFiKPart_ComputeData.cxx -ChFiKPart_ComputeData.hxx -ChFiKPart_ComputeData_ChAsymPlnCon.cxx -ChFiKPart_ComputeData_ChAsymPlnCon.hxx -ChFiKPart_ComputeData_ChAsymPlnCyl.cxx -ChFiKPart_ComputeData_ChAsymPlnCyl.hxx -ChFiKPart_ComputeData_ChAsymPlnPln.cxx -ChFiKPart_ComputeData_ChAsymPlnPln.hxx -ChFiKPart_ComputeData_ChPlnCon.cxx -ChFiKPart_ComputeData_ChPlnCon.hxx -ChFiKPart_ComputeData_ChPlnCyl.cxx -ChFiKPart_ComputeData_ChPlnCyl.hxx -ChFiKPart_ComputeData_ChPlnPln.cxx -ChFiKPart_ComputeData_ChPlnPln.hxx -ChFiKPart_ComputeData_CS.cxx -ChFiKPart_ComputeData_CS.hxx -ChFiKPart_ComputeData_Fcts.cxx -ChFiKPart_ComputeData_Fcts.hxx -ChFiKPart_ComputeData_FilPlnCon.cxx -ChFiKPart_ComputeData_FilPlnCon.hxx -ChFiKPart_ComputeData_FilPlnCyl.cxx -ChFiKPart_ComputeData_FilPlnCyl.hxx -ChFiKPart_ComputeData_FilPlnPln.cxx -ChFiKPart_ComputeData_FilPlnPln.hxx -ChFiKPart_ComputeData_Rotule.cxx -ChFiKPart_ComputeData_Rotule.hxx -ChFiKPart_ComputeData_Sphere.cxx -ChFiKPart_ComputeData_Sphere.hxx -ChFiKPart_DataMapIteratorOfRstMap.hxx -ChFiKPart_RstMap.hxx diff --git a/src/Cocoa/FILES b/src/Cocoa/FILES deleted file mode 100755 index 39258e33e3..0000000000 --- a/src/Cocoa/FILES +++ /dev/null @@ -1,4 +0,0 @@ -Cocoa_LocalPool.hxx -Cocoa_LocalPool.mm -Cocoa_Window.hxx -Cocoa_Window.mm diff --git a/src/Contap/FILES b/src/Contap/FILES deleted file mode 100644 index d97434f281..0000000000 --- a/src/Contap/FILES +++ /dev/null @@ -1,45 +0,0 @@ -Contap_ArcFunction.cxx -Contap_ArcFunction.hxx -Contap_ArcFunction.lxx -Contap_ContAna.cxx -Contap_ContAna.hxx -Contap_ContAna.lxx -Contap_Contour.cxx -Contap_Contour.hxx -Contap_Contour.lxx -Contap_HContTool.cxx -Contap_HContTool.hxx -Contap_HCurve2dTool.cxx -Contap_HCurve2dTool.hxx -Contap_HCurve2dTool.lxx -Contap_IType.hxx -Contap_Line.cxx -Contap_Line.hxx -Contap_Line.lxx -Contap_Point.cxx -Contap_Point.hxx -Contap_Point.lxx -Contap_SequenceOfIWLineOfTheIWalking.hxx -Contap_SequenceOfPathPointOfTheSearch.hxx -Contap_SequenceOfSegmentOfTheSearch.hxx -Contap_SurfFunction.cxx -Contap_SurfFunction.hxx -Contap_SurfFunction.lxx -Contap_SurfProps.cxx -Contap_SurfProps.hxx -Contap_TFunction.hxx -Contap_TheHSequenceOfPoint.hxx -Contap_TheIWalking.hxx -Contap_TheIWalking_0.cxx -Contap_TheIWLineOfTheIWalking.hxx -Contap_TheIWLineOfTheIWalking_0.cxx -Contap_ThePathPointOfTheSearch.hxx -Contap_ThePathPointOfTheSearch_0.cxx -Contap_TheSearch.hxx -Contap_TheSearch_0.cxx -Contap_TheSearchInside.hxx -Contap_TheSearchInside_0.cxx -Contap_TheSegmentOfTheSearch.hxx -Contap_TheSegmentOfTheSearch_0.cxx -Contap_TheSequenceOfLine.hxx -Contap_TheSequenceOfPoint.hxx diff --git a/src/Convert/FILES b/src/Convert/FILES deleted file mode 100755 index 673226ab6d..0000000000 --- a/src/Convert/FILES +++ /dev/null @@ -1,34 +0,0 @@ -Convert_CircleToBSplineCurve.cxx -Convert_CircleToBSplineCurve.hxx -Convert_CompBezierCurves2dToBSplineCurve2d.cxx -Convert_CompBezierCurves2dToBSplineCurve2d.hxx -Convert_CompBezierCurvesToBSplineCurve.cxx -Convert_CompBezierCurvesToBSplineCurve.hxx -Convert_CompPolynomialToPoles.cxx -Convert_CompPolynomialToPoles.hxx -Convert_ConeToBSplineSurface.cxx -Convert_ConeToBSplineSurface.hxx -Convert_ConicToBSplineCurve.cxx -Convert_ConicToBSplineCurve.hxx -Convert_CosAndSinEvalFunction.hxx -Convert_CylinderToBSplineSurface.cxx -Convert_CylinderToBSplineSurface.hxx -Convert_ElementarySurfaceToBSplineSurface.cxx -Convert_ElementarySurfaceToBSplineSurface.hxx -Convert_EllipseToBSplineCurve.cxx -Convert_EllipseToBSplineCurve.hxx -Convert_GridPolynomialToPoles.cxx -Convert_GridPolynomialToPoles.hxx -Convert_HyperbolaToBSplineCurve.cxx -Convert_HyperbolaToBSplineCurve.hxx -Convert_ParabolaToBSplineCurve.cxx -Convert_ParabolaToBSplineCurve.hxx -Convert_ParameterisationType.hxx -Convert_PolynomialCosAndSin.cxx -Convert_PolynomialCosAndSin.hxx -Convert_SequenceOfArray1OfPoles.hxx -Convert_SequenceOfArray1OfPoles2d.hxx -Convert_SphereToBSplineSurface.cxx -Convert_SphereToBSplineSurface.hxx -Convert_TorusToBSplineSurface.cxx -Convert_TorusToBSplineSurface.hxx diff --git a/src/D3DHost/FILES b/src/D3DHost/FILES deleted file mode 100644 index 65afdc4729..0000000000 --- a/src/D3DHost/FILES +++ /dev/null @@ -1,8 +0,0 @@ -D3DHost_GraphicDriver.hxx -D3DHost_GraphicDriver.cxx -D3DHost_GraphicDriverFactory.hxx -D3DHost_GraphicDriverFactory.cxx -D3DHost_FrameBuffer.hxx -D3DHost_FrameBuffer.cxx -D3DHost_View.hxx -D3DHost_View.cxx diff --git a/src/D3DHostTest/FILES b/src/D3DHostTest/FILES deleted file mode 100644 index fad410d311..0000000000 --- a/src/D3DHostTest/FILES +++ /dev/null @@ -1,2 +0,0 @@ -D3DHostTest.cxx -D3DHostTest.hxx diff --git a/src/DBRep/FILES b/src/DBRep/FILES deleted file mode 100755 index 32a21aaadb..0000000000 --- a/src/DBRep/FILES +++ /dev/null @@ -1,22 +0,0 @@ -DBRep.cxx -DBRep.hxx -DBRep_Debug.cxx -DBRep_DrawableShape.cxx -DBRep_DrawableShape.hxx -DBRep_Edge.cxx -DBRep_Edge.hxx -DBRep_Edge.lxx -DBRep_Face.cxx -DBRep_Face.hxx -DBRep_Face.lxx -DBRep_HideData.cxx -DBRep_HideData.hxx -DBRep_IsoBuilder.cxx -DBRep_IsoBuilder.hxx -DBRep_ListIteratorOfListOfEdge.hxx -DBRep_ListIteratorOfListOfFace.hxx -DBRep_ListIteratorOfListOfHideData.hxx -DBRep_ListOfEdge.hxx -DBRep_ListOfFace.hxx -DBRep_ListOfHideData.hxx -DBRep_Params.hxx diff --git a/src/DDF/FILES b/src/DDF/FILES deleted file mode 100755 index 96414a78a2..0000000000 --- a/src/DDF/FILES +++ /dev/null @@ -1,17 +0,0 @@ -DDF.cxx -DDF.hxx -DDF_AttributeBrowser.cxx -DDF_AttributeBrowser.hxx -DDF_BasicCommands.cxx -DDF_Browser.cxx -DDF_Browser.hxx -DDF_BrowserCommands.cxx -DDF_Data.cxx -DDF_Data.hxx -DDF_DataCommands.cxx -DDF_ListIteratorOfTransactionStack.hxx -DDF_Transaction.cxx -DDF_Transaction.hxx -DDF_TransactionCommands.cxx -DDF_TransactionStack.hxx -FILES diff --git a/src/DDataStd/FILES b/src/DDataStd/FILES deleted file mode 100755 index e0cc97bb35..0000000000 --- a/src/DDataStd/FILES +++ /dev/null @@ -1,17 +0,0 @@ -DDataStd.cxx -DDataStd.hxx -DDataStd_BasicCommands.cxx -DDataStd_ConstraintCommands.cxx -DDataStd_DatumCommands.cxx -DDataStd_DrawDisplayCommands.cxx -DDataStd_DrawDriver.cxx -DDataStd_DrawDriver.hxx -DDataStd_DrawPresentation.cxx -DDataStd_DrawPresentation.hxx -DDataStd_NameCommands.cxx -DDataStd_NamedShapeCommands.cxx -DDataStd_ObjectCommands.cxx -DDataStd_TreeBrowser.cxx -DDataStd_TreeBrowser.hxx -DDataStd_TreeBrowser.tcl -DDataStd_TreeCommands.cxx diff --git a/src/DDocStd/FILES b/src/DDocStd/FILES deleted file mode 100755 index e4ff821158..0000000000 --- a/src/DDocStd/FILES +++ /dev/null @@ -1,10 +0,0 @@ -DDocStd.cxx -DDocStd.hxx -DDocStd_ApplicationCommands.cxx -DDocStd_DocumentCommands.cxx -DDocStd_DrawDocument.cxx -DDocStd_DrawDocument.hxx -DDocStd_MTMCommands.cxx -DDocStd_ToolsCommands.cxx -DDocStd_ShapeSchemaCommands.cxx -IDNames.tcl diff --git a/src/DE/FILES b/src/DE/FILES deleted file mode 100644 index bfdd4bff7d..0000000000 --- a/src/DE/FILES +++ /dev/null @@ -1,12 +0,0 @@ -DE_ConfigurationContext.cxx -DE_ConfigurationContext.hxx -DE_ConfigurationNode.cxx -DE_ConfigurationNode.hxx -DE_PluginHolder.hxx -DE_Provider.cxx -DE_Provider.hxx -DE_ShapeFixConfigurationNode.cxx -DE_ShapeFixConfigurationNode.hxx -DE_ShapeFixParameters.hxx -DE_Wrapper.cxx -DE_Wrapper.hxx diff --git a/src/DEBREP/FILES b/src/DEBREP/FILES deleted file mode 100644 index 1a86c27224..0000000000 --- a/src/DEBREP/FILES +++ /dev/null @@ -1,4 +0,0 @@ -DEBREP_ConfigurationNode.cxx -DEBREP_ConfigurationNode.hxx -DEBREP_Provider.cxx -DEBREP_Provider.hxx diff --git a/src/DEBRepCascade/FILES b/src/DEBRepCascade/FILES deleted file mode 100644 index a3c04ebe58..0000000000 --- a/src/DEBRepCascade/FILES +++ /dev/null @@ -1,2 +0,0 @@ -DEBRepCascade_ConfigurationNode.hxx -DEBRepCascade_Provider.hxx diff --git a/src/DEGLTF/FILES b/src/DEGLTF/FILES deleted file mode 100644 index 5f62c6a11e..0000000000 --- a/src/DEGLTF/FILES +++ /dev/null @@ -1,4 +0,0 @@ -DEGLTF_ConfigurationNode.cxx -DEGLTF_ConfigurationNode.hxx -DEGLTF_Provider.cxx -DEGLTF_Provider.hxx diff --git a/src/DEIGES/FILES b/src/DEIGES/FILES deleted file mode 100644 index ff8106ab9a..0000000000 --- a/src/DEIGES/FILES +++ /dev/null @@ -1,6 +0,0 @@ -DEIGES_ConfigurationNode.cxx -DEIGES_ConfigurationNode.hxx -DEIGES_Parameters.cxx -DEIGES_Parameters.hxx -DEIGES_Provider.cxx -DEIGES_Provider.hxx diff --git a/src/DEOBJ/FILES b/src/DEOBJ/FILES deleted file mode 100644 index 3b03e8c055..0000000000 --- a/src/DEOBJ/FILES +++ /dev/null @@ -1,4 +0,0 @@ -DEOBJ_ConfigurationNode.cxx -DEOBJ_ConfigurationNode.hxx -DEOBJ_Provider.cxx -DEOBJ_Provider.hxx diff --git a/src/DEPLY/FILES b/src/DEPLY/FILES deleted file mode 100644 index 4aee3cca68..0000000000 --- a/src/DEPLY/FILES +++ /dev/null @@ -1,4 +0,0 @@ -DEPLY_ConfigurationNode.cxx -DEPLY_ConfigurationNode.hxx -DEPLY_Provider.cxx -DEPLY_Provider.hxx diff --git a/src/DESTEP/FILES b/src/DESTEP/FILES deleted file mode 100644 index 871afca533..0000000000 --- a/src/DESTEP/FILES +++ /dev/null @@ -1,6 +0,0 @@ -DESTEP_ConfigurationNode.cxx -DESTEP_ConfigurationNode.hxx -DESTEP_Parameters.cxx -DESTEP_Parameters.hxx -DESTEP_Provider.cxx -DESTEP_Provider.hxx diff --git a/src/DESTL/FILES b/src/DESTL/FILES deleted file mode 100644 index 4854b5ec6e..0000000000 --- a/src/DESTL/FILES +++ /dev/null @@ -1,4 +0,0 @@ -DESTL_ConfigurationNode.cxx -DESTL_ConfigurationNode.hxx -DESTL_Provider.cxx -DESTL_Provider.hxx diff --git a/src/DEVRML/FILES b/src/DEVRML/FILES deleted file mode 100644 index 505a3a39ec..0000000000 --- a/src/DEVRML/FILES +++ /dev/null @@ -1,4 +0,0 @@ -DEVRML_ConfigurationNode.cxx -DEVRML_ConfigurationNode.hxx -DEVRML_Provider.cxx -DEVRML_Provider.hxx diff --git a/src/DEXCAF/FILES b/src/DEXCAF/FILES deleted file mode 100644 index cab1192c84..0000000000 --- a/src/DEXCAF/FILES +++ /dev/null @@ -1,4 +0,0 @@ -DEXCAF_ConfigurationNode.cxx -DEXCAF_ConfigurationNode.hxx -DEXCAF_Provider.cxx -DEXCAF_Provider.hxx diff --git a/src/DEXCAFCascade/FILES b/src/DEXCAFCascade/FILES deleted file mode 100644 index 2576fed40c..0000000000 --- a/src/DEXCAFCascade/FILES +++ /dev/null @@ -1,2 +0,0 @@ -DEXCAFCascade_ConfigurationNode.hxx -DEXCAFCascade_Provider.hxx diff --git a/src/DNaming/FILES b/src/DNaming/FILES deleted file mode 100755 index 3abf69061d..0000000000 --- a/src/DNaming/FILES +++ /dev/null @@ -1,32 +0,0 @@ -DNaming.cxx -DNaming.hxx -DNaming_BasicCommands.cxx -DNaming_BooleanOperationDriver.cxx -DNaming_BooleanOperationDriver.hxx -DNaming_BoxDriver.cxx -DNaming_BoxDriver.hxx -DNaming_CylinderDriver.cxx -DNaming_CylinderDriver.hxx -DNaming_DataMapIteratorOfDataMapOfShapeOfName.hxx -DNaming_DataMapOfShapeOfName.hxx -DNaming_FilletDriver.cxx -DNaming_FilletDriver.hxx -DNaming_Line3DDriver.cxx -DNaming_Line3DDriver.hxx -DNaming_ModelingCommands.cxx -DNaming_PointDriver.cxx -DNaming_PointDriver.hxx -DNaming_PrismDriver.cxx -DNaming_PrismDriver.hxx -DNaming_RevolutionDriver.cxx -DNaming_RevolutionDriver.hxx -DNaming_Selection.tcl -DNaming_SelectionCommands.cxx -DNaming_SelectionDriver.cxx -DNaming_SelectionDriver.hxx -DNaming_SphereDriver.cxx -DNaming_SphereDriver.hxx -DNaming_ToolsCommands.cxx -DNaming_TransformationDriver.cxx -DNaming_TransformationDriver.hxx -ModelDefinitions.hxx diff --git a/src/DPrsStd/FILES b/src/DPrsStd/FILES deleted file mode 100755 index 43db6c8141..0000000000 --- a/src/DPrsStd/FILES +++ /dev/null @@ -1,4 +0,0 @@ -DPrsStd.cxx -DPrsStd.hxx -DPrsStd_AISPresentationCommands.cxx -DPrsStd_AISViewerCommands.cxx diff --git a/src/DRAWEXE/EXTERNLIB b/src/DRAWEXE/EXTERNLIB deleted file mode 100644 index d119ad5e76..0000000000 --- a/src/DRAWEXE/EXTERNLIB +++ /dev/null @@ -1,13 +0,0 @@ -TKDraw -TKMesh -TKShHealing -TKTopAlgo -TKHLR -TKGeomAlgo -TKGeomBase -TKG2d -TKBRep -TKMath -TKG3d -TKernel -TKService diff --git a/src/DRAWEXE/FILES b/src/DRAWEXE/FILES deleted file mode 100755 index d2e65bb605..0000000000 --- a/src/DRAWEXE/FILES +++ /dev/null @@ -1,2 +0,0 @@ -DRAWEXE.cxx -EXTERNLIB diff --git a/src/BinMXCAFDoc/BinMXCAFDoc.cxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc.cxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc.cxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc.cxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc.hxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc.hxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc.hxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc.hxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_AssemblyItemRefDriver.cxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_AssemblyItemRefDriver.cxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_AssemblyItemRefDriver.cxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_AssemblyItemRefDriver.cxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_AssemblyItemRefDriver.hxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_AssemblyItemRefDriver.hxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_AssemblyItemRefDriver.hxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_AssemblyItemRefDriver.hxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_CentroidDriver.cxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_CentroidDriver.cxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_CentroidDriver.cxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_CentroidDriver.cxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_CentroidDriver.hxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_CentroidDriver.hxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_CentroidDriver.hxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_CentroidDriver.hxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_ColorDriver.cxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_ColorDriver.cxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_ColorDriver.cxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_ColorDriver.cxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_ColorDriver.hxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_ColorDriver.hxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_ColorDriver.hxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_ColorDriver.hxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_DatumDriver.cxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_DatumDriver.cxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_DatumDriver.cxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_DatumDriver.cxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_DatumDriver.hxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_DatumDriver.hxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_DatumDriver.hxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_DatumDriver.hxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_DimTolDriver.cxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_DimTolDriver.cxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_DimTolDriver.cxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_DimTolDriver.cxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_DimTolDriver.hxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_DimTolDriver.hxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_DimTolDriver.hxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_DimTolDriver.hxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_GraphNodeDriver.cxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_GraphNodeDriver.cxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_GraphNodeDriver.cxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_GraphNodeDriver.cxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_GraphNodeDriver.hxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_GraphNodeDriver.hxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_GraphNodeDriver.hxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_GraphNodeDriver.hxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_LengthUnitDriver.cxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_LengthUnitDriver.cxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_LengthUnitDriver.cxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_LengthUnitDriver.cxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_LengthUnitDriver.hxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_LengthUnitDriver.hxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_LengthUnitDriver.hxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_LengthUnitDriver.hxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_LocationDriver.cxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_LocationDriver.cxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_LocationDriver.cxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_LocationDriver.cxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_LocationDriver.hxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_LocationDriver.hxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_LocationDriver.hxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_LocationDriver.hxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_MaterialDriver.cxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_MaterialDriver.cxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_MaterialDriver.cxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_MaterialDriver.cxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_MaterialDriver.hxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_MaterialDriver.hxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_MaterialDriver.hxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_MaterialDriver.hxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_NoteBinDataDriver.cxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_NoteBinDataDriver.cxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_NoteBinDataDriver.cxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_NoteBinDataDriver.cxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_NoteBinDataDriver.hxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_NoteBinDataDriver.hxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_NoteBinDataDriver.hxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_NoteBinDataDriver.hxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_NoteCommentDriver.cxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_NoteCommentDriver.cxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_NoteCommentDriver.cxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_NoteCommentDriver.cxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_NoteCommentDriver.hxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_NoteCommentDriver.hxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_NoteCommentDriver.hxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_NoteCommentDriver.hxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_NoteDriver.cxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_NoteDriver.cxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_NoteDriver.cxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_NoteDriver.cxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_NoteDriver.hxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_NoteDriver.hxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_NoteDriver.hxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_NoteDriver.hxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_VisMaterialDriver.cxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_VisMaterialDriver.cxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_VisMaterialDriver.cxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_VisMaterialDriver.cxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_VisMaterialDriver.hxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_VisMaterialDriver.hxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_VisMaterialDriver.hxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_VisMaterialDriver.hxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_VisMaterialToolDriver.cxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_VisMaterialToolDriver.cxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_VisMaterialToolDriver.cxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_VisMaterialToolDriver.cxx diff --git a/src/BinMXCAFDoc/BinMXCAFDoc_VisMaterialToolDriver.hxx b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_VisMaterialToolDriver.hxx similarity index 100% rename from src/BinMXCAFDoc/BinMXCAFDoc_VisMaterialToolDriver.hxx rename to src/DataExchange/TKBinXCAF/BinMXCAFDoc/BinMXCAFDoc_VisMaterialToolDriver.hxx diff --git a/src/DataExchange/TKBinXCAF/BinMXCAFDoc/FILES.cmake b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/FILES.cmake new file mode 100644 index 0000000000..ab4d77fb73 --- /dev/null +++ b/src/DataExchange/TKBinXCAF/BinMXCAFDoc/FILES.cmake @@ -0,0 +1,35 @@ +# Source files for BinMXCAFDoc package +set(OCCT_BinMXCAFDoc_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BinMXCAFDoc_FILES + BinMXCAFDoc.cxx + BinMXCAFDoc.hxx + BinMXCAFDoc_AssemblyItemRefDriver.cxx + BinMXCAFDoc_AssemblyItemRefDriver.hxx + BinMXCAFDoc_CentroidDriver.cxx + BinMXCAFDoc_CentroidDriver.hxx + BinMXCAFDoc_ColorDriver.cxx + BinMXCAFDoc_ColorDriver.hxx + BinMXCAFDoc_DatumDriver.cxx + BinMXCAFDoc_DatumDriver.hxx + BinMXCAFDoc_DimTolDriver.cxx + BinMXCAFDoc_DimTolDriver.hxx + BinMXCAFDoc_GraphNodeDriver.cxx + BinMXCAFDoc_GraphNodeDriver.hxx + BinMXCAFDoc_LengthUnitDriver.cxx + BinMXCAFDoc_LengthUnitDriver.hxx + BinMXCAFDoc_LocationDriver.cxx + BinMXCAFDoc_LocationDriver.hxx + BinMXCAFDoc_MaterialDriver.cxx + BinMXCAFDoc_MaterialDriver.hxx + BinMXCAFDoc_NoteDriver.cxx + BinMXCAFDoc_NoteDriver.hxx + BinMXCAFDoc_NoteCommentDriver.cxx + BinMXCAFDoc_NoteCommentDriver.hxx + BinMXCAFDoc_NoteBinDataDriver.cxx + BinMXCAFDoc_NoteBinDataDriver.hxx + BinMXCAFDoc_VisMaterialDriver.cxx + BinMXCAFDoc_VisMaterialDriver.hxx + BinMXCAFDoc_VisMaterialToolDriver.cxx + BinMXCAFDoc_VisMaterialToolDriver.hxx +) diff --git a/src/BinXCAFDrivers/BinXCAFDrivers.cxx b/src/DataExchange/TKBinXCAF/BinXCAFDrivers/BinXCAFDrivers.cxx similarity index 100% rename from src/BinXCAFDrivers/BinXCAFDrivers.cxx rename to src/DataExchange/TKBinXCAF/BinXCAFDrivers/BinXCAFDrivers.cxx diff --git a/src/BinXCAFDrivers/BinXCAFDrivers.hxx b/src/DataExchange/TKBinXCAF/BinXCAFDrivers/BinXCAFDrivers.hxx similarity index 100% rename from src/BinXCAFDrivers/BinXCAFDrivers.hxx rename to src/DataExchange/TKBinXCAF/BinXCAFDrivers/BinXCAFDrivers.hxx diff --git a/src/BinXCAFDrivers/BinXCAFDrivers_DocumentRetrievalDriver.cxx b/src/DataExchange/TKBinXCAF/BinXCAFDrivers/BinXCAFDrivers_DocumentRetrievalDriver.cxx similarity index 100% rename from src/BinXCAFDrivers/BinXCAFDrivers_DocumentRetrievalDriver.cxx rename to src/DataExchange/TKBinXCAF/BinXCAFDrivers/BinXCAFDrivers_DocumentRetrievalDriver.cxx diff --git a/src/BinXCAFDrivers/BinXCAFDrivers_DocumentRetrievalDriver.hxx b/src/DataExchange/TKBinXCAF/BinXCAFDrivers/BinXCAFDrivers_DocumentRetrievalDriver.hxx similarity index 100% rename from src/BinXCAFDrivers/BinXCAFDrivers_DocumentRetrievalDriver.hxx rename to src/DataExchange/TKBinXCAF/BinXCAFDrivers/BinXCAFDrivers_DocumentRetrievalDriver.hxx diff --git a/src/BinXCAFDrivers/BinXCAFDrivers_DocumentStorageDriver.cxx b/src/DataExchange/TKBinXCAF/BinXCAFDrivers/BinXCAFDrivers_DocumentStorageDriver.cxx similarity index 100% rename from src/BinXCAFDrivers/BinXCAFDrivers_DocumentStorageDriver.cxx rename to src/DataExchange/TKBinXCAF/BinXCAFDrivers/BinXCAFDrivers_DocumentStorageDriver.cxx diff --git a/src/BinXCAFDrivers/BinXCAFDrivers_DocumentStorageDriver.hxx b/src/DataExchange/TKBinXCAF/BinXCAFDrivers/BinXCAFDrivers_DocumentStorageDriver.hxx similarity index 100% rename from src/BinXCAFDrivers/BinXCAFDrivers_DocumentStorageDriver.hxx rename to src/DataExchange/TKBinXCAF/BinXCAFDrivers/BinXCAFDrivers_DocumentStorageDriver.hxx diff --git a/src/DataExchange/TKBinXCAF/BinXCAFDrivers/FILES.cmake b/src/DataExchange/TKBinXCAF/BinXCAFDrivers/FILES.cmake new file mode 100644 index 0000000000..a7773908b4 --- /dev/null +++ b/src/DataExchange/TKBinXCAF/BinXCAFDrivers/FILES.cmake @@ -0,0 +1,11 @@ +# Source files for BinXCAFDrivers package +set(OCCT_BinXCAFDrivers_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BinXCAFDrivers_FILES + BinXCAFDrivers.cxx + BinXCAFDrivers.hxx + BinXCAFDrivers_DocumentRetrievalDriver.cxx + BinXCAFDrivers_DocumentRetrievalDriver.hxx + BinXCAFDrivers_DocumentStorageDriver.cxx + BinXCAFDrivers_DocumentStorageDriver.hxx +) diff --git a/src/TKBinXCAF/CMakeLists.txt b/src/DataExchange/TKBinXCAF/CMakeLists.txt similarity index 100% rename from src/TKBinXCAF/CMakeLists.txt rename to src/DataExchange/TKBinXCAF/CMakeLists.txt diff --git a/src/DataExchange/TKBinXCAF/EXTERNLIB.cmake b/src/DataExchange/TKBinXCAF/EXTERNLIB.cmake new file mode 100644 index 0000000000..33e5acf110 --- /dev/null +++ b/src/DataExchange/TKBinXCAF/EXTERNLIB.cmake @@ -0,0 +1,15 @@ +# External dependencies for TKBinXCAF +set(OCCT_TKBinXCAF_EXTERNAL_LIBS + TKBRep + TKXCAF + TKMath + TKService + TKernel + TKBinL + TKG2d + TKCAF + TKCDF + TKG3d + TKLCAF + TKBin +) diff --git a/src/DataExchange/TKBinXCAF/FILES.cmake b/src/DataExchange/TKBinXCAF/FILES.cmake new file mode 100644 index 0000000000..7079e5287a --- /dev/null +++ b/src/DataExchange/TKBinXCAF/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKBinXCAF +set(OCCT_TKBinXCAF_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKBinXCAF_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/DataExchange/TKBinXCAF/PACKAGES.cmake b/src/DataExchange/TKBinXCAF/PACKAGES.cmake new file mode 100644 index 0000000000..528dff7823 --- /dev/null +++ b/src/DataExchange/TKBinXCAF/PACKAGES.cmake @@ -0,0 +1,5 @@ +# Auto-generated list of packages for TKBinXCAF toolkit +set(OCCT_TKBinXCAF_LIST_OF_PACKAGES + BinXCAFDrivers + BinMXCAFDoc +) diff --git a/src/TKDE/CMakeLists.txt b/src/DataExchange/TKDE/CMakeLists.txt similarity index 100% rename from src/TKDE/CMakeLists.txt rename to src/DataExchange/TKDE/CMakeLists.txt diff --git a/src/DE/DE_ConfigurationContext.cxx b/src/DataExchange/TKDE/DE/DE_ConfigurationContext.cxx similarity index 100% rename from src/DE/DE_ConfigurationContext.cxx rename to src/DataExchange/TKDE/DE/DE_ConfigurationContext.cxx diff --git a/src/DE/DE_ConfigurationContext.hxx b/src/DataExchange/TKDE/DE/DE_ConfigurationContext.hxx similarity index 100% rename from src/DE/DE_ConfigurationContext.hxx rename to src/DataExchange/TKDE/DE/DE_ConfigurationContext.hxx diff --git a/src/DE/DE_ConfigurationNode.cxx b/src/DataExchange/TKDE/DE/DE_ConfigurationNode.cxx similarity index 100% rename from src/DE/DE_ConfigurationNode.cxx rename to src/DataExchange/TKDE/DE/DE_ConfigurationNode.cxx diff --git a/src/DE/DE_ConfigurationNode.hxx b/src/DataExchange/TKDE/DE/DE_ConfigurationNode.hxx similarity index 100% rename from src/DE/DE_ConfigurationNode.hxx rename to src/DataExchange/TKDE/DE/DE_ConfigurationNode.hxx diff --git a/src/DE/DE_PluginHolder.hxx b/src/DataExchange/TKDE/DE/DE_PluginHolder.hxx similarity index 100% rename from src/DE/DE_PluginHolder.hxx rename to src/DataExchange/TKDE/DE/DE_PluginHolder.hxx diff --git a/src/DE/DE_Provider.cxx b/src/DataExchange/TKDE/DE/DE_Provider.cxx similarity index 100% rename from src/DE/DE_Provider.cxx rename to src/DataExchange/TKDE/DE/DE_Provider.cxx diff --git a/src/DE/DE_Provider.hxx b/src/DataExchange/TKDE/DE/DE_Provider.hxx similarity index 100% rename from src/DE/DE_Provider.hxx rename to src/DataExchange/TKDE/DE/DE_Provider.hxx diff --git a/src/DE/DE_ShapeFixConfigurationNode.cxx b/src/DataExchange/TKDE/DE/DE_ShapeFixConfigurationNode.cxx similarity index 100% rename from src/DE/DE_ShapeFixConfigurationNode.cxx rename to src/DataExchange/TKDE/DE/DE_ShapeFixConfigurationNode.cxx diff --git a/src/DE/DE_ShapeFixConfigurationNode.hxx b/src/DataExchange/TKDE/DE/DE_ShapeFixConfigurationNode.hxx similarity index 100% rename from src/DE/DE_ShapeFixConfigurationNode.hxx rename to src/DataExchange/TKDE/DE/DE_ShapeFixConfigurationNode.hxx diff --git a/src/DE/DE_ShapeFixParameters.hxx b/src/DataExchange/TKDE/DE/DE_ShapeFixParameters.hxx similarity index 100% rename from src/DE/DE_ShapeFixParameters.hxx rename to src/DataExchange/TKDE/DE/DE_ShapeFixParameters.hxx diff --git a/src/DE/DE_Wrapper.cxx b/src/DataExchange/TKDE/DE/DE_Wrapper.cxx similarity index 100% rename from src/DE/DE_Wrapper.cxx rename to src/DataExchange/TKDE/DE/DE_Wrapper.cxx diff --git a/src/DE/DE_Wrapper.hxx b/src/DataExchange/TKDE/DE/DE_Wrapper.hxx similarity index 100% rename from src/DE/DE_Wrapper.hxx rename to src/DataExchange/TKDE/DE/DE_Wrapper.hxx diff --git a/src/DataExchange/TKDE/DE/FILES.cmake b/src/DataExchange/TKDE/DE/FILES.cmake new file mode 100644 index 0000000000..93721bfed7 --- /dev/null +++ b/src/DataExchange/TKDE/DE/FILES.cmake @@ -0,0 +1,17 @@ +# Source files for DE package +set(OCCT_DE_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_DE_FILES + DE_ConfigurationContext.cxx + DE_ConfigurationContext.hxx + DE_ConfigurationNode.cxx + DE_ConfigurationNode.hxx + DE_PluginHolder.hxx + DE_Provider.cxx + DE_Provider.hxx + DE_ShapeFixConfigurationNode.cxx + DE_ShapeFixConfigurationNode.hxx + DE_ShapeFixParameters.hxx + DE_Wrapper.cxx + DE_Wrapper.hxx +) diff --git a/src/DataExchange/TKDE/EXTERNLIB.cmake b/src/DataExchange/TKDE/EXTERNLIB.cmake new file mode 100644 index 0000000000..513c6413e1 --- /dev/null +++ b/src/DataExchange/TKDE/EXTERNLIB.cmake @@ -0,0 +1,6 @@ +# External dependencies for TKDE +set(OCCT_TKDE_EXTERNAL_LIBS + TKernel + TKMath + TKBRep +) diff --git a/src/DataExchange/TKDE/FILES.cmake b/src/DataExchange/TKDE/FILES.cmake new file mode 100644 index 0000000000..9a4711b5e9 --- /dev/null +++ b/src/DataExchange/TKDE/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKDE +set(OCCT_TKDE_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKDE_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/DataExchange/TKDE/PACKAGES.cmake b/src/DataExchange/TKDE/PACKAGES.cmake new file mode 100644 index 0000000000..53b0d32859 --- /dev/null +++ b/src/DataExchange/TKDE/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKDE toolkit +set(OCCT_TKDE_LIST_OF_PACKAGES + DE +) diff --git a/src/TKDECascade/CMakeLists.txt b/src/DataExchange/TKDECascade/CMakeLists.txt similarity index 100% rename from src/TKDECascade/CMakeLists.txt rename to src/DataExchange/TKDECascade/CMakeLists.txt diff --git a/src/DEBREP/DEBREP_ConfigurationNode.cxx b/src/DataExchange/TKDECascade/DEBREP/DEBREP_ConfigurationNode.cxx similarity index 100% rename from src/DEBREP/DEBREP_ConfigurationNode.cxx rename to src/DataExchange/TKDECascade/DEBREP/DEBREP_ConfigurationNode.cxx diff --git a/src/DEBREP/DEBREP_ConfigurationNode.hxx b/src/DataExchange/TKDECascade/DEBREP/DEBREP_ConfigurationNode.hxx similarity index 100% rename from src/DEBREP/DEBREP_ConfigurationNode.hxx rename to src/DataExchange/TKDECascade/DEBREP/DEBREP_ConfigurationNode.hxx diff --git a/src/DEBREP/DEBREP_Provider.cxx b/src/DataExchange/TKDECascade/DEBREP/DEBREP_Provider.cxx similarity index 100% rename from src/DEBREP/DEBREP_Provider.cxx rename to src/DataExchange/TKDECascade/DEBREP/DEBREP_Provider.cxx diff --git a/src/DEBREP/DEBREP_Provider.hxx b/src/DataExchange/TKDECascade/DEBREP/DEBREP_Provider.hxx similarity index 100% rename from src/DEBREP/DEBREP_Provider.hxx rename to src/DataExchange/TKDECascade/DEBREP/DEBREP_Provider.hxx diff --git a/src/DataExchange/TKDECascade/DEBREP/FILES.cmake b/src/DataExchange/TKDECascade/DEBREP/FILES.cmake new file mode 100644 index 0000000000..170aab57a5 --- /dev/null +++ b/src/DataExchange/TKDECascade/DEBREP/FILES.cmake @@ -0,0 +1,9 @@ +# Source files for DEBREP package +set(OCCT_DEBREP_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_DEBREP_FILES + DEBREP_ConfigurationNode.cxx + DEBREP_ConfigurationNode.hxx + DEBREP_Provider.cxx + DEBREP_Provider.hxx +) diff --git a/src/DEBRepCascade/DEBRepCascade_ConfigurationNode.hxx b/src/DataExchange/TKDECascade/DEBRepCascade/DEBRepCascade_ConfigurationNode.hxx similarity index 100% rename from src/DEBRepCascade/DEBRepCascade_ConfigurationNode.hxx rename to src/DataExchange/TKDECascade/DEBRepCascade/DEBRepCascade_ConfigurationNode.hxx diff --git a/src/DEBRepCascade/DEBRepCascade_Provider.hxx b/src/DataExchange/TKDECascade/DEBRepCascade/DEBRepCascade_Provider.hxx similarity index 100% rename from src/DEBRepCascade/DEBRepCascade_Provider.hxx rename to src/DataExchange/TKDECascade/DEBRepCascade/DEBRepCascade_Provider.hxx diff --git a/src/DataExchange/TKDECascade/DEBRepCascade/FILES.cmake b/src/DataExchange/TKDECascade/DEBRepCascade/FILES.cmake new file mode 100644 index 0000000000..ec6222a7c3 --- /dev/null +++ b/src/DataExchange/TKDECascade/DEBRepCascade/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for DEBRepCascade package +set(OCCT_DEBRepCascade_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_DEBRepCascade_FILES + DEBRepCascade_ConfigurationNode.hxx + DEBRepCascade_Provider.hxx +) diff --git a/src/DEXCAF/DEXCAF_ConfigurationNode.cxx b/src/DataExchange/TKDECascade/DEXCAF/DEXCAF_ConfigurationNode.cxx similarity index 100% rename from src/DEXCAF/DEXCAF_ConfigurationNode.cxx rename to src/DataExchange/TKDECascade/DEXCAF/DEXCAF_ConfigurationNode.cxx diff --git a/src/DEXCAF/DEXCAF_ConfigurationNode.hxx b/src/DataExchange/TKDECascade/DEXCAF/DEXCAF_ConfigurationNode.hxx similarity index 100% rename from src/DEXCAF/DEXCAF_ConfigurationNode.hxx rename to src/DataExchange/TKDECascade/DEXCAF/DEXCAF_ConfigurationNode.hxx diff --git a/src/DEXCAF/DEXCAF_Provider.cxx b/src/DataExchange/TKDECascade/DEXCAF/DEXCAF_Provider.cxx similarity index 100% rename from src/DEXCAF/DEXCAF_Provider.cxx rename to src/DataExchange/TKDECascade/DEXCAF/DEXCAF_Provider.cxx diff --git a/src/DEXCAF/DEXCAF_Provider.hxx b/src/DataExchange/TKDECascade/DEXCAF/DEXCAF_Provider.hxx similarity index 100% rename from src/DEXCAF/DEXCAF_Provider.hxx rename to src/DataExchange/TKDECascade/DEXCAF/DEXCAF_Provider.hxx diff --git a/src/DataExchange/TKDECascade/DEXCAF/FILES.cmake b/src/DataExchange/TKDECascade/DEXCAF/FILES.cmake new file mode 100644 index 0000000000..3f6ee955b9 --- /dev/null +++ b/src/DataExchange/TKDECascade/DEXCAF/FILES.cmake @@ -0,0 +1,9 @@ +# Source files for DEXCAF package +set(OCCT_DEXCAF_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_DEXCAF_FILES + DEXCAF_ConfigurationNode.cxx + DEXCAF_ConfigurationNode.hxx + DEXCAF_Provider.cxx + DEXCAF_Provider.hxx +) diff --git a/src/DEXCAFCascade/DEXCAFCascade_ConfigurationNode.hxx b/src/DataExchange/TKDECascade/DEXCAFCascade/DEXCAFCascade_ConfigurationNode.hxx similarity index 100% rename from src/DEXCAFCascade/DEXCAFCascade_ConfigurationNode.hxx rename to src/DataExchange/TKDECascade/DEXCAFCascade/DEXCAFCascade_ConfigurationNode.hxx diff --git a/src/DEXCAFCascade/DEXCAFCascade_Provider.hxx b/src/DataExchange/TKDECascade/DEXCAFCascade/DEXCAFCascade_Provider.hxx similarity index 100% rename from src/DEXCAFCascade/DEXCAFCascade_Provider.hxx rename to src/DataExchange/TKDECascade/DEXCAFCascade/DEXCAFCascade_Provider.hxx diff --git a/src/DataExchange/TKDECascade/DEXCAFCascade/FILES.cmake b/src/DataExchange/TKDECascade/DEXCAFCascade/FILES.cmake new file mode 100644 index 0000000000..871981abbc --- /dev/null +++ b/src/DataExchange/TKDECascade/DEXCAFCascade/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for DEXCAFCascade package +set(OCCT_DEXCAFCascade_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_DEXCAFCascade_FILES + DEXCAFCascade_ConfigurationNode.hxx + DEXCAFCascade_Provider.hxx +) diff --git a/src/DataExchange/TKDECascade/EXTERNLIB.cmake b/src/DataExchange/TKDECascade/EXTERNLIB.cmake new file mode 100644 index 0000000000..ba2f315948 --- /dev/null +++ b/src/DataExchange/TKDECascade/EXTERNLIB.cmake @@ -0,0 +1,20 @@ +# External dependencies for TKDECascade +set(OCCT_TKDECascade_EXTERNAL_LIBS + TKBin + TKBinL + TKBinTObj + TKBinXCAF + TKBRep + TKStd + TKXml + TKXmlL + TKXmlTObj + TKXmlXCAF + TKDE + TKernel + TKMath + TKLCAF + TKXCAF + TKStdL + TKCDF +) diff --git a/src/DataExchange/TKDECascade/FILES.cmake b/src/DataExchange/TKDECascade/FILES.cmake new file mode 100644 index 0000000000..52a3fd0bae --- /dev/null +++ b/src/DataExchange/TKDECascade/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKDECascade +set(OCCT_TKDECascade_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKDECascade_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/DataExchange/TKDECascade/PACKAGES.cmake b/src/DataExchange/TKDECascade/PACKAGES.cmake new file mode 100644 index 0000000000..67aa2ef61d --- /dev/null +++ b/src/DataExchange/TKDECascade/PACKAGES.cmake @@ -0,0 +1,7 @@ +# Auto-generated list of packages for TKDECascade toolkit +set(OCCT_TKDECascade_LIST_OF_PACKAGES + DEBRepCascade + DEXCAFCascade + DEBREP + DEXCAF +) diff --git a/src/TKDEGLTF/CMakeLists.txt b/src/DataExchange/TKDEGLTF/CMakeLists.txt similarity index 100% rename from src/TKDEGLTF/CMakeLists.txt rename to src/DataExchange/TKDEGLTF/CMakeLists.txt diff --git a/src/DEGLTF/DEGLTF_ConfigurationNode.cxx b/src/DataExchange/TKDEGLTF/DEGLTF/DEGLTF_ConfigurationNode.cxx similarity index 100% rename from src/DEGLTF/DEGLTF_ConfigurationNode.cxx rename to src/DataExchange/TKDEGLTF/DEGLTF/DEGLTF_ConfigurationNode.cxx diff --git a/src/DEGLTF/DEGLTF_ConfigurationNode.hxx b/src/DataExchange/TKDEGLTF/DEGLTF/DEGLTF_ConfigurationNode.hxx similarity index 100% rename from src/DEGLTF/DEGLTF_ConfigurationNode.hxx rename to src/DataExchange/TKDEGLTF/DEGLTF/DEGLTF_ConfigurationNode.hxx diff --git a/src/DEGLTF/DEGLTF_Provider.cxx b/src/DataExchange/TKDEGLTF/DEGLTF/DEGLTF_Provider.cxx similarity index 100% rename from src/DEGLTF/DEGLTF_Provider.cxx rename to src/DataExchange/TKDEGLTF/DEGLTF/DEGLTF_Provider.cxx diff --git a/src/DEGLTF/DEGLTF_Provider.hxx b/src/DataExchange/TKDEGLTF/DEGLTF/DEGLTF_Provider.hxx similarity index 100% rename from src/DEGLTF/DEGLTF_Provider.hxx rename to src/DataExchange/TKDEGLTF/DEGLTF/DEGLTF_Provider.hxx diff --git a/src/DataExchange/TKDEGLTF/DEGLTF/FILES.cmake b/src/DataExchange/TKDEGLTF/DEGLTF/FILES.cmake new file mode 100644 index 0000000000..cc09f35066 --- /dev/null +++ b/src/DataExchange/TKDEGLTF/DEGLTF/FILES.cmake @@ -0,0 +1,9 @@ +# Source files for DEGLTF package +set(OCCT_DEGLTF_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_DEGLTF_FILES + DEGLTF_ConfigurationNode.cxx + DEGLTF_ConfigurationNode.hxx + DEGLTF_Provider.cxx + DEGLTF_Provider.hxx +) diff --git a/src/DataExchange/TKDEGLTF/EXTERNLIB.cmake b/src/DataExchange/TKDEGLTF/EXTERNLIB.cmake new file mode 100644 index 0000000000..17573cf180 --- /dev/null +++ b/src/DataExchange/TKDEGLTF/EXTERNLIB.cmake @@ -0,0 +1,16 @@ +# External dependencies for TKDEGLTF +set(OCCT_TKDEGLTF_EXTERNAL_LIBS + TKernel + TKMath + TKMesh + TKXCAF + TKLCAF + TKV3d + TKBRep + TKG3d + TKDE + TKService + TKRWMesh + CSF_RapidJSON + CSF_Draco +) diff --git a/src/DataExchange/TKDEGLTF/FILES.cmake b/src/DataExchange/TKDEGLTF/FILES.cmake new file mode 100644 index 0000000000..fa16044912 --- /dev/null +++ b/src/DataExchange/TKDEGLTF/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKDEGLTF +set(OCCT_TKDEGLTF_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKDEGLTF_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/DataExchange/TKDEGLTF/PACKAGES.cmake b/src/DataExchange/TKDEGLTF/PACKAGES.cmake new file mode 100644 index 0000000000..bcf6412db1 --- /dev/null +++ b/src/DataExchange/TKDEGLTF/PACKAGES.cmake @@ -0,0 +1,5 @@ +# Auto-generated list of packages for TKDEGLTF toolkit +set(OCCT_TKDEGLTF_LIST_OF_PACKAGES + RWGltf + DEGLTF +) diff --git a/src/DataExchange/TKDEGLTF/RWGltf/FILES.cmake b/src/DataExchange/TKDEGLTF/RWGltf/FILES.cmake new file mode 100644 index 0000000000..ba3ce74652 --- /dev/null +++ b/src/DataExchange/TKDEGLTF/RWGltf/FILES.cmake @@ -0,0 +1,36 @@ +# Source files for RWGltf package +set(OCCT_RWGltf_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_RWGltf_FILES + RWGltf_CafReader.cxx + RWGltf_CafReader.hxx + RWGltf_CafWriter.cxx + RWGltf_CafWriter.hxx + RWGltf_ConfigurationNode.hxx + RWGltf_DracoParameters.hxx + RWGltf_GltfAccessor.hxx + RWGltf_GltfAccessorCompType.hxx + RWGltf_GltfAccessorLayout.hxx + RWGltf_GltfAlphaMode.hxx + RWGltf_GltfArrayType.hxx + RWGltf_GltfBufferView.hxx + RWGltf_GltfBufferViewTarget.hxx + RWGltf_GltfFace.hxx + RWGltf_GltfJsonParser.cxx + RWGltf_GltfJsonParser.hxx + RWGltf_GltfLatePrimitiveArray.cxx + RWGltf_GltfLatePrimitiveArray.hxx + RWGltf_GltfMaterialMap.cxx + RWGltf_GltfMaterialMap.hxx + RWGltf_GltfOStreamWriter.hxx + RWGltf_GltfPrimArrayData.hxx + RWGltf_GltfPrimitiveMode.hxx + RWGltf_GltfRootElement.hxx + RWGltf_GltfSceneNodeMap.hxx + RWGltf_MaterialCommon.hxx + RWGltf_MaterialMetallicRoughness.hxx + RWGltf_Provider.hxx + RWGltf_TriangulationReader.cxx + RWGltf_TriangulationReader.hxx + RWGltf_WriterTrsfFormat.hxx +) diff --git a/src/RWGltf/RWGltf_CafReader.cxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_CafReader.cxx similarity index 100% rename from src/RWGltf/RWGltf_CafReader.cxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_CafReader.cxx diff --git a/src/RWGltf/RWGltf_CafReader.hxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_CafReader.hxx similarity index 100% rename from src/RWGltf/RWGltf_CafReader.hxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_CafReader.hxx diff --git a/src/RWGltf/RWGltf_CafWriter.cxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_CafWriter.cxx similarity index 100% rename from src/RWGltf/RWGltf_CafWriter.cxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_CafWriter.cxx diff --git a/src/RWGltf/RWGltf_CafWriter.hxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_CafWriter.hxx similarity index 100% rename from src/RWGltf/RWGltf_CafWriter.hxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_CafWriter.hxx diff --git a/src/RWGltf/RWGltf_ConfigurationNode.hxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_ConfigurationNode.hxx similarity index 100% rename from src/RWGltf/RWGltf_ConfigurationNode.hxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_ConfigurationNode.hxx diff --git a/src/RWGltf/RWGltf_DracoParameters.hxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_DracoParameters.hxx similarity index 100% rename from src/RWGltf/RWGltf_DracoParameters.hxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_DracoParameters.hxx diff --git a/src/RWGltf/RWGltf_GltfAccessor.hxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfAccessor.hxx similarity index 100% rename from src/RWGltf/RWGltf_GltfAccessor.hxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfAccessor.hxx diff --git a/src/RWGltf/RWGltf_GltfAccessorCompType.hxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfAccessorCompType.hxx similarity index 100% rename from src/RWGltf/RWGltf_GltfAccessorCompType.hxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfAccessorCompType.hxx diff --git a/src/RWGltf/RWGltf_GltfAccessorLayout.hxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfAccessorLayout.hxx similarity index 100% rename from src/RWGltf/RWGltf_GltfAccessorLayout.hxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfAccessorLayout.hxx diff --git a/src/RWGltf/RWGltf_GltfAlphaMode.hxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfAlphaMode.hxx similarity index 100% rename from src/RWGltf/RWGltf_GltfAlphaMode.hxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfAlphaMode.hxx diff --git a/src/RWGltf/RWGltf_GltfArrayType.hxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfArrayType.hxx similarity index 100% rename from src/RWGltf/RWGltf_GltfArrayType.hxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfArrayType.hxx diff --git a/src/RWGltf/RWGltf_GltfBufferView.hxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfBufferView.hxx similarity index 100% rename from src/RWGltf/RWGltf_GltfBufferView.hxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfBufferView.hxx diff --git a/src/RWGltf/RWGltf_GltfBufferViewTarget.hxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfBufferViewTarget.hxx similarity index 100% rename from src/RWGltf/RWGltf_GltfBufferViewTarget.hxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfBufferViewTarget.hxx diff --git a/src/RWGltf/RWGltf_GltfFace.hxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfFace.hxx similarity index 100% rename from src/RWGltf/RWGltf_GltfFace.hxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfFace.hxx diff --git a/src/RWGltf/RWGltf_GltfJsonParser.cxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfJsonParser.cxx similarity index 100% rename from src/RWGltf/RWGltf_GltfJsonParser.cxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfJsonParser.cxx diff --git a/src/RWGltf/RWGltf_GltfJsonParser.hxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfJsonParser.hxx similarity index 100% rename from src/RWGltf/RWGltf_GltfJsonParser.hxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfJsonParser.hxx diff --git a/src/RWGltf/RWGltf_GltfLatePrimitiveArray.cxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfLatePrimitiveArray.cxx similarity index 100% rename from src/RWGltf/RWGltf_GltfLatePrimitiveArray.cxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfLatePrimitiveArray.cxx diff --git a/src/RWGltf/RWGltf_GltfLatePrimitiveArray.hxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfLatePrimitiveArray.hxx similarity index 100% rename from src/RWGltf/RWGltf_GltfLatePrimitiveArray.hxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfLatePrimitiveArray.hxx diff --git a/src/RWGltf/RWGltf_GltfMaterialMap.cxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfMaterialMap.cxx similarity index 100% rename from src/RWGltf/RWGltf_GltfMaterialMap.cxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfMaterialMap.cxx diff --git a/src/RWGltf/RWGltf_GltfMaterialMap.hxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfMaterialMap.hxx similarity index 100% rename from src/RWGltf/RWGltf_GltfMaterialMap.hxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfMaterialMap.hxx diff --git a/src/RWGltf/RWGltf_GltfOStreamWriter.hxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfOStreamWriter.hxx similarity index 100% rename from src/RWGltf/RWGltf_GltfOStreamWriter.hxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfOStreamWriter.hxx diff --git a/src/RWGltf/RWGltf_GltfPrimArrayData.hxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfPrimArrayData.hxx similarity index 100% rename from src/RWGltf/RWGltf_GltfPrimArrayData.hxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfPrimArrayData.hxx diff --git a/src/RWGltf/RWGltf_GltfPrimitiveMode.hxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfPrimitiveMode.hxx similarity index 100% rename from src/RWGltf/RWGltf_GltfPrimitiveMode.hxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfPrimitiveMode.hxx diff --git a/src/RWGltf/RWGltf_GltfRootElement.hxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfRootElement.hxx similarity index 100% rename from src/RWGltf/RWGltf_GltfRootElement.hxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfRootElement.hxx diff --git a/src/RWGltf/RWGltf_GltfSceneNodeMap.hxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfSceneNodeMap.hxx similarity index 100% rename from src/RWGltf/RWGltf_GltfSceneNodeMap.hxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_GltfSceneNodeMap.hxx diff --git a/src/RWGltf/RWGltf_MaterialCommon.hxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_MaterialCommon.hxx similarity index 100% rename from src/RWGltf/RWGltf_MaterialCommon.hxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_MaterialCommon.hxx diff --git a/src/RWGltf/RWGltf_MaterialMetallicRoughness.hxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_MaterialMetallicRoughness.hxx similarity index 100% rename from src/RWGltf/RWGltf_MaterialMetallicRoughness.hxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_MaterialMetallicRoughness.hxx diff --git a/src/RWGltf/RWGltf_Provider.hxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_Provider.hxx similarity index 100% rename from src/RWGltf/RWGltf_Provider.hxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_Provider.hxx diff --git a/src/RWGltf/RWGltf_TriangulationReader.cxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_TriangulationReader.cxx similarity index 100% rename from src/RWGltf/RWGltf_TriangulationReader.cxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_TriangulationReader.cxx diff --git a/src/RWGltf/RWGltf_TriangulationReader.hxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_TriangulationReader.hxx similarity index 100% rename from src/RWGltf/RWGltf_TriangulationReader.hxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_TriangulationReader.hxx diff --git a/src/RWGltf/RWGltf_WriterTrsfFormat.hxx b/src/DataExchange/TKDEGLTF/RWGltf/RWGltf_WriterTrsfFormat.hxx similarity index 100% rename from src/RWGltf/RWGltf_WriterTrsfFormat.hxx rename to src/DataExchange/TKDEGLTF/RWGltf/RWGltf_WriterTrsfFormat.hxx diff --git a/src/BRepToIGES/BRepToIGES_BREntity.cxx b/src/DataExchange/TKDEIGES/BRepToIGES/BRepToIGES_BREntity.cxx similarity index 100% rename from src/BRepToIGES/BRepToIGES_BREntity.cxx rename to src/DataExchange/TKDEIGES/BRepToIGES/BRepToIGES_BREntity.cxx diff --git a/src/BRepToIGES/BRepToIGES_BREntity.hxx b/src/DataExchange/TKDEIGES/BRepToIGES/BRepToIGES_BREntity.hxx similarity index 100% rename from src/BRepToIGES/BRepToIGES_BREntity.hxx rename to src/DataExchange/TKDEIGES/BRepToIGES/BRepToIGES_BREntity.hxx diff --git a/src/BRepToIGES/BRepToIGES_BRShell.cxx b/src/DataExchange/TKDEIGES/BRepToIGES/BRepToIGES_BRShell.cxx similarity index 100% rename from src/BRepToIGES/BRepToIGES_BRShell.cxx rename to src/DataExchange/TKDEIGES/BRepToIGES/BRepToIGES_BRShell.cxx diff --git a/src/BRepToIGES/BRepToIGES_BRShell.hxx b/src/DataExchange/TKDEIGES/BRepToIGES/BRepToIGES_BRShell.hxx similarity index 100% rename from src/BRepToIGES/BRepToIGES_BRShell.hxx rename to src/DataExchange/TKDEIGES/BRepToIGES/BRepToIGES_BRShell.hxx diff --git a/src/BRepToIGES/BRepToIGES_BRSolid.cxx b/src/DataExchange/TKDEIGES/BRepToIGES/BRepToIGES_BRSolid.cxx similarity index 100% rename from src/BRepToIGES/BRepToIGES_BRSolid.cxx rename to src/DataExchange/TKDEIGES/BRepToIGES/BRepToIGES_BRSolid.cxx diff --git a/src/BRepToIGES/BRepToIGES_BRSolid.hxx b/src/DataExchange/TKDEIGES/BRepToIGES/BRepToIGES_BRSolid.hxx similarity index 100% rename from src/BRepToIGES/BRepToIGES_BRSolid.hxx rename to src/DataExchange/TKDEIGES/BRepToIGES/BRepToIGES_BRSolid.hxx diff --git a/src/BRepToIGES/BRepToIGES_BRWire.cxx b/src/DataExchange/TKDEIGES/BRepToIGES/BRepToIGES_BRWire.cxx similarity index 100% rename from src/BRepToIGES/BRepToIGES_BRWire.cxx rename to src/DataExchange/TKDEIGES/BRepToIGES/BRepToIGES_BRWire.cxx diff --git a/src/BRepToIGES/BRepToIGES_BRWire.hxx b/src/DataExchange/TKDEIGES/BRepToIGES/BRepToIGES_BRWire.hxx similarity index 100% rename from src/BRepToIGES/BRepToIGES_BRWire.hxx rename to src/DataExchange/TKDEIGES/BRepToIGES/BRepToIGES_BRWire.hxx diff --git a/src/DataExchange/TKDEIGES/BRepToIGES/FILES.cmake b/src/DataExchange/TKDEIGES/BRepToIGES/FILES.cmake new file mode 100644 index 0000000000..371dbfc04e --- /dev/null +++ b/src/DataExchange/TKDEIGES/BRepToIGES/FILES.cmake @@ -0,0 +1,13 @@ +# Source files for BRepToIGES package +set(OCCT_BRepToIGES_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepToIGES_FILES + BRepToIGES_BREntity.cxx + BRepToIGES_BREntity.hxx + BRepToIGES_BRShell.cxx + BRepToIGES_BRShell.hxx + BRepToIGES_BRSolid.cxx + BRepToIGES_BRSolid.hxx + BRepToIGES_BRWire.cxx + BRepToIGES_BRWire.hxx +) diff --git a/src/BRepToIGESBRep/BRepToIGESBRep_Entity.cxx b/src/DataExchange/TKDEIGES/BRepToIGESBRep/BRepToIGESBRep_Entity.cxx similarity index 100% rename from src/BRepToIGESBRep/BRepToIGESBRep_Entity.cxx rename to src/DataExchange/TKDEIGES/BRepToIGESBRep/BRepToIGESBRep_Entity.cxx diff --git a/src/BRepToIGESBRep/BRepToIGESBRep_Entity.hxx b/src/DataExchange/TKDEIGES/BRepToIGESBRep/BRepToIGESBRep_Entity.hxx similarity index 100% rename from src/BRepToIGESBRep/BRepToIGESBRep_Entity.hxx rename to src/DataExchange/TKDEIGES/BRepToIGESBRep/BRepToIGESBRep_Entity.hxx diff --git a/src/DataExchange/TKDEIGES/BRepToIGESBRep/FILES.cmake b/src/DataExchange/TKDEIGES/BRepToIGESBRep/FILES.cmake new file mode 100644 index 0000000000..e4443fad11 --- /dev/null +++ b/src/DataExchange/TKDEIGES/BRepToIGESBRep/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for BRepToIGESBRep package +set(OCCT_BRepToIGESBRep_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepToIGESBRep_FILES + BRepToIGESBRep_Entity.cxx + BRepToIGESBRep_Entity.hxx +) diff --git a/src/TKDEIGES/CMakeLists.txt b/src/DataExchange/TKDEIGES/CMakeLists.txt similarity index 100% rename from src/TKDEIGES/CMakeLists.txt rename to src/DataExchange/TKDEIGES/CMakeLists.txt diff --git a/src/DEIGES/DEIGES_ConfigurationNode.cxx b/src/DataExchange/TKDEIGES/DEIGES/DEIGES_ConfigurationNode.cxx similarity index 100% rename from src/DEIGES/DEIGES_ConfigurationNode.cxx rename to src/DataExchange/TKDEIGES/DEIGES/DEIGES_ConfigurationNode.cxx diff --git a/src/DEIGES/DEIGES_ConfigurationNode.hxx b/src/DataExchange/TKDEIGES/DEIGES/DEIGES_ConfigurationNode.hxx similarity index 100% rename from src/DEIGES/DEIGES_ConfigurationNode.hxx rename to src/DataExchange/TKDEIGES/DEIGES/DEIGES_ConfigurationNode.hxx diff --git a/src/DEIGES/DEIGES_Parameters.cxx b/src/DataExchange/TKDEIGES/DEIGES/DEIGES_Parameters.cxx similarity index 100% rename from src/DEIGES/DEIGES_Parameters.cxx rename to src/DataExchange/TKDEIGES/DEIGES/DEIGES_Parameters.cxx diff --git a/src/DEIGES/DEIGES_Parameters.hxx b/src/DataExchange/TKDEIGES/DEIGES/DEIGES_Parameters.hxx similarity index 100% rename from src/DEIGES/DEIGES_Parameters.hxx rename to src/DataExchange/TKDEIGES/DEIGES/DEIGES_Parameters.hxx diff --git a/src/DEIGES/DEIGES_Provider.cxx b/src/DataExchange/TKDEIGES/DEIGES/DEIGES_Provider.cxx similarity index 100% rename from src/DEIGES/DEIGES_Provider.cxx rename to src/DataExchange/TKDEIGES/DEIGES/DEIGES_Provider.cxx diff --git a/src/DEIGES/DEIGES_Provider.hxx b/src/DataExchange/TKDEIGES/DEIGES/DEIGES_Provider.hxx similarity index 100% rename from src/DEIGES/DEIGES_Provider.hxx rename to src/DataExchange/TKDEIGES/DEIGES/DEIGES_Provider.hxx diff --git a/src/DataExchange/TKDEIGES/DEIGES/FILES.cmake b/src/DataExchange/TKDEIGES/DEIGES/FILES.cmake new file mode 100644 index 0000000000..cee1009652 --- /dev/null +++ b/src/DataExchange/TKDEIGES/DEIGES/FILES.cmake @@ -0,0 +1,11 @@ +# Source files for DEIGES package +set(OCCT_DEIGES_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_DEIGES_FILES + DEIGES_ConfigurationNode.cxx + DEIGES_ConfigurationNode.hxx + DEIGES_Parameters.cxx + DEIGES_Parameters.hxx + DEIGES_Provider.cxx + DEIGES_Provider.hxx +) diff --git a/src/DataExchange/TKDEIGES/EXTERNLIB.cmake b/src/DataExchange/TKDEIGES/EXTERNLIB.cmake new file mode 100644 index 0000000000..bc9e491066 --- /dev/null +++ b/src/DataExchange/TKDEIGES/EXTERNLIB.cmake @@ -0,0 +1,19 @@ +# External dependencies for TKDEIGES +set(OCCT_TKDEIGES_EXTERNAL_LIBS + TKBRep + TKDE + TKernel + TKMath + TKTopAlgo + TKShHealing + TKXSBase + TKGeomBase + TKGeomAlgo + TKBool + TKPrim + TKCDF + TKLCAF + TKG2d + TKG3d + TKXCAF +) diff --git a/src/DataExchange/TKDEIGES/FILES.cmake b/src/DataExchange/TKDEIGES/FILES.cmake new file mode 100644 index 0000000000..43a685debc --- /dev/null +++ b/src/DataExchange/TKDEIGES/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKDEIGES +set(OCCT_TKDEIGES_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKDEIGES_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/DataExchange/TKDEIGES/Geom2dToIGES/FILES.cmake b/src/DataExchange/TKDEIGES/Geom2dToIGES/FILES.cmake new file mode 100644 index 0000000000..768cf232fb --- /dev/null +++ b/src/DataExchange/TKDEIGES/Geom2dToIGES/FILES.cmake @@ -0,0 +1,13 @@ +# Source files for Geom2dToIGES package +set(OCCT_Geom2dToIGES_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Geom2dToIGES_FILES + Geom2dToIGES_Geom2dCurve.cxx + Geom2dToIGES_Geom2dCurve.hxx + Geom2dToIGES_Geom2dEntity.cxx + Geom2dToIGES_Geom2dEntity.hxx + Geom2dToIGES_Geom2dPoint.cxx + Geom2dToIGES_Geom2dPoint.hxx + Geom2dToIGES_Geom2dVector.cxx + Geom2dToIGES_Geom2dVector.hxx +) diff --git a/src/Geom2dToIGES/Geom2dToIGES_Geom2dCurve.cxx b/src/DataExchange/TKDEIGES/Geom2dToIGES/Geom2dToIGES_Geom2dCurve.cxx similarity index 100% rename from src/Geom2dToIGES/Geom2dToIGES_Geom2dCurve.cxx rename to src/DataExchange/TKDEIGES/Geom2dToIGES/Geom2dToIGES_Geom2dCurve.cxx diff --git a/src/Geom2dToIGES/Geom2dToIGES_Geom2dCurve.hxx b/src/DataExchange/TKDEIGES/Geom2dToIGES/Geom2dToIGES_Geom2dCurve.hxx similarity index 100% rename from src/Geom2dToIGES/Geom2dToIGES_Geom2dCurve.hxx rename to src/DataExchange/TKDEIGES/Geom2dToIGES/Geom2dToIGES_Geom2dCurve.hxx diff --git a/src/Geom2dToIGES/Geom2dToIGES_Geom2dEntity.cxx b/src/DataExchange/TKDEIGES/Geom2dToIGES/Geom2dToIGES_Geom2dEntity.cxx similarity index 100% rename from src/Geom2dToIGES/Geom2dToIGES_Geom2dEntity.cxx rename to src/DataExchange/TKDEIGES/Geom2dToIGES/Geom2dToIGES_Geom2dEntity.cxx diff --git a/src/Geom2dToIGES/Geom2dToIGES_Geom2dEntity.hxx b/src/DataExchange/TKDEIGES/Geom2dToIGES/Geom2dToIGES_Geom2dEntity.hxx similarity index 100% rename from src/Geom2dToIGES/Geom2dToIGES_Geom2dEntity.hxx rename to src/DataExchange/TKDEIGES/Geom2dToIGES/Geom2dToIGES_Geom2dEntity.hxx diff --git a/src/Geom2dToIGES/Geom2dToIGES_Geom2dPoint.cxx b/src/DataExchange/TKDEIGES/Geom2dToIGES/Geom2dToIGES_Geom2dPoint.cxx similarity index 100% rename from src/Geom2dToIGES/Geom2dToIGES_Geom2dPoint.cxx rename to src/DataExchange/TKDEIGES/Geom2dToIGES/Geom2dToIGES_Geom2dPoint.cxx diff --git a/src/Geom2dToIGES/Geom2dToIGES_Geom2dPoint.hxx b/src/DataExchange/TKDEIGES/Geom2dToIGES/Geom2dToIGES_Geom2dPoint.hxx similarity index 100% rename from src/Geom2dToIGES/Geom2dToIGES_Geom2dPoint.hxx rename to src/DataExchange/TKDEIGES/Geom2dToIGES/Geom2dToIGES_Geom2dPoint.hxx diff --git a/src/Geom2dToIGES/Geom2dToIGES_Geom2dVector.cxx b/src/DataExchange/TKDEIGES/Geom2dToIGES/Geom2dToIGES_Geom2dVector.cxx similarity index 100% rename from src/Geom2dToIGES/Geom2dToIGES_Geom2dVector.cxx rename to src/DataExchange/TKDEIGES/Geom2dToIGES/Geom2dToIGES_Geom2dVector.cxx diff --git a/src/Geom2dToIGES/Geom2dToIGES_Geom2dVector.hxx b/src/DataExchange/TKDEIGES/Geom2dToIGES/Geom2dToIGES_Geom2dVector.hxx similarity index 100% rename from src/Geom2dToIGES/Geom2dToIGES_Geom2dVector.hxx rename to src/DataExchange/TKDEIGES/Geom2dToIGES/Geom2dToIGES_Geom2dVector.hxx diff --git a/src/DataExchange/TKDEIGES/GeomToIGES/FILES.cmake b/src/DataExchange/TKDEIGES/GeomToIGES/FILES.cmake new file mode 100644 index 0000000000..61578d948f --- /dev/null +++ b/src/DataExchange/TKDEIGES/GeomToIGES/FILES.cmake @@ -0,0 +1,15 @@ +# Source files for GeomToIGES package +set(OCCT_GeomToIGES_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_GeomToIGES_FILES + GeomToIGES_GeomCurve.cxx + GeomToIGES_GeomCurve.hxx + GeomToIGES_GeomEntity.cxx + GeomToIGES_GeomEntity.hxx + GeomToIGES_GeomPoint.cxx + GeomToIGES_GeomPoint.hxx + GeomToIGES_GeomSurface.cxx + GeomToIGES_GeomSurface.hxx + GeomToIGES_GeomVector.cxx + GeomToIGES_GeomVector.hxx +) diff --git a/src/GeomToIGES/GeomToIGES_GeomCurve.cxx b/src/DataExchange/TKDEIGES/GeomToIGES/GeomToIGES_GeomCurve.cxx similarity index 100% rename from src/GeomToIGES/GeomToIGES_GeomCurve.cxx rename to src/DataExchange/TKDEIGES/GeomToIGES/GeomToIGES_GeomCurve.cxx diff --git a/src/GeomToIGES/GeomToIGES_GeomCurve.hxx b/src/DataExchange/TKDEIGES/GeomToIGES/GeomToIGES_GeomCurve.hxx similarity index 100% rename from src/GeomToIGES/GeomToIGES_GeomCurve.hxx rename to src/DataExchange/TKDEIGES/GeomToIGES/GeomToIGES_GeomCurve.hxx diff --git a/src/GeomToIGES/GeomToIGES_GeomEntity.cxx b/src/DataExchange/TKDEIGES/GeomToIGES/GeomToIGES_GeomEntity.cxx similarity index 100% rename from src/GeomToIGES/GeomToIGES_GeomEntity.cxx rename to src/DataExchange/TKDEIGES/GeomToIGES/GeomToIGES_GeomEntity.cxx diff --git a/src/GeomToIGES/GeomToIGES_GeomEntity.hxx b/src/DataExchange/TKDEIGES/GeomToIGES/GeomToIGES_GeomEntity.hxx similarity index 100% rename from src/GeomToIGES/GeomToIGES_GeomEntity.hxx rename to src/DataExchange/TKDEIGES/GeomToIGES/GeomToIGES_GeomEntity.hxx diff --git a/src/GeomToIGES/GeomToIGES_GeomPoint.cxx b/src/DataExchange/TKDEIGES/GeomToIGES/GeomToIGES_GeomPoint.cxx similarity index 100% rename from src/GeomToIGES/GeomToIGES_GeomPoint.cxx rename to src/DataExchange/TKDEIGES/GeomToIGES/GeomToIGES_GeomPoint.cxx diff --git a/src/GeomToIGES/GeomToIGES_GeomPoint.hxx b/src/DataExchange/TKDEIGES/GeomToIGES/GeomToIGES_GeomPoint.hxx similarity index 100% rename from src/GeomToIGES/GeomToIGES_GeomPoint.hxx rename to src/DataExchange/TKDEIGES/GeomToIGES/GeomToIGES_GeomPoint.hxx diff --git a/src/GeomToIGES/GeomToIGES_GeomSurface.cxx b/src/DataExchange/TKDEIGES/GeomToIGES/GeomToIGES_GeomSurface.cxx similarity index 100% rename from src/GeomToIGES/GeomToIGES_GeomSurface.cxx rename to src/DataExchange/TKDEIGES/GeomToIGES/GeomToIGES_GeomSurface.cxx diff --git a/src/GeomToIGES/GeomToIGES_GeomSurface.hxx b/src/DataExchange/TKDEIGES/GeomToIGES/GeomToIGES_GeomSurface.hxx similarity index 100% rename from src/GeomToIGES/GeomToIGES_GeomSurface.hxx rename to src/DataExchange/TKDEIGES/GeomToIGES/GeomToIGES_GeomSurface.hxx diff --git a/src/GeomToIGES/GeomToIGES_GeomVector.cxx b/src/DataExchange/TKDEIGES/GeomToIGES/GeomToIGES_GeomVector.cxx similarity index 100% rename from src/GeomToIGES/GeomToIGES_GeomVector.cxx rename to src/DataExchange/TKDEIGES/GeomToIGES/GeomToIGES_GeomVector.cxx diff --git a/src/GeomToIGES/GeomToIGES_GeomVector.hxx b/src/DataExchange/TKDEIGES/GeomToIGES/GeomToIGES_GeomVector.hxx similarity index 100% rename from src/GeomToIGES/GeomToIGES_GeomVector.hxx rename to src/DataExchange/TKDEIGES/GeomToIGES/GeomToIGES_GeomVector.hxx diff --git a/src/DataExchange/TKDEIGES/IGESAppli/FILES.cmake b/src/DataExchange/TKDEIGES/IGESAppli/FILES.cmake new file mode 100644 index 0000000000..06acc31718 --- /dev/null +++ b/src/DataExchange/TKDEIGES/IGESAppli/FILES.cmake @@ -0,0 +1,97 @@ +# Source files for IGESAppli package +set(OCCT_IGESAppli_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IGESAppli_FILES + IGESAppli.cxx + IGESAppli.hxx + IGESAppli_Array1OfFiniteElement.hxx + IGESAppli_Array1OfFlow.hxx + IGESAppli_Array1OfNode.hxx + IGESAppli_DrilledHole.cxx + IGESAppli_DrilledHole.hxx + IGESAppli_ElementResults.cxx + IGESAppli_ElementResults.hxx + IGESAppli_FiniteElement.cxx + IGESAppli_FiniteElement.hxx + IGESAppli_Flow.cxx + IGESAppli_Flow.hxx + IGESAppli_FlowLineSpec.cxx + IGESAppli_FlowLineSpec.hxx + IGESAppli_GeneralModule.cxx + IGESAppli_GeneralModule.hxx + IGESAppli_HArray1OfFiniteElement.hxx + IGESAppli_HArray1OfFlow.hxx + IGESAppli_HArray1OfNode.hxx + IGESAppli_LevelFunction.cxx + IGESAppli_LevelFunction.hxx + IGESAppli_LevelToPWBLayerMap.cxx + IGESAppli_LevelToPWBLayerMap.hxx + IGESAppli_LineWidening.cxx + IGESAppli_LineWidening.hxx + IGESAppli_NodalConstraint.cxx + IGESAppli_NodalConstraint.hxx + IGESAppli_NodalDisplAndRot.cxx + IGESAppli_NodalDisplAndRot.hxx + IGESAppli_NodalResults.cxx + IGESAppli_NodalResults.hxx + IGESAppli_Node.cxx + IGESAppli_Node.hxx + IGESAppli_PartNumber.cxx + IGESAppli_PartNumber.hxx + IGESAppli_PinNumber.cxx + IGESAppli_PinNumber.hxx + IGESAppli_PipingFlow.cxx + IGESAppli_PipingFlow.hxx + IGESAppli_Protocol.cxx + IGESAppli_Protocol.hxx + IGESAppli_PWBArtworkStackup.cxx + IGESAppli_PWBArtworkStackup.hxx + IGESAppli_PWBDrilledHole.cxx + IGESAppli_PWBDrilledHole.hxx + IGESAppli_ReadWriteModule.cxx + IGESAppli_ReadWriteModule.hxx + IGESAppli_ReferenceDesignator.cxx + IGESAppli_ReferenceDesignator.hxx + IGESAppli_RegionRestriction.cxx + IGESAppli_RegionRestriction.hxx + IGESAppli_SpecificModule.cxx + IGESAppli_SpecificModule.hxx + IGESAppli_ToolDrilledHole.cxx + IGESAppli_ToolDrilledHole.hxx + IGESAppli_ToolElementResults.cxx + IGESAppli_ToolElementResults.hxx + IGESAppli_ToolFiniteElement.cxx + IGESAppli_ToolFiniteElement.hxx + IGESAppli_ToolFlow.cxx + IGESAppli_ToolFlow.hxx + IGESAppli_ToolFlowLineSpec.cxx + IGESAppli_ToolFlowLineSpec.hxx + IGESAppli_ToolLevelFunction.cxx + IGESAppli_ToolLevelFunction.hxx + IGESAppli_ToolLevelToPWBLayerMap.cxx + IGESAppli_ToolLevelToPWBLayerMap.hxx + IGESAppli_ToolLineWidening.cxx + IGESAppli_ToolLineWidening.hxx + IGESAppli_ToolNodalConstraint.cxx + IGESAppli_ToolNodalConstraint.hxx + IGESAppli_ToolNodalDisplAndRot.cxx + IGESAppli_ToolNodalDisplAndRot.hxx + IGESAppli_ToolNodalResults.cxx + IGESAppli_ToolNodalResults.hxx + IGESAppli_ToolNode.cxx + IGESAppli_ToolNode.hxx + IGESAppli_ToolPartNumber.cxx + IGESAppli_ToolPartNumber.hxx + IGESAppli_ToolPinNumber.cxx + IGESAppli_ToolPinNumber.hxx + IGESAppli_ToolPipingFlow.cxx + IGESAppli_ToolPipingFlow.hxx + IGESAppli_ToolPWBArtworkStackup.cxx + IGESAppli_ToolPWBArtworkStackup.hxx + IGESAppli_ToolPWBDrilledHole.cxx + IGESAppli_ToolPWBDrilledHole.hxx + IGESAppli_ToolReferenceDesignator.cxx + IGESAppli_ToolReferenceDesignator.hxx + IGESAppli_ToolRegionRestriction.cxx + IGESAppli_ToolRegionRestriction.hxx +) diff --git a/src/IGESAppli/IGESAppli.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli.cxx similarity index 100% rename from src/IGESAppli/IGESAppli.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli.cxx diff --git a/src/IGESAppli/IGESAppli.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli.hxx similarity index 100% rename from src/IGESAppli/IGESAppli.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli.hxx diff --git a/src/IGESAppli/IGESAppli_Array1OfFiniteElement.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_Array1OfFiniteElement.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_Array1OfFiniteElement.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_Array1OfFiniteElement.hxx diff --git a/src/IGESAppli/IGESAppli_Array1OfFlow.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_Array1OfFlow.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_Array1OfFlow.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_Array1OfFlow.hxx diff --git a/src/IGESAppli/IGESAppli_Array1OfNode.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_Array1OfNode.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_Array1OfNode.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_Array1OfNode.hxx diff --git a/src/IGESAppli/IGESAppli_DrilledHole.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_DrilledHole.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_DrilledHole.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_DrilledHole.cxx diff --git a/src/IGESAppli/IGESAppli_DrilledHole.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_DrilledHole.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_DrilledHole.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_DrilledHole.hxx diff --git a/src/IGESAppli/IGESAppli_ElementResults.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ElementResults.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_ElementResults.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ElementResults.cxx diff --git a/src/IGESAppli/IGESAppli_ElementResults.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ElementResults.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_ElementResults.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ElementResults.hxx diff --git a/src/IGESAppli/IGESAppli_FiniteElement.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_FiniteElement.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_FiniteElement.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_FiniteElement.cxx diff --git a/src/IGESAppli/IGESAppli_FiniteElement.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_FiniteElement.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_FiniteElement.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_FiniteElement.hxx diff --git a/src/IGESAppli/IGESAppli_Flow.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_Flow.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_Flow.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_Flow.cxx diff --git a/src/IGESAppli/IGESAppli_Flow.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_Flow.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_Flow.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_Flow.hxx diff --git a/src/IGESAppli/IGESAppli_FlowLineSpec.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_FlowLineSpec.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_FlowLineSpec.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_FlowLineSpec.cxx diff --git a/src/IGESAppli/IGESAppli_FlowLineSpec.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_FlowLineSpec.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_FlowLineSpec.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_FlowLineSpec.hxx diff --git a/src/IGESAppli/IGESAppli_GeneralModule.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_GeneralModule.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_GeneralModule.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_GeneralModule.cxx diff --git a/src/IGESAppli/IGESAppli_GeneralModule.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_GeneralModule.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_GeneralModule.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_GeneralModule.hxx diff --git a/src/IGESAppli/IGESAppli_HArray1OfFiniteElement.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_HArray1OfFiniteElement.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_HArray1OfFiniteElement.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_HArray1OfFiniteElement.hxx diff --git a/src/IGESAppli/IGESAppli_HArray1OfFlow.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_HArray1OfFlow.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_HArray1OfFlow.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_HArray1OfFlow.hxx diff --git a/src/IGESAppli/IGESAppli_HArray1OfNode.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_HArray1OfNode.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_HArray1OfNode.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_HArray1OfNode.hxx diff --git a/src/IGESAppli/IGESAppli_LevelFunction.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_LevelFunction.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_LevelFunction.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_LevelFunction.cxx diff --git a/src/IGESAppli/IGESAppli_LevelFunction.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_LevelFunction.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_LevelFunction.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_LevelFunction.hxx diff --git a/src/IGESAppli/IGESAppli_LevelToPWBLayerMap.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_LevelToPWBLayerMap.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_LevelToPWBLayerMap.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_LevelToPWBLayerMap.cxx diff --git a/src/IGESAppli/IGESAppli_LevelToPWBLayerMap.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_LevelToPWBLayerMap.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_LevelToPWBLayerMap.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_LevelToPWBLayerMap.hxx diff --git a/src/IGESAppli/IGESAppli_LineWidening.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_LineWidening.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_LineWidening.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_LineWidening.cxx diff --git a/src/IGESAppli/IGESAppli_LineWidening.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_LineWidening.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_LineWidening.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_LineWidening.hxx diff --git a/src/IGESAppli/IGESAppli_NodalConstraint.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_NodalConstraint.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_NodalConstraint.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_NodalConstraint.cxx diff --git a/src/IGESAppli/IGESAppli_NodalConstraint.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_NodalConstraint.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_NodalConstraint.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_NodalConstraint.hxx diff --git a/src/IGESAppli/IGESAppli_NodalDisplAndRot.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_NodalDisplAndRot.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_NodalDisplAndRot.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_NodalDisplAndRot.cxx diff --git a/src/IGESAppli/IGESAppli_NodalDisplAndRot.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_NodalDisplAndRot.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_NodalDisplAndRot.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_NodalDisplAndRot.hxx diff --git a/src/IGESAppli/IGESAppli_NodalResults.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_NodalResults.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_NodalResults.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_NodalResults.cxx diff --git a/src/IGESAppli/IGESAppli_NodalResults.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_NodalResults.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_NodalResults.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_NodalResults.hxx diff --git a/src/IGESAppli/IGESAppli_Node.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_Node.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_Node.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_Node.cxx diff --git a/src/IGESAppli/IGESAppli_Node.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_Node.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_Node.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_Node.hxx diff --git a/src/IGESAppli/IGESAppli_PWBArtworkStackup.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_PWBArtworkStackup.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_PWBArtworkStackup.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_PWBArtworkStackup.cxx diff --git a/src/IGESAppli/IGESAppli_PWBArtworkStackup.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_PWBArtworkStackup.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_PWBArtworkStackup.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_PWBArtworkStackup.hxx diff --git a/src/IGESAppli/IGESAppli_PWBDrilledHole.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_PWBDrilledHole.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_PWBDrilledHole.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_PWBDrilledHole.cxx diff --git a/src/IGESAppli/IGESAppli_PWBDrilledHole.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_PWBDrilledHole.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_PWBDrilledHole.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_PWBDrilledHole.hxx diff --git a/src/IGESAppli/IGESAppli_PartNumber.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_PartNumber.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_PartNumber.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_PartNumber.cxx diff --git a/src/IGESAppli/IGESAppli_PartNumber.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_PartNumber.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_PartNumber.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_PartNumber.hxx diff --git a/src/IGESAppli/IGESAppli_PinNumber.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_PinNumber.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_PinNumber.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_PinNumber.cxx diff --git a/src/IGESAppli/IGESAppli_PinNumber.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_PinNumber.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_PinNumber.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_PinNumber.hxx diff --git a/src/IGESAppli/IGESAppli_PipingFlow.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_PipingFlow.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_PipingFlow.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_PipingFlow.cxx diff --git a/src/IGESAppli/IGESAppli_PipingFlow.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_PipingFlow.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_PipingFlow.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_PipingFlow.hxx diff --git a/src/IGESAppli/IGESAppli_Protocol.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_Protocol.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_Protocol.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_Protocol.cxx diff --git a/src/IGESAppli/IGESAppli_Protocol.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_Protocol.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_Protocol.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_Protocol.hxx diff --git a/src/IGESAppli/IGESAppli_ReadWriteModule.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ReadWriteModule.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_ReadWriteModule.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ReadWriteModule.cxx diff --git a/src/IGESAppli/IGESAppli_ReadWriteModule.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ReadWriteModule.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_ReadWriteModule.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ReadWriteModule.hxx diff --git a/src/IGESAppli/IGESAppli_ReferenceDesignator.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ReferenceDesignator.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_ReferenceDesignator.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ReferenceDesignator.cxx diff --git a/src/IGESAppli/IGESAppli_ReferenceDesignator.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ReferenceDesignator.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_ReferenceDesignator.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ReferenceDesignator.hxx diff --git a/src/IGESAppli/IGESAppli_RegionRestriction.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_RegionRestriction.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_RegionRestriction.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_RegionRestriction.cxx diff --git a/src/IGESAppli/IGESAppli_RegionRestriction.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_RegionRestriction.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_RegionRestriction.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_RegionRestriction.hxx diff --git a/src/IGESAppli/IGESAppli_SpecificModule.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_SpecificModule.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_SpecificModule.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_SpecificModule.cxx diff --git a/src/IGESAppli/IGESAppli_SpecificModule.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_SpecificModule.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_SpecificModule.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_SpecificModule.hxx diff --git a/src/IGESAppli/IGESAppli_ToolDrilledHole.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolDrilledHole.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolDrilledHole.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolDrilledHole.cxx diff --git a/src/IGESAppli/IGESAppli_ToolDrilledHole.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolDrilledHole.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolDrilledHole.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolDrilledHole.hxx diff --git a/src/IGESAppli/IGESAppli_ToolElementResults.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolElementResults.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolElementResults.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolElementResults.cxx diff --git a/src/IGESAppli/IGESAppli_ToolElementResults.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolElementResults.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolElementResults.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolElementResults.hxx diff --git a/src/IGESAppli/IGESAppli_ToolFiniteElement.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolFiniteElement.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolFiniteElement.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolFiniteElement.cxx diff --git a/src/IGESAppli/IGESAppli_ToolFiniteElement.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolFiniteElement.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolFiniteElement.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolFiniteElement.hxx diff --git a/src/IGESAppli/IGESAppli_ToolFlow.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolFlow.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolFlow.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolFlow.cxx diff --git a/src/IGESAppli/IGESAppli_ToolFlow.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolFlow.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolFlow.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolFlow.hxx diff --git a/src/IGESAppli/IGESAppli_ToolFlowLineSpec.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolFlowLineSpec.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolFlowLineSpec.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolFlowLineSpec.cxx diff --git a/src/IGESAppli/IGESAppli_ToolFlowLineSpec.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolFlowLineSpec.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolFlowLineSpec.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolFlowLineSpec.hxx diff --git a/src/IGESAppli/IGESAppli_ToolLevelFunction.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolLevelFunction.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolLevelFunction.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolLevelFunction.cxx diff --git a/src/IGESAppli/IGESAppli_ToolLevelFunction.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolLevelFunction.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolLevelFunction.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolLevelFunction.hxx diff --git a/src/IGESAppli/IGESAppli_ToolLevelToPWBLayerMap.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolLevelToPWBLayerMap.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolLevelToPWBLayerMap.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolLevelToPWBLayerMap.cxx diff --git a/src/IGESAppli/IGESAppli_ToolLevelToPWBLayerMap.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolLevelToPWBLayerMap.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolLevelToPWBLayerMap.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolLevelToPWBLayerMap.hxx diff --git a/src/IGESAppli/IGESAppli_ToolLineWidening.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolLineWidening.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolLineWidening.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolLineWidening.cxx diff --git a/src/IGESAppli/IGESAppli_ToolLineWidening.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolLineWidening.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolLineWidening.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolLineWidening.hxx diff --git a/src/IGESAppli/IGESAppli_ToolNodalConstraint.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolNodalConstraint.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolNodalConstraint.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolNodalConstraint.cxx diff --git a/src/IGESAppli/IGESAppli_ToolNodalConstraint.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolNodalConstraint.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolNodalConstraint.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolNodalConstraint.hxx diff --git a/src/IGESAppli/IGESAppli_ToolNodalDisplAndRot.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolNodalDisplAndRot.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolNodalDisplAndRot.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolNodalDisplAndRot.cxx diff --git a/src/IGESAppli/IGESAppli_ToolNodalDisplAndRot.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolNodalDisplAndRot.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolNodalDisplAndRot.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolNodalDisplAndRot.hxx diff --git a/src/IGESAppli/IGESAppli_ToolNodalResults.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolNodalResults.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolNodalResults.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolNodalResults.cxx diff --git a/src/IGESAppli/IGESAppli_ToolNodalResults.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolNodalResults.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolNodalResults.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolNodalResults.hxx diff --git a/src/IGESAppli/IGESAppli_ToolNode.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolNode.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolNode.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolNode.cxx diff --git a/src/IGESAppli/IGESAppli_ToolNode.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolNode.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolNode.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolNode.hxx diff --git a/src/IGESAppli/IGESAppli_ToolPWBArtworkStackup.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolPWBArtworkStackup.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolPWBArtworkStackup.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolPWBArtworkStackup.cxx diff --git a/src/IGESAppli/IGESAppli_ToolPWBArtworkStackup.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolPWBArtworkStackup.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolPWBArtworkStackup.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolPWBArtworkStackup.hxx diff --git a/src/IGESAppli/IGESAppli_ToolPWBDrilledHole.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolPWBDrilledHole.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolPWBDrilledHole.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolPWBDrilledHole.cxx diff --git a/src/IGESAppli/IGESAppli_ToolPWBDrilledHole.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolPWBDrilledHole.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolPWBDrilledHole.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolPWBDrilledHole.hxx diff --git a/src/IGESAppli/IGESAppli_ToolPartNumber.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolPartNumber.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolPartNumber.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolPartNumber.cxx diff --git a/src/IGESAppli/IGESAppli_ToolPartNumber.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolPartNumber.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolPartNumber.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolPartNumber.hxx diff --git a/src/IGESAppli/IGESAppli_ToolPinNumber.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolPinNumber.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolPinNumber.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolPinNumber.cxx diff --git a/src/IGESAppli/IGESAppli_ToolPinNumber.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolPinNumber.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolPinNumber.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolPinNumber.hxx diff --git a/src/IGESAppli/IGESAppli_ToolPipingFlow.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolPipingFlow.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolPipingFlow.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolPipingFlow.cxx diff --git a/src/IGESAppli/IGESAppli_ToolPipingFlow.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolPipingFlow.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolPipingFlow.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolPipingFlow.hxx diff --git a/src/IGESAppli/IGESAppli_ToolReferenceDesignator.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolReferenceDesignator.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolReferenceDesignator.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolReferenceDesignator.cxx diff --git a/src/IGESAppli/IGESAppli_ToolReferenceDesignator.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolReferenceDesignator.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolReferenceDesignator.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolReferenceDesignator.hxx diff --git a/src/IGESAppli/IGESAppli_ToolRegionRestriction.cxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolRegionRestriction.cxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolRegionRestriction.cxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolRegionRestriction.cxx diff --git a/src/IGESAppli/IGESAppli_ToolRegionRestriction.hxx b/src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolRegionRestriction.hxx similarity index 100% rename from src/IGESAppli/IGESAppli_ToolRegionRestriction.hxx rename to src/DataExchange/TKDEIGES/IGESAppli/IGESAppli_ToolRegionRestriction.hxx diff --git a/src/DataExchange/TKDEIGES/IGESBasic/FILES.cmake b/src/DataExchange/TKDEIGES/IGESBasic/FILES.cmake new file mode 100644 index 0000000000..423a548285 --- /dev/null +++ b/src/DataExchange/TKDEIGES/IGESBasic/FILES.cmake @@ -0,0 +1,93 @@ +# Source files for IGESBasic package +set(OCCT_IGESBasic_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IGESBasic_FILES + IGESBasic.cxx + IGESBasic.hxx + IGESBasic_Array1OfLineFontEntity.hxx + IGESBasic_Array2OfHArray1OfReal.hxx + IGESBasic_AssocGroupType.cxx + IGESBasic_AssocGroupType.hxx + IGESBasic_ExternalReferenceFile.cxx + IGESBasic_ExternalReferenceFile.hxx + IGESBasic_ExternalRefFile.cxx + IGESBasic_ExternalRefFile.hxx + IGESBasic_ExternalRefFileIndex.cxx + IGESBasic_ExternalRefFileIndex.hxx + IGESBasic_ExternalRefFileName.cxx + IGESBasic_ExternalRefFileName.hxx + IGESBasic_ExternalRefLibName.cxx + IGESBasic_ExternalRefLibName.hxx + IGESBasic_ExternalRefName.cxx + IGESBasic_ExternalRefName.hxx + IGESBasic_GeneralModule.cxx + IGESBasic_GeneralModule.hxx + IGESBasic_Group.cxx + IGESBasic_Group.hxx + IGESBasic_GroupWithoutBackP.cxx + IGESBasic_GroupWithoutBackP.hxx + IGESBasic_HArray1OfHArray1OfIGESEntity.hxx + IGESBasic_HArray1OfHArray1OfIGESEntity_0.cxx + IGESBasic_HArray1OfHArray1OfInteger.hxx + IGESBasic_HArray1OfHArray1OfInteger_0.cxx + IGESBasic_HArray1OfHArray1OfReal.hxx + IGESBasic_HArray1OfHArray1OfReal_0.cxx + IGESBasic_HArray1OfHArray1OfXY.hxx + IGESBasic_HArray1OfHArray1OfXY_0.cxx + IGESBasic_HArray1OfHArray1OfXYZ.hxx + IGESBasic_HArray1OfHArray1OfXYZ_0.cxx + IGESBasic_HArray1OfLineFontEntity.hxx + IGESBasic_HArray2OfHArray1OfReal.hxx + IGESBasic_Hierarchy.cxx + IGESBasic_Hierarchy.hxx + IGESBasic_Name.cxx + IGESBasic_Name.hxx + IGESBasic_OrderedGroup.cxx + IGESBasic_OrderedGroup.hxx + IGESBasic_OrderedGroupWithoutBackP.cxx + IGESBasic_OrderedGroupWithoutBackP.hxx + IGESBasic_Protocol.cxx + IGESBasic_Protocol.hxx + IGESBasic_ReadWriteModule.cxx + IGESBasic_ReadWriteModule.hxx + IGESBasic_SingleParent.cxx + IGESBasic_SingleParent.hxx + IGESBasic_SingularSubfigure.cxx + IGESBasic_SingularSubfigure.hxx + IGESBasic_SpecificModule.cxx + IGESBasic_SpecificModule.hxx + IGESBasic_SubfigureDef.cxx + IGESBasic_SubfigureDef.hxx + IGESBasic_ToolAssocGroupType.cxx + IGESBasic_ToolAssocGroupType.hxx + IGESBasic_ToolExternalReferenceFile.cxx + IGESBasic_ToolExternalReferenceFile.hxx + IGESBasic_ToolExternalRefFile.cxx + IGESBasic_ToolExternalRefFile.hxx + IGESBasic_ToolExternalRefFileIndex.cxx + IGESBasic_ToolExternalRefFileIndex.hxx + IGESBasic_ToolExternalRefFileName.cxx + IGESBasic_ToolExternalRefFileName.hxx + IGESBasic_ToolExternalRefLibName.cxx + IGESBasic_ToolExternalRefLibName.hxx + IGESBasic_ToolExternalRefName.cxx + IGESBasic_ToolExternalRefName.hxx + IGESBasic_ToolGroup.cxx + IGESBasic_ToolGroup.hxx + IGESBasic_ToolGroupWithoutBackP.cxx + IGESBasic_ToolGroupWithoutBackP.hxx + IGESBasic_ToolHierarchy.cxx + IGESBasic_ToolHierarchy.hxx + IGESBasic_ToolName.cxx + IGESBasic_ToolName.hxx + IGESBasic_ToolOrderedGroup.cxx + IGESBasic_ToolOrderedGroup.hxx + IGESBasic_ToolOrderedGroupWithoutBackP.cxx + IGESBasic_ToolOrderedGroupWithoutBackP.hxx + IGESBasic_ToolSingleParent.cxx + IGESBasic_ToolSingleParent.hxx + IGESBasic_ToolSingularSubfigure.cxx + IGESBasic_ToolSingularSubfigure.hxx + IGESBasic_ToolSubfigureDef.cxx + IGESBasic_ToolSubfigureDef.hxx +) diff --git a/src/IGESBasic/IGESBasic.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic.cxx similarity index 100% rename from src/IGESBasic/IGESBasic.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic.cxx diff --git a/src/IGESBasic/IGESBasic.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic.hxx similarity index 100% rename from src/IGESBasic/IGESBasic.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic.hxx diff --git a/src/IGESBasic/IGESBasic_Array1OfLineFontEntity.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_Array1OfLineFontEntity.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_Array1OfLineFontEntity.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_Array1OfLineFontEntity.hxx diff --git a/src/IGESBasic/IGESBasic_Array2OfHArray1OfReal.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_Array2OfHArray1OfReal.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_Array2OfHArray1OfReal.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_Array2OfHArray1OfReal.hxx diff --git a/src/IGESBasic/IGESBasic_AssocGroupType.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_AssocGroupType.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_AssocGroupType.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_AssocGroupType.cxx diff --git a/src/IGESBasic/IGESBasic_AssocGroupType.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_AssocGroupType.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_AssocGroupType.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_AssocGroupType.hxx diff --git a/src/IGESBasic/IGESBasic_ExternalRefFile.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ExternalRefFile.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_ExternalRefFile.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ExternalRefFile.cxx diff --git a/src/IGESBasic/IGESBasic_ExternalRefFile.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ExternalRefFile.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_ExternalRefFile.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ExternalRefFile.hxx diff --git a/src/IGESBasic/IGESBasic_ExternalRefFileIndex.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ExternalRefFileIndex.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_ExternalRefFileIndex.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ExternalRefFileIndex.cxx diff --git a/src/IGESBasic/IGESBasic_ExternalRefFileIndex.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ExternalRefFileIndex.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_ExternalRefFileIndex.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ExternalRefFileIndex.hxx diff --git a/src/IGESBasic/IGESBasic_ExternalRefFileName.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ExternalRefFileName.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_ExternalRefFileName.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ExternalRefFileName.cxx diff --git a/src/IGESBasic/IGESBasic_ExternalRefFileName.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ExternalRefFileName.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_ExternalRefFileName.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ExternalRefFileName.hxx diff --git a/src/IGESBasic/IGESBasic_ExternalRefLibName.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ExternalRefLibName.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_ExternalRefLibName.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ExternalRefLibName.cxx diff --git a/src/IGESBasic/IGESBasic_ExternalRefLibName.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ExternalRefLibName.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_ExternalRefLibName.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ExternalRefLibName.hxx diff --git a/src/IGESBasic/IGESBasic_ExternalRefName.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ExternalRefName.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_ExternalRefName.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ExternalRefName.cxx diff --git a/src/IGESBasic/IGESBasic_ExternalRefName.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ExternalRefName.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_ExternalRefName.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ExternalRefName.hxx diff --git a/src/IGESBasic/IGESBasic_ExternalReferenceFile.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ExternalReferenceFile.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_ExternalReferenceFile.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ExternalReferenceFile.cxx diff --git a/src/IGESBasic/IGESBasic_ExternalReferenceFile.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ExternalReferenceFile.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_ExternalReferenceFile.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ExternalReferenceFile.hxx diff --git a/src/IGESBasic/IGESBasic_GeneralModule.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_GeneralModule.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_GeneralModule.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_GeneralModule.cxx diff --git a/src/IGESBasic/IGESBasic_GeneralModule.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_GeneralModule.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_GeneralModule.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_GeneralModule.hxx diff --git a/src/IGESBasic/IGESBasic_Group.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_Group.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_Group.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_Group.cxx diff --git a/src/IGESBasic/IGESBasic_Group.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_Group.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_Group.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_Group.hxx diff --git a/src/IGESBasic/IGESBasic_GroupWithoutBackP.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_GroupWithoutBackP.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_GroupWithoutBackP.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_GroupWithoutBackP.cxx diff --git a/src/IGESBasic/IGESBasic_GroupWithoutBackP.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_GroupWithoutBackP.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_GroupWithoutBackP.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_GroupWithoutBackP.hxx diff --git a/src/IGESBasic/IGESBasic_HArray1OfHArray1OfIGESEntity.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_HArray1OfHArray1OfIGESEntity.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_HArray1OfHArray1OfIGESEntity.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_HArray1OfHArray1OfIGESEntity.hxx diff --git a/src/IGESBasic/IGESBasic_HArray1OfHArray1OfIGESEntity_0.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_HArray1OfHArray1OfIGESEntity_0.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_HArray1OfHArray1OfIGESEntity_0.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_HArray1OfHArray1OfIGESEntity_0.cxx diff --git a/src/IGESBasic/IGESBasic_HArray1OfHArray1OfInteger.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_HArray1OfHArray1OfInteger.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_HArray1OfHArray1OfInteger.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_HArray1OfHArray1OfInteger.hxx diff --git a/src/IGESBasic/IGESBasic_HArray1OfHArray1OfInteger_0.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_HArray1OfHArray1OfInteger_0.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_HArray1OfHArray1OfInteger_0.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_HArray1OfHArray1OfInteger_0.cxx diff --git a/src/IGESBasic/IGESBasic_HArray1OfHArray1OfReal.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_HArray1OfHArray1OfReal.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_HArray1OfHArray1OfReal.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_HArray1OfHArray1OfReal.hxx diff --git a/src/IGESBasic/IGESBasic_HArray1OfHArray1OfReal_0.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_HArray1OfHArray1OfReal_0.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_HArray1OfHArray1OfReal_0.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_HArray1OfHArray1OfReal_0.cxx diff --git a/src/IGESBasic/IGESBasic_HArray1OfHArray1OfXY.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_HArray1OfHArray1OfXY.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_HArray1OfHArray1OfXY.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_HArray1OfHArray1OfXY.hxx diff --git a/src/IGESBasic/IGESBasic_HArray1OfHArray1OfXYZ.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_HArray1OfHArray1OfXYZ.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_HArray1OfHArray1OfXYZ.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_HArray1OfHArray1OfXYZ.hxx diff --git a/src/IGESBasic/IGESBasic_HArray1OfHArray1OfXYZ_0.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_HArray1OfHArray1OfXYZ_0.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_HArray1OfHArray1OfXYZ_0.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_HArray1OfHArray1OfXYZ_0.cxx diff --git a/src/IGESBasic/IGESBasic_HArray1OfHArray1OfXY_0.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_HArray1OfHArray1OfXY_0.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_HArray1OfHArray1OfXY_0.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_HArray1OfHArray1OfXY_0.cxx diff --git a/src/IGESBasic/IGESBasic_HArray1OfLineFontEntity.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_HArray1OfLineFontEntity.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_HArray1OfLineFontEntity.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_HArray1OfLineFontEntity.hxx diff --git a/src/IGESBasic/IGESBasic_HArray2OfHArray1OfReal.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_HArray2OfHArray1OfReal.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_HArray2OfHArray1OfReal.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_HArray2OfHArray1OfReal.hxx diff --git a/src/IGESBasic/IGESBasic_Hierarchy.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_Hierarchy.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_Hierarchy.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_Hierarchy.cxx diff --git a/src/IGESBasic/IGESBasic_Hierarchy.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_Hierarchy.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_Hierarchy.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_Hierarchy.hxx diff --git a/src/IGESBasic/IGESBasic_Name.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_Name.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_Name.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_Name.cxx diff --git a/src/IGESBasic/IGESBasic_Name.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_Name.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_Name.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_Name.hxx diff --git a/src/IGESBasic/IGESBasic_OrderedGroup.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_OrderedGroup.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_OrderedGroup.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_OrderedGroup.cxx diff --git a/src/IGESBasic/IGESBasic_OrderedGroup.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_OrderedGroup.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_OrderedGroup.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_OrderedGroup.hxx diff --git a/src/IGESBasic/IGESBasic_OrderedGroupWithoutBackP.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_OrderedGroupWithoutBackP.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_OrderedGroupWithoutBackP.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_OrderedGroupWithoutBackP.cxx diff --git a/src/IGESBasic/IGESBasic_OrderedGroupWithoutBackP.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_OrderedGroupWithoutBackP.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_OrderedGroupWithoutBackP.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_OrderedGroupWithoutBackP.hxx diff --git a/src/IGESBasic/IGESBasic_Protocol.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_Protocol.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_Protocol.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_Protocol.cxx diff --git a/src/IGESBasic/IGESBasic_Protocol.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_Protocol.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_Protocol.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_Protocol.hxx diff --git a/src/IGESBasic/IGESBasic_ReadWriteModule.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ReadWriteModule.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_ReadWriteModule.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ReadWriteModule.cxx diff --git a/src/IGESBasic/IGESBasic_ReadWriteModule.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ReadWriteModule.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_ReadWriteModule.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ReadWriteModule.hxx diff --git a/src/IGESBasic/IGESBasic_SingleParent.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_SingleParent.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_SingleParent.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_SingleParent.cxx diff --git a/src/IGESBasic/IGESBasic_SingleParent.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_SingleParent.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_SingleParent.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_SingleParent.hxx diff --git a/src/IGESBasic/IGESBasic_SingularSubfigure.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_SingularSubfigure.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_SingularSubfigure.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_SingularSubfigure.cxx diff --git a/src/IGESBasic/IGESBasic_SingularSubfigure.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_SingularSubfigure.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_SingularSubfigure.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_SingularSubfigure.hxx diff --git a/src/IGESBasic/IGESBasic_SpecificModule.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_SpecificModule.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_SpecificModule.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_SpecificModule.cxx diff --git a/src/IGESBasic/IGESBasic_SpecificModule.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_SpecificModule.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_SpecificModule.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_SpecificModule.hxx diff --git a/src/IGESBasic/IGESBasic_SubfigureDef.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_SubfigureDef.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_SubfigureDef.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_SubfigureDef.cxx diff --git a/src/IGESBasic/IGESBasic_SubfigureDef.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_SubfigureDef.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_SubfigureDef.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_SubfigureDef.hxx diff --git a/src/IGESBasic/IGESBasic_ToolAssocGroupType.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolAssocGroupType.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolAssocGroupType.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolAssocGroupType.cxx diff --git a/src/IGESBasic/IGESBasic_ToolAssocGroupType.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolAssocGroupType.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolAssocGroupType.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolAssocGroupType.hxx diff --git a/src/IGESBasic/IGESBasic_ToolExternalRefFile.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolExternalRefFile.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolExternalRefFile.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolExternalRefFile.cxx diff --git a/src/IGESBasic/IGESBasic_ToolExternalRefFile.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolExternalRefFile.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolExternalRefFile.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolExternalRefFile.hxx diff --git a/src/IGESBasic/IGESBasic_ToolExternalRefFileIndex.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolExternalRefFileIndex.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolExternalRefFileIndex.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolExternalRefFileIndex.cxx diff --git a/src/IGESBasic/IGESBasic_ToolExternalRefFileIndex.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolExternalRefFileIndex.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolExternalRefFileIndex.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolExternalRefFileIndex.hxx diff --git a/src/IGESBasic/IGESBasic_ToolExternalRefFileName.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolExternalRefFileName.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolExternalRefFileName.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolExternalRefFileName.cxx diff --git a/src/IGESBasic/IGESBasic_ToolExternalRefFileName.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolExternalRefFileName.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolExternalRefFileName.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolExternalRefFileName.hxx diff --git a/src/IGESBasic/IGESBasic_ToolExternalRefLibName.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolExternalRefLibName.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolExternalRefLibName.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolExternalRefLibName.cxx diff --git a/src/IGESBasic/IGESBasic_ToolExternalRefLibName.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolExternalRefLibName.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolExternalRefLibName.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolExternalRefLibName.hxx diff --git a/src/IGESBasic/IGESBasic_ToolExternalRefName.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolExternalRefName.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolExternalRefName.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolExternalRefName.cxx diff --git a/src/IGESBasic/IGESBasic_ToolExternalRefName.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolExternalRefName.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolExternalRefName.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolExternalRefName.hxx diff --git a/src/IGESBasic/IGESBasic_ToolExternalReferenceFile.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolExternalReferenceFile.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolExternalReferenceFile.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolExternalReferenceFile.cxx diff --git a/src/IGESBasic/IGESBasic_ToolExternalReferenceFile.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolExternalReferenceFile.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolExternalReferenceFile.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolExternalReferenceFile.hxx diff --git a/src/IGESBasic/IGESBasic_ToolGroup.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolGroup.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolGroup.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolGroup.cxx diff --git a/src/IGESBasic/IGESBasic_ToolGroup.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolGroup.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolGroup.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolGroup.hxx diff --git a/src/IGESBasic/IGESBasic_ToolGroupWithoutBackP.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolGroupWithoutBackP.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolGroupWithoutBackP.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolGroupWithoutBackP.cxx diff --git a/src/IGESBasic/IGESBasic_ToolGroupWithoutBackP.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolGroupWithoutBackP.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolGroupWithoutBackP.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolGroupWithoutBackP.hxx diff --git a/src/IGESBasic/IGESBasic_ToolHierarchy.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolHierarchy.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolHierarchy.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolHierarchy.cxx diff --git a/src/IGESBasic/IGESBasic_ToolHierarchy.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolHierarchy.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolHierarchy.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolHierarchy.hxx diff --git a/src/IGESBasic/IGESBasic_ToolName.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolName.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolName.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolName.cxx diff --git a/src/IGESBasic/IGESBasic_ToolName.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolName.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolName.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolName.hxx diff --git a/src/IGESBasic/IGESBasic_ToolOrderedGroup.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolOrderedGroup.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolOrderedGroup.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolOrderedGroup.cxx diff --git a/src/IGESBasic/IGESBasic_ToolOrderedGroup.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolOrderedGroup.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolOrderedGroup.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolOrderedGroup.hxx diff --git a/src/IGESBasic/IGESBasic_ToolOrderedGroupWithoutBackP.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolOrderedGroupWithoutBackP.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolOrderedGroupWithoutBackP.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolOrderedGroupWithoutBackP.cxx diff --git a/src/IGESBasic/IGESBasic_ToolOrderedGroupWithoutBackP.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolOrderedGroupWithoutBackP.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolOrderedGroupWithoutBackP.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolOrderedGroupWithoutBackP.hxx diff --git a/src/IGESBasic/IGESBasic_ToolSingleParent.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolSingleParent.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolSingleParent.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolSingleParent.cxx diff --git a/src/IGESBasic/IGESBasic_ToolSingleParent.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolSingleParent.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolSingleParent.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolSingleParent.hxx diff --git a/src/IGESBasic/IGESBasic_ToolSingularSubfigure.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolSingularSubfigure.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolSingularSubfigure.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolSingularSubfigure.cxx diff --git a/src/IGESBasic/IGESBasic_ToolSingularSubfigure.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolSingularSubfigure.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolSingularSubfigure.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolSingularSubfigure.hxx diff --git a/src/IGESBasic/IGESBasic_ToolSubfigureDef.cxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolSubfigureDef.cxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolSubfigureDef.cxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolSubfigureDef.cxx diff --git a/src/IGESBasic/IGESBasic_ToolSubfigureDef.hxx b/src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolSubfigureDef.hxx similarity index 100% rename from src/IGESBasic/IGESBasic_ToolSubfigureDef.hxx rename to src/DataExchange/TKDEIGES/IGESBasic/IGESBasic_ToolSubfigureDef.hxx diff --git a/src/DataExchange/TKDEIGES/IGESCAFControl/FILES.cmake b/src/DataExchange/TKDEIGES/IGESCAFControl/FILES.cmake new file mode 100644 index 0000000000..4573eff220 --- /dev/null +++ b/src/DataExchange/TKDEIGES/IGESCAFControl/FILES.cmake @@ -0,0 +1,13 @@ +# Source files for IGESCAFControl package +set(OCCT_IGESCAFControl_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IGESCAFControl_FILES + IGESCAFControl.cxx + IGESCAFControl.hxx + IGESCAFControl_ConfigurationNode.hxx + IGESCAFControl_Provider.hxx + IGESCAFControl_Reader.cxx + IGESCAFControl_Reader.hxx + IGESCAFControl_Writer.cxx + IGESCAFControl_Writer.hxx +) diff --git a/src/IGESCAFControl/IGESCAFControl.cxx b/src/DataExchange/TKDEIGES/IGESCAFControl/IGESCAFControl.cxx similarity index 100% rename from src/IGESCAFControl/IGESCAFControl.cxx rename to src/DataExchange/TKDEIGES/IGESCAFControl/IGESCAFControl.cxx diff --git a/src/IGESCAFControl/IGESCAFControl.hxx b/src/DataExchange/TKDEIGES/IGESCAFControl/IGESCAFControl.hxx similarity index 100% rename from src/IGESCAFControl/IGESCAFControl.hxx rename to src/DataExchange/TKDEIGES/IGESCAFControl/IGESCAFControl.hxx diff --git a/src/IGESCAFControl/IGESCAFControl_ConfigurationNode.hxx b/src/DataExchange/TKDEIGES/IGESCAFControl/IGESCAFControl_ConfigurationNode.hxx similarity index 100% rename from src/IGESCAFControl/IGESCAFControl_ConfigurationNode.hxx rename to src/DataExchange/TKDEIGES/IGESCAFControl/IGESCAFControl_ConfigurationNode.hxx diff --git a/src/IGESCAFControl/IGESCAFControl_Provider.hxx b/src/DataExchange/TKDEIGES/IGESCAFControl/IGESCAFControl_Provider.hxx similarity index 100% rename from src/IGESCAFControl/IGESCAFControl_Provider.hxx rename to src/DataExchange/TKDEIGES/IGESCAFControl/IGESCAFControl_Provider.hxx diff --git a/src/IGESCAFControl/IGESCAFControl_Reader.cxx b/src/DataExchange/TKDEIGES/IGESCAFControl/IGESCAFControl_Reader.cxx similarity index 100% rename from src/IGESCAFControl/IGESCAFControl_Reader.cxx rename to src/DataExchange/TKDEIGES/IGESCAFControl/IGESCAFControl_Reader.cxx diff --git a/src/IGESCAFControl/IGESCAFControl_Reader.hxx b/src/DataExchange/TKDEIGES/IGESCAFControl/IGESCAFControl_Reader.hxx similarity index 100% rename from src/IGESCAFControl/IGESCAFControl_Reader.hxx rename to src/DataExchange/TKDEIGES/IGESCAFControl/IGESCAFControl_Reader.hxx diff --git a/src/IGESCAFControl/IGESCAFControl_Writer.cxx b/src/DataExchange/TKDEIGES/IGESCAFControl/IGESCAFControl_Writer.cxx similarity index 100% rename from src/IGESCAFControl/IGESCAFControl_Writer.cxx rename to src/DataExchange/TKDEIGES/IGESCAFControl/IGESCAFControl_Writer.cxx diff --git a/src/IGESCAFControl/IGESCAFControl_Writer.hxx b/src/DataExchange/TKDEIGES/IGESCAFControl/IGESCAFControl_Writer.hxx similarity index 100% rename from src/IGESCAFControl/IGESCAFControl_Writer.hxx rename to src/DataExchange/TKDEIGES/IGESCAFControl/IGESCAFControl_Writer.hxx diff --git a/src/DataExchange/TKDEIGES/IGESControl/FILES.cmake b/src/DataExchange/TKDEIGES/IGESControl/FILES.cmake new file mode 100644 index 0000000000..6ea4e9f956 --- /dev/null +++ b/src/DataExchange/TKDEIGES/IGESControl/FILES.cmake @@ -0,0 +1,20 @@ +# Source files for IGESControl package +set(OCCT_IGESControl_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IGESControl_FILES + IGESControl_ActorWrite.cxx + IGESControl_ActorWrite.hxx + IGESControl_AlgoContainer.cxx + IGESControl_AlgoContainer.hxx + IGESControl_Controller.cxx + IGESControl_Controller.hxx + IGESControl_IGESBoundary.cxx + IGESControl_IGESBoundary.hxx + IGESControl_Reader.cxx + IGESControl_Reader.hxx + IGESControl_Reader.lxx + IGESControl_ToolContainer.cxx + IGESControl_ToolContainer.hxx + IGESControl_Writer.cxx + IGESControl_Writer.hxx +) diff --git a/src/IGESControl/IGESControl_ActorWrite.cxx b/src/DataExchange/TKDEIGES/IGESControl/IGESControl_ActorWrite.cxx similarity index 100% rename from src/IGESControl/IGESControl_ActorWrite.cxx rename to src/DataExchange/TKDEIGES/IGESControl/IGESControl_ActorWrite.cxx diff --git a/src/IGESControl/IGESControl_ActorWrite.hxx b/src/DataExchange/TKDEIGES/IGESControl/IGESControl_ActorWrite.hxx similarity index 100% rename from src/IGESControl/IGESControl_ActorWrite.hxx rename to src/DataExchange/TKDEIGES/IGESControl/IGESControl_ActorWrite.hxx diff --git a/src/IGESControl/IGESControl_AlgoContainer.cxx b/src/DataExchange/TKDEIGES/IGESControl/IGESControl_AlgoContainer.cxx similarity index 100% rename from src/IGESControl/IGESControl_AlgoContainer.cxx rename to src/DataExchange/TKDEIGES/IGESControl/IGESControl_AlgoContainer.cxx diff --git a/src/IGESControl/IGESControl_AlgoContainer.hxx b/src/DataExchange/TKDEIGES/IGESControl/IGESControl_AlgoContainer.hxx similarity index 100% rename from src/IGESControl/IGESControl_AlgoContainer.hxx rename to src/DataExchange/TKDEIGES/IGESControl/IGESControl_AlgoContainer.hxx diff --git a/src/IGESControl/IGESControl_Controller.cxx b/src/DataExchange/TKDEIGES/IGESControl/IGESControl_Controller.cxx similarity index 100% rename from src/IGESControl/IGESControl_Controller.cxx rename to src/DataExchange/TKDEIGES/IGESControl/IGESControl_Controller.cxx diff --git a/src/IGESControl/IGESControl_Controller.hxx b/src/DataExchange/TKDEIGES/IGESControl/IGESControl_Controller.hxx similarity index 100% rename from src/IGESControl/IGESControl_Controller.hxx rename to src/DataExchange/TKDEIGES/IGESControl/IGESControl_Controller.hxx diff --git a/src/IGESControl/IGESControl_IGESBoundary.cxx b/src/DataExchange/TKDEIGES/IGESControl/IGESControl_IGESBoundary.cxx similarity index 100% rename from src/IGESControl/IGESControl_IGESBoundary.cxx rename to src/DataExchange/TKDEIGES/IGESControl/IGESControl_IGESBoundary.cxx diff --git a/src/IGESControl/IGESControl_IGESBoundary.hxx b/src/DataExchange/TKDEIGES/IGESControl/IGESControl_IGESBoundary.hxx similarity index 100% rename from src/IGESControl/IGESControl_IGESBoundary.hxx rename to src/DataExchange/TKDEIGES/IGESControl/IGESControl_IGESBoundary.hxx diff --git a/src/IGESControl/IGESControl_Reader.cxx b/src/DataExchange/TKDEIGES/IGESControl/IGESControl_Reader.cxx similarity index 100% rename from src/IGESControl/IGESControl_Reader.cxx rename to src/DataExchange/TKDEIGES/IGESControl/IGESControl_Reader.cxx diff --git a/src/IGESControl/IGESControl_Reader.hxx b/src/DataExchange/TKDEIGES/IGESControl/IGESControl_Reader.hxx similarity index 100% rename from src/IGESControl/IGESControl_Reader.hxx rename to src/DataExchange/TKDEIGES/IGESControl/IGESControl_Reader.hxx diff --git a/src/IGESControl/IGESControl_Reader.lxx b/src/DataExchange/TKDEIGES/IGESControl/IGESControl_Reader.lxx similarity index 100% rename from src/IGESControl/IGESControl_Reader.lxx rename to src/DataExchange/TKDEIGES/IGESControl/IGESControl_Reader.lxx diff --git a/src/IGESControl/IGESControl_ToolContainer.cxx b/src/DataExchange/TKDEIGES/IGESControl/IGESControl_ToolContainer.cxx similarity index 100% rename from src/IGESControl/IGESControl_ToolContainer.cxx rename to src/DataExchange/TKDEIGES/IGESControl/IGESControl_ToolContainer.cxx diff --git a/src/IGESControl/IGESControl_ToolContainer.hxx b/src/DataExchange/TKDEIGES/IGESControl/IGESControl_ToolContainer.hxx similarity index 100% rename from src/IGESControl/IGESControl_ToolContainer.hxx rename to src/DataExchange/TKDEIGES/IGESControl/IGESControl_ToolContainer.hxx diff --git a/src/IGESControl/IGESControl_Writer.cxx b/src/DataExchange/TKDEIGES/IGESControl/IGESControl_Writer.cxx similarity index 100% rename from src/IGESControl/IGESControl_Writer.cxx rename to src/DataExchange/TKDEIGES/IGESControl/IGESControl_Writer.cxx diff --git a/src/IGESControl/IGESControl_Writer.hxx b/src/DataExchange/TKDEIGES/IGESControl/IGESControl_Writer.hxx similarity index 100% rename from src/IGESControl/IGESControl_Writer.hxx rename to src/DataExchange/TKDEIGES/IGESControl/IGESControl_Writer.hxx diff --git a/src/DataExchange/TKDEIGES/IGESConvGeom/FILES.cmake b/src/DataExchange/TKDEIGES/IGESConvGeom/FILES.cmake new file mode 100644 index 0000000000..c1900d46bd --- /dev/null +++ b/src/DataExchange/TKDEIGES/IGESConvGeom/FILES.cmake @@ -0,0 +1,9 @@ +# Source files for IGESConvGeom package +set(OCCT_IGESConvGeom_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IGESConvGeom_FILES + IGESConvGeom.cxx + IGESConvGeom.hxx + IGESConvGeom_GeomBuilder.cxx + IGESConvGeom_GeomBuilder.hxx +) diff --git a/src/IGESConvGeom/IGESConvGeom.cxx b/src/DataExchange/TKDEIGES/IGESConvGeom/IGESConvGeom.cxx similarity index 100% rename from src/IGESConvGeom/IGESConvGeom.cxx rename to src/DataExchange/TKDEIGES/IGESConvGeom/IGESConvGeom.cxx diff --git a/src/IGESConvGeom/IGESConvGeom.hxx b/src/DataExchange/TKDEIGES/IGESConvGeom/IGESConvGeom.hxx similarity index 100% rename from src/IGESConvGeom/IGESConvGeom.hxx rename to src/DataExchange/TKDEIGES/IGESConvGeom/IGESConvGeom.hxx diff --git a/src/IGESConvGeom/IGESConvGeom_GeomBuilder.cxx b/src/DataExchange/TKDEIGES/IGESConvGeom/IGESConvGeom_GeomBuilder.cxx similarity index 100% rename from src/IGESConvGeom/IGESConvGeom_GeomBuilder.cxx rename to src/DataExchange/TKDEIGES/IGESConvGeom/IGESConvGeom_GeomBuilder.cxx diff --git a/src/IGESConvGeom/IGESConvGeom_GeomBuilder.hxx b/src/DataExchange/TKDEIGES/IGESConvGeom/IGESConvGeom_GeomBuilder.hxx similarity index 100% rename from src/IGESConvGeom/IGESConvGeom_GeomBuilder.hxx rename to src/DataExchange/TKDEIGES/IGESConvGeom/IGESConvGeom_GeomBuilder.hxx diff --git a/src/DataExchange/TKDEIGES/IGESData/FILES.cmake b/src/DataExchange/TKDEIGES/IGESData/FILES.cmake new file mode 100644 index 0000000000..adc46aa268 --- /dev/null +++ b/src/DataExchange/TKDEIGES/IGESData/FILES.cmake @@ -0,0 +1,94 @@ +# Source files for IGESData package +set(OCCT_IGESData_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IGESData_FILES + IGESData.cxx + IGESData.hxx + IGESData_Array1OfDirPart.hxx + IGESData_Array1OfIGESEntity.hxx + IGESData_BasicEditor.cxx + IGESData_BasicEditor.hxx + IGESData_ColorEntity.cxx + IGESData_ColorEntity.hxx + IGESData_DefaultGeneral.cxx + IGESData_DefaultGeneral.hxx + IGESData_DefaultSpecific.cxx + IGESData_DefaultSpecific.hxx + IGESData_DefList.hxx + IGESData_DefSwitch.cxx + IGESData_DefSwitch.hxx + IGESData_DefType.hxx + IGESData_DirChecker.cxx + IGESData_DirChecker.hxx + IGESData_DirPart.cxx + IGESData_DirPart.hxx + IGESData_Dump.hxx + IGESData_FileProtocol.cxx + IGESData_FileProtocol.hxx + IGESData_FileRecognizer.hxx + IGESData_FileRecognizer_0.cxx + IGESData_FreeFormatEntity.cxx + IGESData_FreeFormatEntity.hxx + IGESData_GeneralModule.cxx + IGESData_GeneralModule.hxx + IGESData_GlobalNodeOfSpecificLib.hxx + IGESData_GlobalNodeOfSpecificLib_0.cxx + IGESData_GlobalNodeOfWriterLib.hxx + IGESData_GlobalNodeOfWriterLib_0.cxx + IGESData_GlobalSection.cxx + IGESData_GlobalSection.hxx + IGESData_HArray1OfIGESEntity.hxx + IGESData_IGESDumper.cxx + IGESData_IGESDumper.hxx + IGESData_IGESEntity.cxx + IGESData_IGESEntity.hxx + IGESData_IGESModel.cxx + IGESData_IGESModel.hxx + IGESData_IGESReaderData.cxx + IGESData_IGESReaderData.hxx + IGESData_IGESReaderTool.cxx + IGESData_IGESReaderTool.hxx + IGESData_IGESType.cxx + IGESData_IGESType.hxx + IGESData_IGESWriter.cxx + IGESData_IGESWriter.hxx + IGESData_LabelDisplayEntity.cxx + IGESData_LabelDisplayEntity.hxx + IGESData_LevelListEntity.cxx + IGESData_LevelListEntity.hxx + IGESData_LineFontEntity.cxx + IGESData_LineFontEntity.hxx + IGESData_NameEntity.cxx + IGESData_NameEntity.hxx + IGESData_NodeOfSpecificLib.hxx + IGESData_NodeOfSpecificLib_0.cxx + IGESData_NodeOfWriterLib.hxx + IGESData_NodeOfWriterLib_0.cxx + IGESData_ParamCursor.cxx + IGESData_ParamCursor.hxx + IGESData_ParamCursor.lxx + IGESData_ParamReader.cxx + IGESData_ParamReader.hxx + IGESData_Protocol.cxx + IGESData_Protocol.hxx + IGESData_ReadStage.hxx + IGESData_ReadWriteModule.cxx + IGESData_ReadWriteModule.hxx + IGESData_SingleParentEntity.cxx + IGESData_SingleParentEntity.hxx + IGESData_SpecificLib.hxx + IGESData_SpecificLib_0.cxx + IGESData_SpecificModule.cxx + IGESData_SpecificModule.hxx + IGESData_Status.hxx + IGESData_ToolLocation.cxx + IGESData_ToolLocation.hxx + IGESData_TransfEntity.cxx + IGESData_TransfEntity.hxx + IGESData_UndefinedEntity.cxx + IGESData_UndefinedEntity.hxx + IGESData_ViewKindEntity.cxx + IGESData_ViewKindEntity.hxx + IGESData_WriterLib.hxx + IGESData_WriterLib_0.cxx +) diff --git a/src/IGESData/IGESData.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData.cxx similarity index 100% rename from src/IGESData/IGESData.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData.cxx diff --git a/src/IGESData/IGESData.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData.hxx similarity index 100% rename from src/IGESData/IGESData.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData.hxx diff --git a/src/IGESData/IGESData_Array1OfDirPart.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_Array1OfDirPart.hxx similarity index 100% rename from src/IGESData/IGESData_Array1OfDirPart.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_Array1OfDirPart.hxx diff --git a/src/IGESData/IGESData_Array1OfIGESEntity.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_Array1OfIGESEntity.hxx similarity index 100% rename from src/IGESData/IGESData_Array1OfIGESEntity.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_Array1OfIGESEntity.hxx diff --git a/src/IGESData/IGESData_BasicEditor.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_BasicEditor.cxx similarity index 100% rename from src/IGESData/IGESData_BasicEditor.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_BasicEditor.cxx diff --git a/src/IGESData/IGESData_BasicEditor.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_BasicEditor.hxx similarity index 100% rename from src/IGESData/IGESData_BasicEditor.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_BasicEditor.hxx diff --git a/src/IGESData/IGESData_ColorEntity.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_ColorEntity.cxx similarity index 100% rename from src/IGESData/IGESData_ColorEntity.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_ColorEntity.cxx diff --git a/src/IGESData/IGESData_ColorEntity.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_ColorEntity.hxx similarity index 100% rename from src/IGESData/IGESData_ColorEntity.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_ColorEntity.hxx diff --git a/src/IGESData/IGESData_DefList.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_DefList.hxx similarity index 100% rename from src/IGESData/IGESData_DefList.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_DefList.hxx diff --git a/src/IGESData/IGESData_DefSwitch.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_DefSwitch.cxx similarity index 100% rename from src/IGESData/IGESData_DefSwitch.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_DefSwitch.cxx diff --git a/src/IGESData/IGESData_DefSwitch.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_DefSwitch.hxx similarity index 100% rename from src/IGESData/IGESData_DefSwitch.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_DefSwitch.hxx diff --git a/src/IGESData/IGESData_DefType.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_DefType.hxx similarity index 100% rename from src/IGESData/IGESData_DefType.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_DefType.hxx diff --git a/src/IGESData/IGESData_DefaultGeneral.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_DefaultGeneral.cxx similarity index 100% rename from src/IGESData/IGESData_DefaultGeneral.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_DefaultGeneral.cxx diff --git a/src/IGESData/IGESData_DefaultGeneral.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_DefaultGeneral.hxx similarity index 100% rename from src/IGESData/IGESData_DefaultGeneral.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_DefaultGeneral.hxx diff --git a/src/IGESData/IGESData_DefaultSpecific.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_DefaultSpecific.cxx similarity index 100% rename from src/IGESData/IGESData_DefaultSpecific.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_DefaultSpecific.cxx diff --git a/src/IGESData/IGESData_DefaultSpecific.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_DefaultSpecific.hxx similarity index 100% rename from src/IGESData/IGESData_DefaultSpecific.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_DefaultSpecific.hxx diff --git a/src/IGESData/IGESData_DirChecker.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_DirChecker.cxx similarity index 100% rename from src/IGESData/IGESData_DirChecker.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_DirChecker.cxx diff --git a/src/IGESData/IGESData_DirChecker.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_DirChecker.hxx similarity index 100% rename from src/IGESData/IGESData_DirChecker.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_DirChecker.hxx diff --git a/src/IGESData/IGESData_DirPart.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_DirPart.cxx similarity index 100% rename from src/IGESData/IGESData_DirPart.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_DirPart.cxx diff --git a/src/IGESData/IGESData_DirPart.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_DirPart.hxx similarity index 100% rename from src/IGESData/IGESData_DirPart.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_DirPart.hxx diff --git a/src/IGESData/IGESData_Dump.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_Dump.hxx similarity index 100% rename from src/IGESData/IGESData_Dump.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_Dump.hxx diff --git a/src/IGESData/IGESData_FileProtocol.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_FileProtocol.cxx similarity index 100% rename from src/IGESData/IGESData_FileProtocol.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_FileProtocol.cxx diff --git a/src/IGESData/IGESData_FileProtocol.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_FileProtocol.hxx similarity index 100% rename from src/IGESData/IGESData_FileProtocol.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_FileProtocol.hxx diff --git a/src/IGESData/IGESData_FileRecognizer.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_FileRecognizer.hxx similarity index 100% rename from src/IGESData/IGESData_FileRecognizer.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_FileRecognizer.hxx diff --git a/src/IGESData/IGESData_FileRecognizer_0.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_FileRecognizer_0.cxx similarity index 100% rename from src/IGESData/IGESData_FileRecognizer_0.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_FileRecognizer_0.cxx diff --git a/src/IGESData/IGESData_FreeFormatEntity.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_FreeFormatEntity.cxx similarity index 100% rename from src/IGESData/IGESData_FreeFormatEntity.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_FreeFormatEntity.cxx diff --git a/src/IGESData/IGESData_FreeFormatEntity.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_FreeFormatEntity.hxx similarity index 100% rename from src/IGESData/IGESData_FreeFormatEntity.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_FreeFormatEntity.hxx diff --git a/src/IGESData/IGESData_GeneralModule.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_GeneralModule.cxx similarity index 100% rename from src/IGESData/IGESData_GeneralModule.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_GeneralModule.cxx diff --git a/src/IGESData/IGESData_GeneralModule.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_GeneralModule.hxx similarity index 100% rename from src/IGESData/IGESData_GeneralModule.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_GeneralModule.hxx diff --git a/src/IGESData/IGESData_GlobalNodeOfSpecificLib.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_GlobalNodeOfSpecificLib.hxx similarity index 100% rename from src/IGESData/IGESData_GlobalNodeOfSpecificLib.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_GlobalNodeOfSpecificLib.hxx diff --git a/src/IGESData/IGESData_GlobalNodeOfSpecificLib_0.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_GlobalNodeOfSpecificLib_0.cxx similarity index 100% rename from src/IGESData/IGESData_GlobalNodeOfSpecificLib_0.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_GlobalNodeOfSpecificLib_0.cxx diff --git a/src/IGESData/IGESData_GlobalNodeOfWriterLib.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_GlobalNodeOfWriterLib.hxx similarity index 100% rename from src/IGESData/IGESData_GlobalNodeOfWriterLib.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_GlobalNodeOfWriterLib.hxx diff --git a/src/IGESData/IGESData_GlobalNodeOfWriterLib_0.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_GlobalNodeOfWriterLib_0.cxx similarity index 100% rename from src/IGESData/IGESData_GlobalNodeOfWriterLib_0.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_GlobalNodeOfWriterLib_0.cxx diff --git a/src/IGESData/IGESData_GlobalSection.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_GlobalSection.cxx similarity index 100% rename from src/IGESData/IGESData_GlobalSection.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_GlobalSection.cxx diff --git a/src/IGESData/IGESData_GlobalSection.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_GlobalSection.hxx similarity index 100% rename from src/IGESData/IGESData_GlobalSection.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_GlobalSection.hxx diff --git a/src/IGESData/IGESData_HArray1OfIGESEntity.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_HArray1OfIGESEntity.hxx similarity index 100% rename from src/IGESData/IGESData_HArray1OfIGESEntity.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_HArray1OfIGESEntity.hxx diff --git a/src/IGESData/IGESData_IGESDumper.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_IGESDumper.cxx similarity index 100% rename from src/IGESData/IGESData_IGESDumper.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_IGESDumper.cxx diff --git a/src/IGESData/IGESData_IGESDumper.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_IGESDumper.hxx similarity index 100% rename from src/IGESData/IGESData_IGESDumper.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_IGESDumper.hxx diff --git a/src/IGESData/IGESData_IGESEntity.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_IGESEntity.cxx similarity index 100% rename from src/IGESData/IGESData_IGESEntity.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_IGESEntity.cxx diff --git a/src/IGESData/IGESData_IGESEntity.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_IGESEntity.hxx similarity index 100% rename from src/IGESData/IGESData_IGESEntity.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_IGESEntity.hxx diff --git a/src/IGESData/IGESData_IGESModel.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_IGESModel.cxx similarity index 100% rename from src/IGESData/IGESData_IGESModel.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_IGESModel.cxx diff --git a/src/IGESData/IGESData_IGESModel.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_IGESModel.hxx similarity index 100% rename from src/IGESData/IGESData_IGESModel.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_IGESModel.hxx diff --git a/src/IGESData/IGESData_IGESReaderData.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_IGESReaderData.cxx similarity index 100% rename from src/IGESData/IGESData_IGESReaderData.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_IGESReaderData.cxx diff --git a/src/IGESData/IGESData_IGESReaderData.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_IGESReaderData.hxx similarity index 100% rename from src/IGESData/IGESData_IGESReaderData.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_IGESReaderData.hxx diff --git a/src/IGESData/IGESData_IGESReaderTool.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_IGESReaderTool.cxx similarity index 100% rename from src/IGESData/IGESData_IGESReaderTool.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_IGESReaderTool.cxx diff --git a/src/IGESData/IGESData_IGESReaderTool.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_IGESReaderTool.hxx similarity index 100% rename from src/IGESData/IGESData_IGESReaderTool.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_IGESReaderTool.hxx diff --git a/src/IGESData/IGESData_IGESType.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_IGESType.cxx similarity index 100% rename from src/IGESData/IGESData_IGESType.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_IGESType.cxx diff --git a/src/IGESData/IGESData_IGESType.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_IGESType.hxx similarity index 100% rename from src/IGESData/IGESData_IGESType.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_IGESType.hxx diff --git a/src/IGESData/IGESData_IGESWriter.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_IGESWriter.cxx similarity index 100% rename from src/IGESData/IGESData_IGESWriter.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_IGESWriter.cxx diff --git a/src/IGESData/IGESData_IGESWriter.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_IGESWriter.hxx similarity index 100% rename from src/IGESData/IGESData_IGESWriter.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_IGESWriter.hxx diff --git a/src/IGESData/IGESData_LabelDisplayEntity.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_LabelDisplayEntity.cxx similarity index 100% rename from src/IGESData/IGESData_LabelDisplayEntity.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_LabelDisplayEntity.cxx diff --git a/src/IGESData/IGESData_LabelDisplayEntity.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_LabelDisplayEntity.hxx similarity index 100% rename from src/IGESData/IGESData_LabelDisplayEntity.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_LabelDisplayEntity.hxx diff --git a/src/IGESData/IGESData_LevelListEntity.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_LevelListEntity.cxx similarity index 100% rename from src/IGESData/IGESData_LevelListEntity.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_LevelListEntity.cxx diff --git a/src/IGESData/IGESData_LevelListEntity.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_LevelListEntity.hxx similarity index 100% rename from src/IGESData/IGESData_LevelListEntity.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_LevelListEntity.hxx diff --git a/src/IGESData/IGESData_LineFontEntity.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_LineFontEntity.cxx similarity index 100% rename from src/IGESData/IGESData_LineFontEntity.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_LineFontEntity.cxx diff --git a/src/IGESData/IGESData_LineFontEntity.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_LineFontEntity.hxx similarity index 100% rename from src/IGESData/IGESData_LineFontEntity.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_LineFontEntity.hxx diff --git a/src/IGESData/IGESData_NameEntity.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_NameEntity.cxx similarity index 100% rename from src/IGESData/IGESData_NameEntity.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_NameEntity.cxx diff --git a/src/IGESData/IGESData_NameEntity.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_NameEntity.hxx similarity index 100% rename from src/IGESData/IGESData_NameEntity.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_NameEntity.hxx diff --git a/src/IGESData/IGESData_NodeOfSpecificLib.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_NodeOfSpecificLib.hxx similarity index 100% rename from src/IGESData/IGESData_NodeOfSpecificLib.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_NodeOfSpecificLib.hxx diff --git a/src/IGESData/IGESData_NodeOfSpecificLib_0.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_NodeOfSpecificLib_0.cxx similarity index 100% rename from src/IGESData/IGESData_NodeOfSpecificLib_0.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_NodeOfSpecificLib_0.cxx diff --git a/src/IGESData/IGESData_NodeOfWriterLib.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_NodeOfWriterLib.hxx similarity index 100% rename from src/IGESData/IGESData_NodeOfWriterLib.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_NodeOfWriterLib.hxx diff --git a/src/IGESData/IGESData_NodeOfWriterLib_0.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_NodeOfWriterLib_0.cxx similarity index 100% rename from src/IGESData/IGESData_NodeOfWriterLib_0.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_NodeOfWriterLib_0.cxx diff --git a/src/IGESData/IGESData_ParamCursor.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_ParamCursor.cxx similarity index 100% rename from src/IGESData/IGESData_ParamCursor.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_ParamCursor.cxx diff --git a/src/IGESData/IGESData_ParamCursor.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_ParamCursor.hxx similarity index 100% rename from src/IGESData/IGESData_ParamCursor.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_ParamCursor.hxx diff --git a/src/IGESData/IGESData_ParamCursor.lxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_ParamCursor.lxx similarity index 100% rename from src/IGESData/IGESData_ParamCursor.lxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_ParamCursor.lxx diff --git a/src/IGESData/IGESData_ParamReader.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_ParamReader.cxx similarity index 100% rename from src/IGESData/IGESData_ParamReader.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_ParamReader.cxx diff --git a/src/IGESData/IGESData_ParamReader.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_ParamReader.hxx similarity index 100% rename from src/IGESData/IGESData_ParamReader.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_ParamReader.hxx diff --git a/src/IGESData/IGESData_Protocol.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_Protocol.cxx similarity index 100% rename from src/IGESData/IGESData_Protocol.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_Protocol.cxx diff --git a/src/IGESData/IGESData_Protocol.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_Protocol.hxx similarity index 100% rename from src/IGESData/IGESData_Protocol.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_Protocol.hxx diff --git a/src/IGESData/IGESData_ReadStage.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_ReadStage.hxx similarity index 100% rename from src/IGESData/IGESData_ReadStage.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_ReadStage.hxx diff --git a/src/IGESData/IGESData_ReadWriteModule.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_ReadWriteModule.cxx similarity index 100% rename from src/IGESData/IGESData_ReadWriteModule.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_ReadWriteModule.cxx diff --git a/src/IGESData/IGESData_ReadWriteModule.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_ReadWriteModule.hxx similarity index 100% rename from src/IGESData/IGESData_ReadWriteModule.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_ReadWriteModule.hxx diff --git a/src/IGESData/IGESData_SingleParentEntity.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_SingleParentEntity.cxx similarity index 100% rename from src/IGESData/IGESData_SingleParentEntity.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_SingleParentEntity.cxx diff --git a/src/IGESData/IGESData_SingleParentEntity.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_SingleParentEntity.hxx similarity index 100% rename from src/IGESData/IGESData_SingleParentEntity.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_SingleParentEntity.hxx diff --git a/src/IGESData/IGESData_SpecificLib.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_SpecificLib.hxx similarity index 100% rename from src/IGESData/IGESData_SpecificLib.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_SpecificLib.hxx diff --git a/src/IGESData/IGESData_SpecificLib_0.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_SpecificLib_0.cxx similarity index 100% rename from src/IGESData/IGESData_SpecificLib_0.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_SpecificLib_0.cxx diff --git a/src/IGESData/IGESData_SpecificModule.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_SpecificModule.cxx similarity index 100% rename from src/IGESData/IGESData_SpecificModule.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_SpecificModule.cxx diff --git a/src/IGESData/IGESData_SpecificModule.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_SpecificModule.hxx similarity index 100% rename from src/IGESData/IGESData_SpecificModule.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_SpecificModule.hxx diff --git a/src/IGESData/IGESData_Status.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_Status.hxx similarity index 100% rename from src/IGESData/IGESData_Status.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_Status.hxx diff --git a/src/IGESData/IGESData_ToolLocation.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_ToolLocation.cxx similarity index 100% rename from src/IGESData/IGESData_ToolLocation.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_ToolLocation.cxx diff --git a/src/IGESData/IGESData_ToolLocation.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_ToolLocation.hxx similarity index 100% rename from src/IGESData/IGESData_ToolLocation.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_ToolLocation.hxx diff --git a/src/IGESData/IGESData_TransfEntity.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_TransfEntity.cxx similarity index 100% rename from src/IGESData/IGESData_TransfEntity.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_TransfEntity.cxx diff --git a/src/IGESData/IGESData_TransfEntity.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_TransfEntity.hxx similarity index 100% rename from src/IGESData/IGESData_TransfEntity.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_TransfEntity.hxx diff --git a/src/IGESData/IGESData_UndefinedEntity.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_UndefinedEntity.cxx similarity index 100% rename from src/IGESData/IGESData_UndefinedEntity.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_UndefinedEntity.cxx diff --git a/src/IGESData/IGESData_UndefinedEntity.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_UndefinedEntity.hxx similarity index 100% rename from src/IGESData/IGESData_UndefinedEntity.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_UndefinedEntity.hxx diff --git a/src/IGESData/IGESData_ViewKindEntity.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_ViewKindEntity.cxx similarity index 100% rename from src/IGESData/IGESData_ViewKindEntity.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_ViewKindEntity.cxx diff --git a/src/IGESData/IGESData_ViewKindEntity.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_ViewKindEntity.hxx similarity index 100% rename from src/IGESData/IGESData_ViewKindEntity.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_ViewKindEntity.hxx diff --git a/src/IGESData/IGESData_WriterLib.hxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_WriterLib.hxx similarity index 100% rename from src/IGESData/IGESData_WriterLib.hxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_WriterLib.hxx diff --git a/src/IGESData/IGESData_WriterLib_0.cxx b/src/DataExchange/TKDEIGES/IGESData/IGESData_WriterLib_0.cxx similarity index 100% rename from src/IGESData/IGESData_WriterLib_0.cxx rename to src/DataExchange/TKDEIGES/IGESData/IGESData_WriterLib_0.cxx diff --git a/src/DataExchange/TKDEIGES/IGESDefs/FILES.cmake b/src/DataExchange/TKDEIGES/IGESDefs/FILES.cmake new file mode 100644 index 0000000000..fa82a14e23 --- /dev/null +++ b/src/DataExchange/TKDEIGES/IGESDefs/FILES.cmake @@ -0,0 +1,47 @@ +# Source files for IGESDefs package +set(OCCT_IGESDefs_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IGESDefs_FILES + IGESDefs.cxx + IGESDefs.hxx + IGESDefs_Array1OfTabularData.hxx + IGESDefs_AssociativityDef.cxx + IGESDefs_AssociativityDef.hxx + IGESDefs_AttributeDef.cxx + IGESDefs_AttributeDef.hxx + IGESDefs_AttributeTable.cxx + IGESDefs_AttributeTable.hxx + IGESDefs_GeneralModule.cxx + IGESDefs_GeneralModule.hxx + IGESDefs_GenericData.cxx + IGESDefs_GenericData.hxx + IGESDefs_HArray1OfHArray1OfTextDisplayTemplate.hxx + IGESDefs_HArray1OfHArray1OfTextDisplayTemplate_0.cxx + IGESDefs_HArray1OfTabularData.hxx + IGESDefs_MacroDef.cxx + IGESDefs_MacroDef.hxx + IGESDefs_Protocol.cxx + IGESDefs_Protocol.hxx + IGESDefs_ReadWriteModule.cxx + IGESDefs_ReadWriteModule.hxx + IGESDefs_SpecificModule.cxx + IGESDefs_SpecificModule.hxx + IGESDefs_TabularData.cxx + IGESDefs_TabularData.hxx + IGESDefs_ToolAssociativityDef.cxx + IGESDefs_ToolAssociativityDef.hxx + IGESDefs_ToolAttributeDef.cxx + IGESDefs_ToolAttributeDef.hxx + IGESDefs_ToolAttributeTable.cxx + IGESDefs_ToolAttributeTable.hxx + IGESDefs_ToolGenericData.cxx + IGESDefs_ToolGenericData.hxx + IGESDefs_ToolMacroDef.cxx + IGESDefs_ToolMacroDef.hxx + IGESDefs_ToolTabularData.cxx + IGESDefs_ToolTabularData.hxx + IGESDefs_ToolUnitsData.cxx + IGESDefs_ToolUnitsData.hxx + IGESDefs_UnitsData.cxx + IGESDefs_UnitsData.hxx +) diff --git a/src/IGESDefs/IGESDefs.cxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs.cxx similarity index 100% rename from src/IGESDefs/IGESDefs.cxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs.cxx diff --git a/src/IGESDefs/IGESDefs.hxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs.hxx similarity index 100% rename from src/IGESDefs/IGESDefs.hxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs.hxx diff --git a/src/IGESDefs/IGESDefs_Array1OfTabularData.hxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_Array1OfTabularData.hxx similarity index 100% rename from src/IGESDefs/IGESDefs_Array1OfTabularData.hxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_Array1OfTabularData.hxx diff --git a/src/IGESDefs/IGESDefs_AssociativityDef.cxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_AssociativityDef.cxx similarity index 100% rename from src/IGESDefs/IGESDefs_AssociativityDef.cxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_AssociativityDef.cxx diff --git a/src/IGESDefs/IGESDefs_AssociativityDef.hxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_AssociativityDef.hxx similarity index 100% rename from src/IGESDefs/IGESDefs_AssociativityDef.hxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_AssociativityDef.hxx diff --git a/src/IGESDefs/IGESDefs_AttributeDef.cxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_AttributeDef.cxx similarity index 100% rename from src/IGESDefs/IGESDefs_AttributeDef.cxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_AttributeDef.cxx diff --git a/src/IGESDefs/IGESDefs_AttributeDef.hxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_AttributeDef.hxx similarity index 100% rename from src/IGESDefs/IGESDefs_AttributeDef.hxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_AttributeDef.hxx diff --git a/src/IGESDefs/IGESDefs_AttributeTable.cxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_AttributeTable.cxx similarity index 100% rename from src/IGESDefs/IGESDefs_AttributeTable.cxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_AttributeTable.cxx diff --git a/src/IGESDefs/IGESDefs_AttributeTable.hxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_AttributeTable.hxx similarity index 100% rename from src/IGESDefs/IGESDefs_AttributeTable.hxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_AttributeTable.hxx diff --git a/src/IGESDefs/IGESDefs_GeneralModule.cxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_GeneralModule.cxx similarity index 100% rename from src/IGESDefs/IGESDefs_GeneralModule.cxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_GeneralModule.cxx diff --git a/src/IGESDefs/IGESDefs_GeneralModule.hxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_GeneralModule.hxx similarity index 100% rename from src/IGESDefs/IGESDefs_GeneralModule.hxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_GeneralModule.hxx diff --git a/src/IGESDefs/IGESDefs_GenericData.cxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_GenericData.cxx similarity index 100% rename from src/IGESDefs/IGESDefs_GenericData.cxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_GenericData.cxx diff --git a/src/IGESDefs/IGESDefs_GenericData.hxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_GenericData.hxx similarity index 100% rename from src/IGESDefs/IGESDefs_GenericData.hxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_GenericData.hxx diff --git a/src/IGESDefs/IGESDefs_HArray1OfHArray1OfTextDisplayTemplate.hxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_HArray1OfHArray1OfTextDisplayTemplate.hxx similarity index 100% rename from src/IGESDefs/IGESDefs_HArray1OfHArray1OfTextDisplayTemplate.hxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_HArray1OfHArray1OfTextDisplayTemplate.hxx diff --git a/src/IGESDefs/IGESDefs_HArray1OfHArray1OfTextDisplayTemplate_0.cxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_HArray1OfHArray1OfTextDisplayTemplate_0.cxx similarity index 100% rename from src/IGESDefs/IGESDefs_HArray1OfHArray1OfTextDisplayTemplate_0.cxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_HArray1OfHArray1OfTextDisplayTemplate_0.cxx diff --git a/src/IGESDefs/IGESDefs_HArray1OfTabularData.hxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_HArray1OfTabularData.hxx similarity index 100% rename from src/IGESDefs/IGESDefs_HArray1OfTabularData.hxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_HArray1OfTabularData.hxx diff --git a/src/IGESDefs/IGESDefs_MacroDef.cxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_MacroDef.cxx similarity index 100% rename from src/IGESDefs/IGESDefs_MacroDef.cxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_MacroDef.cxx diff --git a/src/IGESDefs/IGESDefs_MacroDef.hxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_MacroDef.hxx similarity index 100% rename from src/IGESDefs/IGESDefs_MacroDef.hxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_MacroDef.hxx diff --git a/src/IGESDefs/IGESDefs_Protocol.cxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_Protocol.cxx similarity index 100% rename from src/IGESDefs/IGESDefs_Protocol.cxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_Protocol.cxx diff --git a/src/IGESDefs/IGESDefs_Protocol.hxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_Protocol.hxx similarity index 100% rename from src/IGESDefs/IGESDefs_Protocol.hxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_Protocol.hxx diff --git a/src/IGESDefs/IGESDefs_ReadWriteModule.cxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ReadWriteModule.cxx similarity index 100% rename from src/IGESDefs/IGESDefs_ReadWriteModule.cxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ReadWriteModule.cxx diff --git a/src/IGESDefs/IGESDefs_ReadWriteModule.hxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ReadWriteModule.hxx similarity index 100% rename from src/IGESDefs/IGESDefs_ReadWriteModule.hxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ReadWriteModule.hxx diff --git a/src/IGESDefs/IGESDefs_SpecificModule.cxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_SpecificModule.cxx similarity index 100% rename from src/IGESDefs/IGESDefs_SpecificModule.cxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_SpecificModule.cxx diff --git a/src/IGESDefs/IGESDefs_SpecificModule.hxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_SpecificModule.hxx similarity index 100% rename from src/IGESDefs/IGESDefs_SpecificModule.hxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_SpecificModule.hxx diff --git a/src/IGESDefs/IGESDefs_TabularData.cxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_TabularData.cxx similarity index 100% rename from src/IGESDefs/IGESDefs_TabularData.cxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_TabularData.cxx diff --git a/src/IGESDefs/IGESDefs_TabularData.hxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_TabularData.hxx similarity index 100% rename from src/IGESDefs/IGESDefs_TabularData.hxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_TabularData.hxx diff --git a/src/IGESDefs/IGESDefs_ToolAssociativityDef.cxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolAssociativityDef.cxx similarity index 100% rename from src/IGESDefs/IGESDefs_ToolAssociativityDef.cxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolAssociativityDef.cxx diff --git a/src/IGESDefs/IGESDefs_ToolAssociativityDef.hxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolAssociativityDef.hxx similarity index 100% rename from src/IGESDefs/IGESDefs_ToolAssociativityDef.hxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolAssociativityDef.hxx diff --git a/src/IGESDefs/IGESDefs_ToolAttributeDef.cxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolAttributeDef.cxx similarity index 100% rename from src/IGESDefs/IGESDefs_ToolAttributeDef.cxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolAttributeDef.cxx diff --git a/src/IGESDefs/IGESDefs_ToolAttributeDef.hxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolAttributeDef.hxx similarity index 100% rename from src/IGESDefs/IGESDefs_ToolAttributeDef.hxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolAttributeDef.hxx diff --git a/src/IGESDefs/IGESDefs_ToolAttributeTable.cxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolAttributeTable.cxx similarity index 100% rename from src/IGESDefs/IGESDefs_ToolAttributeTable.cxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolAttributeTable.cxx diff --git a/src/IGESDefs/IGESDefs_ToolAttributeTable.hxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolAttributeTable.hxx similarity index 100% rename from src/IGESDefs/IGESDefs_ToolAttributeTable.hxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolAttributeTable.hxx diff --git a/src/IGESDefs/IGESDefs_ToolGenericData.cxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolGenericData.cxx similarity index 100% rename from src/IGESDefs/IGESDefs_ToolGenericData.cxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolGenericData.cxx diff --git a/src/IGESDefs/IGESDefs_ToolGenericData.hxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolGenericData.hxx similarity index 100% rename from src/IGESDefs/IGESDefs_ToolGenericData.hxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolGenericData.hxx diff --git a/src/IGESDefs/IGESDefs_ToolMacroDef.cxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolMacroDef.cxx similarity index 100% rename from src/IGESDefs/IGESDefs_ToolMacroDef.cxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolMacroDef.cxx diff --git a/src/IGESDefs/IGESDefs_ToolMacroDef.hxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolMacroDef.hxx similarity index 100% rename from src/IGESDefs/IGESDefs_ToolMacroDef.hxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolMacroDef.hxx diff --git a/src/IGESDefs/IGESDefs_ToolTabularData.cxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolTabularData.cxx similarity index 100% rename from src/IGESDefs/IGESDefs_ToolTabularData.cxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolTabularData.cxx diff --git a/src/IGESDefs/IGESDefs_ToolTabularData.hxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolTabularData.hxx similarity index 100% rename from src/IGESDefs/IGESDefs_ToolTabularData.hxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolTabularData.hxx diff --git a/src/IGESDefs/IGESDefs_ToolUnitsData.cxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolUnitsData.cxx similarity index 100% rename from src/IGESDefs/IGESDefs_ToolUnitsData.cxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolUnitsData.cxx diff --git a/src/IGESDefs/IGESDefs_ToolUnitsData.hxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolUnitsData.hxx similarity index 100% rename from src/IGESDefs/IGESDefs_ToolUnitsData.hxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_ToolUnitsData.hxx diff --git a/src/IGESDefs/IGESDefs_UnitsData.cxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_UnitsData.cxx similarity index 100% rename from src/IGESDefs/IGESDefs_UnitsData.cxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_UnitsData.cxx diff --git a/src/IGESDefs/IGESDefs_UnitsData.hxx b/src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_UnitsData.hxx similarity index 100% rename from src/IGESDefs/IGESDefs_UnitsData.hxx rename to src/DataExchange/TKDEIGES/IGESDefs/IGESDefs_UnitsData.hxx diff --git a/src/DataExchange/TKDEIGES/IGESDimen/FILES.cmake b/src/DataExchange/TKDEIGES/IGESDimen/FILES.cmake new file mode 100644 index 0000000000..7bdb883305 --- /dev/null +++ b/src/DataExchange/TKDEIGES/IGESDimen/FILES.cmake @@ -0,0 +1,111 @@ +# Source files for IGESDimen package +set(OCCT_IGESDimen_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IGESDimen_FILES + IGESDimen.cxx + IGESDimen.hxx + IGESDimen_AngularDimension.cxx + IGESDimen_AngularDimension.hxx + IGESDimen_Array1OfGeneralNote.hxx + IGESDimen_Array1OfLeaderArrow.hxx + IGESDimen_BasicDimension.cxx + IGESDimen_BasicDimension.hxx + IGESDimen_CenterLine.cxx + IGESDimen_CenterLine.hxx + IGESDimen_CurveDimension.cxx + IGESDimen_CurveDimension.hxx + IGESDimen_DiameterDimension.cxx + IGESDimen_DiameterDimension.hxx + IGESDimen_DimensionDisplayData.cxx + IGESDimen_DimensionDisplayData.hxx + IGESDimen_DimensionedGeometry.cxx + IGESDimen_DimensionedGeometry.hxx + IGESDimen_DimensionTolerance.cxx + IGESDimen_DimensionTolerance.hxx + IGESDimen_DimensionUnits.cxx + IGESDimen_DimensionUnits.hxx + IGESDimen_FlagNote.cxx + IGESDimen_FlagNote.hxx + IGESDimen_GeneralLabel.cxx + IGESDimen_GeneralLabel.hxx + IGESDimen_GeneralModule.cxx + IGESDimen_GeneralModule.hxx + IGESDimen_GeneralNote.cxx + IGESDimen_GeneralNote.hxx + IGESDimen_GeneralSymbol.cxx + IGESDimen_GeneralSymbol.hxx + IGESDimen_HArray1OfGeneralNote.hxx + IGESDimen_HArray1OfLeaderArrow.hxx + IGESDimen_LeaderArrow.cxx + IGESDimen_LeaderArrow.hxx + IGESDimen_LinearDimension.cxx + IGESDimen_LinearDimension.hxx + IGESDimen_NewDimensionedGeometry.cxx + IGESDimen_NewDimensionedGeometry.hxx + IGESDimen_NewGeneralNote.cxx + IGESDimen_NewGeneralNote.hxx + IGESDimen_OrdinateDimension.cxx + IGESDimen_OrdinateDimension.hxx + IGESDimen_PointDimension.cxx + IGESDimen_PointDimension.hxx + IGESDimen_Protocol.cxx + IGESDimen_Protocol.hxx + IGESDimen_RadiusDimension.cxx + IGESDimen_RadiusDimension.hxx + IGESDimen_ReadWriteModule.cxx + IGESDimen_ReadWriteModule.hxx + IGESDimen_Section.cxx + IGESDimen_Section.hxx + IGESDimen_SectionedArea.cxx + IGESDimen_SectionedArea.hxx + IGESDimen_SpecificModule.cxx + IGESDimen_SpecificModule.hxx + IGESDimen_ToolAngularDimension.cxx + IGESDimen_ToolAngularDimension.hxx + IGESDimen_ToolBasicDimension.cxx + IGESDimen_ToolBasicDimension.hxx + IGESDimen_ToolCenterLine.cxx + IGESDimen_ToolCenterLine.hxx + IGESDimen_ToolCurveDimension.cxx + IGESDimen_ToolCurveDimension.hxx + IGESDimen_ToolDiameterDimension.cxx + IGESDimen_ToolDiameterDimension.hxx + IGESDimen_ToolDimensionDisplayData.cxx + IGESDimen_ToolDimensionDisplayData.hxx + IGESDimen_ToolDimensionedGeometry.cxx + IGESDimen_ToolDimensionedGeometry.hxx + IGESDimen_ToolDimensionTolerance.cxx + IGESDimen_ToolDimensionTolerance.hxx + IGESDimen_ToolDimensionUnits.cxx + IGESDimen_ToolDimensionUnits.hxx + IGESDimen_ToolFlagNote.cxx + IGESDimen_ToolFlagNote.hxx + IGESDimen_ToolGeneralLabel.cxx + IGESDimen_ToolGeneralLabel.hxx + IGESDimen_ToolGeneralNote.cxx + IGESDimen_ToolGeneralNote.hxx + IGESDimen_ToolGeneralSymbol.cxx + IGESDimen_ToolGeneralSymbol.hxx + IGESDimen_ToolLeaderArrow.cxx + IGESDimen_ToolLeaderArrow.hxx + IGESDimen_ToolLinearDimension.cxx + IGESDimen_ToolLinearDimension.hxx + IGESDimen_ToolNewDimensionedGeometry.cxx + IGESDimen_ToolNewDimensionedGeometry.hxx + IGESDimen_ToolNewGeneralNote.cxx + IGESDimen_ToolNewGeneralNote.hxx + IGESDimen_ToolOrdinateDimension.cxx + IGESDimen_ToolOrdinateDimension.hxx + IGESDimen_ToolPointDimension.cxx + IGESDimen_ToolPointDimension.hxx + IGESDimen_ToolRadiusDimension.cxx + IGESDimen_ToolRadiusDimension.hxx + IGESDimen_ToolSection.cxx + IGESDimen_ToolSection.hxx + IGESDimen_ToolSectionedArea.cxx + IGESDimen_ToolSectionedArea.hxx + IGESDimen_ToolWitnessLine.cxx + IGESDimen_ToolWitnessLine.hxx + IGESDimen_WitnessLine.cxx + IGESDimen_WitnessLine.hxx +) diff --git a/src/IGESDimen/IGESDimen.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen.cxx similarity index 100% rename from src/IGESDimen/IGESDimen.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen.cxx diff --git a/src/IGESDimen/IGESDimen.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen.hxx similarity index 100% rename from src/IGESDimen/IGESDimen.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen.hxx diff --git a/src/IGESDimen/IGESDimen_AngularDimension.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_AngularDimension.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_AngularDimension.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_AngularDimension.cxx diff --git a/src/IGESDimen/IGESDimen_AngularDimension.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_AngularDimension.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_AngularDimension.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_AngularDimension.hxx diff --git a/src/IGESDimen/IGESDimen_Array1OfGeneralNote.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_Array1OfGeneralNote.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_Array1OfGeneralNote.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_Array1OfGeneralNote.hxx diff --git a/src/IGESDimen/IGESDimen_Array1OfLeaderArrow.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_Array1OfLeaderArrow.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_Array1OfLeaderArrow.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_Array1OfLeaderArrow.hxx diff --git a/src/IGESDimen/IGESDimen_BasicDimension.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_BasicDimension.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_BasicDimension.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_BasicDimension.cxx diff --git a/src/IGESDimen/IGESDimen_BasicDimension.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_BasicDimension.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_BasicDimension.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_BasicDimension.hxx diff --git a/src/IGESDimen/IGESDimen_CenterLine.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_CenterLine.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_CenterLine.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_CenterLine.cxx diff --git a/src/IGESDimen/IGESDimen_CenterLine.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_CenterLine.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_CenterLine.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_CenterLine.hxx diff --git a/src/IGESDimen/IGESDimen_CurveDimension.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_CurveDimension.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_CurveDimension.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_CurveDimension.cxx diff --git a/src/IGESDimen/IGESDimen_CurveDimension.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_CurveDimension.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_CurveDimension.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_CurveDimension.hxx diff --git a/src/IGESDimen/IGESDimen_DiameterDimension.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_DiameterDimension.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_DiameterDimension.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_DiameterDimension.cxx diff --git a/src/IGESDimen/IGESDimen_DiameterDimension.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_DiameterDimension.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_DiameterDimension.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_DiameterDimension.hxx diff --git a/src/IGESDimen/IGESDimen_DimensionDisplayData.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_DimensionDisplayData.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_DimensionDisplayData.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_DimensionDisplayData.cxx diff --git a/src/IGESDimen/IGESDimen_DimensionDisplayData.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_DimensionDisplayData.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_DimensionDisplayData.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_DimensionDisplayData.hxx diff --git a/src/IGESDimen/IGESDimen_DimensionTolerance.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_DimensionTolerance.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_DimensionTolerance.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_DimensionTolerance.cxx diff --git a/src/IGESDimen/IGESDimen_DimensionTolerance.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_DimensionTolerance.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_DimensionTolerance.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_DimensionTolerance.hxx diff --git a/src/IGESDimen/IGESDimen_DimensionUnits.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_DimensionUnits.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_DimensionUnits.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_DimensionUnits.cxx diff --git a/src/IGESDimen/IGESDimen_DimensionUnits.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_DimensionUnits.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_DimensionUnits.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_DimensionUnits.hxx diff --git a/src/IGESDimen/IGESDimen_DimensionedGeometry.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_DimensionedGeometry.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_DimensionedGeometry.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_DimensionedGeometry.cxx diff --git a/src/IGESDimen/IGESDimen_DimensionedGeometry.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_DimensionedGeometry.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_DimensionedGeometry.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_DimensionedGeometry.hxx diff --git a/src/IGESDimen/IGESDimen_FlagNote.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_FlagNote.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_FlagNote.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_FlagNote.cxx diff --git a/src/IGESDimen/IGESDimen_FlagNote.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_FlagNote.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_FlagNote.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_FlagNote.hxx diff --git a/src/IGESDimen/IGESDimen_GeneralLabel.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_GeneralLabel.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_GeneralLabel.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_GeneralLabel.cxx diff --git a/src/IGESDimen/IGESDimen_GeneralLabel.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_GeneralLabel.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_GeneralLabel.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_GeneralLabel.hxx diff --git a/src/IGESDimen/IGESDimen_GeneralModule.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_GeneralModule.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_GeneralModule.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_GeneralModule.cxx diff --git a/src/IGESDimen/IGESDimen_GeneralModule.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_GeneralModule.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_GeneralModule.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_GeneralModule.hxx diff --git a/src/IGESDimen/IGESDimen_GeneralNote.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_GeneralNote.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_GeneralNote.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_GeneralNote.cxx diff --git a/src/IGESDimen/IGESDimen_GeneralNote.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_GeneralNote.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_GeneralNote.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_GeneralNote.hxx diff --git a/src/IGESDimen/IGESDimen_GeneralSymbol.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_GeneralSymbol.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_GeneralSymbol.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_GeneralSymbol.cxx diff --git a/src/IGESDimen/IGESDimen_GeneralSymbol.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_GeneralSymbol.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_GeneralSymbol.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_GeneralSymbol.hxx diff --git a/src/IGESDimen/IGESDimen_HArray1OfGeneralNote.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_HArray1OfGeneralNote.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_HArray1OfGeneralNote.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_HArray1OfGeneralNote.hxx diff --git a/src/IGESDimen/IGESDimen_HArray1OfLeaderArrow.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_HArray1OfLeaderArrow.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_HArray1OfLeaderArrow.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_HArray1OfLeaderArrow.hxx diff --git a/src/IGESDimen/IGESDimen_LeaderArrow.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_LeaderArrow.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_LeaderArrow.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_LeaderArrow.cxx diff --git a/src/IGESDimen/IGESDimen_LeaderArrow.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_LeaderArrow.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_LeaderArrow.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_LeaderArrow.hxx diff --git a/src/IGESDimen/IGESDimen_LinearDimension.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_LinearDimension.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_LinearDimension.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_LinearDimension.cxx diff --git a/src/IGESDimen/IGESDimen_LinearDimension.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_LinearDimension.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_LinearDimension.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_LinearDimension.hxx diff --git a/src/IGESDimen/IGESDimen_NewDimensionedGeometry.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_NewDimensionedGeometry.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_NewDimensionedGeometry.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_NewDimensionedGeometry.cxx diff --git a/src/IGESDimen/IGESDimen_NewDimensionedGeometry.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_NewDimensionedGeometry.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_NewDimensionedGeometry.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_NewDimensionedGeometry.hxx diff --git a/src/IGESDimen/IGESDimen_NewGeneralNote.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_NewGeneralNote.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_NewGeneralNote.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_NewGeneralNote.cxx diff --git a/src/IGESDimen/IGESDimen_NewGeneralNote.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_NewGeneralNote.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_NewGeneralNote.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_NewGeneralNote.hxx diff --git a/src/IGESDimen/IGESDimen_OrdinateDimension.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_OrdinateDimension.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_OrdinateDimension.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_OrdinateDimension.cxx diff --git a/src/IGESDimen/IGESDimen_OrdinateDimension.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_OrdinateDimension.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_OrdinateDimension.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_OrdinateDimension.hxx diff --git a/src/IGESDimen/IGESDimen_PointDimension.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_PointDimension.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_PointDimension.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_PointDimension.cxx diff --git a/src/IGESDimen/IGESDimen_PointDimension.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_PointDimension.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_PointDimension.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_PointDimension.hxx diff --git a/src/IGESDimen/IGESDimen_Protocol.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_Protocol.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_Protocol.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_Protocol.cxx diff --git a/src/IGESDimen/IGESDimen_Protocol.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_Protocol.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_Protocol.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_Protocol.hxx diff --git a/src/IGESDimen/IGESDimen_RadiusDimension.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_RadiusDimension.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_RadiusDimension.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_RadiusDimension.cxx diff --git a/src/IGESDimen/IGESDimen_RadiusDimension.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_RadiusDimension.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_RadiusDimension.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_RadiusDimension.hxx diff --git a/src/IGESDimen/IGESDimen_ReadWriteModule.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ReadWriteModule.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_ReadWriteModule.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ReadWriteModule.cxx diff --git a/src/IGESDimen/IGESDimen_ReadWriteModule.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ReadWriteModule.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_ReadWriteModule.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ReadWriteModule.hxx diff --git a/src/IGESDimen/IGESDimen_Section.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_Section.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_Section.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_Section.cxx diff --git a/src/IGESDimen/IGESDimen_Section.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_Section.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_Section.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_Section.hxx diff --git a/src/IGESDimen/IGESDimen_SectionedArea.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_SectionedArea.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_SectionedArea.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_SectionedArea.cxx diff --git a/src/IGESDimen/IGESDimen_SectionedArea.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_SectionedArea.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_SectionedArea.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_SectionedArea.hxx diff --git a/src/IGESDimen/IGESDimen_SpecificModule.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_SpecificModule.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_SpecificModule.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_SpecificModule.cxx diff --git a/src/IGESDimen/IGESDimen_SpecificModule.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_SpecificModule.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_SpecificModule.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_SpecificModule.hxx diff --git a/src/IGESDimen/IGESDimen_ToolAngularDimension.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolAngularDimension.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolAngularDimension.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolAngularDimension.cxx diff --git a/src/IGESDimen/IGESDimen_ToolAngularDimension.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolAngularDimension.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolAngularDimension.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolAngularDimension.hxx diff --git a/src/IGESDimen/IGESDimen_ToolBasicDimension.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolBasicDimension.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolBasicDimension.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolBasicDimension.cxx diff --git a/src/IGESDimen/IGESDimen_ToolBasicDimension.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolBasicDimension.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolBasicDimension.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolBasicDimension.hxx diff --git a/src/IGESDimen/IGESDimen_ToolCenterLine.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolCenterLine.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolCenterLine.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolCenterLine.cxx diff --git a/src/IGESDimen/IGESDimen_ToolCenterLine.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolCenterLine.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolCenterLine.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolCenterLine.hxx diff --git a/src/IGESDimen/IGESDimen_ToolCurveDimension.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolCurveDimension.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolCurveDimension.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolCurveDimension.cxx diff --git a/src/IGESDimen/IGESDimen_ToolCurveDimension.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolCurveDimension.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolCurveDimension.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolCurveDimension.hxx diff --git a/src/IGESDimen/IGESDimen_ToolDiameterDimension.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolDiameterDimension.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolDiameterDimension.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolDiameterDimension.cxx diff --git a/src/IGESDimen/IGESDimen_ToolDiameterDimension.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolDiameterDimension.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolDiameterDimension.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolDiameterDimension.hxx diff --git a/src/IGESDimen/IGESDimen_ToolDimensionDisplayData.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolDimensionDisplayData.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolDimensionDisplayData.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolDimensionDisplayData.cxx diff --git a/src/IGESDimen/IGESDimen_ToolDimensionDisplayData.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolDimensionDisplayData.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolDimensionDisplayData.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolDimensionDisplayData.hxx diff --git a/src/IGESDimen/IGESDimen_ToolDimensionTolerance.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolDimensionTolerance.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolDimensionTolerance.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolDimensionTolerance.cxx diff --git a/src/IGESDimen/IGESDimen_ToolDimensionTolerance.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolDimensionTolerance.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolDimensionTolerance.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolDimensionTolerance.hxx diff --git a/src/IGESDimen/IGESDimen_ToolDimensionUnits.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolDimensionUnits.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolDimensionUnits.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolDimensionUnits.cxx diff --git a/src/IGESDimen/IGESDimen_ToolDimensionUnits.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolDimensionUnits.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolDimensionUnits.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolDimensionUnits.hxx diff --git a/src/IGESDimen/IGESDimen_ToolDimensionedGeometry.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolDimensionedGeometry.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolDimensionedGeometry.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolDimensionedGeometry.cxx diff --git a/src/IGESDimen/IGESDimen_ToolDimensionedGeometry.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolDimensionedGeometry.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolDimensionedGeometry.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolDimensionedGeometry.hxx diff --git a/src/IGESDimen/IGESDimen_ToolFlagNote.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolFlagNote.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolFlagNote.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolFlagNote.cxx diff --git a/src/IGESDimen/IGESDimen_ToolFlagNote.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolFlagNote.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolFlagNote.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolFlagNote.hxx diff --git a/src/IGESDimen/IGESDimen_ToolGeneralLabel.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolGeneralLabel.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolGeneralLabel.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolGeneralLabel.cxx diff --git a/src/IGESDimen/IGESDimen_ToolGeneralLabel.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolGeneralLabel.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolGeneralLabel.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolGeneralLabel.hxx diff --git a/src/IGESDimen/IGESDimen_ToolGeneralNote.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolGeneralNote.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolGeneralNote.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolGeneralNote.cxx diff --git a/src/IGESDimen/IGESDimen_ToolGeneralNote.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolGeneralNote.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolGeneralNote.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolGeneralNote.hxx diff --git a/src/IGESDimen/IGESDimen_ToolGeneralSymbol.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolGeneralSymbol.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolGeneralSymbol.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolGeneralSymbol.cxx diff --git a/src/IGESDimen/IGESDimen_ToolGeneralSymbol.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolGeneralSymbol.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolGeneralSymbol.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolGeneralSymbol.hxx diff --git a/src/IGESDimen/IGESDimen_ToolLeaderArrow.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolLeaderArrow.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolLeaderArrow.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolLeaderArrow.cxx diff --git a/src/IGESDimen/IGESDimen_ToolLeaderArrow.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolLeaderArrow.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolLeaderArrow.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolLeaderArrow.hxx diff --git a/src/IGESDimen/IGESDimen_ToolLinearDimension.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolLinearDimension.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolLinearDimension.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolLinearDimension.cxx diff --git a/src/IGESDimen/IGESDimen_ToolLinearDimension.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolLinearDimension.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolLinearDimension.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolLinearDimension.hxx diff --git a/src/IGESDimen/IGESDimen_ToolNewDimensionedGeometry.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolNewDimensionedGeometry.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolNewDimensionedGeometry.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolNewDimensionedGeometry.cxx diff --git a/src/IGESDimen/IGESDimen_ToolNewDimensionedGeometry.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolNewDimensionedGeometry.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolNewDimensionedGeometry.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolNewDimensionedGeometry.hxx diff --git a/src/IGESDimen/IGESDimen_ToolNewGeneralNote.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolNewGeneralNote.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolNewGeneralNote.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolNewGeneralNote.cxx diff --git a/src/IGESDimen/IGESDimen_ToolNewGeneralNote.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolNewGeneralNote.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolNewGeneralNote.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolNewGeneralNote.hxx diff --git a/src/IGESDimen/IGESDimen_ToolOrdinateDimension.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolOrdinateDimension.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolOrdinateDimension.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolOrdinateDimension.cxx diff --git a/src/IGESDimen/IGESDimen_ToolOrdinateDimension.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolOrdinateDimension.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolOrdinateDimension.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolOrdinateDimension.hxx diff --git a/src/IGESDimen/IGESDimen_ToolPointDimension.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolPointDimension.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolPointDimension.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolPointDimension.cxx diff --git a/src/IGESDimen/IGESDimen_ToolPointDimension.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolPointDimension.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolPointDimension.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolPointDimension.hxx diff --git a/src/IGESDimen/IGESDimen_ToolRadiusDimension.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolRadiusDimension.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolRadiusDimension.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolRadiusDimension.cxx diff --git a/src/IGESDimen/IGESDimen_ToolRadiusDimension.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolRadiusDimension.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolRadiusDimension.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolRadiusDimension.hxx diff --git a/src/IGESDimen/IGESDimen_ToolSection.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolSection.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolSection.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolSection.cxx diff --git a/src/IGESDimen/IGESDimen_ToolSection.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolSection.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolSection.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolSection.hxx diff --git a/src/IGESDimen/IGESDimen_ToolSectionedArea.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolSectionedArea.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolSectionedArea.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolSectionedArea.cxx diff --git a/src/IGESDimen/IGESDimen_ToolSectionedArea.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolSectionedArea.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolSectionedArea.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolSectionedArea.hxx diff --git a/src/IGESDimen/IGESDimen_ToolWitnessLine.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolWitnessLine.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolWitnessLine.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolWitnessLine.cxx diff --git a/src/IGESDimen/IGESDimen_ToolWitnessLine.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolWitnessLine.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_ToolWitnessLine.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_ToolWitnessLine.hxx diff --git a/src/IGESDimen/IGESDimen_WitnessLine.cxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_WitnessLine.cxx similarity index 100% rename from src/IGESDimen/IGESDimen_WitnessLine.cxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_WitnessLine.cxx diff --git a/src/IGESDimen/IGESDimen_WitnessLine.hxx b/src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_WitnessLine.hxx similarity index 100% rename from src/IGESDimen/IGESDimen_WitnessLine.hxx rename to src/DataExchange/TKDEIGES/IGESDimen/IGESDimen_WitnessLine.hxx diff --git a/src/DataExchange/TKDEIGES/IGESDraw/FILES.cmake b/src/DataExchange/TKDEIGES/IGESDraw/FILES.cmake new file mode 100644 index 0000000000..3803755eef --- /dev/null +++ b/src/DataExchange/TKDEIGES/IGESDraw/FILES.cmake @@ -0,0 +1,75 @@ +# Source files for IGESDraw package +set(OCCT_IGESDraw_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IGESDraw_FILES + IGESDraw.cxx + IGESDraw.hxx + IGESDraw_Array1OfConnectPoint.hxx + IGESDraw_Array1OfViewKindEntity.hxx + IGESDraw_CircArraySubfigure.cxx + IGESDraw_CircArraySubfigure.hxx + IGESDraw_ConnectPoint.cxx + IGESDraw_ConnectPoint.hxx + IGESDraw_Drawing.cxx + IGESDraw_Drawing.hxx + IGESDraw_DrawingWithRotation.cxx + IGESDraw_DrawingWithRotation.hxx + IGESDraw_GeneralModule.cxx + IGESDraw_GeneralModule.hxx + IGESDraw_HArray1OfConnectPoint.hxx + IGESDraw_HArray1OfViewKindEntity.hxx + IGESDraw_LabelDisplay.cxx + IGESDraw_LabelDisplay.hxx + IGESDraw_NetworkSubfigure.cxx + IGESDraw_NetworkSubfigure.hxx + IGESDraw_NetworkSubfigureDef.cxx + IGESDraw_NetworkSubfigureDef.hxx + IGESDraw_PerspectiveView.cxx + IGESDraw_PerspectiveView.hxx + IGESDraw_Planar.cxx + IGESDraw_Planar.hxx + IGESDraw_Protocol.cxx + IGESDraw_Protocol.hxx + IGESDraw_ReadWriteModule.cxx + IGESDraw_ReadWriteModule.hxx + IGESDraw_RectArraySubfigure.cxx + IGESDraw_RectArraySubfigure.hxx + IGESDraw_SegmentedViewsVisible.cxx + IGESDraw_SegmentedViewsVisible.hxx + IGESDraw_SpecificModule.cxx + IGESDraw_SpecificModule.hxx + IGESDraw_ToolCircArraySubfigure.cxx + IGESDraw_ToolCircArraySubfigure.hxx + IGESDraw_ToolConnectPoint.cxx + IGESDraw_ToolConnectPoint.hxx + IGESDraw_ToolDrawing.cxx + IGESDraw_ToolDrawing.hxx + IGESDraw_ToolDrawingWithRotation.cxx + IGESDraw_ToolDrawingWithRotation.hxx + IGESDraw_ToolLabelDisplay.cxx + IGESDraw_ToolLabelDisplay.hxx + IGESDraw_ToolNetworkSubfigure.cxx + IGESDraw_ToolNetworkSubfigure.hxx + IGESDraw_ToolNetworkSubfigureDef.cxx + IGESDraw_ToolNetworkSubfigureDef.hxx + IGESDraw_ToolPerspectiveView.cxx + IGESDraw_ToolPerspectiveView.hxx + IGESDraw_ToolPlanar.cxx + IGESDraw_ToolPlanar.hxx + IGESDraw_ToolRectArraySubfigure.cxx + IGESDraw_ToolRectArraySubfigure.hxx + IGESDraw_ToolSegmentedViewsVisible.cxx + IGESDraw_ToolSegmentedViewsVisible.hxx + IGESDraw_ToolView.cxx + IGESDraw_ToolView.hxx + IGESDraw_ToolViewsVisible.cxx + IGESDraw_ToolViewsVisible.hxx + IGESDraw_ToolViewsVisibleWithAttr.cxx + IGESDraw_ToolViewsVisibleWithAttr.hxx + IGESDraw_View.cxx + IGESDraw_View.hxx + IGESDraw_ViewsVisible.cxx + IGESDraw_ViewsVisible.hxx + IGESDraw_ViewsVisibleWithAttr.cxx + IGESDraw_ViewsVisibleWithAttr.hxx +) diff --git a/src/IGESDraw/IGESDraw.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw.cxx similarity index 100% rename from src/IGESDraw/IGESDraw.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw.cxx diff --git a/src/IGESDraw/IGESDraw.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw.hxx similarity index 100% rename from src/IGESDraw/IGESDraw.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw.hxx diff --git a/src/IGESDraw/IGESDraw_Array1OfConnectPoint.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_Array1OfConnectPoint.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_Array1OfConnectPoint.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_Array1OfConnectPoint.hxx diff --git a/src/IGESDraw/IGESDraw_Array1OfViewKindEntity.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_Array1OfViewKindEntity.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_Array1OfViewKindEntity.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_Array1OfViewKindEntity.hxx diff --git a/src/IGESDraw/IGESDraw_CircArraySubfigure.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_CircArraySubfigure.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_CircArraySubfigure.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_CircArraySubfigure.cxx diff --git a/src/IGESDraw/IGESDraw_CircArraySubfigure.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_CircArraySubfigure.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_CircArraySubfigure.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_CircArraySubfigure.hxx diff --git a/src/IGESDraw/IGESDraw_ConnectPoint.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ConnectPoint.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_ConnectPoint.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ConnectPoint.cxx diff --git a/src/IGESDraw/IGESDraw_ConnectPoint.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ConnectPoint.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_ConnectPoint.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ConnectPoint.hxx diff --git a/src/IGESDraw/IGESDraw_Drawing.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_Drawing.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_Drawing.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_Drawing.cxx diff --git a/src/IGESDraw/IGESDraw_Drawing.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_Drawing.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_Drawing.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_Drawing.hxx diff --git a/src/IGESDraw/IGESDraw_DrawingWithRotation.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_DrawingWithRotation.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_DrawingWithRotation.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_DrawingWithRotation.cxx diff --git a/src/IGESDraw/IGESDraw_DrawingWithRotation.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_DrawingWithRotation.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_DrawingWithRotation.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_DrawingWithRotation.hxx diff --git a/src/IGESDraw/IGESDraw_GeneralModule.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_GeneralModule.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_GeneralModule.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_GeneralModule.cxx diff --git a/src/IGESDraw/IGESDraw_GeneralModule.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_GeneralModule.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_GeneralModule.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_GeneralModule.hxx diff --git a/src/IGESDraw/IGESDraw_HArray1OfConnectPoint.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_HArray1OfConnectPoint.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_HArray1OfConnectPoint.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_HArray1OfConnectPoint.hxx diff --git a/src/IGESDraw/IGESDraw_HArray1OfViewKindEntity.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_HArray1OfViewKindEntity.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_HArray1OfViewKindEntity.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_HArray1OfViewKindEntity.hxx diff --git a/src/IGESDraw/IGESDraw_LabelDisplay.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_LabelDisplay.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_LabelDisplay.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_LabelDisplay.cxx diff --git a/src/IGESDraw/IGESDraw_LabelDisplay.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_LabelDisplay.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_LabelDisplay.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_LabelDisplay.hxx diff --git a/src/IGESDraw/IGESDraw_NetworkSubfigure.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_NetworkSubfigure.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_NetworkSubfigure.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_NetworkSubfigure.cxx diff --git a/src/IGESDraw/IGESDraw_NetworkSubfigure.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_NetworkSubfigure.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_NetworkSubfigure.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_NetworkSubfigure.hxx diff --git a/src/IGESDraw/IGESDraw_NetworkSubfigureDef.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_NetworkSubfigureDef.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_NetworkSubfigureDef.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_NetworkSubfigureDef.cxx diff --git a/src/IGESDraw/IGESDraw_NetworkSubfigureDef.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_NetworkSubfigureDef.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_NetworkSubfigureDef.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_NetworkSubfigureDef.hxx diff --git a/src/IGESDraw/IGESDraw_PerspectiveView.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_PerspectiveView.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_PerspectiveView.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_PerspectiveView.cxx diff --git a/src/IGESDraw/IGESDraw_PerspectiveView.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_PerspectiveView.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_PerspectiveView.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_PerspectiveView.hxx diff --git a/src/IGESDraw/IGESDraw_Planar.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_Planar.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_Planar.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_Planar.cxx diff --git a/src/IGESDraw/IGESDraw_Planar.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_Planar.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_Planar.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_Planar.hxx diff --git a/src/IGESDraw/IGESDraw_Protocol.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_Protocol.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_Protocol.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_Protocol.cxx diff --git a/src/IGESDraw/IGESDraw_Protocol.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_Protocol.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_Protocol.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_Protocol.hxx diff --git a/src/IGESDraw/IGESDraw_ReadWriteModule.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ReadWriteModule.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_ReadWriteModule.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ReadWriteModule.cxx diff --git a/src/IGESDraw/IGESDraw_ReadWriteModule.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ReadWriteModule.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_ReadWriteModule.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ReadWriteModule.hxx diff --git a/src/IGESDraw/IGESDraw_RectArraySubfigure.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_RectArraySubfigure.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_RectArraySubfigure.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_RectArraySubfigure.cxx diff --git a/src/IGESDraw/IGESDraw_RectArraySubfigure.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_RectArraySubfigure.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_RectArraySubfigure.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_RectArraySubfigure.hxx diff --git a/src/IGESDraw/IGESDraw_SegmentedViewsVisible.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_SegmentedViewsVisible.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_SegmentedViewsVisible.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_SegmentedViewsVisible.cxx diff --git a/src/IGESDraw/IGESDraw_SegmentedViewsVisible.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_SegmentedViewsVisible.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_SegmentedViewsVisible.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_SegmentedViewsVisible.hxx diff --git a/src/IGESDraw/IGESDraw_SpecificModule.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_SpecificModule.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_SpecificModule.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_SpecificModule.cxx diff --git a/src/IGESDraw/IGESDraw_SpecificModule.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_SpecificModule.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_SpecificModule.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_SpecificModule.hxx diff --git a/src/IGESDraw/IGESDraw_ToolCircArraySubfigure.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolCircArraySubfigure.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolCircArraySubfigure.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolCircArraySubfigure.cxx diff --git a/src/IGESDraw/IGESDraw_ToolCircArraySubfigure.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolCircArraySubfigure.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolCircArraySubfigure.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolCircArraySubfigure.hxx diff --git a/src/IGESDraw/IGESDraw_ToolConnectPoint.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolConnectPoint.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolConnectPoint.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolConnectPoint.cxx diff --git a/src/IGESDraw/IGESDraw_ToolConnectPoint.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolConnectPoint.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolConnectPoint.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolConnectPoint.hxx diff --git a/src/IGESDraw/IGESDraw_ToolDrawing.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolDrawing.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolDrawing.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolDrawing.cxx diff --git a/src/IGESDraw/IGESDraw_ToolDrawing.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolDrawing.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolDrawing.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolDrawing.hxx diff --git a/src/IGESDraw/IGESDraw_ToolDrawingWithRotation.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolDrawingWithRotation.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolDrawingWithRotation.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolDrawingWithRotation.cxx diff --git a/src/IGESDraw/IGESDraw_ToolDrawingWithRotation.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolDrawingWithRotation.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolDrawingWithRotation.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolDrawingWithRotation.hxx diff --git a/src/IGESDraw/IGESDraw_ToolLabelDisplay.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolLabelDisplay.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolLabelDisplay.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolLabelDisplay.cxx diff --git a/src/IGESDraw/IGESDraw_ToolLabelDisplay.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolLabelDisplay.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolLabelDisplay.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolLabelDisplay.hxx diff --git a/src/IGESDraw/IGESDraw_ToolNetworkSubfigure.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolNetworkSubfigure.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolNetworkSubfigure.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolNetworkSubfigure.cxx diff --git a/src/IGESDraw/IGESDraw_ToolNetworkSubfigure.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolNetworkSubfigure.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolNetworkSubfigure.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolNetworkSubfigure.hxx diff --git a/src/IGESDraw/IGESDraw_ToolNetworkSubfigureDef.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolNetworkSubfigureDef.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolNetworkSubfigureDef.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolNetworkSubfigureDef.cxx diff --git a/src/IGESDraw/IGESDraw_ToolNetworkSubfigureDef.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolNetworkSubfigureDef.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolNetworkSubfigureDef.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolNetworkSubfigureDef.hxx diff --git a/src/IGESDraw/IGESDraw_ToolPerspectiveView.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolPerspectiveView.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolPerspectiveView.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolPerspectiveView.cxx diff --git a/src/IGESDraw/IGESDraw_ToolPerspectiveView.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolPerspectiveView.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolPerspectiveView.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolPerspectiveView.hxx diff --git a/src/IGESDraw/IGESDraw_ToolPlanar.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolPlanar.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolPlanar.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolPlanar.cxx diff --git a/src/IGESDraw/IGESDraw_ToolPlanar.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolPlanar.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolPlanar.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolPlanar.hxx diff --git a/src/IGESDraw/IGESDraw_ToolRectArraySubfigure.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolRectArraySubfigure.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolRectArraySubfigure.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolRectArraySubfigure.cxx diff --git a/src/IGESDraw/IGESDraw_ToolRectArraySubfigure.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolRectArraySubfigure.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolRectArraySubfigure.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolRectArraySubfigure.hxx diff --git a/src/IGESDraw/IGESDraw_ToolSegmentedViewsVisible.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolSegmentedViewsVisible.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolSegmentedViewsVisible.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolSegmentedViewsVisible.cxx diff --git a/src/IGESDraw/IGESDraw_ToolSegmentedViewsVisible.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolSegmentedViewsVisible.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolSegmentedViewsVisible.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolSegmentedViewsVisible.hxx diff --git a/src/IGESDraw/IGESDraw_ToolView.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolView.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolView.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolView.cxx diff --git a/src/IGESDraw/IGESDraw_ToolView.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolView.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolView.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolView.hxx diff --git a/src/IGESDraw/IGESDraw_ToolViewsVisible.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolViewsVisible.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolViewsVisible.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolViewsVisible.cxx diff --git a/src/IGESDraw/IGESDraw_ToolViewsVisible.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolViewsVisible.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolViewsVisible.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolViewsVisible.hxx diff --git a/src/IGESDraw/IGESDraw_ToolViewsVisibleWithAttr.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolViewsVisibleWithAttr.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolViewsVisibleWithAttr.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolViewsVisibleWithAttr.cxx diff --git a/src/IGESDraw/IGESDraw_ToolViewsVisibleWithAttr.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolViewsVisibleWithAttr.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_ToolViewsVisibleWithAttr.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ToolViewsVisibleWithAttr.hxx diff --git a/src/IGESDraw/IGESDraw_View.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_View.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_View.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_View.cxx diff --git a/src/IGESDraw/IGESDraw_View.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_View.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_View.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_View.hxx diff --git a/src/IGESDraw/IGESDraw_ViewsVisible.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ViewsVisible.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_ViewsVisible.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ViewsVisible.cxx diff --git a/src/IGESDraw/IGESDraw_ViewsVisible.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ViewsVisible.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_ViewsVisible.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ViewsVisible.hxx diff --git a/src/IGESDraw/IGESDraw_ViewsVisibleWithAttr.cxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ViewsVisibleWithAttr.cxx similarity index 100% rename from src/IGESDraw/IGESDraw_ViewsVisibleWithAttr.cxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ViewsVisibleWithAttr.cxx diff --git a/src/IGESDraw/IGESDraw_ViewsVisibleWithAttr.hxx b/src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ViewsVisibleWithAttr.hxx similarity index 100% rename from src/IGESDraw/IGESDraw_ViewsVisibleWithAttr.hxx rename to src/DataExchange/TKDEIGES/IGESDraw/IGESDraw_ViewsVisibleWithAttr.hxx diff --git a/src/DataExchange/TKDEIGES/IGESFile/FILES.cmake b/src/DataExchange/TKDEIGES/IGESFile/FILES.cmake new file mode 100644 index 0000000000..040ec67bab --- /dev/null +++ b/src/DataExchange/TKDEIGES/IGESFile/FILES.cmake @@ -0,0 +1,12 @@ +# Source files for IGESFile package +set(OCCT_IGESFile_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IGESFile_FILES + analiges.c + IGESFile_Read.cxx + IGESFile_Read.hxx + igesread.c + igesread.h + liriges.c + structiges.c +) diff --git a/src/IGESFile/IGESFile_Read.cxx b/src/DataExchange/TKDEIGES/IGESFile/IGESFile_Read.cxx similarity index 100% rename from src/IGESFile/IGESFile_Read.cxx rename to src/DataExchange/TKDEIGES/IGESFile/IGESFile_Read.cxx diff --git a/src/IGESFile/IGESFile_Read.hxx b/src/DataExchange/TKDEIGES/IGESFile/IGESFile_Read.hxx similarity index 100% rename from src/IGESFile/IGESFile_Read.hxx rename to src/DataExchange/TKDEIGES/IGESFile/IGESFile_Read.hxx diff --git a/src/IGESFile/analiges.c b/src/DataExchange/TKDEIGES/IGESFile/analiges.c similarity index 100% rename from src/IGESFile/analiges.c rename to src/DataExchange/TKDEIGES/IGESFile/analiges.c diff --git a/src/IGESFile/igesread.c b/src/DataExchange/TKDEIGES/IGESFile/igesread.c similarity index 100% rename from src/IGESFile/igesread.c rename to src/DataExchange/TKDEIGES/IGESFile/igesread.c diff --git a/src/IGESFile/igesread.h b/src/DataExchange/TKDEIGES/IGESFile/igesread.h similarity index 100% rename from src/IGESFile/igesread.h rename to src/DataExchange/TKDEIGES/IGESFile/igesread.h diff --git a/src/IGESFile/liriges.c b/src/DataExchange/TKDEIGES/IGESFile/liriges.c similarity index 100% rename from src/IGESFile/liriges.c rename to src/DataExchange/TKDEIGES/IGESFile/liriges.c diff --git a/src/IGESFile/structiges.c b/src/DataExchange/TKDEIGES/IGESFile/structiges.c similarity index 100% rename from src/IGESFile/structiges.c rename to src/DataExchange/TKDEIGES/IGESFile/structiges.c diff --git a/src/DataExchange/TKDEIGES/IGESGeom/FILES.cmake b/src/DataExchange/TKDEIGES/IGESGeom/FILES.cmake new file mode 100644 index 0000000000..5edc21bfee --- /dev/null +++ b/src/DataExchange/TKDEIGES/IGESGeom/FILES.cmake @@ -0,0 +1,113 @@ +# Source files for IGESGeom package +set(OCCT_IGESGeom_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IGESGeom_FILES + IGESGeom.cxx + IGESGeom.hxx + IGESGeom_Array1OfBoundary.hxx + IGESGeom_Array1OfCurveOnSurface.hxx + IGESGeom_Array1OfTransformationMatrix.hxx + IGESGeom_Boundary.cxx + IGESGeom_Boundary.hxx + IGESGeom_BoundedSurface.cxx + IGESGeom_BoundedSurface.hxx + IGESGeom_BSplineCurve.cxx + IGESGeom_BSplineCurve.hxx + IGESGeom_BSplineSurface.cxx + IGESGeom_BSplineSurface.hxx + IGESGeom_CircularArc.cxx + IGESGeom_CircularArc.hxx + IGESGeom_CompositeCurve.cxx + IGESGeom_CompositeCurve.hxx + IGESGeom_ConicArc.cxx + IGESGeom_ConicArc.hxx + IGESGeom_CopiousData.cxx + IGESGeom_CopiousData.hxx + IGESGeom_CurveOnSurface.cxx + IGESGeom_CurveOnSurface.hxx + IGESGeom_Direction.cxx + IGESGeom_Direction.hxx + IGESGeom_Flash.cxx + IGESGeom_Flash.hxx + IGESGeom_GeneralModule.cxx + IGESGeom_GeneralModule.hxx + IGESGeom_HArray1OfBoundary.hxx + IGESGeom_HArray1OfCurveOnSurface.hxx + IGESGeom_HArray1OfTransformationMatrix.hxx + IGESGeom_Line.cxx + IGESGeom_Line.hxx + IGESGeom_OffsetCurve.cxx + IGESGeom_OffsetCurve.hxx + IGESGeom_OffsetSurface.cxx + IGESGeom_OffsetSurface.hxx + IGESGeom_Plane.cxx + IGESGeom_Plane.hxx + IGESGeom_Point.cxx + IGESGeom_Point.hxx + IGESGeom_Protocol.cxx + IGESGeom_Protocol.hxx + IGESGeom_ReadWriteModule.cxx + IGESGeom_ReadWriteModule.hxx + IGESGeom_RuledSurface.cxx + IGESGeom_RuledSurface.hxx + IGESGeom_SpecificModule.cxx + IGESGeom_SpecificModule.hxx + IGESGeom_SplineCurve.cxx + IGESGeom_SplineCurve.hxx + IGESGeom_SplineSurface.cxx + IGESGeom_SplineSurface.hxx + IGESGeom_SurfaceOfRevolution.cxx + IGESGeom_SurfaceOfRevolution.hxx + IGESGeom_TabulatedCylinder.cxx + IGESGeom_TabulatedCylinder.hxx + IGESGeom_ToolBoundary.cxx + IGESGeom_ToolBoundary.hxx + IGESGeom_ToolBoundedSurface.cxx + IGESGeom_ToolBoundedSurface.hxx + IGESGeom_ToolBSplineCurve.cxx + IGESGeom_ToolBSplineCurve.hxx + IGESGeom_ToolBSplineSurface.cxx + IGESGeom_ToolBSplineSurface.hxx + IGESGeom_ToolCircularArc.cxx + IGESGeom_ToolCircularArc.hxx + IGESGeom_ToolCompositeCurve.cxx + IGESGeom_ToolCompositeCurve.hxx + IGESGeom_ToolConicArc.cxx + IGESGeom_ToolConicArc.hxx + IGESGeom_ToolCopiousData.cxx + IGESGeom_ToolCopiousData.hxx + IGESGeom_ToolCurveOnSurface.cxx + IGESGeom_ToolCurveOnSurface.hxx + IGESGeom_ToolDirection.cxx + IGESGeom_ToolDirection.hxx + IGESGeom_ToolFlash.cxx + IGESGeom_ToolFlash.hxx + IGESGeom_ToolLine.cxx + IGESGeom_ToolLine.hxx + IGESGeom_ToolOffsetCurve.cxx + IGESGeom_ToolOffsetCurve.hxx + IGESGeom_ToolOffsetSurface.cxx + IGESGeom_ToolOffsetSurface.hxx + IGESGeom_ToolPlane.cxx + IGESGeom_ToolPlane.hxx + IGESGeom_ToolPoint.cxx + IGESGeom_ToolPoint.hxx + IGESGeom_ToolRuledSurface.cxx + IGESGeom_ToolRuledSurface.hxx + IGESGeom_ToolSplineCurve.cxx + IGESGeom_ToolSplineCurve.hxx + IGESGeom_ToolSplineSurface.cxx + IGESGeom_ToolSplineSurface.hxx + IGESGeom_ToolSurfaceOfRevolution.cxx + IGESGeom_ToolSurfaceOfRevolution.hxx + IGESGeom_ToolTabulatedCylinder.cxx + IGESGeom_ToolTabulatedCylinder.hxx + IGESGeom_ToolTransformationMatrix.cxx + IGESGeom_ToolTransformationMatrix.hxx + IGESGeom_ToolTrimmedSurface.cxx + IGESGeom_ToolTrimmedSurface.hxx + IGESGeom_TransformationMatrix.cxx + IGESGeom_TransformationMatrix.hxx + IGESGeom_TrimmedSurface.cxx + IGESGeom_TrimmedSurface.hxx +) diff --git a/src/IGESGeom/IGESGeom.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom.cxx similarity index 100% rename from src/IGESGeom/IGESGeom.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom.cxx diff --git a/src/IGESGeom/IGESGeom.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom.hxx similarity index 100% rename from src/IGESGeom/IGESGeom.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom.hxx diff --git a/src/IGESGeom/IGESGeom_Array1OfBoundary.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Array1OfBoundary.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_Array1OfBoundary.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Array1OfBoundary.hxx diff --git a/src/IGESGeom/IGESGeom_Array1OfCurveOnSurface.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Array1OfCurveOnSurface.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_Array1OfCurveOnSurface.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Array1OfCurveOnSurface.hxx diff --git a/src/IGESGeom/IGESGeom_Array1OfTransformationMatrix.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Array1OfTransformationMatrix.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_Array1OfTransformationMatrix.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Array1OfTransformationMatrix.hxx diff --git a/src/IGESGeom/IGESGeom_BSplineCurve.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_BSplineCurve.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_BSplineCurve.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_BSplineCurve.cxx diff --git a/src/IGESGeom/IGESGeom_BSplineCurve.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_BSplineCurve.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_BSplineCurve.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_BSplineCurve.hxx diff --git a/src/IGESGeom/IGESGeom_BSplineSurface.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_BSplineSurface.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_BSplineSurface.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_BSplineSurface.cxx diff --git a/src/IGESGeom/IGESGeom_BSplineSurface.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_BSplineSurface.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_BSplineSurface.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_BSplineSurface.hxx diff --git a/src/IGESGeom/IGESGeom_Boundary.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Boundary.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_Boundary.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Boundary.cxx diff --git a/src/IGESGeom/IGESGeom_Boundary.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Boundary.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_Boundary.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Boundary.hxx diff --git a/src/IGESGeom/IGESGeom_BoundedSurface.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_BoundedSurface.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_BoundedSurface.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_BoundedSurface.cxx diff --git a/src/IGESGeom/IGESGeom_BoundedSurface.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_BoundedSurface.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_BoundedSurface.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_BoundedSurface.hxx diff --git a/src/IGESGeom/IGESGeom_CircularArc.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_CircularArc.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_CircularArc.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_CircularArc.cxx diff --git a/src/IGESGeom/IGESGeom_CircularArc.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_CircularArc.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_CircularArc.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_CircularArc.hxx diff --git a/src/IGESGeom/IGESGeom_CompositeCurve.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_CompositeCurve.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_CompositeCurve.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_CompositeCurve.cxx diff --git a/src/IGESGeom/IGESGeom_CompositeCurve.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_CompositeCurve.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_CompositeCurve.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_CompositeCurve.hxx diff --git a/src/IGESGeom/IGESGeom_ConicArc.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ConicArc.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_ConicArc.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ConicArc.cxx diff --git a/src/IGESGeom/IGESGeom_ConicArc.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ConicArc.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_ConicArc.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ConicArc.hxx diff --git a/src/IGESGeom/IGESGeom_CopiousData.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_CopiousData.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_CopiousData.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_CopiousData.cxx diff --git a/src/IGESGeom/IGESGeom_CopiousData.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_CopiousData.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_CopiousData.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_CopiousData.hxx diff --git a/src/IGESGeom/IGESGeom_CurveOnSurface.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_CurveOnSurface.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_CurveOnSurface.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_CurveOnSurface.cxx diff --git a/src/IGESGeom/IGESGeom_CurveOnSurface.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_CurveOnSurface.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_CurveOnSurface.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_CurveOnSurface.hxx diff --git a/src/IGESGeom/IGESGeom_Direction.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Direction.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_Direction.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Direction.cxx diff --git a/src/IGESGeom/IGESGeom_Direction.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Direction.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_Direction.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Direction.hxx diff --git a/src/IGESGeom/IGESGeom_Flash.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Flash.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_Flash.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Flash.cxx diff --git a/src/IGESGeom/IGESGeom_Flash.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Flash.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_Flash.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Flash.hxx diff --git a/src/IGESGeom/IGESGeom_GeneralModule.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_GeneralModule.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_GeneralModule.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_GeneralModule.cxx diff --git a/src/IGESGeom/IGESGeom_GeneralModule.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_GeneralModule.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_GeneralModule.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_GeneralModule.hxx diff --git a/src/IGESGeom/IGESGeom_HArray1OfBoundary.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_HArray1OfBoundary.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_HArray1OfBoundary.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_HArray1OfBoundary.hxx diff --git a/src/IGESGeom/IGESGeom_HArray1OfCurveOnSurface.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_HArray1OfCurveOnSurface.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_HArray1OfCurveOnSurface.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_HArray1OfCurveOnSurface.hxx diff --git a/src/IGESGeom/IGESGeom_HArray1OfTransformationMatrix.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_HArray1OfTransformationMatrix.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_HArray1OfTransformationMatrix.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_HArray1OfTransformationMatrix.hxx diff --git a/src/IGESGeom/IGESGeom_Line.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Line.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_Line.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Line.cxx diff --git a/src/IGESGeom/IGESGeom_Line.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Line.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_Line.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Line.hxx diff --git a/src/IGESGeom/IGESGeom_OffsetCurve.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_OffsetCurve.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_OffsetCurve.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_OffsetCurve.cxx diff --git a/src/IGESGeom/IGESGeom_OffsetCurve.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_OffsetCurve.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_OffsetCurve.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_OffsetCurve.hxx diff --git a/src/IGESGeom/IGESGeom_OffsetSurface.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_OffsetSurface.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_OffsetSurface.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_OffsetSurface.cxx diff --git a/src/IGESGeom/IGESGeom_OffsetSurface.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_OffsetSurface.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_OffsetSurface.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_OffsetSurface.hxx diff --git a/src/IGESGeom/IGESGeom_Plane.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Plane.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_Plane.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Plane.cxx diff --git a/src/IGESGeom/IGESGeom_Plane.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Plane.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_Plane.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Plane.hxx diff --git a/src/IGESGeom/IGESGeom_Point.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Point.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_Point.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Point.cxx diff --git a/src/IGESGeom/IGESGeom_Point.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Point.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_Point.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Point.hxx diff --git a/src/IGESGeom/IGESGeom_Protocol.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Protocol.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_Protocol.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Protocol.cxx diff --git a/src/IGESGeom/IGESGeom_Protocol.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Protocol.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_Protocol.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_Protocol.hxx diff --git a/src/IGESGeom/IGESGeom_ReadWriteModule.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ReadWriteModule.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_ReadWriteModule.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ReadWriteModule.cxx diff --git a/src/IGESGeom/IGESGeom_ReadWriteModule.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ReadWriteModule.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_ReadWriteModule.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ReadWriteModule.hxx diff --git a/src/IGESGeom/IGESGeom_RuledSurface.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_RuledSurface.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_RuledSurface.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_RuledSurface.cxx diff --git a/src/IGESGeom/IGESGeom_RuledSurface.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_RuledSurface.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_RuledSurface.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_RuledSurface.hxx diff --git a/src/IGESGeom/IGESGeom_SpecificModule.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_SpecificModule.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_SpecificModule.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_SpecificModule.cxx diff --git a/src/IGESGeom/IGESGeom_SpecificModule.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_SpecificModule.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_SpecificModule.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_SpecificModule.hxx diff --git a/src/IGESGeom/IGESGeom_SplineCurve.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_SplineCurve.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_SplineCurve.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_SplineCurve.cxx diff --git a/src/IGESGeom/IGESGeom_SplineCurve.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_SplineCurve.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_SplineCurve.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_SplineCurve.hxx diff --git a/src/IGESGeom/IGESGeom_SplineSurface.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_SplineSurface.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_SplineSurface.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_SplineSurface.cxx diff --git a/src/IGESGeom/IGESGeom_SplineSurface.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_SplineSurface.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_SplineSurface.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_SplineSurface.hxx diff --git a/src/IGESGeom/IGESGeom_SurfaceOfRevolution.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_SurfaceOfRevolution.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_SurfaceOfRevolution.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_SurfaceOfRevolution.cxx diff --git a/src/IGESGeom/IGESGeom_SurfaceOfRevolution.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_SurfaceOfRevolution.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_SurfaceOfRevolution.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_SurfaceOfRevolution.hxx diff --git a/src/IGESGeom/IGESGeom_TabulatedCylinder.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_TabulatedCylinder.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_TabulatedCylinder.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_TabulatedCylinder.cxx diff --git a/src/IGESGeom/IGESGeom_TabulatedCylinder.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_TabulatedCylinder.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_TabulatedCylinder.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_TabulatedCylinder.hxx diff --git a/src/IGESGeom/IGESGeom_ToolBSplineCurve.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolBSplineCurve.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolBSplineCurve.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolBSplineCurve.cxx diff --git a/src/IGESGeom/IGESGeom_ToolBSplineCurve.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolBSplineCurve.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolBSplineCurve.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolBSplineCurve.hxx diff --git a/src/IGESGeom/IGESGeom_ToolBSplineSurface.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolBSplineSurface.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolBSplineSurface.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolBSplineSurface.cxx diff --git a/src/IGESGeom/IGESGeom_ToolBSplineSurface.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolBSplineSurface.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolBSplineSurface.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolBSplineSurface.hxx diff --git a/src/IGESGeom/IGESGeom_ToolBoundary.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolBoundary.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolBoundary.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolBoundary.cxx diff --git a/src/IGESGeom/IGESGeom_ToolBoundary.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolBoundary.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolBoundary.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolBoundary.hxx diff --git a/src/IGESGeom/IGESGeom_ToolBoundedSurface.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolBoundedSurface.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolBoundedSurface.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolBoundedSurface.cxx diff --git a/src/IGESGeom/IGESGeom_ToolBoundedSurface.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolBoundedSurface.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolBoundedSurface.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolBoundedSurface.hxx diff --git a/src/IGESGeom/IGESGeom_ToolCircularArc.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolCircularArc.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolCircularArc.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolCircularArc.cxx diff --git a/src/IGESGeom/IGESGeom_ToolCircularArc.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolCircularArc.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolCircularArc.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolCircularArc.hxx diff --git a/src/IGESGeom/IGESGeom_ToolCompositeCurve.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolCompositeCurve.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolCompositeCurve.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolCompositeCurve.cxx diff --git a/src/IGESGeom/IGESGeom_ToolCompositeCurve.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolCompositeCurve.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolCompositeCurve.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolCompositeCurve.hxx diff --git a/src/IGESGeom/IGESGeom_ToolConicArc.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolConicArc.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolConicArc.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolConicArc.cxx diff --git a/src/IGESGeom/IGESGeom_ToolConicArc.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolConicArc.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolConicArc.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolConicArc.hxx diff --git a/src/IGESGeom/IGESGeom_ToolCopiousData.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolCopiousData.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolCopiousData.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolCopiousData.cxx diff --git a/src/IGESGeom/IGESGeom_ToolCopiousData.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolCopiousData.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolCopiousData.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolCopiousData.hxx diff --git a/src/IGESGeom/IGESGeom_ToolCurveOnSurface.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolCurveOnSurface.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolCurveOnSurface.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolCurveOnSurface.cxx diff --git a/src/IGESGeom/IGESGeom_ToolCurveOnSurface.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolCurveOnSurface.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolCurveOnSurface.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolCurveOnSurface.hxx diff --git a/src/IGESGeom/IGESGeom_ToolDirection.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolDirection.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolDirection.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolDirection.cxx diff --git a/src/IGESGeom/IGESGeom_ToolDirection.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolDirection.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolDirection.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolDirection.hxx diff --git a/src/IGESGeom/IGESGeom_ToolFlash.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolFlash.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolFlash.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolFlash.cxx diff --git a/src/IGESGeom/IGESGeom_ToolFlash.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolFlash.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolFlash.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolFlash.hxx diff --git a/src/IGESGeom/IGESGeom_ToolLine.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolLine.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolLine.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolLine.cxx diff --git a/src/IGESGeom/IGESGeom_ToolLine.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolLine.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolLine.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolLine.hxx diff --git a/src/IGESGeom/IGESGeom_ToolOffsetCurve.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolOffsetCurve.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolOffsetCurve.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolOffsetCurve.cxx diff --git a/src/IGESGeom/IGESGeom_ToolOffsetCurve.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolOffsetCurve.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolOffsetCurve.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolOffsetCurve.hxx diff --git a/src/IGESGeom/IGESGeom_ToolOffsetSurface.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolOffsetSurface.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolOffsetSurface.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolOffsetSurface.cxx diff --git a/src/IGESGeom/IGESGeom_ToolOffsetSurface.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolOffsetSurface.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolOffsetSurface.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolOffsetSurface.hxx diff --git a/src/IGESGeom/IGESGeom_ToolPlane.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolPlane.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolPlane.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolPlane.cxx diff --git a/src/IGESGeom/IGESGeom_ToolPlane.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolPlane.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolPlane.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolPlane.hxx diff --git a/src/IGESGeom/IGESGeom_ToolPoint.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolPoint.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolPoint.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolPoint.cxx diff --git a/src/IGESGeom/IGESGeom_ToolPoint.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolPoint.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolPoint.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolPoint.hxx diff --git a/src/IGESGeom/IGESGeom_ToolRuledSurface.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolRuledSurface.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolRuledSurface.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolRuledSurface.cxx diff --git a/src/IGESGeom/IGESGeom_ToolRuledSurface.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolRuledSurface.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolRuledSurface.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolRuledSurface.hxx diff --git a/src/IGESGeom/IGESGeom_ToolSplineCurve.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolSplineCurve.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolSplineCurve.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolSplineCurve.cxx diff --git a/src/IGESGeom/IGESGeom_ToolSplineCurve.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolSplineCurve.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolSplineCurve.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolSplineCurve.hxx diff --git a/src/IGESGeom/IGESGeom_ToolSplineSurface.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolSplineSurface.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolSplineSurface.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolSplineSurface.cxx diff --git a/src/IGESGeom/IGESGeom_ToolSplineSurface.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolSplineSurface.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolSplineSurface.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolSplineSurface.hxx diff --git a/src/IGESGeom/IGESGeom_ToolSurfaceOfRevolution.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolSurfaceOfRevolution.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolSurfaceOfRevolution.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolSurfaceOfRevolution.cxx diff --git a/src/IGESGeom/IGESGeom_ToolSurfaceOfRevolution.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolSurfaceOfRevolution.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolSurfaceOfRevolution.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolSurfaceOfRevolution.hxx diff --git a/src/IGESGeom/IGESGeom_ToolTabulatedCylinder.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolTabulatedCylinder.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolTabulatedCylinder.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolTabulatedCylinder.cxx diff --git a/src/IGESGeom/IGESGeom_ToolTabulatedCylinder.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolTabulatedCylinder.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolTabulatedCylinder.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolTabulatedCylinder.hxx diff --git a/src/IGESGeom/IGESGeom_ToolTransformationMatrix.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolTransformationMatrix.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolTransformationMatrix.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolTransformationMatrix.cxx diff --git a/src/IGESGeom/IGESGeom_ToolTransformationMatrix.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolTransformationMatrix.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolTransformationMatrix.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolTransformationMatrix.hxx diff --git a/src/IGESGeom/IGESGeom_ToolTrimmedSurface.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolTrimmedSurface.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolTrimmedSurface.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolTrimmedSurface.cxx diff --git a/src/IGESGeom/IGESGeom_ToolTrimmedSurface.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolTrimmedSurface.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_ToolTrimmedSurface.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_ToolTrimmedSurface.hxx diff --git a/src/IGESGeom/IGESGeom_TransformationMatrix.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_TransformationMatrix.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_TransformationMatrix.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_TransformationMatrix.cxx diff --git a/src/IGESGeom/IGESGeom_TransformationMatrix.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_TransformationMatrix.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_TransformationMatrix.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_TransformationMatrix.hxx diff --git a/src/IGESGeom/IGESGeom_TrimmedSurface.cxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_TrimmedSurface.cxx similarity index 100% rename from src/IGESGeom/IGESGeom_TrimmedSurface.cxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_TrimmedSurface.cxx diff --git a/src/IGESGeom/IGESGeom_TrimmedSurface.hxx b/src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_TrimmedSurface.hxx similarity index 100% rename from src/IGESGeom/IGESGeom_TrimmedSurface.hxx rename to src/DataExchange/TKDEIGES/IGESGeom/IGESGeom_TrimmedSurface.hxx diff --git a/src/DataExchange/TKDEIGES/IGESGraph/FILES.cmake b/src/DataExchange/TKDEIGES/IGESGraph/FILES.cmake new file mode 100644 index 0000000000..19409f411f --- /dev/null +++ b/src/DataExchange/TKDEIGES/IGESGraph/FILES.cmake @@ -0,0 +1,77 @@ +# Source files for IGESGraph package +set(OCCT_IGESGraph_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IGESGraph_FILES + IGESGraph.cxx + IGESGraph.hxx + IGESGraph_Array1OfColor.hxx + IGESGraph_Array1OfTextDisplayTemplate.hxx + IGESGraph_Array1OfTextFontDef.hxx + IGESGraph_Color.cxx + IGESGraph_Color.hxx + IGESGraph_DefinitionLevel.cxx + IGESGraph_DefinitionLevel.hxx + IGESGraph_DrawingSize.cxx + IGESGraph_DrawingSize.hxx + IGESGraph_DrawingUnits.cxx + IGESGraph_DrawingUnits.hxx + IGESGraph_GeneralModule.cxx + IGESGraph_GeneralModule.hxx + IGESGraph_HArray1OfColor.hxx + IGESGraph_HArray1OfTextDisplayTemplate.hxx + IGESGraph_HArray1OfTextFontDef.hxx + IGESGraph_HighLight.cxx + IGESGraph_HighLight.hxx + IGESGraph_IntercharacterSpacing.cxx + IGESGraph_IntercharacterSpacing.hxx + IGESGraph_LineFontDefPattern.cxx + IGESGraph_LineFontDefPattern.hxx + IGESGraph_LineFontDefTemplate.cxx + IGESGraph_LineFontDefTemplate.hxx + IGESGraph_LineFontPredefined.cxx + IGESGraph_LineFontPredefined.hxx + IGESGraph_NominalSize.cxx + IGESGraph_NominalSize.hxx + IGESGraph_Pick.cxx + IGESGraph_Pick.hxx + IGESGraph_Protocol.cxx + IGESGraph_Protocol.hxx + IGESGraph_ReadWriteModule.cxx + IGESGraph_ReadWriteModule.hxx + IGESGraph_SpecificModule.cxx + IGESGraph_SpecificModule.hxx + IGESGraph_TextDisplayTemplate.cxx + IGESGraph_TextDisplayTemplate.hxx + IGESGraph_TextFontDef.cxx + IGESGraph_TextFontDef.hxx + IGESGraph_ToolColor.cxx + IGESGraph_ToolColor.hxx + IGESGraph_ToolDefinitionLevel.cxx + IGESGraph_ToolDefinitionLevel.hxx + IGESGraph_ToolDrawingSize.cxx + IGESGraph_ToolDrawingSize.hxx + IGESGraph_ToolDrawingUnits.cxx + IGESGraph_ToolDrawingUnits.hxx + IGESGraph_ToolHighLight.cxx + IGESGraph_ToolHighLight.hxx + IGESGraph_ToolIntercharacterSpacing.cxx + IGESGraph_ToolIntercharacterSpacing.hxx + IGESGraph_ToolLineFontDefPattern.cxx + IGESGraph_ToolLineFontDefPattern.hxx + IGESGraph_ToolLineFontDefTemplate.cxx + IGESGraph_ToolLineFontDefTemplate.hxx + IGESGraph_ToolLineFontPredefined.cxx + IGESGraph_ToolLineFontPredefined.hxx + IGESGraph_ToolNominalSize.cxx + IGESGraph_ToolNominalSize.hxx + IGESGraph_ToolPick.cxx + IGESGraph_ToolPick.hxx + IGESGraph_ToolTextDisplayTemplate.cxx + IGESGraph_ToolTextDisplayTemplate.hxx + IGESGraph_ToolTextFontDef.cxx + IGESGraph_ToolTextFontDef.hxx + IGESGraph_ToolUniformRectGrid.cxx + IGESGraph_ToolUniformRectGrid.hxx + IGESGraph_UniformRectGrid.cxx + IGESGraph_UniformRectGrid.hxx +) diff --git a/src/IGESGraph/IGESGraph.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph.cxx similarity index 100% rename from src/IGESGraph/IGESGraph.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph.cxx diff --git a/src/IGESGraph/IGESGraph.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph.hxx similarity index 100% rename from src/IGESGraph/IGESGraph.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph.hxx diff --git a/src/IGESGraph/IGESGraph_Array1OfColor.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_Array1OfColor.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_Array1OfColor.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_Array1OfColor.hxx diff --git a/src/IGESGraph/IGESGraph_Array1OfTextDisplayTemplate.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_Array1OfTextDisplayTemplate.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_Array1OfTextDisplayTemplate.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_Array1OfTextDisplayTemplate.hxx diff --git a/src/IGESGraph/IGESGraph_Array1OfTextFontDef.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_Array1OfTextFontDef.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_Array1OfTextFontDef.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_Array1OfTextFontDef.hxx diff --git a/src/IGESGraph/IGESGraph_Color.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_Color.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_Color.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_Color.cxx diff --git a/src/IGESGraph/IGESGraph_Color.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_Color.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_Color.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_Color.hxx diff --git a/src/IGESGraph/IGESGraph_DefinitionLevel.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_DefinitionLevel.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_DefinitionLevel.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_DefinitionLevel.cxx diff --git a/src/IGESGraph/IGESGraph_DefinitionLevel.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_DefinitionLevel.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_DefinitionLevel.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_DefinitionLevel.hxx diff --git a/src/IGESGraph/IGESGraph_DrawingSize.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_DrawingSize.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_DrawingSize.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_DrawingSize.cxx diff --git a/src/IGESGraph/IGESGraph_DrawingSize.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_DrawingSize.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_DrawingSize.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_DrawingSize.hxx diff --git a/src/IGESGraph/IGESGraph_DrawingUnits.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_DrawingUnits.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_DrawingUnits.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_DrawingUnits.cxx diff --git a/src/IGESGraph/IGESGraph_DrawingUnits.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_DrawingUnits.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_DrawingUnits.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_DrawingUnits.hxx diff --git a/src/IGESGraph/IGESGraph_GeneralModule.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_GeneralModule.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_GeneralModule.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_GeneralModule.cxx diff --git a/src/IGESGraph/IGESGraph_GeneralModule.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_GeneralModule.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_GeneralModule.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_GeneralModule.hxx diff --git a/src/IGESGraph/IGESGraph_HArray1OfColor.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_HArray1OfColor.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_HArray1OfColor.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_HArray1OfColor.hxx diff --git a/src/IGESGraph/IGESGraph_HArray1OfTextDisplayTemplate.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_HArray1OfTextDisplayTemplate.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_HArray1OfTextDisplayTemplate.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_HArray1OfTextDisplayTemplate.hxx diff --git a/src/IGESGraph/IGESGraph_HArray1OfTextFontDef.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_HArray1OfTextFontDef.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_HArray1OfTextFontDef.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_HArray1OfTextFontDef.hxx diff --git a/src/IGESGraph/IGESGraph_HighLight.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_HighLight.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_HighLight.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_HighLight.cxx diff --git a/src/IGESGraph/IGESGraph_HighLight.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_HighLight.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_HighLight.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_HighLight.hxx diff --git a/src/IGESGraph/IGESGraph_IntercharacterSpacing.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_IntercharacterSpacing.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_IntercharacterSpacing.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_IntercharacterSpacing.cxx diff --git a/src/IGESGraph/IGESGraph_IntercharacterSpacing.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_IntercharacterSpacing.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_IntercharacterSpacing.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_IntercharacterSpacing.hxx diff --git a/src/IGESGraph/IGESGraph_LineFontDefPattern.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_LineFontDefPattern.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_LineFontDefPattern.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_LineFontDefPattern.cxx diff --git a/src/IGESGraph/IGESGraph_LineFontDefPattern.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_LineFontDefPattern.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_LineFontDefPattern.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_LineFontDefPattern.hxx diff --git a/src/IGESGraph/IGESGraph_LineFontDefTemplate.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_LineFontDefTemplate.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_LineFontDefTemplate.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_LineFontDefTemplate.cxx diff --git a/src/IGESGraph/IGESGraph_LineFontDefTemplate.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_LineFontDefTemplate.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_LineFontDefTemplate.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_LineFontDefTemplate.hxx diff --git a/src/IGESGraph/IGESGraph_LineFontPredefined.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_LineFontPredefined.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_LineFontPredefined.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_LineFontPredefined.cxx diff --git a/src/IGESGraph/IGESGraph_LineFontPredefined.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_LineFontPredefined.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_LineFontPredefined.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_LineFontPredefined.hxx diff --git a/src/IGESGraph/IGESGraph_NominalSize.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_NominalSize.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_NominalSize.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_NominalSize.cxx diff --git a/src/IGESGraph/IGESGraph_NominalSize.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_NominalSize.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_NominalSize.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_NominalSize.hxx diff --git a/src/IGESGraph/IGESGraph_Pick.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_Pick.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_Pick.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_Pick.cxx diff --git a/src/IGESGraph/IGESGraph_Pick.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_Pick.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_Pick.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_Pick.hxx diff --git a/src/IGESGraph/IGESGraph_Protocol.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_Protocol.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_Protocol.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_Protocol.cxx diff --git a/src/IGESGraph/IGESGraph_Protocol.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_Protocol.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_Protocol.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_Protocol.hxx diff --git a/src/IGESGraph/IGESGraph_ReadWriteModule.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ReadWriteModule.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_ReadWriteModule.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ReadWriteModule.cxx diff --git a/src/IGESGraph/IGESGraph_ReadWriteModule.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ReadWriteModule.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_ReadWriteModule.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ReadWriteModule.hxx diff --git a/src/IGESGraph/IGESGraph_SpecificModule.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_SpecificModule.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_SpecificModule.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_SpecificModule.cxx diff --git a/src/IGESGraph/IGESGraph_SpecificModule.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_SpecificModule.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_SpecificModule.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_SpecificModule.hxx diff --git a/src/IGESGraph/IGESGraph_TextDisplayTemplate.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_TextDisplayTemplate.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_TextDisplayTemplate.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_TextDisplayTemplate.cxx diff --git a/src/IGESGraph/IGESGraph_TextDisplayTemplate.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_TextDisplayTemplate.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_TextDisplayTemplate.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_TextDisplayTemplate.hxx diff --git a/src/IGESGraph/IGESGraph_TextFontDef.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_TextFontDef.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_TextFontDef.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_TextFontDef.cxx diff --git a/src/IGESGraph/IGESGraph_TextFontDef.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_TextFontDef.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_TextFontDef.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_TextFontDef.hxx diff --git a/src/IGESGraph/IGESGraph_ToolColor.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolColor.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolColor.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolColor.cxx diff --git a/src/IGESGraph/IGESGraph_ToolColor.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolColor.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolColor.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolColor.hxx diff --git a/src/IGESGraph/IGESGraph_ToolDefinitionLevel.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolDefinitionLevel.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolDefinitionLevel.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolDefinitionLevel.cxx diff --git a/src/IGESGraph/IGESGraph_ToolDefinitionLevel.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolDefinitionLevel.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolDefinitionLevel.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolDefinitionLevel.hxx diff --git a/src/IGESGraph/IGESGraph_ToolDrawingSize.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolDrawingSize.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolDrawingSize.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolDrawingSize.cxx diff --git a/src/IGESGraph/IGESGraph_ToolDrawingSize.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolDrawingSize.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolDrawingSize.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolDrawingSize.hxx diff --git a/src/IGESGraph/IGESGraph_ToolDrawingUnits.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolDrawingUnits.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolDrawingUnits.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolDrawingUnits.cxx diff --git a/src/IGESGraph/IGESGraph_ToolDrawingUnits.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolDrawingUnits.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolDrawingUnits.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolDrawingUnits.hxx diff --git a/src/IGESGraph/IGESGraph_ToolHighLight.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolHighLight.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolHighLight.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolHighLight.cxx diff --git a/src/IGESGraph/IGESGraph_ToolHighLight.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolHighLight.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolHighLight.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolHighLight.hxx diff --git a/src/IGESGraph/IGESGraph_ToolIntercharacterSpacing.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolIntercharacterSpacing.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolIntercharacterSpacing.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolIntercharacterSpacing.cxx diff --git a/src/IGESGraph/IGESGraph_ToolIntercharacterSpacing.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolIntercharacterSpacing.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolIntercharacterSpacing.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolIntercharacterSpacing.hxx diff --git a/src/IGESGraph/IGESGraph_ToolLineFontDefPattern.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolLineFontDefPattern.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolLineFontDefPattern.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolLineFontDefPattern.cxx diff --git a/src/IGESGraph/IGESGraph_ToolLineFontDefPattern.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolLineFontDefPattern.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolLineFontDefPattern.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolLineFontDefPattern.hxx diff --git a/src/IGESGraph/IGESGraph_ToolLineFontDefTemplate.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolLineFontDefTemplate.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolLineFontDefTemplate.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolLineFontDefTemplate.cxx diff --git a/src/IGESGraph/IGESGraph_ToolLineFontDefTemplate.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolLineFontDefTemplate.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolLineFontDefTemplate.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolLineFontDefTemplate.hxx diff --git a/src/IGESGraph/IGESGraph_ToolLineFontPredefined.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolLineFontPredefined.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolLineFontPredefined.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolLineFontPredefined.cxx diff --git a/src/IGESGraph/IGESGraph_ToolLineFontPredefined.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolLineFontPredefined.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolLineFontPredefined.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolLineFontPredefined.hxx diff --git a/src/IGESGraph/IGESGraph_ToolNominalSize.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolNominalSize.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolNominalSize.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolNominalSize.cxx diff --git a/src/IGESGraph/IGESGraph_ToolNominalSize.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolNominalSize.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolNominalSize.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolNominalSize.hxx diff --git a/src/IGESGraph/IGESGraph_ToolPick.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolPick.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolPick.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolPick.cxx diff --git a/src/IGESGraph/IGESGraph_ToolPick.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolPick.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolPick.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolPick.hxx diff --git a/src/IGESGraph/IGESGraph_ToolTextDisplayTemplate.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolTextDisplayTemplate.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolTextDisplayTemplate.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolTextDisplayTemplate.cxx diff --git a/src/IGESGraph/IGESGraph_ToolTextDisplayTemplate.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolTextDisplayTemplate.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolTextDisplayTemplate.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolTextDisplayTemplate.hxx diff --git a/src/IGESGraph/IGESGraph_ToolTextFontDef.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolTextFontDef.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolTextFontDef.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolTextFontDef.cxx diff --git a/src/IGESGraph/IGESGraph_ToolTextFontDef.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolTextFontDef.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolTextFontDef.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolTextFontDef.hxx diff --git a/src/IGESGraph/IGESGraph_ToolUniformRectGrid.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolUniformRectGrid.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolUniformRectGrid.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolUniformRectGrid.cxx diff --git a/src/IGESGraph/IGESGraph_ToolUniformRectGrid.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolUniformRectGrid.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_ToolUniformRectGrid.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_ToolUniformRectGrid.hxx diff --git a/src/IGESGraph/IGESGraph_UniformRectGrid.cxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_UniformRectGrid.cxx similarity index 100% rename from src/IGESGraph/IGESGraph_UniformRectGrid.cxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_UniformRectGrid.cxx diff --git a/src/IGESGraph/IGESGraph_UniformRectGrid.hxx b/src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_UniformRectGrid.hxx similarity index 100% rename from src/IGESGraph/IGESGraph_UniformRectGrid.hxx rename to src/DataExchange/TKDEIGES/IGESGraph/IGESGraph_UniformRectGrid.hxx diff --git a/src/DataExchange/TKDEIGES/IGESSelect/FILES.cmake b/src/DataExchange/TKDEIGES/IGESSelect/FILES.cmake new file mode 100644 index 0000000000..377f7e7a2b --- /dev/null +++ b/src/DataExchange/TKDEIGES/IGESSelect/FILES.cmake @@ -0,0 +1,99 @@ +# Source files for IGESSelect package +set(OCCT_IGESSelect_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IGESSelect_FILES + IGESSelect.cxx + IGESSelect.hxx + IGESSelect_Activator.cxx + IGESSelect_Activator.hxx + IGESSelect_AddFileComment.cxx + IGESSelect_AddFileComment.hxx + IGESSelect_AddGroup.cxx + IGESSelect_AddGroup.hxx + IGESSelect_AutoCorrect.cxx + IGESSelect_AutoCorrect.hxx + IGESSelect_ChangeLevelList.cxx + IGESSelect_ChangeLevelList.hxx + IGESSelect_ChangeLevelNumber.cxx + IGESSelect_ChangeLevelNumber.hxx + IGESSelect_ComputeStatus.cxx + IGESSelect_ComputeStatus.hxx + IGESSelect_CounterOfLevelNumber.cxx + IGESSelect_CounterOfLevelNumber.hxx + IGESSelect_DispPerDrawing.cxx + IGESSelect_DispPerDrawing.hxx + IGESSelect_DispPerSingleView.cxx + IGESSelect_DispPerSingleView.hxx + IGESSelect_Dumper.cxx + IGESSelect_Dumper.hxx + IGESSelect_EditDirPart.cxx + IGESSelect_EditDirPart.hxx + IGESSelect_EditHeader.cxx + IGESSelect_EditHeader.hxx + IGESSelect_FileModifier.hxx + IGESSelect_FileModifier_0.cxx + IGESSelect_FloatFormat.cxx + IGESSelect_FloatFormat.hxx + IGESSelect_IGESName.cxx + IGESSelect_IGESName.hxx + IGESSelect_IGESTypeForm.cxx + IGESSelect_IGESTypeForm.hxx + IGESSelect_ModelModifier.hxx + IGESSelect_ModelModifier_0.cxx + IGESSelect_RebuildDrawings.cxx + IGESSelect_RebuildDrawings.hxx + IGESSelect_RebuildGroups.cxx + IGESSelect_RebuildGroups.hxx + IGESSelect_RemoveCurves.cxx + IGESSelect_RemoveCurves.hxx + IGESSelect_SelectBasicGeom.cxx + IGESSelect_SelectBasicGeom.hxx + IGESSelect_SelectBypassGroup.cxx + IGESSelect_SelectBypassGroup.hxx + IGESSelect_SelectBypassSubfigure.cxx + IGESSelect_SelectBypassSubfigure.hxx + IGESSelect_SelectDrawingFrom.cxx + IGESSelect_SelectDrawingFrom.hxx + IGESSelect_SelectFaces.cxx + IGESSelect_SelectFaces.hxx + IGESSelect_SelectFromDrawing.cxx + IGESSelect_SelectFromDrawing.hxx + IGESSelect_SelectFromSingleView.cxx + IGESSelect_SelectFromSingleView.hxx + IGESSelect_SelectLevelNumber.cxx + IGESSelect_SelectLevelNumber.hxx + IGESSelect_SelectName.cxx + IGESSelect_SelectName.hxx + IGESSelect_SelectPCurves.cxx + IGESSelect_SelectPCurves.hxx + IGESSelect_SelectSingleViewFrom.cxx + IGESSelect_SelectSingleViewFrom.hxx + IGESSelect_SelectSubordinate.cxx + IGESSelect_SelectSubordinate.hxx + IGESSelect_SelectVisibleStatus.cxx + IGESSelect_SelectVisibleStatus.hxx + IGESSelect_SetGlobalParameter.cxx + IGESSelect_SetGlobalParameter.hxx + IGESSelect_SetLabel.cxx + IGESSelect_SetLabel.hxx + IGESSelect_SetVersion5.cxx + IGESSelect_SetVersion5.hxx + IGESSelect_SignColor.cxx + IGESSelect_SignColor.hxx + IGESSelect_SignLevelNumber.cxx + IGESSelect_SignLevelNumber.hxx + IGESSelect_SignStatus.cxx + IGESSelect_SignStatus.hxx + IGESSelect_SplineToBSpline.cxx + IGESSelect_SplineToBSpline.hxx + IGESSelect_UpdateCreationDate.cxx + IGESSelect_UpdateCreationDate.hxx + IGESSelect_UpdateFileName.cxx + IGESSelect_UpdateFileName.hxx + IGESSelect_UpdateLastChange.cxx + IGESSelect_UpdateLastChange.hxx + IGESSelect_ViewSorter.cxx + IGESSelect_ViewSorter.hxx + IGESSelect_WorkLibrary.cxx + IGESSelect_WorkLibrary.hxx +) diff --git a/src/IGESSelect/IGESSelect.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect.cxx similarity index 100% rename from src/IGESSelect/IGESSelect.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect.cxx diff --git a/src/IGESSelect/IGESSelect.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect.hxx similarity index 100% rename from src/IGESSelect/IGESSelect.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect.hxx diff --git a/src/IGESSelect/IGESSelect_Activator.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_Activator.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_Activator.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_Activator.cxx diff --git a/src/IGESSelect/IGESSelect_Activator.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_Activator.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_Activator.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_Activator.hxx diff --git a/src/IGESSelect/IGESSelect_AddFileComment.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_AddFileComment.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_AddFileComment.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_AddFileComment.cxx diff --git a/src/IGESSelect/IGESSelect_AddFileComment.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_AddFileComment.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_AddFileComment.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_AddFileComment.hxx diff --git a/src/IGESSelect/IGESSelect_AddGroup.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_AddGroup.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_AddGroup.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_AddGroup.cxx diff --git a/src/IGESSelect/IGESSelect_AddGroup.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_AddGroup.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_AddGroup.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_AddGroup.hxx diff --git a/src/IGESSelect/IGESSelect_AutoCorrect.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_AutoCorrect.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_AutoCorrect.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_AutoCorrect.cxx diff --git a/src/IGESSelect/IGESSelect_AutoCorrect.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_AutoCorrect.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_AutoCorrect.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_AutoCorrect.hxx diff --git a/src/IGESSelect/IGESSelect_ChangeLevelList.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_ChangeLevelList.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_ChangeLevelList.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_ChangeLevelList.cxx diff --git a/src/IGESSelect/IGESSelect_ChangeLevelList.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_ChangeLevelList.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_ChangeLevelList.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_ChangeLevelList.hxx diff --git a/src/IGESSelect/IGESSelect_ChangeLevelNumber.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_ChangeLevelNumber.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_ChangeLevelNumber.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_ChangeLevelNumber.cxx diff --git a/src/IGESSelect/IGESSelect_ChangeLevelNumber.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_ChangeLevelNumber.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_ChangeLevelNumber.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_ChangeLevelNumber.hxx diff --git a/src/IGESSelect/IGESSelect_ComputeStatus.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_ComputeStatus.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_ComputeStatus.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_ComputeStatus.cxx diff --git a/src/IGESSelect/IGESSelect_ComputeStatus.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_ComputeStatus.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_ComputeStatus.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_ComputeStatus.hxx diff --git a/src/IGESSelect/IGESSelect_CounterOfLevelNumber.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_CounterOfLevelNumber.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_CounterOfLevelNumber.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_CounterOfLevelNumber.cxx diff --git a/src/IGESSelect/IGESSelect_CounterOfLevelNumber.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_CounterOfLevelNumber.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_CounterOfLevelNumber.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_CounterOfLevelNumber.hxx diff --git a/src/IGESSelect/IGESSelect_DispPerDrawing.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_DispPerDrawing.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_DispPerDrawing.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_DispPerDrawing.cxx diff --git a/src/IGESSelect/IGESSelect_DispPerDrawing.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_DispPerDrawing.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_DispPerDrawing.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_DispPerDrawing.hxx diff --git a/src/IGESSelect/IGESSelect_DispPerSingleView.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_DispPerSingleView.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_DispPerSingleView.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_DispPerSingleView.cxx diff --git a/src/IGESSelect/IGESSelect_DispPerSingleView.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_DispPerSingleView.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_DispPerSingleView.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_DispPerSingleView.hxx diff --git a/src/IGESSelect/IGESSelect_Dumper.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_Dumper.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_Dumper.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_Dumper.cxx diff --git a/src/IGESSelect/IGESSelect_Dumper.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_Dumper.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_Dumper.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_Dumper.hxx diff --git a/src/IGESSelect/IGESSelect_EditDirPart.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_EditDirPart.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_EditDirPart.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_EditDirPart.cxx diff --git a/src/IGESSelect/IGESSelect_EditDirPart.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_EditDirPart.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_EditDirPart.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_EditDirPart.hxx diff --git a/src/IGESSelect/IGESSelect_EditHeader.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_EditHeader.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_EditHeader.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_EditHeader.cxx diff --git a/src/IGESSelect/IGESSelect_EditHeader.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_EditHeader.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_EditHeader.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_EditHeader.hxx diff --git a/src/IGESSelect/IGESSelect_FileModifier.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_FileModifier.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_FileModifier.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_FileModifier.hxx diff --git a/src/IGESSelect/IGESSelect_FileModifier_0.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_FileModifier_0.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_FileModifier_0.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_FileModifier_0.cxx diff --git a/src/IGESSelect/IGESSelect_FloatFormat.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_FloatFormat.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_FloatFormat.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_FloatFormat.cxx diff --git a/src/IGESSelect/IGESSelect_FloatFormat.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_FloatFormat.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_FloatFormat.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_FloatFormat.hxx diff --git a/src/IGESSelect/IGESSelect_IGESName.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_IGESName.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_IGESName.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_IGESName.cxx diff --git a/src/IGESSelect/IGESSelect_IGESName.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_IGESName.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_IGESName.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_IGESName.hxx diff --git a/src/IGESSelect/IGESSelect_IGESTypeForm.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_IGESTypeForm.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_IGESTypeForm.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_IGESTypeForm.cxx diff --git a/src/IGESSelect/IGESSelect_IGESTypeForm.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_IGESTypeForm.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_IGESTypeForm.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_IGESTypeForm.hxx diff --git a/src/IGESSelect/IGESSelect_ModelModifier.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_ModelModifier.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_ModelModifier.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_ModelModifier.hxx diff --git a/src/IGESSelect/IGESSelect_ModelModifier_0.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_ModelModifier_0.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_ModelModifier_0.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_ModelModifier_0.cxx diff --git a/src/IGESSelect/IGESSelect_RebuildDrawings.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_RebuildDrawings.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_RebuildDrawings.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_RebuildDrawings.cxx diff --git a/src/IGESSelect/IGESSelect_RebuildDrawings.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_RebuildDrawings.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_RebuildDrawings.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_RebuildDrawings.hxx diff --git a/src/IGESSelect/IGESSelect_RebuildGroups.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_RebuildGroups.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_RebuildGroups.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_RebuildGroups.cxx diff --git a/src/IGESSelect/IGESSelect_RebuildGroups.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_RebuildGroups.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_RebuildGroups.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_RebuildGroups.hxx diff --git a/src/IGESSelect/IGESSelect_RemoveCurves.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_RemoveCurves.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_RemoveCurves.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_RemoveCurves.cxx diff --git a/src/IGESSelect/IGESSelect_RemoveCurves.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_RemoveCurves.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_RemoveCurves.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_RemoveCurves.hxx diff --git a/src/IGESSelect/IGESSelect_SelectBasicGeom.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectBasicGeom.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectBasicGeom.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectBasicGeom.cxx diff --git a/src/IGESSelect/IGESSelect_SelectBasicGeom.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectBasicGeom.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectBasicGeom.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectBasicGeom.hxx diff --git a/src/IGESSelect/IGESSelect_SelectBypassGroup.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectBypassGroup.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectBypassGroup.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectBypassGroup.cxx diff --git a/src/IGESSelect/IGESSelect_SelectBypassGroup.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectBypassGroup.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectBypassGroup.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectBypassGroup.hxx diff --git a/src/IGESSelect/IGESSelect_SelectBypassSubfigure.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectBypassSubfigure.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectBypassSubfigure.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectBypassSubfigure.cxx diff --git a/src/IGESSelect/IGESSelect_SelectBypassSubfigure.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectBypassSubfigure.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectBypassSubfigure.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectBypassSubfigure.hxx diff --git a/src/IGESSelect/IGESSelect_SelectDrawingFrom.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectDrawingFrom.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectDrawingFrom.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectDrawingFrom.cxx diff --git a/src/IGESSelect/IGESSelect_SelectDrawingFrom.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectDrawingFrom.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectDrawingFrom.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectDrawingFrom.hxx diff --git a/src/IGESSelect/IGESSelect_SelectFaces.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectFaces.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectFaces.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectFaces.cxx diff --git a/src/IGESSelect/IGESSelect_SelectFaces.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectFaces.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectFaces.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectFaces.hxx diff --git a/src/IGESSelect/IGESSelect_SelectFromDrawing.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectFromDrawing.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectFromDrawing.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectFromDrawing.cxx diff --git a/src/IGESSelect/IGESSelect_SelectFromDrawing.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectFromDrawing.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectFromDrawing.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectFromDrawing.hxx diff --git a/src/IGESSelect/IGESSelect_SelectFromSingleView.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectFromSingleView.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectFromSingleView.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectFromSingleView.cxx diff --git a/src/IGESSelect/IGESSelect_SelectFromSingleView.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectFromSingleView.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectFromSingleView.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectFromSingleView.hxx diff --git a/src/IGESSelect/IGESSelect_SelectLevelNumber.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectLevelNumber.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectLevelNumber.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectLevelNumber.cxx diff --git a/src/IGESSelect/IGESSelect_SelectLevelNumber.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectLevelNumber.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectLevelNumber.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectLevelNumber.hxx diff --git a/src/IGESSelect/IGESSelect_SelectName.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectName.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectName.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectName.cxx diff --git a/src/IGESSelect/IGESSelect_SelectName.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectName.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectName.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectName.hxx diff --git a/src/IGESSelect/IGESSelect_SelectPCurves.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectPCurves.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectPCurves.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectPCurves.cxx diff --git a/src/IGESSelect/IGESSelect_SelectPCurves.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectPCurves.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectPCurves.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectPCurves.hxx diff --git a/src/IGESSelect/IGESSelect_SelectSingleViewFrom.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectSingleViewFrom.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectSingleViewFrom.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectSingleViewFrom.cxx diff --git a/src/IGESSelect/IGESSelect_SelectSingleViewFrom.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectSingleViewFrom.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectSingleViewFrom.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectSingleViewFrom.hxx diff --git a/src/IGESSelect/IGESSelect_SelectSubordinate.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectSubordinate.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectSubordinate.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectSubordinate.cxx diff --git a/src/IGESSelect/IGESSelect_SelectSubordinate.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectSubordinate.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectSubordinate.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectSubordinate.hxx diff --git a/src/IGESSelect/IGESSelect_SelectVisibleStatus.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectVisibleStatus.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectVisibleStatus.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectVisibleStatus.cxx diff --git a/src/IGESSelect/IGESSelect_SelectVisibleStatus.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectVisibleStatus.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_SelectVisibleStatus.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SelectVisibleStatus.hxx diff --git a/src/IGESSelect/IGESSelect_SetGlobalParameter.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SetGlobalParameter.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_SetGlobalParameter.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SetGlobalParameter.cxx diff --git a/src/IGESSelect/IGESSelect_SetGlobalParameter.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SetGlobalParameter.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_SetGlobalParameter.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SetGlobalParameter.hxx diff --git a/src/IGESSelect/IGESSelect_SetLabel.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SetLabel.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_SetLabel.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SetLabel.cxx diff --git a/src/IGESSelect/IGESSelect_SetLabel.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SetLabel.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_SetLabel.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SetLabel.hxx diff --git a/src/IGESSelect/IGESSelect_SetVersion5.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SetVersion5.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_SetVersion5.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SetVersion5.cxx diff --git a/src/IGESSelect/IGESSelect_SetVersion5.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SetVersion5.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_SetVersion5.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SetVersion5.hxx diff --git a/src/IGESSelect/IGESSelect_SignColor.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SignColor.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_SignColor.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SignColor.cxx diff --git a/src/IGESSelect/IGESSelect_SignColor.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SignColor.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_SignColor.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SignColor.hxx diff --git a/src/IGESSelect/IGESSelect_SignLevelNumber.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SignLevelNumber.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_SignLevelNumber.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SignLevelNumber.cxx diff --git a/src/IGESSelect/IGESSelect_SignLevelNumber.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SignLevelNumber.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_SignLevelNumber.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SignLevelNumber.hxx diff --git a/src/IGESSelect/IGESSelect_SignStatus.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SignStatus.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_SignStatus.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SignStatus.cxx diff --git a/src/IGESSelect/IGESSelect_SignStatus.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SignStatus.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_SignStatus.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SignStatus.hxx diff --git a/src/IGESSelect/IGESSelect_SplineToBSpline.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SplineToBSpline.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_SplineToBSpline.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SplineToBSpline.cxx diff --git a/src/IGESSelect/IGESSelect_SplineToBSpline.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SplineToBSpline.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_SplineToBSpline.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_SplineToBSpline.hxx diff --git a/src/IGESSelect/IGESSelect_UpdateCreationDate.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_UpdateCreationDate.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_UpdateCreationDate.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_UpdateCreationDate.cxx diff --git a/src/IGESSelect/IGESSelect_UpdateCreationDate.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_UpdateCreationDate.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_UpdateCreationDate.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_UpdateCreationDate.hxx diff --git a/src/IGESSelect/IGESSelect_UpdateFileName.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_UpdateFileName.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_UpdateFileName.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_UpdateFileName.cxx diff --git a/src/IGESSelect/IGESSelect_UpdateFileName.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_UpdateFileName.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_UpdateFileName.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_UpdateFileName.hxx diff --git a/src/IGESSelect/IGESSelect_UpdateLastChange.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_UpdateLastChange.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_UpdateLastChange.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_UpdateLastChange.cxx diff --git a/src/IGESSelect/IGESSelect_UpdateLastChange.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_UpdateLastChange.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_UpdateLastChange.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_UpdateLastChange.hxx diff --git a/src/IGESSelect/IGESSelect_ViewSorter.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_ViewSorter.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_ViewSorter.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_ViewSorter.cxx diff --git a/src/IGESSelect/IGESSelect_ViewSorter.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_ViewSorter.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_ViewSorter.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_ViewSorter.hxx diff --git a/src/IGESSelect/IGESSelect_WorkLibrary.cxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_WorkLibrary.cxx similarity index 100% rename from src/IGESSelect/IGESSelect_WorkLibrary.cxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_WorkLibrary.cxx diff --git a/src/IGESSelect/IGESSelect_WorkLibrary.hxx b/src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_WorkLibrary.hxx similarity index 100% rename from src/IGESSelect/IGESSelect_WorkLibrary.hxx rename to src/DataExchange/TKDEIGES/IGESSelect/IGESSelect_WorkLibrary.hxx diff --git a/src/DataExchange/TKDEIGES/IGESSolid/FILES.cmake b/src/DataExchange/TKDEIGES/IGESSolid/FILES.cmake new file mode 100644 index 0000000000..f6b734b642 --- /dev/null +++ b/src/DataExchange/TKDEIGES/IGESSolid/FILES.cmake @@ -0,0 +1,121 @@ +# Source files for IGESSolid package +set(OCCT_IGESSolid_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IGESSolid_FILES + IGESSolid.cxx + IGESSolid.hxx + IGESSolid_Array1OfFace.hxx + IGESSolid_Array1OfLoop.hxx + IGESSolid_Array1OfShell.hxx + IGESSolid_Array1OfVertexList.hxx + IGESSolid_Block.cxx + IGESSolid_Block.hxx + IGESSolid_BooleanTree.cxx + IGESSolid_BooleanTree.hxx + IGESSolid_ConeFrustum.cxx + IGESSolid_ConeFrustum.hxx + IGESSolid_ConicalSurface.cxx + IGESSolid_ConicalSurface.hxx + IGESSolid_Cylinder.cxx + IGESSolid_Cylinder.hxx + IGESSolid_CylindricalSurface.cxx + IGESSolid_CylindricalSurface.hxx + IGESSolid_EdgeList.cxx + IGESSolid_EdgeList.hxx + IGESSolid_Ellipsoid.cxx + IGESSolid_Ellipsoid.hxx + IGESSolid_Face.cxx + IGESSolid_Face.hxx + IGESSolid_GeneralModule.cxx + IGESSolid_GeneralModule.hxx + IGESSolid_HArray1OfFace.hxx + IGESSolid_HArray1OfLoop.hxx + IGESSolid_HArray1OfShell.hxx + IGESSolid_HArray1OfVertexList.hxx + IGESSolid_Loop.cxx + IGESSolid_Loop.hxx + IGESSolid_ManifoldSolid.cxx + IGESSolid_ManifoldSolid.hxx + IGESSolid_PlaneSurface.cxx + IGESSolid_PlaneSurface.hxx + IGESSolid_Protocol.cxx + IGESSolid_Protocol.hxx + IGESSolid_ReadWriteModule.cxx + IGESSolid_ReadWriteModule.hxx + IGESSolid_RightAngularWedge.cxx + IGESSolid_RightAngularWedge.hxx + IGESSolid_SelectedComponent.cxx + IGESSolid_SelectedComponent.hxx + IGESSolid_Shell.cxx + IGESSolid_Shell.hxx + IGESSolid_SolidAssembly.cxx + IGESSolid_SolidAssembly.hxx + IGESSolid_SolidInstance.cxx + IGESSolid_SolidInstance.hxx + IGESSolid_SolidOfLinearExtrusion.cxx + IGESSolid_SolidOfLinearExtrusion.hxx + IGESSolid_SolidOfRevolution.cxx + IGESSolid_SolidOfRevolution.hxx + IGESSolid_SpecificModule.cxx + IGESSolid_SpecificModule.hxx + IGESSolid_Sphere.cxx + IGESSolid_Sphere.hxx + IGESSolid_SphericalSurface.cxx + IGESSolid_SphericalSurface.hxx + IGESSolid_ToolBlock.cxx + IGESSolid_ToolBlock.hxx + IGESSolid_ToolBooleanTree.cxx + IGESSolid_ToolBooleanTree.hxx + IGESSolid_ToolConeFrustum.cxx + IGESSolid_ToolConeFrustum.hxx + IGESSolid_ToolConicalSurface.cxx + IGESSolid_ToolConicalSurface.hxx + IGESSolid_ToolCylinder.cxx + IGESSolid_ToolCylinder.hxx + IGESSolid_ToolCylindricalSurface.cxx + IGESSolid_ToolCylindricalSurface.hxx + IGESSolid_ToolEdgeList.cxx + IGESSolid_ToolEdgeList.hxx + IGESSolid_ToolEllipsoid.cxx + IGESSolid_ToolEllipsoid.hxx + IGESSolid_ToolFace.cxx + IGESSolid_ToolFace.hxx + IGESSolid_ToolLoop.cxx + IGESSolid_ToolLoop.hxx + IGESSolid_ToolManifoldSolid.cxx + IGESSolid_ToolManifoldSolid.hxx + IGESSolid_ToolPlaneSurface.cxx + IGESSolid_ToolPlaneSurface.hxx + IGESSolid_ToolRightAngularWedge.cxx + IGESSolid_ToolRightAngularWedge.hxx + IGESSolid_ToolSelectedComponent.cxx + IGESSolid_ToolSelectedComponent.hxx + IGESSolid_ToolShell.cxx + IGESSolid_ToolShell.hxx + IGESSolid_ToolSolidAssembly.cxx + IGESSolid_ToolSolidAssembly.hxx + IGESSolid_ToolSolidInstance.cxx + IGESSolid_ToolSolidInstance.hxx + IGESSolid_ToolSolidOfLinearExtrusion.cxx + IGESSolid_ToolSolidOfLinearExtrusion.hxx + IGESSolid_ToolSolidOfRevolution.cxx + IGESSolid_ToolSolidOfRevolution.hxx + IGESSolid_ToolSphere.cxx + IGESSolid_ToolSphere.hxx + IGESSolid_ToolSphericalSurface.cxx + IGESSolid_ToolSphericalSurface.hxx + IGESSolid_ToolToroidalSurface.cxx + IGESSolid_ToolToroidalSurface.hxx + IGESSolid_ToolTorus.cxx + IGESSolid_ToolTorus.hxx + IGESSolid_ToolVertexList.cxx + IGESSolid_ToolVertexList.hxx + IGESSolid_TopoBuilder.cxx + IGESSolid_TopoBuilder.hxx + IGESSolid_ToroidalSurface.cxx + IGESSolid_ToroidalSurface.hxx + IGESSolid_Torus.cxx + IGESSolid_Torus.hxx + IGESSolid_VertexList.cxx + IGESSolid_VertexList.hxx +) diff --git a/src/IGESSolid/IGESSolid.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid.cxx similarity index 100% rename from src/IGESSolid/IGESSolid.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid.cxx diff --git a/src/IGESSolid/IGESSolid.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid.hxx similarity index 100% rename from src/IGESSolid/IGESSolid.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid.hxx diff --git a/src/IGESSolid/IGESSolid_Array1OfFace.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Array1OfFace.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_Array1OfFace.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Array1OfFace.hxx diff --git a/src/IGESSolid/IGESSolid_Array1OfLoop.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Array1OfLoop.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_Array1OfLoop.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Array1OfLoop.hxx diff --git a/src/IGESSolid/IGESSolid_Array1OfShell.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Array1OfShell.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_Array1OfShell.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Array1OfShell.hxx diff --git a/src/IGESSolid/IGESSolid_Array1OfVertexList.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Array1OfVertexList.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_Array1OfVertexList.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Array1OfVertexList.hxx diff --git a/src/IGESSolid/IGESSolid_Block.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Block.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_Block.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Block.cxx diff --git a/src/IGESSolid/IGESSolid_Block.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Block.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_Block.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Block.hxx diff --git a/src/IGESSolid/IGESSolid_BooleanTree.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_BooleanTree.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_BooleanTree.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_BooleanTree.cxx diff --git a/src/IGESSolid/IGESSolid_BooleanTree.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_BooleanTree.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_BooleanTree.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_BooleanTree.hxx diff --git a/src/IGESSolid/IGESSolid_ConeFrustum.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ConeFrustum.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ConeFrustum.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ConeFrustum.cxx diff --git a/src/IGESSolid/IGESSolid_ConeFrustum.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ConeFrustum.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ConeFrustum.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ConeFrustum.hxx diff --git a/src/IGESSolid/IGESSolid_ConicalSurface.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ConicalSurface.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ConicalSurface.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ConicalSurface.cxx diff --git a/src/IGESSolid/IGESSolid_ConicalSurface.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ConicalSurface.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ConicalSurface.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ConicalSurface.hxx diff --git a/src/IGESSolid/IGESSolid_Cylinder.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Cylinder.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_Cylinder.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Cylinder.cxx diff --git a/src/IGESSolid/IGESSolid_Cylinder.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Cylinder.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_Cylinder.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Cylinder.hxx diff --git a/src/IGESSolid/IGESSolid_CylindricalSurface.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_CylindricalSurface.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_CylindricalSurface.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_CylindricalSurface.cxx diff --git a/src/IGESSolid/IGESSolid_CylindricalSurface.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_CylindricalSurface.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_CylindricalSurface.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_CylindricalSurface.hxx diff --git a/src/IGESSolid/IGESSolid_EdgeList.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_EdgeList.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_EdgeList.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_EdgeList.cxx diff --git a/src/IGESSolid/IGESSolid_EdgeList.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_EdgeList.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_EdgeList.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_EdgeList.hxx diff --git a/src/IGESSolid/IGESSolid_Ellipsoid.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Ellipsoid.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_Ellipsoid.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Ellipsoid.cxx diff --git a/src/IGESSolid/IGESSolid_Ellipsoid.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Ellipsoid.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_Ellipsoid.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Ellipsoid.hxx diff --git a/src/IGESSolid/IGESSolid_Face.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Face.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_Face.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Face.cxx diff --git a/src/IGESSolid/IGESSolid_Face.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Face.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_Face.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Face.hxx diff --git a/src/IGESSolid/IGESSolid_GeneralModule.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_GeneralModule.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_GeneralModule.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_GeneralModule.cxx diff --git a/src/IGESSolid/IGESSolid_GeneralModule.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_GeneralModule.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_GeneralModule.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_GeneralModule.hxx diff --git a/src/IGESSolid/IGESSolid_HArray1OfFace.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_HArray1OfFace.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_HArray1OfFace.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_HArray1OfFace.hxx diff --git a/src/IGESSolid/IGESSolid_HArray1OfLoop.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_HArray1OfLoop.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_HArray1OfLoop.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_HArray1OfLoop.hxx diff --git a/src/IGESSolid/IGESSolid_HArray1OfShell.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_HArray1OfShell.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_HArray1OfShell.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_HArray1OfShell.hxx diff --git a/src/IGESSolid/IGESSolid_HArray1OfVertexList.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_HArray1OfVertexList.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_HArray1OfVertexList.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_HArray1OfVertexList.hxx diff --git a/src/IGESSolid/IGESSolid_Loop.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Loop.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_Loop.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Loop.cxx diff --git a/src/IGESSolid/IGESSolid_Loop.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Loop.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_Loop.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Loop.hxx diff --git a/src/IGESSolid/IGESSolid_ManifoldSolid.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ManifoldSolid.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ManifoldSolid.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ManifoldSolid.cxx diff --git a/src/IGESSolid/IGESSolid_ManifoldSolid.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ManifoldSolid.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ManifoldSolid.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ManifoldSolid.hxx diff --git a/src/IGESSolid/IGESSolid_PlaneSurface.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_PlaneSurface.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_PlaneSurface.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_PlaneSurface.cxx diff --git a/src/IGESSolid/IGESSolid_PlaneSurface.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_PlaneSurface.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_PlaneSurface.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_PlaneSurface.hxx diff --git a/src/IGESSolid/IGESSolid_Protocol.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Protocol.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_Protocol.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Protocol.cxx diff --git a/src/IGESSolid/IGESSolid_Protocol.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Protocol.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_Protocol.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Protocol.hxx diff --git a/src/IGESSolid/IGESSolid_ReadWriteModule.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ReadWriteModule.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ReadWriteModule.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ReadWriteModule.cxx diff --git a/src/IGESSolid/IGESSolid_ReadWriteModule.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ReadWriteModule.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ReadWriteModule.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ReadWriteModule.hxx diff --git a/src/IGESSolid/IGESSolid_RightAngularWedge.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_RightAngularWedge.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_RightAngularWedge.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_RightAngularWedge.cxx diff --git a/src/IGESSolid/IGESSolid_RightAngularWedge.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_RightAngularWedge.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_RightAngularWedge.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_RightAngularWedge.hxx diff --git a/src/IGESSolid/IGESSolid_SelectedComponent.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SelectedComponent.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_SelectedComponent.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SelectedComponent.cxx diff --git a/src/IGESSolid/IGESSolid_SelectedComponent.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SelectedComponent.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_SelectedComponent.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SelectedComponent.hxx diff --git a/src/IGESSolid/IGESSolid_Shell.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Shell.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_Shell.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Shell.cxx diff --git a/src/IGESSolid/IGESSolid_Shell.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Shell.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_Shell.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Shell.hxx diff --git a/src/IGESSolid/IGESSolid_SolidAssembly.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SolidAssembly.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_SolidAssembly.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SolidAssembly.cxx diff --git a/src/IGESSolid/IGESSolid_SolidAssembly.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SolidAssembly.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_SolidAssembly.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SolidAssembly.hxx diff --git a/src/IGESSolid/IGESSolid_SolidInstance.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SolidInstance.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_SolidInstance.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SolidInstance.cxx diff --git a/src/IGESSolid/IGESSolid_SolidInstance.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SolidInstance.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_SolidInstance.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SolidInstance.hxx diff --git a/src/IGESSolid/IGESSolid_SolidOfLinearExtrusion.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SolidOfLinearExtrusion.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_SolidOfLinearExtrusion.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SolidOfLinearExtrusion.cxx diff --git a/src/IGESSolid/IGESSolid_SolidOfLinearExtrusion.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SolidOfLinearExtrusion.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_SolidOfLinearExtrusion.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SolidOfLinearExtrusion.hxx diff --git a/src/IGESSolid/IGESSolid_SolidOfRevolution.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SolidOfRevolution.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_SolidOfRevolution.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SolidOfRevolution.cxx diff --git a/src/IGESSolid/IGESSolid_SolidOfRevolution.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SolidOfRevolution.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_SolidOfRevolution.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SolidOfRevolution.hxx diff --git a/src/IGESSolid/IGESSolid_SpecificModule.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SpecificModule.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_SpecificModule.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SpecificModule.cxx diff --git a/src/IGESSolid/IGESSolid_SpecificModule.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SpecificModule.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_SpecificModule.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SpecificModule.hxx diff --git a/src/IGESSolid/IGESSolid_Sphere.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Sphere.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_Sphere.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Sphere.cxx diff --git a/src/IGESSolid/IGESSolid_Sphere.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Sphere.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_Sphere.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Sphere.hxx diff --git a/src/IGESSolid/IGESSolid_SphericalSurface.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SphericalSurface.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_SphericalSurface.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SphericalSurface.cxx diff --git a/src/IGESSolid/IGESSolid_SphericalSurface.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SphericalSurface.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_SphericalSurface.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_SphericalSurface.hxx diff --git a/src/IGESSolid/IGESSolid_ToolBlock.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolBlock.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolBlock.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolBlock.cxx diff --git a/src/IGESSolid/IGESSolid_ToolBlock.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolBlock.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolBlock.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolBlock.hxx diff --git a/src/IGESSolid/IGESSolid_ToolBooleanTree.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolBooleanTree.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolBooleanTree.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolBooleanTree.cxx diff --git a/src/IGESSolid/IGESSolid_ToolBooleanTree.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolBooleanTree.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolBooleanTree.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolBooleanTree.hxx diff --git a/src/IGESSolid/IGESSolid_ToolConeFrustum.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolConeFrustum.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolConeFrustum.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolConeFrustum.cxx diff --git a/src/IGESSolid/IGESSolid_ToolConeFrustum.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolConeFrustum.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolConeFrustum.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolConeFrustum.hxx diff --git a/src/IGESSolid/IGESSolid_ToolConicalSurface.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolConicalSurface.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolConicalSurface.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolConicalSurface.cxx diff --git a/src/IGESSolid/IGESSolid_ToolConicalSurface.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolConicalSurface.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolConicalSurface.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolConicalSurface.hxx diff --git a/src/IGESSolid/IGESSolid_ToolCylinder.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolCylinder.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolCylinder.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolCylinder.cxx diff --git a/src/IGESSolid/IGESSolid_ToolCylinder.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolCylinder.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolCylinder.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolCylinder.hxx diff --git a/src/IGESSolid/IGESSolid_ToolCylindricalSurface.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolCylindricalSurface.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolCylindricalSurface.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolCylindricalSurface.cxx diff --git a/src/IGESSolid/IGESSolid_ToolCylindricalSurface.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolCylindricalSurface.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolCylindricalSurface.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolCylindricalSurface.hxx diff --git a/src/IGESSolid/IGESSolid_ToolEdgeList.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolEdgeList.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolEdgeList.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolEdgeList.cxx diff --git a/src/IGESSolid/IGESSolid_ToolEdgeList.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolEdgeList.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolEdgeList.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolEdgeList.hxx diff --git a/src/IGESSolid/IGESSolid_ToolEllipsoid.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolEllipsoid.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolEllipsoid.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolEllipsoid.cxx diff --git a/src/IGESSolid/IGESSolid_ToolEllipsoid.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolEllipsoid.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolEllipsoid.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolEllipsoid.hxx diff --git a/src/IGESSolid/IGESSolid_ToolFace.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolFace.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolFace.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolFace.cxx diff --git a/src/IGESSolid/IGESSolid_ToolFace.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolFace.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolFace.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolFace.hxx diff --git a/src/IGESSolid/IGESSolid_ToolLoop.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolLoop.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolLoop.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolLoop.cxx diff --git a/src/IGESSolid/IGESSolid_ToolLoop.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolLoop.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolLoop.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolLoop.hxx diff --git a/src/IGESSolid/IGESSolid_ToolManifoldSolid.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolManifoldSolid.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolManifoldSolid.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolManifoldSolid.cxx diff --git a/src/IGESSolid/IGESSolid_ToolManifoldSolid.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolManifoldSolid.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolManifoldSolid.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolManifoldSolid.hxx diff --git a/src/IGESSolid/IGESSolid_ToolPlaneSurface.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolPlaneSurface.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolPlaneSurface.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolPlaneSurface.cxx diff --git a/src/IGESSolid/IGESSolid_ToolPlaneSurface.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolPlaneSurface.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolPlaneSurface.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolPlaneSurface.hxx diff --git a/src/IGESSolid/IGESSolid_ToolRightAngularWedge.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolRightAngularWedge.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolRightAngularWedge.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolRightAngularWedge.cxx diff --git a/src/IGESSolid/IGESSolid_ToolRightAngularWedge.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolRightAngularWedge.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolRightAngularWedge.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolRightAngularWedge.hxx diff --git a/src/IGESSolid/IGESSolid_ToolSelectedComponent.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSelectedComponent.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolSelectedComponent.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSelectedComponent.cxx diff --git a/src/IGESSolid/IGESSolid_ToolSelectedComponent.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSelectedComponent.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolSelectedComponent.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSelectedComponent.hxx diff --git a/src/IGESSolid/IGESSolid_ToolShell.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolShell.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolShell.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolShell.cxx diff --git a/src/IGESSolid/IGESSolid_ToolShell.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolShell.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolShell.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolShell.hxx diff --git a/src/IGESSolid/IGESSolid_ToolSolidAssembly.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSolidAssembly.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolSolidAssembly.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSolidAssembly.cxx diff --git a/src/IGESSolid/IGESSolid_ToolSolidAssembly.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSolidAssembly.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolSolidAssembly.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSolidAssembly.hxx diff --git a/src/IGESSolid/IGESSolid_ToolSolidInstance.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSolidInstance.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolSolidInstance.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSolidInstance.cxx diff --git a/src/IGESSolid/IGESSolid_ToolSolidInstance.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSolidInstance.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolSolidInstance.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSolidInstance.hxx diff --git a/src/IGESSolid/IGESSolid_ToolSolidOfLinearExtrusion.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSolidOfLinearExtrusion.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolSolidOfLinearExtrusion.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSolidOfLinearExtrusion.cxx diff --git a/src/IGESSolid/IGESSolid_ToolSolidOfLinearExtrusion.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSolidOfLinearExtrusion.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolSolidOfLinearExtrusion.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSolidOfLinearExtrusion.hxx diff --git a/src/IGESSolid/IGESSolid_ToolSolidOfRevolution.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSolidOfRevolution.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolSolidOfRevolution.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSolidOfRevolution.cxx diff --git a/src/IGESSolid/IGESSolid_ToolSolidOfRevolution.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSolidOfRevolution.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolSolidOfRevolution.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSolidOfRevolution.hxx diff --git a/src/IGESSolid/IGESSolid_ToolSphere.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSphere.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolSphere.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSphere.cxx diff --git a/src/IGESSolid/IGESSolid_ToolSphere.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSphere.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolSphere.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSphere.hxx diff --git a/src/IGESSolid/IGESSolid_ToolSphericalSurface.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSphericalSurface.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolSphericalSurface.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSphericalSurface.cxx diff --git a/src/IGESSolid/IGESSolid_ToolSphericalSurface.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSphericalSurface.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolSphericalSurface.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolSphericalSurface.hxx diff --git a/src/IGESSolid/IGESSolid_ToolToroidalSurface.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolToroidalSurface.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolToroidalSurface.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolToroidalSurface.cxx diff --git a/src/IGESSolid/IGESSolid_ToolToroidalSurface.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolToroidalSurface.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolToroidalSurface.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolToroidalSurface.hxx diff --git a/src/IGESSolid/IGESSolid_ToolTorus.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolTorus.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolTorus.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolTorus.cxx diff --git a/src/IGESSolid/IGESSolid_ToolTorus.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolTorus.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolTorus.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolTorus.hxx diff --git a/src/IGESSolid/IGESSolid_ToolVertexList.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolVertexList.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolVertexList.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolVertexList.cxx diff --git a/src/IGESSolid/IGESSolid_ToolVertexList.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolVertexList.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToolVertexList.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToolVertexList.hxx diff --git a/src/IGESSolid/IGESSolid_TopoBuilder.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_TopoBuilder.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_TopoBuilder.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_TopoBuilder.cxx diff --git a/src/IGESSolid/IGESSolid_TopoBuilder.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_TopoBuilder.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_TopoBuilder.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_TopoBuilder.hxx diff --git a/src/IGESSolid/IGESSolid_ToroidalSurface.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToroidalSurface.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToroidalSurface.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToroidalSurface.cxx diff --git a/src/IGESSolid/IGESSolid_ToroidalSurface.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToroidalSurface.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_ToroidalSurface.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_ToroidalSurface.hxx diff --git a/src/IGESSolid/IGESSolid_Torus.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Torus.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_Torus.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Torus.cxx diff --git a/src/IGESSolid/IGESSolid_Torus.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Torus.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_Torus.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_Torus.hxx diff --git a/src/IGESSolid/IGESSolid_VertexList.cxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_VertexList.cxx similarity index 100% rename from src/IGESSolid/IGESSolid_VertexList.cxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_VertexList.cxx diff --git a/src/IGESSolid/IGESSolid_VertexList.hxx b/src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_VertexList.hxx similarity index 100% rename from src/IGESSolid/IGESSolid_VertexList.hxx rename to src/DataExchange/TKDEIGES/IGESSolid/IGESSolid_VertexList.hxx diff --git a/src/DataExchange/TKDEIGES/IGESToBRep/FILES.cmake b/src/DataExchange/TKDEIGES/IGESToBRep/FILES.cmake new file mode 100644 index 0000000000..191fe96144 --- /dev/null +++ b/src/DataExchange/TKDEIGES/IGESToBRep/FILES.cmake @@ -0,0 +1,32 @@ +# Source files for IGESToBRep package +set(OCCT_IGESToBRep_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IGESToBRep_FILES + IGESToBRep.cxx + IGESToBRep.hxx + IGESToBRep_Actor.cxx + IGESToBRep_Actor.hxx + IGESToBRep_AlgoContainer.cxx + IGESToBRep_AlgoContainer.hxx + IGESToBRep_AlgoContainer.lxx + IGESToBRep_BasicCurve.cxx + IGESToBRep_BasicCurve.hxx + IGESToBRep_BasicSurface.cxx + IGESToBRep_BasicSurface.hxx + IGESToBRep_BRepEntity.cxx + IGESToBRep_BRepEntity.hxx + IGESToBRep_CurveAndSurface.cxx + IGESToBRep_CurveAndSurface.hxx + IGESToBRep_CurveAndSurface.lxx + IGESToBRep_IGESBoundary.cxx + IGESToBRep_IGESBoundary.hxx + IGESToBRep_IGESBoundary.lxx + IGESToBRep_Reader.cxx + IGESToBRep_Reader.hxx + IGESToBRep_ToolContainer.cxx + IGESToBRep_ToolContainer.hxx + IGESToBRep_TopoCurve.cxx + IGESToBRep_TopoCurve.hxx + IGESToBRep_TopoSurface.cxx + IGESToBRep_TopoSurface.hxx +) diff --git a/src/IGESToBRep/IGESToBRep.cxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep.cxx similarity index 100% rename from src/IGESToBRep/IGESToBRep.cxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep.cxx diff --git a/src/IGESToBRep/IGESToBRep.hxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep.hxx similarity index 100% rename from src/IGESToBRep/IGESToBRep.hxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep.hxx diff --git a/src/IGESToBRep/IGESToBRep_Actor.cxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_Actor.cxx similarity index 100% rename from src/IGESToBRep/IGESToBRep_Actor.cxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_Actor.cxx diff --git a/src/IGESToBRep/IGESToBRep_Actor.hxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_Actor.hxx similarity index 100% rename from src/IGESToBRep/IGESToBRep_Actor.hxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_Actor.hxx diff --git a/src/IGESToBRep/IGESToBRep_AlgoContainer.cxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_AlgoContainer.cxx similarity index 100% rename from src/IGESToBRep/IGESToBRep_AlgoContainer.cxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_AlgoContainer.cxx diff --git a/src/IGESToBRep/IGESToBRep_AlgoContainer.hxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_AlgoContainer.hxx similarity index 100% rename from src/IGESToBRep/IGESToBRep_AlgoContainer.hxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_AlgoContainer.hxx diff --git a/src/IGESToBRep/IGESToBRep_AlgoContainer.lxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_AlgoContainer.lxx similarity index 100% rename from src/IGESToBRep/IGESToBRep_AlgoContainer.lxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_AlgoContainer.lxx diff --git a/src/IGESToBRep/IGESToBRep_BRepEntity.cxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_BRepEntity.cxx similarity index 100% rename from src/IGESToBRep/IGESToBRep_BRepEntity.cxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_BRepEntity.cxx diff --git a/src/IGESToBRep/IGESToBRep_BRepEntity.hxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_BRepEntity.hxx similarity index 100% rename from src/IGESToBRep/IGESToBRep_BRepEntity.hxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_BRepEntity.hxx diff --git a/src/IGESToBRep/IGESToBRep_BasicCurve.cxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_BasicCurve.cxx similarity index 100% rename from src/IGESToBRep/IGESToBRep_BasicCurve.cxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_BasicCurve.cxx diff --git a/src/IGESToBRep/IGESToBRep_BasicCurve.hxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_BasicCurve.hxx similarity index 100% rename from src/IGESToBRep/IGESToBRep_BasicCurve.hxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_BasicCurve.hxx diff --git a/src/IGESToBRep/IGESToBRep_BasicSurface.cxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_BasicSurface.cxx similarity index 100% rename from src/IGESToBRep/IGESToBRep_BasicSurface.cxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_BasicSurface.cxx diff --git a/src/IGESToBRep/IGESToBRep_BasicSurface.hxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_BasicSurface.hxx similarity index 100% rename from src/IGESToBRep/IGESToBRep_BasicSurface.hxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_BasicSurface.hxx diff --git a/src/IGESToBRep/IGESToBRep_CurveAndSurface.cxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_CurveAndSurface.cxx similarity index 100% rename from src/IGESToBRep/IGESToBRep_CurveAndSurface.cxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_CurveAndSurface.cxx diff --git a/src/IGESToBRep/IGESToBRep_CurveAndSurface.hxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_CurveAndSurface.hxx similarity index 100% rename from src/IGESToBRep/IGESToBRep_CurveAndSurface.hxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_CurveAndSurface.hxx diff --git a/src/IGESToBRep/IGESToBRep_CurveAndSurface.lxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_CurveAndSurface.lxx similarity index 100% rename from src/IGESToBRep/IGESToBRep_CurveAndSurface.lxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_CurveAndSurface.lxx diff --git a/src/IGESToBRep/IGESToBRep_IGESBoundary.cxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_IGESBoundary.cxx similarity index 100% rename from src/IGESToBRep/IGESToBRep_IGESBoundary.cxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_IGESBoundary.cxx diff --git a/src/IGESToBRep/IGESToBRep_IGESBoundary.hxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_IGESBoundary.hxx similarity index 100% rename from src/IGESToBRep/IGESToBRep_IGESBoundary.hxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_IGESBoundary.hxx diff --git a/src/IGESToBRep/IGESToBRep_IGESBoundary.lxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_IGESBoundary.lxx similarity index 100% rename from src/IGESToBRep/IGESToBRep_IGESBoundary.lxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_IGESBoundary.lxx diff --git a/src/IGESToBRep/IGESToBRep_Reader.cxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_Reader.cxx similarity index 100% rename from src/IGESToBRep/IGESToBRep_Reader.cxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_Reader.cxx diff --git a/src/IGESToBRep/IGESToBRep_Reader.hxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_Reader.hxx similarity index 100% rename from src/IGESToBRep/IGESToBRep_Reader.hxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_Reader.hxx diff --git a/src/IGESToBRep/IGESToBRep_ToolContainer.cxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_ToolContainer.cxx similarity index 100% rename from src/IGESToBRep/IGESToBRep_ToolContainer.cxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_ToolContainer.cxx diff --git a/src/IGESToBRep/IGESToBRep_ToolContainer.hxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_ToolContainer.hxx similarity index 100% rename from src/IGESToBRep/IGESToBRep_ToolContainer.hxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_ToolContainer.hxx diff --git a/src/IGESToBRep/IGESToBRep_TopoCurve.cxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_TopoCurve.cxx similarity index 100% rename from src/IGESToBRep/IGESToBRep_TopoCurve.cxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_TopoCurve.cxx diff --git a/src/IGESToBRep/IGESToBRep_TopoCurve.hxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_TopoCurve.hxx similarity index 100% rename from src/IGESToBRep/IGESToBRep_TopoCurve.hxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_TopoCurve.hxx diff --git a/src/IGESToBRep/IGESToBRep_TopoSurface.cxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_TopoSurface.cxx similarity index 100% rename from src/IGESToBRep/IGESToBRep_TopoSurface.cxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_TopoSurface.cxx diff --git a/src/IGESToBRep/IGESToBRep_TopoSurface.hxx b/src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_TopoSurface.hxx similarity index 100% rename from src/IGESToBRep/IGESToBRep_TopoSurface.hxx rename to src/DataExchange/TKDEIGES/IGESToBRep/IGESToBRep_TopoSurface.hxx diff --git a/src/DataExchange/TKDEIGES/PACKAGES.cmake b/src/DataExchange/TKDEIGES/PACKAGES.cmake new file mode 100644 index 0000000000..1a7cd02db0 --- /dev/null +++ b/src/DataExchange/TKDEIGES/PACKAGES.cmake @@ -0,0 +1,23 @@ +# Auto-generated list of packages for TKDEIGES toolkit +set(OCCT_TKDEIGES_LIST_OF_PACKAGES + IGESCAFControl + IGESData + IGESFile + IGESBasic + IGESGraph + IGESGeom + IGESDimen + IGESDraw + IGESSolid + IGESDefs + IGESAppli + IGESConvGeom + IGESSelect + IGESToBRep + GeomToIGES + Geom2dToIGES + BRepToIGES + BRepToIGESBRep + IGESControl + DEIGES +) diff --git a/src/TKDEIGES/TKDEIGES_pch.hxx b/src/DataExchange/TKDEIGES/TKDEIGES_pch.hxx similarity index 100% rename from src/TKDEIGES/TKDEIGES_pch.hxx rename to src/DataExchange/TKDEIGES/TKDEIGES_pch.hxx diff --git a/src/TKDEOBJ/CMakeLists.txt b/src/DataExchange/TKDEOBJ/CMakeLists.txt similarity index 100% rename from src/TKDEOBJ/CMakeLists.txt rename to src/DataExchange/TKDEOBJ/CMakeLists.txt diff --git a/src/DEOBJ/DEOBJ_ConfigurationNode.cxx b/src/DataExchange/TKDEOBJ/DEOBJ/DEOBJ_ConfigurationNode.cxx similarity index 100% rename from src/DEOBJ/DEOBJ_ConfigurationNode.cxx rename to src/DataExchange/TKDEOBJ/DEOBJ/DEOBJ_ConfigurationNode.cxx diff --git a/src/DEOBJ/DEOBJ_ConfigurationNode.hxx b/src/DataExchange/TKDEOBJ/DEOBJ/DEOBJ_ConfigurationNode.hxx similarity index 100% rename from src/DEOBJ/DEOBJ_ConfigurationNode.hxx rename to src/DataExchange/TKDEOBJ/DEOBJ/DEOBJ_ConfigurationNode.hxx diff --git a/src/DEOBJ/DEOBJ_Provider.cxx b/src/DataExchange/TKDEOBJ/DEOBJ/DEOBJ_Provider.cxx similarity index 100% rename from src/DEOBJ/DEOBJ_Provider.cxx rename to src/DataExchange/TKDEOBJ/DEOBJ/DEOBJ_Provider.cxx diff --git a/src/DEOBJ/DEOBJ_Provider.hxx b/src/DataExchange/TKDEOBJ/DEOBJ/DEOBJ_Provider.hxx similarity index 100% rename from src/DEOBJ/DEOBJ_Provider.hxx rename to src/DataExchange/TKDEOBJ/DEOBJ/DEOBJ_Provider.hxx diff --git a/src/DataExchange/TKDEOBJ/DEOBJ/FILES.cmake b/src/DataExchange/TKDEOBJ/DEOBJ/FILES.cmake new file mode 100644 index 0000000000..21cfa0a3d6 --- /dev/null +++ b/src/DataExchange/TKDEOBJ/DEOBJ/FILES.cmake @@ -0,0 +1,9 @@ +# Source files for DEOBJ package +set(OCCT_DEOBJ_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_DEOBJ_FILES + DEOBJ_ConfigurationNode.cxx + DEOBJ_ConfigurationNode.hxx + DEOBJ_Provider.cxx + DEOBJ_Provider.hxx +) diff --git a/src/DataExchange/TKDEOBJ/EXTERNLIB.cmake b/src/DataExchange/TKDEOBJ/EXTERNLIB.cmake new file mode 100644 index 0000000000..ad05d8b468 --- /dev/null +++ b/src/DataExchange/TKDEOBJ/EXTERNLIB.cmake @@ -0,0 +1,15 @@ +# External dependencies for TKDEOBJ +set(OCCT_TKDEOBJ_EXTERNAL_LIBS + TKernel + TKMath + TKMesh + TKXCAF + TKLCAF + TKV3d + TKBRep + TKG3d + TKDE + TKService + TKRWMesh + CSF_RapidJSON +) diff --git a/src/DataExchange/TKDEOBJ/FILES.cmake b/src/DataExchange/TKDEOBJ/FILES.cmake new file mode 100644 index 0000000000..22c8cbb208 --- /dev/null +++ b/src/DataExchange/TKDEOBJ/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKDEOBJ +set(OCCT_TKDEOBJ_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKDEOBJ_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/DataExchange/TKDEOBJ/PACKAGES.cmake b/src/DataExchange/TKDEOBJ/PACKAGES.cmake new file mode 100644 index 0000000000..6827b44e54 --- /dev/null +++ b/src/DataExchange/TKDEOBJ/PACKAGES.cmake @@ -0,0 +1,5 @@ +# Auto-generated list of packages for TKDEOBJ toolkit +set(OCCT_TKDEOBJ_LIST_OF_PACKAGES + RWObj + DEOBJ +) diff --git a/src/DataExchange/TKDEOBJ/RWObj/FILES.cmake b/src/DataExchange/TKDEOBJ/RWObj/FILES.cmake new file mode 100644 index 0000000000..e225ae00af --- /dev/null +++ b/src/DataExchange/TKDEOBJ/RWObj/FILES.cmake @@ -0,0 +1,27 @@ +# Source files for RWObj package +set(OCCT_RWObj_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_RWObj_FILES + RWObj.cxx + RWObj.hxx + RWObj_CafReader.cxx + RWObj_CafReader.hxx + RWObj_CafWriter.cxx + RWObj_CafWriter.hxx + RWObj_ConfigurationNode.hxx + RWObj_Material.hxx + RWObj_MtlReader.cxx + RWObj_MtlReader.hxx + RWObj_ObjMaterialMap.cxx + RWObj_ObjMaterialMap.hxx + RWObj_ObjWriterContext.cxx + RWObj_ObjWriterContext.hxx + RWObj_Provider.hxx + RWObj_Reader.cxx + RWObj_Reader.hxx + RWObj_SubMesh.hxx + RWObj_SubMeshReason.hxx + RWObj_Tools.hxx + RWObj_TriangulationReader.cxx + RWObj_TriangulationReader.hxx +) diff --git a/src/RWObj/RWObj.cxx b/src/DataExchange/TKDEOBJ/RWObj/RWObj.cxx similarity index 100% rename from src/RWObj/RWObj.cxx rename to src/DataExchange/TKDEOBJ/RWObj/RWObj.cxx diff --git a/src/RWObj/RWObj.hxx b/src/DataExchange/TKDEOBJ/RWObj/RWObj.hxx similarity index 100% rename from src/RWObj/RWObj.hxx rename to src/DataExchange/TKDEOBJ/RWObj/RWObj.hxx diff --git a/src/RWObj/RWObj_CafReader.cxx b/src/DataExchange/TKDEOBJ/RWObj/RWObj_CafReader.cxx similarity index 100% rename from src/RWObj/RWObj_CafReader.cxx rename to src/DataExchange/TKDEOBJ/RWObj/RWObj_CafReader.cxx diff --git a/src/RWObj/RWObj_CafReader.hxx b/src/DataExchange/TKDEOBJ/RWObj/RWObj_CafReader.hxx similarity index 100% rename from src/RWObj/RWObj_CafReader.hxx rename to src/DataExchange/TKDEOBJ/RWObj/RWObj_CafReader.hxx diff --git a/src/RWObj/RWObj_CafWriter.cxx b/src/DataExchange/TKDEOBJ/RWObj/RWObj_CafWriter.cxx similarity index 100% rename from src/RWObj/RWObj_CafWriter.cxx rename to src/DataExchange/TKDEOBJ/RWObj/RWObj_CafWriter.cxx diff --git a/src/RWObj/RWObj_CafWriter.hxx b/src/DataExchange/TKDEOBJ/RWObj/RWObj_CafWriter.hxx similarity index 100% rename from src/RWObj/RWObj_CafWriter.hxx rename to src/DataExchange/TKDEOBJ/RWObj/RWObj_CafWriter.hxx diff --git a/src/RWObj/RWObj_ConfigurationNode.hxx b/src/DataExchange/TKDEOBJ/RWObj/RWObj_ConfigurationNode.hxx similarity index 100% rename from src/RWObj/RWObj_ConfigurationNode.hxx rename to src/DataExchange/TKDEOBJ/RWObj/RWObj_ConfigurationNode.hxx diff --git a/src/RWObj/RWObj_Material.hxx b/src/DataExchange/TKDEOBJ/RWObj/RWObj_Material.hxx similarity index 100% rename from src/RWObj/RWObj_Material.hxx rename to src/DataExchange/TKDEOBJ/RWObj/RWObj_Material.hxx diff --git a/src/RWObj/RWObj_MtlReader.cxx b/src/DataExchange/TKDEOBJ/RWObj/RWObj_MtlReader.cxx similarity index 100% rename from src/RWObj/RWObj_MtlReader.cxx rename to src/DataExchange/TKDEOBJ/RWObj/RWObj_MtlReader.cxx diff --git a/src/RWObj/RWObj_MtlReader.hxx b/src/DataExchange/TKDEOBJ/RWObj/RWObj_MtlReader.hxx similarity index 100% rename from src/RWObj/RWObj_MtlReader.hxx rename to src/DataExchange/TKDEOBJ/RWObj/RWObj_MtlReader.hxx diff --git a/src/RWObj/RWObj_ObjMaterialMap.cxx b/src/DataExchange/TKDEOBJ/RWObj/RWObj_ObjMaterialMap.cxx similarity index 100% rename from src/RWObj/RWObj_ObjMaterialMap.cxx rename to src/DataExchange/TKDEOBJ/RWObj/RWObj_ObjMaterialMap.cxx diff --git a/src/RWObj/RWObj_ObjMaterialMap.hxx b/src/DataExchange/TKDEOBJ/RWObj/RWObj_ObjMaterialMap.hxx similarity index 100% rename from src/RWObj/RWObj_ObjMaterialMap.hxx rename to src/DataExchange/TKDEOBJ/RWObj/RWObj_ObjMaterialMap.hxx diff --git a/src/RWObj/RWObj_ObjWriterContext.cxx b/src/DataExchange/TKDEOBJ/RWObj/RWObj_ObjWriterContext.cxx similarity index 100% rename from src/RWObj/RWObj_ObjWriterContext.cxx rename to src/DataExchange/TKDEOBJ/RWObj/RWObj_ObjWriterContext.cxx diff --git a/src/RWObj/RWObj_ObjWriterContext.hxx b/src/DataExchange/TKDEOBJ/RWObj/RWObj_ObjWriterContext.hxx similarity index 100% rename from src/RWObj/RWObj_ObjWriterContext.hxx rename to src/DataExchange/TKDEOBJ/RWObj/RWObj_ObjWriterContext.hxx diff --git a/src/RWObj/RWObj_Provider.hxx b/src/DataExchange/TKDEOBJ/RWObj/RWObj_Provider.hxx similarity index 100% rename from src/RWObj/RWObj_Provider.hxx rename to src/DataExchange/TKDEOBJ/RWObj/RWObj_Provider.hxx diff --git a/src/RWObj/RWObj_Reader.cxx b/src/DataExchange/TKDEOBJ/RWObj/RWObj_Reader.cxx similarity index 100% rename from src/RWObj/RWObj_Reader.cxx rename to src/DataExchange/TKDEOBJ/RWObj/RWObj_Reader.cxx diff --git a/src/RWObj/RWObj_Reader.hxx b/src/DataExchange/TKDEOBJ/RWObj/RWObj_Reader.hxx similarity index 100% rename from src/RWObj/RWObj_Reader.hxx rename to src/DataExchange/TKDEOBJ/RWObj/RWObj_Reader.hxx diff --git a/src/RWObj/RWObj_SubMesh.hxx b/src/DataExchange/TKDEOBJ/RWObj/RWObj_SubMesh.hxx similarity index 100% rename from src/RWObj/RWObj_SubMesh.hxx rename to src/DataExchange/TKDEOBJ/RWObj/RWObj_SubMesh.hxx diff --git a/src/RWObj/RWObj_SubMeshReason.hxx b/src/DataExchange/TKDEOBJ/RWObj/RWObj_SubMeshReason.hxx similarity index 100% rename from src/RWObj/RWObj_SubMeshReason.hxx rename to src/DataExchange/TKDEOBJ/RWObj/RWObj_SubMeshReason.hxx diff --git a/src/RWObj/RWObj_Tools.hxx b/src/DataExchange/TKDEOBJ/RWObj/RWObj_Tools.hxx similarity index 100% rename from src/RWObj/RWObj_Tools.hxx rename to src/DataExchange/TKDEOBJ/RWObj/RWObj_Tools.hxx diff --git a/src/RWObj/RWObj_TriangulationReader.cxx b/src/DataExchange/TKDEOBJ/RWObj/RWObj_TriangulationReader.cxx similarity index 100% rename from src/RWObj/RWObj_TriangulationReader.cxx rename to src/DataExchange/TKDEOBJ/RWObj/RWObj_TriangulationReader.cxx diff --git a/src/RWObj/RWObj_TriangulationReader.hxx b/src/DataExchange/TKDEOBJ/RWObj/RWObj_TriangulationReader.hxx similarity index 100% rename from src/RWObj/RWObj_TriangulationReader.hxx rename to src/DataExchange/TKDEOBJ/RWObj/RWObj_TriangulationReader.hxx diff --git a/src/TKDEPLY/CMakeLists.txt b/src/DataExchange/TKDEPLY/CMakeLists.txt similarity index 100% rename from src/TKDEPLY/CMakeLists.txt rename to src/DataExchange/TKDEPLY/CMakeLists.txt diff --git a/src/DEPLY/DEPLY_ConfigurationNode.cxx b/src/DataExchange/TKDEPLY/DEPLY/DEPLY_ConfigurationNode.cxx similarity index 100% rename from src/DEPLY/DEPLY_ConfigurationNode.cxx rename to src/DataExchange/TKDEPLY/DEPLY/DEPLY_ConfigurationNode.cxx diff --git a/src/DEPLY/DEPLY_ConfigurationNode.hxx b/src/DataExchange/TKDEPLY/DEPLY/DEPLY_ConfigurationNode.hxx similarity index 100% rename from src/DEPLY/DEPLY_ConfigurationNode.hxx rename to src/DataExchange/TKDEPLY/DEPLY/DEPLY_ConfigurationNode.hxx diff --git a/src/DEPLY/DEPLY_Provider.cxx b/src/DataExchange/TKDEPLY/DEPLY/DEPLY_Provider.cxx similarity index 100% rename from src/DEPLY/DEPLY_Provider.cxx rename to src/DataExchange/TKDEPLY/DEPLY/DEPLY_Provider.cxx diff --git a/src/DEPLY/DEPLY_Provider.hxx b/src/DataExchange/TKDEPLY/DEPLY/DEPLY_Provider.hxx similarity index 100% rename from src/DEPLY/DEPLY_Provider.hxx rename to src/DataExchange/TKDEPLY/DEPLY/DEPLY_Provider.hxx diff --git a/src/DataExchange/TKDEPLY/DEPLY/FILES.cmake b/src/DataExchange/TKDEPLY/DEPLY/FILES.cmake new file mode 100644 index 0000000000..d2b23748cd --- /dev/null +++ b/src/DataExchange/TKDEPLY/DEPLY/FILES.cmake @@ -0,0 +1,9 @@ +# Source files for DEPLY package +set(OCCT_DEPLY_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_DEPLY_FILES + DEPLY_ConfigurationNode.cxx + DEPLY_ConfigurationNode.hxx + DEPLY_Provider.cxx + DEPLY_Provider.hxx +) diff --git a/src/DataExchange/TKDEPLY/EXTERNLIB.cmake b/src/DataExchange/TKDEPLY/EXTERNLIB.cmake new file mode 100644 index 0000000000..ba437ad4d5 --- /dev/null +++ b/src/DataExchange/TKDEPLY/EXTERNLIB.cmake @@ -0,0 +1,15 @@ +# External dependencies for TKDEPLY +set(OCCT_TKDEPLY_EXTERNAL_LIBS + TKernel + TKMath + TKMesh + TKXCAF + TKLCAF + TKV3d + TKBRep + TKG3d + TKDE + TKService + TKRWMesh + CSF_RapidJSON +) diff --git a/src/DataExchange/TKDEPLY/FILES.cmake b/src/DataExchange/TKDEPLY/FILES.cmake new file mode 100644 index 0000000000..eb1dcc6d48 --- /dev/null +++ b/src/DataExchange/TKDEPLY/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKDEPLY +set(OCCT_TKDEPLY_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKDEPLY_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/DataExchange/TKDEPLY/PACKAGES.cmake b/src/DataExchange/TKDEPLY/PACKAGES.cmake new file mode 100644 index 0000000000..98afb9cc31 --- /dev/null +++ b/src/DataExchange/TKDEPLY/PACKAGES.cmake @@ -0,0 +1,5 @@ +# Auto-generated list of packages for TKDEPLY toolkit +set(OCCT_TKDEPLY_LIST_OF_PACKAGES + RWPly + DEPLY +) diff --git a/src/DataExchange/TKDEPLY/RWPly/FILES.cmake b/src/DataExchange/TKDEPLY/RWPly/FILES.cmake new file mode 100644 index 0000000000..c3207a3630 --- /dev/null +++ b/src/DataExchange/TKDEPLY/RWPly/FILES.cmake @@ -0,0 +1,11 @@ +# Source files for RWPly package +set(OCCT_RWPly_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_RWPly_FILES + RWPly_CafWriter.cxx + RWPly_CafWriter.hxx + RWPly_ConfigurationNode.hxx + RWPly_PlyWriterContext.cxx + RWPly_PlyWriterContext.hxx + RWPly_Provider.hxx +) diff --git a/src/RWPly/RWPly_CafWriter.cxx b/src/DataExchange/TKDEPLY/RWPly/RWPly_CafWriter.cxx similarity index 100% rename from src/RWPly/RWPly_CafWriter.cxx rename to src/DataExchange/TKDEPLY/RWPly/RWPly_CafWriter.cxx diff --git a/src/RWPly/RWPly_CafWriter.hxx b/src/DataExchange/TKDEPLY/RWPly/RWPly_CafWriter.hxx similarity index 100% rename from src/RWPly/RWPly_CafWriter.hxx rename to src/DataExchange/TKDEPLY/RWPly/RWPly_CafWriter.hxx diff --git a/src/RWPly/RWPly_ConfigurationNode.hxx b/src/DataExchange/TKDEPLY/RWPly/RWPly_ConfigurationNode.hxx similarity index 100% rename from src/RWPly/RWPly_ConfigurationNode.hxx rename to src/DataExchange/TKDEPLY/RWPly/RWPly_ConfigurationNode.hxx diff --git a/src/RWPly/RWPly_PlyWriterContext.cxx b/src/DataExchange/TKDEPLY/RWPly/RWPly_PlyWriterContext.cxx similarity index 100% rename from src/RWPly/RWPly_PlyWriterContext.cxx rename to src/DataExchange/TKDEPLY/RWPly/RWPly_PlyWriterContext.cxx diff --git a/src/RWPly/RWPly_PlyWriterContext.hxx b/src/DataExchange/TKDEPLY/RWPly/RWPly_PlyWriterContext.hxx similarity index 100% rename from src/RWPly/RWPly_PlyWriterContext.hxx rename to src/DataExchange/TKDEPLY/RWPly/RWPly_PlyWriterContext.hxx diff --git a/src/RWPly/RWPly_Provider.hxx b/src/DataExchange/TKDEPLY/RWPly/RWPly_Provider.hxx similarity index 100% rename from src/RWPly/RWPly_Provider.hxx rename to src/DataExchange/TKDEPLY/RWPly/RWPly_Provider.hxx diff --git a/src/APIHeaderSection/APIHeaderSection_EditHeader.cxx b/src/DataExchange/TKDESTEP/APIHeaderSection/APIHeaderSection_EditHeader.cxx similarity index 100% rename from src/APIHeaderSection/APIHeaderSection_EditHeader.cxx rename to src/DataExchange/TKDESTEP/APIHeaderSection/APIHeaderSection_EditHeader.cxx diff --git a/src/APIHeaderSection/APIHeaderSection_EditHeader.hxx b/src/DataExchange/TKDESTEP/APIHeaderSection/APIHeaderSection_EditHeader.hxx similarity index 100% rename from src/APIHeaderSection/APIHeaderSection_EditHeader.hxx rename to src/DataExchange/TKDESTEP/APIHeaderSection/APIHeaderSection_EditHeader.hxx diff --git a/src/APIHeaderSection/APIHeaderSection_MakeHeader.cxx b/src/DataExchange/TKDESTEP/APIHeaderSection/APIHeaderSection_MakeHeader.cxx similarity index 100% rename from src/APIHeaderSection/APIHeaderSection_MakeHeader.cxx rename to src/DataExchange/TKDESTEP/APIHeaderSection/APIHeaderSection_MakeHeader.cxx diff --git a/src/APIHeaderSection/APIHeaderSection_MakeHeader.hxx b/src/DataExchange/TKDESTEP/APIHeaderSection/APIHeaderSection_MakeHeader.hxx similarity index 100% rename from src/APIHeaderSection/APIHeaderSection_MakeHeader.hxx rename to src/DataExchange/TKDESTEP/APIHeaderSection/APIHeaderSection_MakeHeader.hxx diff --git a/src/DataExchange/TKDESTEP/APIHeaderSection/FILES.cmake b/src/DataExchange/TKDESTEP/APIHeaderSection/FILES.cmake new file mode 100644 index 0000000000..ba294bb843 --- /dev/null +++ b/src/DataExchange/TKDESTEP/APIHeaderSection/FILES.cmake @@ -0,0 +1,9 @@ +# Source files for APIHeaderSection package +set(OCCT_APIHeaderSection_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_APIHeaderSection_FILES + APIHeaderSection_EditHeader.cxx + APIHeaderSection_EditHeader.hxx + APIHeaderSection_MakeHeader.cxx + APIHeaderSection_MakeHeader.hxx +) diff --git a/src/TKDESTEP/CMakeLists.txt b/src/DataExchange/TKDESTEP/CMakeLists.txt similarity index 100% rename from src/TKDESTEP/CMakeLists.txt rename to src/DataExchange/TKDESTEP/CMakeLists.txt diff --git a/src/DESTEP/DESTEP_ConfigurationNode.cxx b/src/DataExchange/TKDESTEP/DESTEP/DESTEP_ConfigurationNode.cxx similarity index 100% rename from src/DESTEP/DESTEP_ConfigurationNode.cxx rename to src/DataExchange/TKDESTEP/DESTEP/DESTEP_ConfigurationNode.cxx diff --git a/src/DESTEP/DESTEP_ConfigurationNode.hxx b/src/DataExchange/TKDESTEP/DESTEP/DESTEP_ConfigurationNode.hxx similarity index 100% rename from src/DESTEP/DESTEP_ConfigurationNode.hxx rename to src/DataExchange/TKDESTEP/DESTEP/DESTEP_ConfigurationNode.hxx diff --git a/src/DESTEP/DESTEP_Parameters.cxx b/src/DataExchange/TKDESTEP/DESTEP/DESTEP_Parameters.cxx similarity index 100% rename from src/DESTEP/DESTEP_Parameters.cxx rename to src/DataExchange/TKDESTEP/DESTEP/DESTEP_Parameters.cxx diff --git a/src/DESTEP/DESTEP_Parameters.hxx b/src/DataExchange/TKDESTEP/DESTEP/DESTEP_Parameters.hxx similarity index 100% rename from src/DESTEP/DESTEP_Parameters.hxx rename to src/DataExchange/TKDESTEP/DESTEP/DESTEP_Parameters.hxx diff --git a/src/DESTEP/DESTEP_Provider.cxx b/src/DataExchange/TKDESTEP/DESTEP/DESTEP_Provider.cxx similarity index 100% rename from src/DESTEP/DESTEP_Provider.cxx rename to src/DataExchange/TKDESTEP/DESTEP/DESTEP_Provider.cxx diff --git a/src/DESTEP/DESTEP_Provider.hxx b/src/DataExchange/TKDESTEP/DESTEP/DESTEP_Provider.hxx similarity index 100% rename from src/DESTEP/DESTEP_Provider.hxx rename to src/DataExchange/TKDESTEP/DESTEP/DESTEP_Provider.hxx diff --git a/src/DataExchange/TKDESTEP/DESTEP/FILES.cmake b/src/DataExchange/TKDESTEP/DESTEP/FILES.cmake new file mode 100644 index 0000000000..f923c6e8b6 --- /dev/null +++ b/src/DataExchange/TKDESTEP/DESTEP/FILES.cmake @@ -0,0 +1,11 @@ +# Source files for DESTEP package +set(OCCT_DESTEP_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_DESTEP_FILES + DESTEP_ConfigurationNode.cxx + DESTEP_ConfigurationNode.hxx + DESTEP_Parameters.cxx + DESTEP_Parameters.hxx + DESTEP_Provider.cxx + DESTEP_Provider.hxx +) diff --git a/src/DataExchange/TKDESTEP/EXTERNLIB.cmake b/src/DataExchange/TKDESTEP/EXTERNLIB.cmake new file mode 100644 index 0000000000..c51e8917d3 --- /dev/null +++ b/src/DataExchange/TKDESTEP/EXTERNLIB.cmake @@ -0,0 +1,26 @@ +# External dependencies for TKDESTEP +set(OCCT_TKDESTEP_EXTERNAL_LIBS + TKDE + TKBRep + TKernel + TKMath + TKXSBase + TKTopAlgo + TKG2d + TKCAF + TKCDF + TKLCAF + TKG3d + TKXCAF + TKShHealing + TKernel + TKBRep + TKMath + TKG2d + TKShHealing + TKTopAlgo + TKG3d + TKGeomBase + TKGeomAlgo + TKXSBase +) diff --git a/src/DataExchange/TKDESTEP/FILES.cmake b/src/DataExchange/TKDESTEP/FILES.cmake new file mode 100644 index 0000000000..a71352d0b4 --- /dev/null +++ b/src/DataExchange/TKDESTEP/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKDESTEP +set(OCCT_TKDESTEP_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKDESTEP_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/DataExchange/TKDESTEP/GeomToStep/FILES.cmake b/src/DataExchange/TKDESTEP/GeomToStep/FILES.cmake new file mode 100644 index 0000000000..69ec1b200f --- /dev/null +++ b/src/DataExchange/TKDESTEP/GeomToStep/FILES.cmake @@ -0,0 +1,77 @@ +# Source files for GeomToStep package +set(OCCT_GeomToStep_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_GeomToStep_FILES + GeomToStep_MakeAxis1Placement.cxx + GeomToStep_MakeAxis1Placement.hxx + GeomToStep_MakeAxis1Placement_gen.pxx + GeomToStep_MakeAxis2Placement2d.cxx + GeomToStep_MakeAxis2Placement2d.hxx + GeomToStep_MakeAxis2Placement3d.cxx + GeomToStep_MakeAxis2Placement3d.hxx + GeomToStep_MakeBoundedCurve.cxx + GeomToStep_MakeBoundedCurve.hxx + GeomToStep_MakeBoundedSurface.cxx + GeomToStep_MakeBoundedSurface.hxx + GeomToStep_MakeBSplineCurveWithKnots.cxx + GeomToStep_MakeBSplineCurveWithKnots.hxx + GeomToStep_MakeBSplineCurveWithKnots_gen.pxx + GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve.cxx + GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve.hxx + GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve_gen.pxx + GeomToStep_MakeBSplineSurfaceWithKnots.cxx + GeomToStep_MakeBSplineSurfaceWithKnots.hxx + GeomToStep_MakeBSplineSurfaceWithKnotsAndRationalBSplineSurface.cxx + GeomToStep_MakeBSplineSurfaceWithKnotsAndRationalBSplineSurface.hxx + GeomToStep_MakeCartesianPoint.cxx + GeomToStep_MakeCartesianPoint.hxx + GeomToStep_MakeCircle.cxx + GeomToStep_MakeCircle.hxx + GeomToStep_MakeCircle_gen.pxx + GeomToStep_MakeConic.cxx + GeomToStep_MakeConic.hxx + GeomToStep_MakeConicalSurface.cxx + GeomToStep_MakeConicalSurface.hxx + GeomToStep_MakeCurve.cxx + GeomToStep_MakeCurve.hxx + GeomToStep_MakeCylindricalSurface.cxx + GeomToStep_MakeCylindricalSurface.hxx + GeomToStep_MakeDirection.cxx + GeomToStep_MakeDirection.hxx + GeomToStep_MakeElementarySurface.cxx + GeomToStep_MakeElementarySurface.hxx + GeomToStep_MakeEllipse.cxx + GeomToStep_MakeEllipse.hxx + GeomToStep_MakeEllipse_gen.pxx + GeomToStep_MakeHyperbola.cxx + GeomToStep_MakeHyperbola.hxx + GeomToStep_MakeLine.cxx + GeomToStep_MakeLine.hxx + GeomToStep_MakeLine_gen.pxx + GeomToStep_MakeParabola.cxx + GeomToStep_MakeParabola.hxx + GeomToStep_MakePlane.cxx + GeomToStep_MakePlane.hxx + GeomToStep_MakePolyline.cxx + GeomToStep_MakePolyline.hxx + GeomToStep_MakePolyline_gen.pxx + GeomToStep_MakeRectangularTrimmedSurface.cxx + GeomToStep_MakeRectangularTrimmedSurface.hxx + GeomToStep_MakeSphericalSurface.cxx + GeomToStep_MakeSphericalSurface.hxx + GeomToStep_MakeSurface.cxx + GeomToStep_MakeSurface.hxx + GeomToStep_MakeSurfaceOfLinearExtrusion.cxx + GeomToStep_MakeSurfaceOfLinearExtrusion.hxx + GeomToStep_MakeSurfaceOfRevolution.cxx + GeomToStep_MakeSurfaceOfRevolution.hxx + GeomToStep_MakeSweptSurface.cxx + GeomToStep_MakeSweptSurface.hxx + GeomToStep_MakeToroidalSurface.cxx + GeomToStep_MakeToroidalSurface.hxx + GeomToStep_MakeVector.cxx + GeomToStep_MakeVector.hxx + GeomToStep_MakeVector_gen.pxx + GeomToStep_Root.cxx + GeomToStep_Root.hxx +) diff --git a/src/GeomToStep/GeomToStep_MakeAxis1Placement.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeAxis1Placement.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeAxis1Placement.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeAxis1Placement.cxx diff --git a/src/GeomToStep/GeomToStep_MakeAxis1Placement.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeAxis1Placement.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeAxis1Placement.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeAxis1Placement.hxx diff --git a/src/GeomToStep/GeomToStep_MakeAxis1Placement_gen.pxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeAxis1Placement_gen.pxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeAxis1Placement_gen.pxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeAxis1Placement_gen.pxx diff --git a/src/GeomToStep/GeomToStep_MakeAxis2Placement2d.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeAxis2Placement2d.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeAxis2Placement2d.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeAxis2Placement2d.cxx diff --git a/src/GeomToStep/GeomToStep_MakeAxis2Placement2d.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeAxis2Placement2d.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeAxis2Placement2d.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeAxis2Placement2d.hxx diff --git a/src/GeomToStep/GeomToStep_MakeAxis2Placement3d.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeAxis2Placement3d.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeAxis2Placement3d.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeAxis2Placement3d.cxx diff --git a/src/GeomToStep/GeomToStep_MakeAxis2Placement3d.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeAxis2Placement3d.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeAxis2Placement3d.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeAxis2Placement3d.hxx diff --git a/src/GeomToStep/GeomToStep_MakeBSplineCurveWithKnots.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBSplineCurveWithKnots.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeBSplineCurveWithKnots.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBSplineCurveWithKnots.cxx diff --git a/src/GeomToStep/GeomToStep_MakeBSplineCurveWithKnots.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBSplineCurveWithKnots.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeBSplineCurveWithKnots.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBSplineCurveWithKnots.hxx diff --git a/src/GeomToStep/GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve.cxx diff --git a/src/GeomToStep/GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve.hxx diff --git a/src/GeomToStep/GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve_gen.pxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve_gen.pxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve_gen.pxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve_gen.pxx diff --git a/src/GeomToStep/GeomToStep_MakeBSplineCurveWithKnots_gen.pxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBSplineCurveWithKnots_gen.pxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeBSplineCurveWithKnots_gen.pxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBSplineCurveWithKnots_gen.pxx diff --git a/src/GeomToStep/GeomToStep_MakeBSplineSurfaceWithKnots.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBSplineSurfaceWithKnots.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeBSplineSurfaceWithKnots.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBSplineSurfaceWithKnots.cxx diff --git a/src/GeomToStep/GeomToStep_MakeBSplineSurfaceWithKnots.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBSplineSurfaceWithKnots.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeBSplineSurfaceWithKnots.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBSplineSurfaceWithKnots.hxx diff --git a/src/GeomToStep/GeomToStep_MakeBSplineSurfaceWithKnotsAndRationalBSplineSurface.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBSplineSurfaceWithKnotsAndRationalBSplineSurface.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeBSplineSurfaceWithKnotsAndRationalBSplineSurface.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBSplineSurfaceWithKnotsAndRationalBSplineSurface.cxx diff --git a/src/GeomToStep/GeomToStep_MakeBSplineSurfaceWithKnotsAndRationalBSplineSurface.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBSplineSurfaceWithKnotsAndRationalBSplineSurface.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeBSplineSurfaceWithKnotsAndRationalBSplineSurface.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBSplineSurfaceWithKnotsAndRationalBSplineSurface.hxx diff --git a/src/GeomToStep/GeomToStep_MakeBoundedCurve.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBoundedCurve.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeBoundedCurve.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBoundedCurve.cxx diff --git a/src/GeomToStep/GeomToStep_MakeBoundedCurve.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBoundedCurve.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeBoundedCurve.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBoundedCurve.hxx diff --git a/src/GeomToStep/GeomToStep_MakeBoundedSurface.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBoundedSurface.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeBoundedSurface.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBoundedSurface.cxx diff --git a/src/GeomToStep/GeomToStep_MakeBoundedSurface.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBoundedSurface.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeBoundedSurface.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeBoundedSurface.hxx diff --git a/src/GeomToStep/GeomToStep_MakeCartesianPoint.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeCartesianPoint.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeCartesianPoint.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeCartesianPoint.cxx diff --git a/src/GeomToStep/GeomToStep_MakeCartesianPoint.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeCartesianPoint.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeCartesianPoint.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeCartesianPoint.hxx diff --git a/src/GeomToStep/GeomToStep_MakeCircle.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeCircle.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeCircle.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeCircle.cxx diff --git a/src/GeomToStep/GeomToStep_MakeCircle.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeCircle.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeCircle.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeCircle.hxx diff --git a/src/GeomToStep/GeomToStep_MakeCircle_gen.pxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeCircle_gen.pxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeCircle_gen.pxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeCircle_gen.pxx diff --git a/src/GeomToStep/GeomToStep_MakeConic.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeConic.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeConic.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeConic.cxx diff --git a/src/GeomToStep/GeomToStep_MakeConic.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeConic.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeConic.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeConic.hxx diff --git a/src/GeomToStep/GeomToStep_MakeConicalSurface.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeConicalSurface.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeConicalSurface.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeConicalSurface.cxx diff --git a/src/GeomToStep/GeomToStep_MakeConicalSurface.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeConicalSurface.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeConicalSurface.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeConicalSurface.hxx diff --git a/src/GeomToStep/GeomToStep_MakeCurve.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeCurve.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeCurve.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeCurve.cxx diff --git a/src/GeomToStep/GeomToStep_MakeCurve.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeCurve.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeCurve.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeCurve.hxx diff --git a/src/GeomToStep/GeomToStep_MakeCylindricalSurface.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeCylindricalSurface.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeCylindricalSurface.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeCylindricalSurface.cxx diff --git a/src/GeomToStep/GeomToStep_MakeCylindricalSurface.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeCylindricalSurface.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeCylindricalSurface.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeCylindricalSurface.hxx diff --git a/src/GeomToStep/GeomToStep_MakeDirection.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeDirection.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeDirection.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeDirection.cxx diff --git a/src/GeomToStep/GeomToStep_MakeDirection.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeDirection.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeDirection.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeDirection.hxx diff --git a/src/GeomToStep/GeomToStep_MakeElementarySurface.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeElementarySurface.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeElementarySurface.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeElementarySurface.cxx diff --git a/src/GeomToStep/GeomToStep_MakeElementarySurface.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeElementarySurface.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeElementarySurface.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeElementarySurface.hxx diff --git a/src/GeomToStep/GeomToStep_MakeEllipse.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeEllipse.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeEllipse.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeEllipse.cxx diff --git a/src/GeomToStep/GeomToStep_MakeEllipse.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeEllipse.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeEllipse.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeEllipse.hxx diff --git a/src/GeomToStep/GeomToStep_MakeEllipse_gen.pxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeEllipse_gen.pxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeEllipse_gen.pxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeEllipse_gen.pxx diff --git a/src/GeomToStep/GeomToStep_MakeHyperbola.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeHyperbola.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeHyperbola.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeHyperbola.cxx diff --git a/src/GeomToStep/GeomToStep_MakeHyperbola.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeHyperbola.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeHyperbola.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeHyperbola.hxx diff --git a/src/GeomToStep/GeomToStep_MakeLine.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeLine.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeLine.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeLine.cxx diff --git a/src/GeomToStep/GeomToStep_MakeLine.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeLine.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeLine.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeLine.hxx diff --git a/src/GeomToStep/GeomToStep_MakeLine_gen.pxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeLine_gen.pxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeLine_gen.pxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeLine_gen.pxx diff --git a/src/GeomToStep/GeomToStep_MakeParabola.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeParabola.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeParabola.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeParabola.cxx diff --git a/src/GeomToStep/GeomToStep_MakeParabola.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeParabola.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeParabola.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeParabola.hxx diff --git a/src/GeomToStep/GeomToStep_MakePlane.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakePlane.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakePlane.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakePlane.cxx diff --git a/src/GeomToStep/GeomToStep_MakePlane.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakePlane.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakePlane.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakePlane.hxx diff --git a/src/GeomToStep/GeomToStep_MakePolyline.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakePolyline.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakePolyline.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakePolyline.cxx diff --git a/src/GeomToStep/GeomToStep_MakePolyline.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakePolyline.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakePolyline.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakePolyline.hxx diff --git a/src/GeomToStep/GeomToStep_MakePolyline_gen.pxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakePolyline_gen.pxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakePolyline_gen.pxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakePolyline_gen.pxx diff --git a/src/GeomToStep/GeomToStep_MakeRectangularTrimmedSurface.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeRectangularTrimmedSurface.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeRectangularTrimmedSurface.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeRectangularTrimmedSurface.cxx diff --git a/src/GeomToStep/GeomToStep_MakeRectangularTrimmedSurface.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeRectangularTrimmedSurface.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeRectangularTrimmedSurface.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeRectangularTrimmedSurface.hxx diff --git a/src/GeomToStep/GeomToStep_MakeSphericalSurface.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeSphericalSurface.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeSphericalSurface.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeSphericalSurface.cxx diff --git a/src/GeomToStep/GeomToStep_MakeSphericalSurface.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeSphericalSurface.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeSphericalSurface.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeSphericalSurface.hxx diff --git a/src/GeomToStep/GeomToStep_MakeSurface.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeSurface.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeSurface.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeSurface.cxx diff --git a/src/GeomToStep/GeomToStep_MakeSurface.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeSurface.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeSurface.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeSurface.hxx diff --git a/src/GeomToStep/GeomToStep_MakeSurfaceOfLinearExtrusion.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeSurfaceOfLinearExtrusion.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeSurfaceOfLinearExtrusion.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeSurfaceOfLinearExtrusion.cxx diff --git a/src/GeomToStep/GeomToStep_MakeSurfaceOfLinearExtrusion.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeSurfaceOfLinearExtrusion.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeSurfaceOfLinearExtrusion.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeSurfaceOfLinearExtrusion.hxx diff --git a/src/GeomToStep/GeomToStep_MakeSurfaceOfRevolution.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeSurfaceOfRevolution.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeSurfaceOfRevolution.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeSurfaceOfRevolution.cxx diff --git a/src/GeomToStep/GeomToStep_MakeSurfaceOfRevolution.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeSurfaceOfRevolution.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeSurfaceOfRevolution.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeSurfaceOfRevolution.hxx diff --git a/src/GeomToStep/GeomToStep_MakeSweptSurface.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeSweptSurface.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeSweptSurface.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeSweptSurface.cxx diff --git a/src/GeomToStep/GeomToStep_MakeSweptSurface.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeSweptSurface.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeSweptSurface.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeSweptSurface.hxx diff --git a/src/GeomToStep/GeomToStep_MakeToroidalSurface.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeToroidalSurface.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeToroidalSurface.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeToroidalSurface.cxx diff --git a/src/GeomToStep/GeomToStep_MakeToroidalSurface.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeToroidalSurface.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeToroidalSurface.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeToroidalSurface.hxx diff --git a/src/GeomToStep/GeomToStep_MakeVector.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeVector.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeVector.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeVector.cxx diff --git a/src/GeomToStep/GeomToStep_MakeVector.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeVector.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeVector.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeVector.hxx diff --git a/src/GeomToStep/GeomToStep_MakeVector_gen.pxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeVector_gen.pxx similarity index 100% rename from src/GeomToStep/GeomToStep_MakeVector_gen.pxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_MakeVector_gen.pxx diff --git a/src/GeomToStep/GeomToStep_Root.cxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_Root.cxx similarity index 100% rename from src/GeomToStep/GeomToStep_Root.cxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_Root.cxx diff --git a/src/GeomToStep/GeomToStep_Root.hxx b/src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_Root.hxx similarity index 100% rename from src/GeomToStep/GeomToStep_Root.hxx rename to src/DataExchange/TKDESTEP/GeomToStep/GeomToStep_Root.hxx diff --git a/src/DataExchange/TKDESTEP/HeaderSection/FILES.cmake b/src/DataExchange/TKDESTEP/HeaderSection/FILES.cmake new file mode 100644 index 0000000000..428e000f3a --- /dev/null +++ b/src/DataExchange/TKDESTEP/HeaderSection/FILES.cmake @@ -0,0 +1,15 @@ +# Source files for HeaderSection package +set(OCCT_HeaderSection_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_HeaderSection_FILES + HeaderSection.cxx + HeaderSection.hxx + HeaderSection_FileDescription.cxx + HeaderSection_FileDescription.hxx + HeaderSection_FileName.cxx + HeaderSection_FileName.hxx + HeaderSection_FileSchema.cxx + HeaderSection_FileSchema.hxx + HeaderSection_Protocol.cxx + HeaderSection_Protocol.hxx +) diff --git a/src/HeaderSection/HeaderSection.cxx b/src/DataExchange/TKDESTEP/HeaderSection/HeaderSection.cxx similarity index 100% rename from src/HeaderSection/HeaderSection.cxx rename to src/DataExchange/TKDESTEP/HeaderSection/HeaderSection.cxx diff --git a/src/HeaderSection/HeaderSection.hxx b/src/DataExchange/TKDESTEP/HeaderSection/HeaderSection.hxx similarity index 100% rename from src/HeaderSection/HeaderSection.hxx rename to src/DataExchange/TKDESTEP/HeaderSection/HeaderSection.hxx diff --git a/src/HeaderSection/HeaderSection_FileDescription.cxx b/src/DataExchange/TKDESTEP/HeaderSection/HeaderSection_FileDescription.cxx similarity index 100% rename from src/HeaderSection/HeaderSection_FileDescription.cxx rename to src/DataExchange/TKDESTEP/HeaderSection/HeaderSection_FileDescription.cxx diff --git a/src/HeaderSection/HeaderSection_FileDescription.hxx b/src/DataExchange/TKDESTEP/HeaderSection/HeaderSection_FileDescription.hxx similarity index 100% rename from src/HeaderSection/HeaderSection_FileDescription.hxx rename to src/DataExchange/TKDESTEP/HeaderSection/HeaderSection_FileDescription.hxx diff --git a/src/HeaderSection/HeaderSection_FileName.cxx b/src/DataExchange/TKDESTEP/HeaderSection/HeaderSection_FileName.cxx similarity index 100% rename from src/HeaderSection/HeaderSection_FileName.cxx rename to src/DataExchange/TKDESTEP/HeaderSection/HeaderSection_FileName.cxx diff --git a/src/HeaderSection/HeaderSection_FileName.hxx b/src/DataExchange/TKDESTEP/HeaderSection/HeaderSection_FileName.hxx similarity index 100% rename from src/HeaderSection/HeaderSection_FileName.hxx rename to src/DataExchange/TKDESTEP/HeaderSection/HeaderSection_FileName.hxx diff --git a/src/HeaderSection/HeaderSection_FileSchema.cxx b/src/DataExchange/TKDESTEP/HeaderSection/HeaderSection_FileSchema.cxx similarity index 100% rename from src/HeaderSection/HeaderSection_FileSchema.cxx rename to src/DataExchange/TKDESTEP/HeaderSection/HeaderSection_FileSchema.cxx diff --git a/src/HeaderSection/HeaderSection_FileSchema.hxx b/src/DataExchange/TKDESTEP/HeaderSection/HeaderSection_FileSchema.hxx similarity index 100% rename from src/HeaderSection/HeaderSection_FileSchema.hxx rename to src/DataExchange/TKDESTEP/HeaderSection/HeaderSection_FileSchema.hxx diff --git a/src/HeaderSection/HeaderSection_Protocol.cxx b/src/DataExchange/TKDESTEP/HeaderSection/HeaderSection_Protocol.cxx similarity index 100% rename from src/HeaderSection/HeaderSection_Protocol.cxx rename to src/DataExchange/TKDESTEP/HeaderSection/HeaderSection_Protocol.cxx diff --git a/src/HeaderSection/HeaderSection_Protocol.hxx b/src/DataExchange/TKDESTEP/HeaderSection/HeaderSection_Protocol.hxx similarity index 100% rename from src/HeaderSection/HeaderSection_Protocol.hxx rename to src/DataExchange/TKDESTEP/HeaderSection/HeaderSection_Protocol.hxx diff --git a/src/DataExchange/TKDESTEP/PACKAGES.cmake b/src/DataExchange/TKDESTEP/PACKAGES.cmake new file mode 100644 index 0000000000..1e4a82db2b --- /dev/null +++ b/src/DataExchange/TKDESTEP/PACKAGES.cmake @@ -0,0 +1,44 @@ +# Auto-generated list of packages for TKDESTEP toolkit +set(OCCT_TKDESTEP_LIST_OF_PACKAGES + STEPCAFControl + StepAP214 + RWStepAP214 + StepAP203 + RWStepAP203 + STEPConstruct + STEPEdit + GeomToStep + StepToGeom + StepToTopoDS + TopoDSToStep + STEPControl + STEPSelections + StepAP209 + RWStepAP242 + StepAP242 + StepElement + StepFEA + RWStepElement + RWStepFEA + StepVisual + RWStepVisual + StepDimTol + RWStepDimTol + StepKinematics + RWStepKinematics + StepBasic + RWStepBasic + StepRepr + RWStepRepr + StepGeom + RWStepGeom + StepShape + RWStepShape + StepSelect + StepData + StepFile + RWHeaderSection + APIHeaderSection + HeaderSection + DESTEP +) diff --git a/src/DataExchange/TKDESTEP/RWHeaderSection/FILES.cmake b/src/DataExchange/TKDESTEP/RWHeaderSection/FILES.cmake new file mode 100644 index 0000000000..15707b0770 --- /dev/null +++ b/src/DataExchange/TKDESTEP/RWHeaderSection/FILES.cmake @@ -0,0 +1,17 @@ +# Source files for RWHeaderSection package +set(OCCT_RWHeaderSection_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_RWHeaderSection_FILES + RWHeaderSection.cxx + RWHeaderSection.hxx + RWHeaderSection_GeneralModule.cxx + RWHeaderSection_GeneralModule.hxx + RWHeaderSection_ReadWriteModule.cxx + RWHeaderSection_ReadWriteModule.hxx + RWHeaderSection_RWFileDescription.cxx + RWHeaderSection_RWFileDescription.hxx + RWHeaderSection_RWFileName.cxx + RWHeaderSection_RWFileName.hxx + RWHeaderSection_RWFileSchema.cxx + RWHeaderSection_RWFileSchema.hxx +) diff --git a/src/RWHeaderSection/RWHeaderSection.cxx b/src/DataExchange/TKDESTEP/RWHeaderSection/RWHeaderSection.cxx similarity index 100% rename from src/RWHeaderSection/RWHeaderSection.cxx rename to src/DataExchange/TKDESTEP/RWHeaderSection/RWHeaderSection.cxx diff --git a/src/RWHeaderSection/RWHeaderSection.hxx b/src/DataExchange/TKDESTEP/RWHeaderSection/RWHeaderSection.hxx similarity index 100% rename from src/RWHeaderSection/RWHeaderSection.hxx rename to src/DataExchange/TKDESTEP/RWHeaderSection/RWHeaderSection.hxx diff --git a/src/RWHeaderSection/RWHeaderSection_GeneralModule.cxx b/src/DataExchange/TKDESTEP/RWHeaderSection/RWHeaderSection_GeneralModule.cxx similarity index 100% rename from src/RWHeaderSection/RWHeaderSection_GeneralModule.cxx rename to src/DataExchange/TKDESTEP/RWHeaderSection/RWHeaderSection_GeneralModule.cxx diff --git a/src/RWHeaderSection/RWHeaderSection_GeneralModule.hxx b/src/DataExchange/TKDESTEP/RWHeaderSection/RWHeaderSection_GeneralModule.hxx similarity index 100% rename from src/RWHeaderSection/RWHeaderSection_GeneralModule.hxx rename to src/DataExchange/TKDESTEP/RWHeaderSection/RWHeaderSection_GeneralModule.hxx diff --git a/src/RWHeaderSection/RWHeaderSection_RWFileDescription.cxx b/src/DataExchange/TKDESTEP/RWHeaderSection/RWHeaderSection_RWFileDescription.cxx similarity index 100% rename from src/RWHeaderSection/RWHeaderSection_RWFileDescription.cxx rename to src/DataExchange/TKDESTEP/RWHeaderSection/RWHeaderSection_RWFileDescription.cxx diff --git a/src/RWHeaderSection/RWHeaderSection_RWFileDescription.hxx b/src/DataExchange/TKDESTEP/RWHeaderSection/RWHeaderSection_RWFileDescription.hxx similarity index 100% rename from src/RWHeaderSection/RWHeaderSection_RWFileDescription.hxx rename to src/DataExchange/TKDESTEP/RWHeaderSection/RWHeaderSection_RWFileDescription.hxx diff --git a/src/RWHeaderSection/RWHeaderSection_RWFileName.cxx b/src/DataExchange/TKDESTEP/RWHeaderSection/RWHeaderSection_RWFileName.cxx similarity index 100% rename from src/RWHeaderSection/RWHeaderSection_RWFileName.cxx rename to src/DataExchange/TKDESTEP/RWHeaderSection/RWHeaderSection_RWFileName.cxx diff --git a/src/RWHeaderSection/RWHeaderSection_RWFileName.hxx b/src/DataExchange/TKDESTEP/RWHeaderSection/RWHeaderSection_RWFileName.hxx similarity index 100% rename from src/RWHeaderSection/RWHeaderSection_RWFileName.hxx rename to src/DataExchange/TKDESTEP/RWHeaderSection/RWHeaderSection_RWFileName.hxx diff --git a/src/RWHeaderSection/RWHeaderSection_RWFileSchema.cxx b/src/DataExchange/TKDESTEP/RWHeaderSection/RWHeaderSection_RWFileSchema.cxx similarity index 100% rename from src/RWHeaderSection/RWHeaderSection_RWFileSchema.cxx rename to src/DataExchange/TKDESTEP/RWHeaderSection/RWHeaderSection_RWFileSchema.cxx diff --git a/src/RWHeaderSection/RWHeaderSection_RWFileSchema.hxx b/src/DataExchange/TKDESTEP/RWHeaderSection/RWHeaderSection_RWFileSchema.hxx similarity index 100% rename from src/RWHeaderSection/RWHeaderSection_RWFileSchema.hxx rename to src/DataExchange/TKDESTEP/RWHeaderSection/RWHeaderSection_RWFileSchema.hxx diff --git a/src/RWHeaderSection/RWHeaderSection_ReadWriteModule.cxx b/src/DataExchange/TKDESTEP/RWHeaderSection/RWHeaderSection_ReadWriteModule.cxx similarity index 100% rename from src/RWHeaderSection/RWHeaderSection_ReadWriteModule.cxx rename to src/DataExchange/TKDESTEP/RWHeaderSection/RWHeaderSection_ReadWriteModule.cxx diff --git a/src/RWHeaderSection/RWHeaderSection_ReadWriteModule.hxx b/src/DataExchange/TKDESTEP/RWHeaderSection/RWHeaderSection_ReadWriteModule.hxx similarity index 100% rename from src/RWHeaderSection/RWHeaderSection_ReadWriteModule.hxx rename to src/DataExchange/TKDESTEP/RWHeaderSection/RWHeaderSection_ReadWriteModule.hxx diff --git a/src/DataExchange/TKDESTEP/RWStepAP203/FILES.cmake b/src/DataExchange/TKDESTEP/RWStepAP203/FILES.cmake new file mode 100644 index 0000000000..12afbcff1f --- /dev/null +++ b/src/DataExchange/TKDESTEP/RWStepAP203/FILES.cmake @@ -0,0 +1,27 @@ +# Source files for RWStepAP203 package +set(OCCT_RWStepAP203_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_RWStepAP203_FILES + RWStepAP203_RWCcDesignApproval.cxx + RWStepAP203_RWCcDesignApproval.pxx + RWStepAP203_RWCcDesignCertification.cxx + RWStepAP203_RWCcDesignCertification.pxx + RWStepAP203_RWCcDesignContract.cxx + RWStepAP203_RWCcDesignContract.pxx + RWStepAP203_RWCcDesignDateAndTimeAssignment.cxx + RWStepAP203_RWCcDesignDateAndTimeAssignment.pxx + RWStepAP203_RWCcDesignPersonAndOrganizationAssignment.cxx + RWStepAP203_RWCcDesignPersonAndOrganizationAssignment.pxx + RWStepAP203_RWCcDesignSecurityClassification.cxx + RWStepAP203_RWCcDesignSecurityClassification.pxx + RWStepAP203_RWCcDesignSpecificationReference.cxx + RWStepAP203_RWCcDesignSpecificationReference.pxx + RWStepAP203_RWChange.cxx + RWStepAP203_RWChange.pxx + RWStepAP203_RWChangeRequest.cxx + RWStepAP203_RWChangeRequest.pxx + RWStepAP203_RWStartRequest.cxx + RWStepAP203_RWStartRequest.pxx + RWStepAP203_RWStartWork.cxx + RWStepAP203_RWStartWork.pxx +) diff --git a/src/RWStepAP203/RWStepAP203_RWCcDesignApproval.cxx b/src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignApproval.cxx similarity index 100% rename from src/RWStepAP203/RWStepAP203_RWCcDesignApproval.cxx rename to src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignApproval.cxx diff --git a/src/RWStepAP203/RWStepAP203_RWCcDesignApproval.pxx b/src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignApproval.pxx similarity index 100% rename from src/RWStepAP203/RWStepAP203_RWCcDesignApproval.pxx rename to src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignApproval.pxx diff --git a/src/RWStepAP203/RWStepAP203_RWCcDesignCertification.cxx b/src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignCertification.cxx similarity index 100% rename from src/RWStepAP203/RWStepAP203_RWCcDesignCertification.cxx rename to src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignCertification.cxx diff --git a/src/RWStepAP203/RWStepAP203_RWCcDesignCertification.pxx b/src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignCertification.pxx similarity index 100% rename from src/RWStepAP203/RWStepAP203_RWCcDesignCertification.pxx rename to src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignCertification.pxx diff --git a/src/RWStepAP203/RWStepAP203_RWCcDesignContract.cxx b/src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignContract.cxx similarity index 100% rename from src/RWStepAP203/RWStepAP203_RWCcDesignContract.cxx rename to src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignContract.cxx diff --git a/src/RWStepAP203/RWStepAP203_RWCcDesignContract.pxx b/src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignContract.pxx similarity index 100% rename from src/RWStepAP203/RWStepAP203_RWCcDesignContract.pxx rename to src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignContract.pxx diff --git a/src/RWStepAP203/RWStepAP203_RWCcDesignDateAndTimeAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignDateAndTimeAssignment.cxx similarity index 100% rename from src/RWStepAP203/RWStepAP203_RWCcDesignDateAndTimeAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignDateAndTimeAssignment.cxx diff --git a/src/RWStepAP203/RWStepAP203_RWCcDesignDateAndTimeAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignDateAndTimeAssignment.pxx similarity index 100% rename from src/RWStepAP203/RWStepAP203_RWCcDesignDateAndTimeAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignDateAndTimeAssignment.pxx diff --git a/src/RWStepAP203/RWStepAP203_RWCcDesignPersonAndOrganizationAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignPersonAndOrganizationAssignment.cxx similarity index 100% rename from src/RWStepAP203/RWStepAP203_RWCcDesignPersonAndOrganizationAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignPersonAndOrganizationAssignment.cxx diff --git a/src/RWStepAP203/RWStepAP203_RWCcDesignPersonAndOrganizationAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignPersonAndOrganizationAssignment.pxx similarity index 100% rename from src/RWStepAP203/RWStepAP203_RWCcDesignPersonAndOrganizationAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignPersonAndOrganizationAssignment.pxx diff --git a/src/RWStepAP203/RWStepAP203_RWCcDesignSecurityClassification.cxx b/src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignSecurityClassification.cxx similarity index 100% rename from src/RWStepAP203/RWStepAP203_RWCcDesignSecurityClassification.cxx rename to src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignSecurityClassification.cxx diff --git a/src/RWStepAP203/RWStepAP203_RWCcDesignSecurityClassification.pxx b/src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignSecurityClassification.pxx similarity index 100% rename from src/RWStepAP203/RWStepAP203_RWCcDesignSecurityClassification.pxx rename to src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignSecurityClassification.pxx diff --git a/src/RWStepAP203/RWStepAP203_RWCcDesignSpecificationReference.cxx b/src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignSpecificationReference.cxx similarity index 100% rename from src/RWStepAP203/RWStepAP203_RWCcDesignSpecificationReference.cxx rename to src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignSpecificationReference.cxx diff --git a/src/RWStepAP203/RWStepAP203_RWCcDesignSpecificationReference.pxx b/src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignSpecificationReference.pxx similarity index 100% rename from src/RWStepAP203/RWStepAP203_RWCcDesignSpecificationReference.pxx rename to src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWCcDesignSpecificationReference.pxx diff --git a/src/RWStepAP203/RWStepAP203_RWChange.cxx b/src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWChange.cxx similarity index 100% rename from src/RWStepAP203/RWStepAP203_RWChange.cxx rename to src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWChange.cxx diff --git a/src/RWStepAP203/RWStepAP203_RWChange.pxx b/src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWChange.pxx similarity index 100% rename from src/RWStepAP203/RWStepAP203_RWChange.pxx rename to src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWChange.pxx diff --git a/src/RWStepAP203/RWStepAP203_RWChangeRequest.cxx b/src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWChangeRequest.cxx similarity index 100% rename from src/RWStepAP203/RWStepAP203_RWChangeRequest.cxx rename to src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWChangeRequest.cxx diff --git a/src/RWStepAP203/RWStepAP203_RWChangeRequest.pxx b/src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWChangeRequest.pxx similarity index 100% rename from src/RWStepAP203/RWStepAP203_RWChangeRequest.pxx rename to src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWChangeRequest.pxx diff --git a/src/RWStepAP203/RWStepAP203_RWStartRequest.cxx b/src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWStartRequest.cxx similarity index 100% rename from src/RWStepAP203/RWStepAP203_RWStartRequest.cxx rename to src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWStartRequest.cxx diff --git a/src/RWStepAP203/RWStepAP203_RWStartRequest.pxx b/src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWStartRequest.pxx similarity index 100% rename from src/RWStepAP203/RWStepAP203_RWStartRequest.pxx rename to src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWStartRequest.pxx diff --git a/src/RWStepAP203/RWStepAP203_RWStartWork.cxx b/src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWStartWork.cxx similarity index 100% rename from src/RWStepAP203/RWStepAP203_RWStartWork.cxx rename to src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWStartWork.cxx diff --git a/src/RWStepAP203/RWStepAP203_RWStartWork.pxx b/src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWStartWork.pxx similarity index 100% rename from src/RWStepAP203/RWStepAP203_RWStartWork.pxx rename to src/DataExchange/TKDESTEP/RWStepAP203/RWStepAP203_RWStartWork.pxx diff --git a/src/DataExchange/TKDESTEP/RWStepAP214/FILES.cmake b/src/DataExchange/TKDESTEP/RWStepAP214/FILES.cmake new file mode 100644 index 0000000000..399f3ca157 --- /dev/null +++ b/src/DataExchange/TKDESTEP/RWStepAP214/FILES.cmake @@ -0,0 +1,63 @@ +# Source files for RWStepAP214 package +set(OCCT_RWStepAP214_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_RWStepAP214_FILES + RWStepAP214.cxx + RWStepAP214.pxx + RWStepAP214_GeneralModule.cxx + RWStepAP214_GeneralModule.pxx + RWStepAP214_ReadWriteModule.cxx + RWStepAP214_ReadWriteModule.pxx + RWStepAP214_RWAppliedApprovalAssignment.cxx + RWStepAP214_RWAppliedApprovalAssignment.pxx + RWStepAP214_RWAppliedDateAndTimeAssignment.cxx + RWStepAP214_RWAppliedDateAndTimeAssignment.pxx + RWStepAP214_RWAppliedDateAssignment.cxx + RWStepAP214_RWAppliedDateAssignment.pxx + RWStepAP214_RWAppliedDocumentReference.cxx + RWStepAP214_RWAppliedDocumentReference.pxx + RWStepAP214_RWAppliedExternalIdentificationAssignment.cxx + RWStepAP214_RWAppliedExternalIdentificationAssignment.pxx + RWStepAP214_RWAppliedGroupAssignment.cxx + RWStepAP214_RWAppliedGroupAssignment.pxx + RWStepAP214_RWAppliedOrganizationAssignment.cxx + RWStepAP214_RWAppliedOrganizationAssignment.pxx + RWStepAP214_RWAppliedPersonAndOrganizationAssignment.cxx + RWStepAP214_RWAppliedPersonAndOrganizationAssignment.pxx + RWStepAP214_RWAppliedPresentedItem.cxx + RWStepAP214_RWAppliedPresentedItem.pxx + RWStepAP214_RWAppliedSecurityClassificationAssignment.cxx + RWStepAP214_RWAppliedSecurityClassificationAssignment.pxx + RWStepAP214_RWAutoDesignActualDateAndTimeAssignment.cxx + RWStepAP214_RWAutoDesignActualDateAndTimeAssignment.pxx + RWStepAP214_RWAutoDesignActualDateAssignment.cxx + RWStepAP214_RWAutoDesignActualDateAssignment.pxx + RWStepAP214_RWAutoDesignApprovalAssignment.cxx + RWStepAP214_RWAutoDesignApprovalAssignment.pxx + RWStepAP214_RWAutoDesignDateAndPersonAssignment.cxx + RWStepAP214_RWAutoDesignDateAndPersonAssignment.pxx + RWStepAP214_RWAutoDesignDocumentReference.cxx + RWStepAP214_RWAutoDesignDocumentReference.pxx + RWStepAP214_RWAutoDesignGroupAssignment.cxx + RWStepAP214_RWAutoDesignGroupAssignment.pxx + RWStepAP214_RWAutoDesignNominalDateAndTimeAssignment.cxx + RWStepAP214_RWAutoDesignNominalDateAndTimeAssignment.pxx + RWStepAP214_RWAutoDesignNominalDateAssignment.cxx + RWStepAP214_RWAutoDesignNominalDateAssignment.pxx + RWStepAP214_RWAutoDesignOrganizationAssignment.cxx + RWStepAP214_RWAutoDesignOrganizationAssignment.pxx + RWStepAP214_RWAutoDesignPersonAndOrganizationAssignment.cxx + RWStepAP214_RWAutoDesignPersonAndOrganizationAssignment.pxx + RWStepAP214_RWAutoDesignPresentedItem.cxx + RWStepAP214_RWAutoDesignPresentedItem.pxx + RWStepAP214_RWAutoDesignSecurityClassificationAssignment.cxx + RWStepAP214_RWAutoDesignSecurityClassificationAssignment.pxx + RWStepAP214_RWClass.cxx + RWStepAP214_RWClass.pxx + RWStepAP214_RWExternallyDefinedClass.cxx + RWStepAP214_RWExternallyDefinedClass.pxx + RWStepAP214_RWExternallyDefinedGeneralProperty.cxx + RWStepAP214_RWExternallyDefinedGeneralProperty.pxx + RWStepAP214_RWRepItemGroup.cxx + RWStepAP214_RWRepItemGroup.pxx +) diff --git a/src/RWStepAP214/RWStepAP214.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214.cxx diff --git a/src/RWStepAP214/RWStepAP214.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214.pxx diff --git a/src/RWStepAP214/RWStepAP214_GeneralModule.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_GeneralModule.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_GeneralModule.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_GeneralModule.cxx diff --git a/src/RWStepAP214/RWStepAP214_GeneralModule.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_GeneralModule.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_GeneralModule.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_GeneralModule.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWAppliedApprovalAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedApprovalAssignment.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAppliedApprovalAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedApprovalAssignment.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWAppliedApprovalAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedApprovalAssignment.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAppliedApprovalAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedApprovalAssignment.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWAppliedDateAndTimeAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedDateAndTimeAssignment.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAppliedDateAndTimeAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedDateAndTimeAssignment.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWAppliedDateAndTimeAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedDateAndTimeAssignment.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAppliedDateAndTimeAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedDateAndTimeAssignment.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWAppliedDateAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedDateAssignment.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAppliedDateAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedDateAssignment.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWAppliedDateAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedDateAssignment.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAppliedDateAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedDateAssignment.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWAppliedDocumentReference.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedDocumentReference.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAppliedDocumentReference.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedDocumentReference.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWAppliedDocumentReference.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedDocumentReference.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAppliedDocumentReference.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedDocumentReference.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWAppliedExternalIdentificationAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedExternalIdentificationAssignment.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAppliedExternalIdentificationAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedExternalIdentificationAssignment.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWAppliedExternalIdentificationAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedExternalIdentificationAssignment.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAppliedExternalIdentificationAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedExternalIdentificationAssignment.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWAppliedGroupAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedGroupAssignment.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAppliedGroupAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedGroupAssignment.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWAppliedGroupAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedGroupAssignment.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAppliedGroupAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedGroupAssignment.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWAppliedOrganizationAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedOrganizationAssignment.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAppliedOrganizationAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedOrganizationAssignment.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWAppliedOrganizationAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedOrganizationAssignment.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAppliedOrganizationAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedOrganizationAssignment.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWAppliedPersonAndOrganizationAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedPersonAndOrganizationAssignment.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAppliedPersonAndOrganizationAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedPersonAndOrganizationAssignment.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWAppliedPersonAndOrganizationAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedPersonAndOrganizationAssignment.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAppliedPersonAndOrganizationAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedPersonAndOrganizationAssignment.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWAppliedPresentedItem.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedPresentedItem.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAppliedPresentedItem.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedPresentedItem.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWAppliedPresentedItem.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedPresentedItem.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAppliedPresentedItem.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedPresentedItem.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWAppliedSecurityClassificationAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedSecurityClassificationAssignment.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAppliedSecurityClassificationAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedSecurityClassificationAssignment.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWAppliedSecurityClassificationAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedSecurityClassificationAssignment.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAppliedSecurityClassificationAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAppliedSecurityClassificationAssignment.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWAutoDesignActualDateAndTimeAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignActualDateAndTimeAssignment.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAutoDesignActualDateAndTimeAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignActualDateAndTimeAssignment.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWAutoDesignActualDateAndTimeAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignActualDateAndTimeAssignment.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAutoDesignActualDateAndTimeAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignActualDateAndTimeAssignment.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWAutoDesignActualDateAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignActualDateAssignment.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAutoDesignActualDateAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignActualDateAssignment.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWAutoDesignActualDateAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignActualDateAssignment.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAutoDesignActualDateAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignActualDateAssignment.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWAutoDesignApprovalAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignApprovalAssignment.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAutoDesignApprovalAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignApprovalAssignment.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWAutoDesignApprovalAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignApprovalAssignment.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAutoDesignApprovalAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignApprovalAssignment.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWAutoDesignDateAndPersonAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignDateAndPersonAssignment.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAutoDesignDateAndPersonAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignDateAndPersonAssignment.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWAutoDesignDateAndPersonAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignDateAndPersonAssignment.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAutoDesignDateAndPersonAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignDateAndPersonAssignment.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWAutoDesignDocumentReference.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignDocumentReference.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAutoDesignDocumentReference.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignDocumentReference.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWAutoDesignDocumentReference.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignDocumentReference.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAutoDesignDocumentReference.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignDocumentReference.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWAutoDesignGroupAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignGroupAssignment.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAutoDesignGroupAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignGroupAssignment.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWAutoDesignGroupAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignGroupAssignment.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAutoDesignGroupAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignGroupAssignment.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWAutoDesignNominalDateAndTimeAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignNominalDateAndTimeAssignment.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAutoDesignNominalDateAndTimeAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignNominalDateAndTimeAssignment.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWAutoDesignNominalDateAndTimeAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignNominalDateAndTimeAssignment.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAutoDesignNominalDateAndTimeAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignNominalDateAndTimeAssignment.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWAutoDesignNominalDateAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignNominalDateAssignment.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAutoDesignNominalDateAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignNominalDateAssignment.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWAutoDesignNominalDateAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignNominalDateAssignment.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAutoDesignNominalDateAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignNominalDateAssignment.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWAutoDesignOrganizationAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignOrganizationAssignment.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAutoDesignOrganizationAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignOrganizationAssignment.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWAutoDesignOrganizationAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignOrganizationAssignment.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAutoDesignOrganizationAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignOrganizationAssignment.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWAutoDesignPersonAndOrganizationAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignPersonAndOrganizationAssignment.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAutoDesignPersonAndOrganizationAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignPersonAndOrganizationAssignment.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWAutoDesignPersonAndOrganizationAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignPersonAndOrganizationAssignment.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAutoDesignPersonAndOrganizationAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignPersonAndOrganizationAssignment.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWAutoDesignPresentedItem.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignPresentedItem.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAutoDesignPresentedItem.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignPresentedItem.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWAutoDesignPresentedItem.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignPresentedItem.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAutoDesignPresentedItem.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignPresentedItem.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWAutoDesignSecurityClassificationAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignSecurityClassificationAssignment.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAutoDesignSecurityClassificationAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignSecurityClassificationAssignment.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWAutoDesignSecurityClassificationAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignSecurityClassificationAssignment.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWAutoDesignSecurityClassificationAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWAutoDesignSecurityClassificationAssignment.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWClass.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWClass.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWClass.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWClass.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWClass.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWClass.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWClass.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWClass.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWExternallyDefinedClass.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWExternallyDefinedClass.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWExternallyDefinedClass.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWExternallyDefinedClass.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWExternallyDefinedClass.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWExternallyDefinedClass.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWExternallyDefinedClass.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWExternallyDefinedClass.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWExternallyDefinedGeneralProperty.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWExternallyDefinedGeneralProperty.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWExternallyDefinedGeneralProperty.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWExternallyDefinedGeneralProperty.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWExternallyDefinedGeneralProperty.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWExternallyDefinedGeneralProperty.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWExternallyDefinedGeneralProperty.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWExternallyDefinedGeneralProperty.pxx diff --git a/src/RWStepAP214/RWStepAP214_RWRepItemGroup.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWRepItemGroup.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWRepItemGroup.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWRepItemGroup.cxx diff --git a/src/RWStepAP214/RWStepAP214_RWRepItemGroup.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWRepItemGroup.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_RWRepItemGroup.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_RWRepItemGroup.pxx diff --git a/src/RWStepAP214/RWStepAP214_ReadWriteModule.cxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_ReadWriteModule.cxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_ReadWriteModule.cxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_ReadWriteModule.cxx diff --git a/src/RWStepAP214/RWStepAP214_ReadWriteModule.pxx b/src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_ReadWriteModule.pxx similarity index 100% rename from src/RWStepAP214/RWStepAP214_ReadWriteModule.pxx rename to src/DataExchange/TKDESTEP/RWStepAP214/RWStepAP214_ReadWriteModule.pxx diff --git a/src/DataExchange/TKDESTEP/RWStepAP242/FILES.cmake b/src/DataExchange/TKDESTEP/RWStepAP242/FILES.cmake new file mode 100644 index 0000000000..0f14368a6d --- /dev/null +++ b/src/DataExchange/TKDESTEP/RWStepAP242/FILES.cmake @@ -0,0 +1,13 @@ +# Source files for RWStepAP242 package +set(OCCT_RWStepAP242_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_RWStepAP242_FILES + RWStepAP242_RWDraughtingModelItemAssociation.cxx + RWStepAP242_RWDraughtingModelItemAssociation.pxx + RWStepAP242_RWGeometricItemSpecificUsage.cxx + RWStepAP242_RWGeometricItemSpecificUsage.pxx + RWStepAP242_RWIdAttribute.cxx + RWStepAP242_RWIdAttribute.pxx + RWStepAP242_RWItemIdentifiedRepresentationUsage.cxx + RWStepAP242_RWItemIdentifiedRepresentationUsage.pxx +) diff --git a/src/RWStepAP242/RWStepAP242_RWDraughtingModelItemAssociation.cxx b/src/DataExchange/TKDESTEP/RWStepAP242/RWStepAP242_RWDraughtingModelItemAssociation.cxx similarity index 100% rename from src/RWStepAP242/RWStepAP242_RWDraughtingModelItemAssociation.cxx rename to src/DataExchange/TKDESTEP/RWStepAP242/RWStepAP242_RWDraughtingModelItemAssociation.cxx diff --git a/src/RWStepAP242/RWStepAP242_RWDraughtingModelItemAssociation.pxx b/src/DataExchange/TKDESTEP/RWStepAP242/RWStepAP242_RWDraughtingModelItemAssociation.pxx similarity index 100% rename from src/RWStepAP242/RWStepAP242_RWDraughtingModelItemAssociation.pxx rename to src/DataExchange/TKDESTEP/RWStepAP242/RWStepAP242_RWDraughtingModelItemAssociation.pxx diff --git a/src/RWStepAP242/RWStepAP242_RWGeometricItemSpecificUsage.cxx b/src/DataExchange/TKDESTEP/RWStepAP242/RWStepAP242_RWGeometricItemSpecificUsage.cxx similarity index 100% rename from src/RWStepAP242/RWStepAP242_RWGeometricItemSpecificUsage.cxx rename to src/DataExchange/TKDESTEP/RWStepAP242/RWStepAP242_RWGeometricItemSpecificUsage.cxx diff --git a/src/RWStepAP242/RWStepAP242_RWGeometricItemSpecificUsage.pxx b/src/DataExchange/TKDESTEP/RWStepAP242/RWStepAP242_RWGeometricItemSpecificUsage.pxx similarity index 100% rename from src/RWStepAP242/RWStepAP242_RWGeometricItemSpecificUsage.pxx rename to src/DataExchange/TKDESTEP/RWStepAP242/RWStepAP242_RWGeometricItemSpecificUsage.pxx diff --git a/src/RWStepAP242/RWStepAP242_RWIdAttribute.cxx b/src/DataExchange/TKDESTEP/RWStepAP242/RWStepAP242_RWIdAttribute.cxx similarity index 100% rename from src/RWStepAP242/RWStepAP242_RWIdAttribute.cxx rename to src/DataExchange/TKDESTEP/RWStepAP242/RWStepAP242_RWIdAttribute.cxx diff --git a/src/RWStepAP242/RWStepAP242_RWIdAttribute.pxx b/src/DataExchange/TKDESTEP/RWStepAP242/RWStepAP242_RWIdAttribute.pxx similarity index 100% rename from src/RWStepAP242/RWStepAP242_RWIdAttribute.pxx rename to src/DataExchange/TKDESTEP/RWStepAP242/RWStepAP242_RWIdAttribute.pxx diff --git a/src/RWStepAP242/RWStepAP242_RWItemIdentifiedRepresentationUsage.cxx b/src/DataExchange/TKDESTEP/RWStepAP242/RWStepAP242_RWItemIdentifiedRepresentationUsage.cxx similarity index 100% rename from src/RWStepAP242/RWStepAP242_RWItemIdentifiedRepresentationUsage.cxx rename to src/DataExchange/TKDESTEP/RWStepAP242/RWStepAP242_RWItemIdentifiedRepresentationUsage.cxx diff --git a/src/RWStepAP242/RWStepAP242_RWItemIdentifiedRepresentationUsage.pxx b/src/DataExchange/TKDESTEP/RWStepAP242/RWStepAP242_RWItemIdentifiedRepresentationUsage.pxx similarity index 100% rename from src/RWStepAP242/RWStepAP242_RWItemIdentifiedRepresentationUsage.pxx rename to src/DataExchange/TKDESTEP/RWStepAP242/RWStepAP242_RWItemIdentifiedRepresentationUsage.pxx diff --git a/src/DataExchange/TKDESTEP/RWStepBasic/FILES.cmake b/src/DataExchange/TKDESTEP/RWStepBasic/FILES.cmake new file mode 100644 index 0000000000..fe5e4674d0 --- /dev/null +++ b/src/DataExchange/TKDESTEP/RWStepBasic/FILES.cmake @@ -0,0 +1,243 @@ +# Source files for RWStepBasic package +set(OCCT_RWStepBasic_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_RWStepBasic_FILES + RWStepBasic_RWAction.cxx + RWStepBasic_RWAction.pxx + RWStepBasic_RWActionAssignment.cxx + RWStepBasic_RWActionAssignment.pxx + RWStepBasic_RWActionMethod.cxx + RWStepBasic_RWActionMethod.pxx + RWStepBasic_RWActionRequestAssignment.cxx + RWStepBasic_RWActionRequestAssignment.pxx + RWStepBasic_RWActionRequestSolution.cxx + RWStepBasic_RWActionRequestSolution.pxx + RWStepBasic_RWAddress.cxx + RWStepBasic_RWAddress.pxx + RWStepBasic_RWApplicationContext.cxx + RWStepBasic_RWApplicationContext.pxx + RWStepBasic_RWApplicationContextElement.cxx + RWStepBasic_RWApplicationContextElement.pxx + RWStepBasic_RWApplicationProtocolDefinition.cxx + RWStepBasic_RWApplicationProtocolDefinition.pxx + RWStepBasic_RWApproval.cxx + RWStepBasic_RWApproval.pxx + RWStepBasic_RWApprovalDateTime.cxx + RWStepBasic_RWApprovalDateTime.pxx + RWStepBasic_RWApprovalPersonOrganization.cxx + RWStepBasic_RWApprovalPersonOrganization.pxx + RWStepBasic_RWApprovalRelationship.cxx + RWStepBasic_RWApprovalRelationship.pxx + RWStepBasic_RWApprovalRole.cxx + RWStepBasic_RWApprovalRole.pxx + RWStepBasic_RWApprovalStatus.cxx + RWStepBasic_RWApprovalStatus.pxx + RWStepBasic_RWCalendarDate.cxx + RWStepBasic_RWCalendarDate.pxx + RWStepBasic_RWCertification.cxx + RWStepBasic_RWCertification.pxx + RWStepBasic_RWCertificationAssignment.cxx + RWStepBasic_RWCertificationAssignment.pxx + RWStepBasic_RWCertificationType.cxx + RWStepBasic_RWCertificationType.pxx + RWStepBasic_RWCharacterizedObject.cxx + RWStepBasic_RWCharacterizedObject.pxx + RWStepBasic_RWContract.cxx + RWStepBasic_RWContract.pxx + RWStepBasic_RWContractAssignment.cxx + RWStepBasic_RWContractAssignment.pxx + RWStepBasic_RWContractType.cxx + RWStepBasic_RWContractType.pxx + RWStepBasic_RWConversionBasedUnit.cxx + RWStepBasic_RWConversionBasedUnit.pxx + RWStepBasic_RWConversionBasedUnitAndAreaUnit.cxx + RWStepBasic_RWConversionBasedUnitAndAreaUnit.pxx + RWStepBasic_RWConversionBasedUnitAndLengthUnit.cxx + RWStepBasic_RWConversionBasedUnitAndLengthUnit.pxx + RWStepBasic_RWConversionBasedUnitAndMassUnit.cxx + RWStepBasic_RWConversionBasedUnitAndMassUnit.pxx + RWStepBasic_RWConversionBasedUnitAndPlaneAngleUnit.cxx + RWStepBasic_RWConversionBasedUnitAndPlaneAngleUnit.pxx + RWStepBasic_RWConversionBasedUnitAndRatioUnit.cxx + RWStepBasic_RWConversionBasedUnitAndRatioUnit.pxx + RWStepBasic_RWConversionBasedUnitAndSolidAngleUnit.cxx + RWStepBasic_RWConversionBasedUnitAndSolidAngleUnit.pxx + RWStepBasic_RWConversionBasedUnitAndTimeUnit.cxx + RWStepBasic_RWConversionBasedUnitAndTimeUnit.pxx + RWStepBasic_RWConversionBasedUnitAndVolumeUnit.cxx + RWStepBasic_RWConversionBasedUnitAndVolumeUnit.pxx + RWStepBasic_RWCoordinatedUniversalTimeOffset.cxx + RWStepBasic_RWCoordinatedUniversalTimeOffset.pxx + RWStepBasic_RWDate.cxx + RWStepBasic_RWDate.pxx + RWStepBasic_RWDateAndTime.cxx + RWStepBasic_RWDateAndTime.pxx + RWStepBasic_RWDateRole.cxx + RWStepBasic_RWDateRole.pxx + RWStepBasic_RWDateTimeRole.cxx + RWStepBasic_RWDateTimeRole.pxx + RWStepBasic_RWDerivedUnit.cxx + RWStepBasic_RWDerivedUnit.pxx + RWStepBasic_RWDerivedUnitElement.cxx + RWStepBasic_RWDerivedUnitElement.pxx + RWStepBasic_RWDimensionalExponents.cxx + RWStepBasic_RWDimensionalExponents.pxx + RWStepBasic_RWDocument.cxx + RWStepBasic_RWDocument.pxx + RWStepBasic_RWDocumentFile.cxx + RWStepBasic_RWDocumentFile.pxx + RWStepBasic_RWDocumentProductAssociation.cxx + RWStepBasic_RWDocumentProductAssociation.pxx + RWStepBasic_RWDocumentProductEquivalence.cxx + RWStepBasic_RWDocumentProductEquivalence.pxx + RWStepBasic_RWDocumentRelationship.cxx + RWStepBasic_RWDocumentRelationship.pxx + RWStepBasic_RWDocumentRepresentationType.cxx + RWStepBasic_RWDocumentRepresentationType.pxx + RWStepBasic_RWDocumentType.cxx + RWStepBasic_RWDocumentType.pxx + RWStepBasic_RWDocumentUsageConstraint.cxx + RWStepBasic_RWDocumentUsageConstraint.pxx + RWStepBasic_RWEffectivity.cxx + RWStepBasic_RWEffectivity.pxx + RWStepBasic_RWEffectivityAssignment.cxx + RWStepBasic_RWEffectivityAssignment.pxx + RWStepBasic_RWEulerAngles.cxx + RWStepBasic_RWEulerAngles.pxx + RWStepBasic_RWExternalIdentificationAssignment.cxx + RWStepBasic_RWExternalIdentificationAssignment.pxx + RWStepBasic_RWExternallyDefinedItem.cxx + RWStepBasic_RWExternallyDefinedItem.pxx + RWStepBasic_RWExternalSource.cxx + RWStepBasic_RWExternalSource.pxx + RWStepBasic_RWGeneralProperty.cxx + RWStepBasic_RWGeneralProperty.pxx + RWStepBasic_RWGeneralPropertyAssociation.cxx + RWStepBasic_RWGeneralPropertyAssociation.pxx + RWStepBasic_RWGeneralPropertyRelationship.cxx + RWStepBasic_RWGeneralPropertyRelationship.pxx + RWStepBasic_RWGroup.cxx + RWStepBasic_RWGroup.pxx + RWStepBasic_RWGroupAssignment.cxx + RWStepBasic_RWGroupAssignment.pxx + RWStepBasic_RWGroupRelationship.cxx + RWStepBasic_RWGroupRelationship.pxx + RWStepBasic_RWIdentificationAssignment.cxx + RWStepBasic_RWIdentificationAssignment.pxx + RWStepBasic_RWIdentificationRole.cxx + RWStepBasic_RWIdentificationRole.pxx + RWStepBasic_RWLengthMeasureWithUnit.cxx + RWStepBasic_RWLengthMeasureWithUnit.pxx + RWStepBasic_RWLengthUnit.cxx + RWStepBasic_RWLengthUnit.pxx + RWStepBasic_RWLocalTime.cxx + RWStepBasic_RWLocalTime.pxx + RWStepBasic_RWMassMeasureWithUnit.cxx + RWStepBasic_RWMassMeasureWithUnit.pxx + RWStepBasic_RWMassUnit.cxx + RWStepBasic_RWMassUnit.pxx + RWStepBasic_RWMeasureWithUnit.cxx + RWStepBasic_RWMeasureWithUnit.pxx + RWStepBasic_RWMechanicalContext.cxx + RWStepBasic_RWMechanicalContext.pxx + RWStepBasic_RWNameAssignment.cxx + RWStepBasic_RWNameAssignment.pxx + RWStepBasic_RWNamedUnit.cxx + RWStepBasic_RWNamedUnit.pxx + RWStepBasic_RWObjectRole.cxx + RWStepBasic_RWObjectRole.pxx + RWStepBasic_RWOrdinalDate.cxx + RWStepBasic_RWOrdinalDate.pxx + RWStepBasic_RWOrganization.cxx + RWStepBasic_RWOrganization.pxx + RWStepBasic_RWOrganizationalAddress.cxx + RWStepBasic_RWOrganizationalAddress.pxx + RWStepBasic_RWOrganizationRole.cxx + RWStepBasic_RWOrganizationRole.pxx + RWStepBasic_RWPerson.cxx + RWStepBasic_RWPerson.pxx + RWStepBasic_RWPersonalAddress.cxx + RWStepBasic_RWPersonalAddress.pxx + RWStepBasic_RWPersonAndOrganization.cxx + RWStepBasic_RWPersonAndOrganization.pxx + RWStepBasic_RWPersonAndOrganizationRole.cxx + RWStepBasic_RWPersonAndOrganizationRole.pxx + RWStepBasic_RWPlaneAngleMeasureWithUnit.cxx + RWStepBasic_RWPlaneAngleMeasureWithUnit.pxx + RWStepBasic_RWPlaneAngleUnit.cxx + RWStepBasic_RWPlaneAngleUnit.pxx + RWStepBasic_RWProduct.cxx + RWStepBasic_RWProduct.pxx + RWStepBasic_RWProductCategory.cxx + RWStepBasic_RWProductCategory.pxx + RWStepBasic_RWProductCategoryRelationship.cxx + RWStepBasic_RWProductCategoryRelationship.pxx + RWStepBasic_RWProductConceptContext.cxx + RWStepBasic_RWProductConceptContext.pxx + RWStepBasic_RWProductContext.cxx + RWStepBasic_RWProductContext.pxx + RWStepBasic_RWProductDefinition.cxx + RWStepBasic_RWProductDefinition.pxx + RWStepBasic_RWProductDefinitionContext.cxx + RWStepBasic_RWProductDefinitionContext.pxx + RWStepBasic_RWProductDefinitionEffectivity.cxx + RWStepBasic_RWProductDefinitionEffectivity.pxx + RWStepBasic_RWProductDefinitionFormation.cxx + RWStepBasic_RWProductDefinitionFormation.pxx + RWStepBasic_RWProductDefinitionFormationRelationship.cxx + RWStepBasic_RWProductDefinitionFormationRelationship.pxx + RWStepBasic_RWProductDefinitionFormationWithSpecifiedSource.cxx + RWStepBasic_RWProductDefinitionFormationWithSpecifiedSource.pxx + RWStepBasic_RWProductDefinitionReference.cxx + RWStepBasic_RWProductDefinitionReference.pxx + RWStepBasic_RWProductDefinitionReferenceWithLocalRepresentation.cxx + RWStepBasic_RWProductDefinitionReferenceWithLocalRepresentation.pxx + RWStepBasic_RWProductDefinitionRelationship.cxx + RWStepBasic_RWProductDefinitionRelationship.pxx + RWStepBasic_RWProductDefinitionWithAssociatedDocuments.cxx + RWStepBasic_RWProductDefinitionWithAssociatedDocuments.pxx + RWStepBasic_RWProductRelatedProductCategory.cxx + RWStepBasic_RWProductRelatedProductCategory.pxx + RWStepBasic_RWProductType.cxx + RWStepBasic_RWProductType.pxx + RWStepBasic_RWRatioMeasureWithUnit.cxx + RWStepBasic_RWRatioMeasureWithUnit.pxx + RWStepBasic_RWRoleAssociation.cxx + RWStepBasic_RWRoleAssociation.pxx + RWStepBasic_RWSecurityClassification.cxx + RWStepBasic_RWSecurityClassification.pxx + RWStepBasic_RWSecurityClassificationLevel.cxx + RWStepBasic_RWSecurityClassificationLevel.pxx + RWStepBasic_RWSiUnit.cxx + RWStepBasic_RWSiUnit.pxx + RWStepBasic_RWSiUnitAndAreaUnit.cxx + RWStepBasic_RWSiUnitAndAreaUnit.pxx + RWStepBasic_RWSiUnitAndLengthUnit.cxx + RWStepBasic_RWSiUnitAndLengthUnit.pxx + RWStepBasic_RWSiUnitAndMassUnit.cxx + RWStepBasic_RWSiUnitAndMassUnit.pxx + RWStepBasic_RWSiUnitAndPlaneAngleUnit.cxx + RWStepBasic_RWSiUnitAndPlaneAngleUnit.pxx + RWStepBasic_RWSiUnitAndRatioUnit.cxx + RWStepBasic_RWSiUnitAndRatioUnit.pxx + RWStepBasic_RWSiUnitAndSolidAngleUnit.cxx + RWStepBasic_RWSiUnitAndSolidAngleUnit.pxx + RWStepBasic_RWSiUnitAndThermodynamicTemperatureUnit.cxx + RWStepBasic_RWSiUnitAndThermodynamicTemperatureUnit.pxx + RWStepBasic_RWSiUnitAndTimeUnit.cxx + RWStepBasic_RWSiUnitAndTimeUnit.pxx + RWStepBasic_RWSiUnitAndVolumeUnit.cxx + RWStepBasic_RWSiUnitAndVolumeUnit.pxx + RWStepBasic_RWSolidAngleMeasureWithUnit.cxx + RWStepBasic_RWSolidAngleMeasureWithUnit.pxx + RWStepBasic_RWSolidAngleUnit.cxx + RWStepBasic_RWSolidAngleUnit.pxx + RWStepBasic_RWThermodynamicTemperatureUnit.cxx + RWStepBasic_RWThermodynamicTemperatureUnit.pxx + RWStepBasic_RWUncertaintyMeasureWithUnit.cxx + RWStepBasic_RWUncertaintyMeasureWithUnit.pxx + RWStepBasic_RWVersionedActionRequest.cxx + RWStepBasic_RWVersionedActionRequest.pxx + RWStepBasic_RWWeekOfYearAndDayDate.cxx + RWStepBasic_RWWeekOfYearAndDayDate.pxx +) diff --git a/src/RWStepBasic/RWStepBasic_RWAction.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWAction.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWAction.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWAction.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWAction.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWAction.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWAction.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWAction.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWActionAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWActionAssignment.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWActionAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWActionAssignment.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWActionAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWActionAssignment.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWActionAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWActionAssignment.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWActionMethod.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWActionMethod.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWActionMethod.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWActionMethod.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWActionMethod.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWActionMethod.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWActionMethod.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWActionMethod.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWActionRequestAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWActionRequestAssignment.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWActionRequestAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWActionRequestAssignment.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWActionRequestAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWActionRequestAssignment.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWActionRequestAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWActionRequestAssignment.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWActionRequestSolution.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWActionRequestSolution.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWActionRequestSolution.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWActionRequestSolution.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWActionRequestSolution.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWActionRequestSolution.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWActionRequestSolution.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWActionRequestSolution.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWAddress.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWAddress.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWAddress.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWAddress.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWAddress.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWAddress.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWAddress.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWAddress.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWApplicationContext.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApplicationContext.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWApplicationContext.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApplicationContext.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWApplicationContext.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApplicationContext.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWApplicationContext.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApplicationContext.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWApplicationContextElement.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApplicationContextElement.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWApplicationContextElement.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApplicationContextElement.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWApplicationContextElement.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApplicationContextElement.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWApplicationContextElement.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApplicationContextElement.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWApplicationProtocolDefinition.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApplicationProtocolDefinition.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWApplicationProtocolDefinition.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApplicationProtocolDefinition.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWApplicationProtocolDefinition.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApplicationProtocolDefinition.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWApplicationProtocolDefinition.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApplicationProtocolDefinition.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWApproval.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApproval.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWApproval.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApproval.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWApproval.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApproval.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWApproval.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApproval.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWApprovalDateTime.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApprovalDateTime.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWApprovalDateTime.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApprovalDateTime.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWApprovalDateTime.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApprovalDateTime.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWApprovalDateTime.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApprovalDateTime.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWApprovalPersonOrganization.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApprovalPersonOrganization.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWApprovalPersonOrganization.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApprovalPersonOrganization.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWApprovalPersonOrganization.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApprovalPersonOrganization.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWApprovalPersonOrganization.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApprovalPersonOrganization.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWApprovalRelationship.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApprovalRelationship.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWApprovalRelationship.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApprovalRelationship.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWApprovalRelationship.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApprovalRelationship.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWApprovalRelationship.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApprovalRelationship.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWApprovalRole.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApprovalRole.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWApprovalRole.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApprovalRole.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWApprovalRole.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApprovalRole.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWApprovalRole.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApprovalRole.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWApprovalStatus.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApprovalStatus.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWApprovalStatus.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApprovalStatus.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWApprovalStatus.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApprovalStatus.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWApprovalStatus.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWApprovalStatus.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWCalendarDate.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWCalendarDate.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWCalendarDate.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWCalendarDate.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWCalendarDate.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWCalendarDate.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWCalendarDate.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWCalendarDate.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWCertification.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWCertification.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWCertification.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWCertification.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWCertification.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWCertification.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWCertification.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWCertification.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWCertificationAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWCertificationAssignment.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWCertificationAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWCertificationAssignment.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWCertificationAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWCertificationAssignment.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWCertificationAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWCertificationAssignment.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWCertificationType.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWCertificationType.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWCertificationType.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWCertificationType.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWCertificationType.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWCertificationType.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWCertificationType.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWCertificationType.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWCharacterizedObject.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWCharacterizedObject.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWCharacterizedObject.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWCharacterizedObject.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWCharacterizedObject.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWCharacterizedObject.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWCharacterizedObject.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWCharacterizedObject.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWContract.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWContract.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWContract.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWContract.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWContract.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWContract.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWContract.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWContract.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWContractAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWContractAssignment.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWContractAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWContractAssignment.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWContractAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWContractAssignment.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWContractAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWContractAssignment.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWContractType.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWContractType.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWContractType.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWContractType.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWContractType.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWContractType.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWContractType.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWContractType.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWConversionBasedUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWConversionBasedUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWConversionBasedUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWConversionBasedUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndAreaUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndAreaUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndAreaUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndAreaUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndAreaUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndAreaUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndAreaUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndAreaUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndLengthUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndLengthUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndLengthUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndLengthUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndLengthUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndLengthUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndLengthUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndLengthUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndMassUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndMassUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndMassUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndMassUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndMassUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndMassUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndMassUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndMassUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndPlaneAngleUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndPlaneAngleUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndPlaneAngleUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndPlaneAngleUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndPlaneAngleUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndPlaneAngleUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndPlaneAngleUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndPlaneAngleUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndRatioUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndRatioUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndRatioUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndRatioUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndRatioUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndRatioUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndRatioUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndRatioUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndSolidAngleUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndSolidAngleUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndSolidAngleUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndSolidAngleUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndSolidAngleUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndSolidAngleUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndSolidAngleUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndSolidAngleUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndTimeUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndTimeUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndTimeUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndTimeUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndTimeUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndTimeUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndTimeUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndTimeUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndVolumeUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndVolumeUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndVolumeUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndVolumeUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndVolumeUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndVolumeUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndVolumeUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWConversionBasedUnitAndVolumeUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWCoordinatedUniversalTimeOffset.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWCoordinatedUniversalTimeOffset.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWCoordinatedUniversalTimeOffset.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWCoordinatedUniversalTimeOffset.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWCoordinatedUniversalTimeOffset.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWCoordinatedUniversalTimeOffset.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWCoordinatedUniversalTimeOffset.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWCoordinatedUniversalTimeOffset.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWDate.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDate.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDate.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDate.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWDate.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDate.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDate.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDate.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWDateAndTime.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDateAndTime.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDateAndTime.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDateAndTime.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWDateAndTime.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDateAndTime.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDateAndTime.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDateAndTime.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWDateRole.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDateRole.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDateRole.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDateRole.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWDateRole.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDateRole.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDateRole.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDateRole.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWDateTimeRole.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDateTimeRole.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDateTimeRole.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDateTimeRole.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWDateTimeRole.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDateTimeRole.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDateTimeRole.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDateTimeRole.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWDerivedUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDerivedUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDerivedUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDerivedUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWDerivedUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDerivedUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDerivedUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDerivedUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWDerivedUnitElement.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDerivedUnitElement.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDerivedUnitElement.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDerivedUnitElement.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWDerivedUnitElement.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDerivedUnitElement.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDerivedUnitElement.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDerivedUnitElement.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWDimensionalExponents.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDimensionalExponents.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDimensionalExponents.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDimensionalExponents.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWDimensionalExponents.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDimensionalExponents.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDimensionalExponents.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDimensionalExponents.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWDocument.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocument.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDocument.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocument.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWDocument.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocument.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDocument.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocument.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWDocumentFile.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentFile.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDocumentFile.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentFile.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWDocumentFile.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentFile.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDocumentFile.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentFile.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWDocumentProductAssociation.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentProductAssociation.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDocumentProductAssociation.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentProductAssociation.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWDocumentProductAssociation.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentProductAssociation.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDocumentProductAssociation.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentProductAssociation.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWDocumentProductEquivalence.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentProductEquivalence.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDocumentProductEquivalence.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentProductEquivalence.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWDocumentProductEquivalence.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentProductEquivalence.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDocumentProductEquivalence.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentProductEquivalence.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWDocumentRelationship.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentRelationship.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDocumentRelationship.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentRelationship.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWDocumentRelationship.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentRelationship.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDocumentRelationship.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentRelationship.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWDocumentRepresentationType.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentRepresentationType.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDocumentRepresentationType.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentRepresentationType.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWDocumentRepresentationType.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentRepresentationType.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDocumentRepresentationType.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentRepresentationType.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWDocumentType.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentType.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDocumentType.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentType.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWDocumentType.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentType.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDocumentType.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentType.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWDocumentUsageConstraint.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentUsageConstraint.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDocumentUsageConstraint.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentUsageConstraint.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWDocumentUsageConstraint.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentUsageConstraint.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWDocumentUsageConstraint.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWDocumentUsageConstraint.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWEffectivity.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWEffectivity.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWEffectivity.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWEffectivity.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWEffectivity.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWEffectivity.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWEffectivity.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWEffectivity.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWEffectivityAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWEffectivityAssignment.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWEffectivityAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWEffectivityAssignment.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWEffectivityAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWEffectivityAssignment.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWEffectivityAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWEffectivityAssignment.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWEulerAngles.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWEulerAngles.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWEulerAngles.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWEulerAngles.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWEulerAngles.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWEulerAngles.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWEulerAngles.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWEulerAngles.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWExternalIdentificationAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWExternalIdentificationAssignment.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWExternalIdentificationAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWExternalIdentificationAssignment.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWExternalIdentificationAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWExternalIdentificationAssignment.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWExternalIdentificationAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWExternalIdentificationAssignment.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWExternalSource.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWExternalSource.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWExternalSource.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWExternalSource.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWExternalSource.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWExternalSource.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWExternalSource.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWExternalSource.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWExternallyDefinedItem.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWExternallyDefinedItem.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWExternallyDefinedItem.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWExternallyDefinedItem.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWExternallyDefinedItem.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWExternallyDefinedItem.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWExternallyDefinedItem.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWExternallyDefinedItem.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWGeneralProperty.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWGeneralProperty.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWGeneralProperty.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWGeneralProperty.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWGeneralProperty.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWGeneralProperty.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWGeneralProperty.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWGeneralProperty.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWGeneralPropertyAssociation.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWGeneralPropertyAssociation.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWGeneralPropertyAssociation.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWGeneralPropertyAssociation.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWGeneralPropertyAssociation.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWGeneralPropertyAssociation.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWGeneralPropertyAssociation.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWGeneralPropertyAssociation.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWGeneralPropertyRelationship.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWGeneralPropertyRelationship.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWGeneralPropertyRelationship.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWGeneralPropertyRelationship.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWGeneralPropertyRelationship.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWGeneralPropertyRelationship.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWGeneralPropertyRelationship.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWGeneralPropertyRelationship.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWGroup.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWGroup.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWGroup.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWGroup.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWGroup.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWGroup.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWGroup.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWGroup.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWGroupAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWGroupAssignment.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWGroupAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWGroupAssignment.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWGroupAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWGroupAssignment.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWGroupAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWGroupAssignment.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWGroupRelationship.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWGroupRelationship.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWGroupRelationship.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWGroupRelationship.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWGroupRelationship.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWGroupRelationship.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWGroupRelationship.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWGroupRelationship.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWIdentificationAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWIdentificationAssignment.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWIdentificationAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWIdentificationAssignment.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWIdentificationAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWIdentificationAssignment.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWIdentificationAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWIdentificationAssignment.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWIdentificationRole.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWIdentificationRole.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWIdentificationRole.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWIdentificationRole.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWIdentificationRole.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWIdentificationRole.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWIdentificationRole.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWIdentificationRole.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWLengthMeasureWithUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWLengthMeasureWithUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWLengthMeasureWithUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWLengthMeasureWithUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWLengthMeasureWithUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWLengthMeasureWithUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWLengthMeasureWithUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWLengthMeasureWithUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWLengthUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWLengthUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWLengthUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWLengthUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWLengthUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWLengthUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWLengthUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWLengthUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWLocalTime.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWLocalTime.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWLocalTime.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWLocalTime.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWLocalTime.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWLocalTime.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWLocalTime.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWLocalTime.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWMassMeasureWithUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWMassMeasureWithUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWMassMeasureWithUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWMassMeasureWithUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWMassMeasureWithUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWMassMeasureWithUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWMassMeasureWithUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWMassMeasureWithUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWMassUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWMassUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWMassUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWMassUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWMassUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWMassUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWMassUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWMassUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWMeasureWithUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWMeasureWithUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWMeasureWithUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWMeasureWithUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWMeasureWithUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWMeasureWithUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWMeasureWithUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWMeasureWithUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWMechanicalContext.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWMechanicalContext.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWMechanicalContext.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWMechanicalContext.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWMechanicalContext.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWMechanicalContext.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWMechanicalContext.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWMechanicalContext.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWNameAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWNameAssignment.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWNameAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWNameAssignment.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWNameAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWNameAssignment.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWNameAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWNameAssignment.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWNamedUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWNamedUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWNamedUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWNamedUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWNamedUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWNamedUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWNamedUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWNamedUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWObjectRole.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWObjectRole.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWObjectRole.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWObjectRole.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWObjectRole.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWObjectRole.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWObjectRole.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWObjectRole.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWOrdinalDate.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWOrdinalDate.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWOrdinalDate.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWOrdinalDate.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWOrdinalDate.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWOrdinalDate.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWOrdinalDate.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWOrdinalDate.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWOrganization.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWOrganization.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWOrganization.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWOrganization.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWOrganization.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWOrganization.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWOrganization.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWOrganization.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWOrganizationRole.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWOrganizationRole.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWOrganizationRole.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWOrganizationRole.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWOrganizationRole.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWOrganizationRole.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWOrganizationRole.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWOrganizationRole.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWOrganizationalAddress.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWOrganizationalAddress.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWOrganizationalAddress.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWOrganizationalAddress.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWOrganizationalAddress.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWOrganizationalAddress.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWOrganizationalAddress.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWOrganizationalAddress.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWPerson.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWPerson.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWPerson.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWPerson.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWPerson.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWPerson.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWPerson.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWPerson.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWPersonAndOrganization.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWPersonAndOrganization.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWPersonAndOrganization.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWPersonAndOrganization.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWPersonAndOrganization.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWPersonAndOrganization.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWPersonAndOrganization.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWPersonAndOrganization.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWPersonAndOrganizationRole.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWPersonAndOrganizationRole.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWPersonAndOrganizationRole.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWPersonAndOrganizationRole.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWPersonAndOrganizationRole.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWPersonAndOrganizationRole.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWPersonAndOrganizationRole.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWPersonAndOrganizationRole.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWPersonalAddress.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWPersonalAddress.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWPersonalAddress.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWPersonalAddress.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWPersonalAddress.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWPersonalAddress.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWPersonalAddress.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWPersonalAddress.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWPlaneAngleMeasureWithUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWPlaneAngleMeasureWithUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWPlaneAngleMeasureWithUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWPlaneAngleMeasureWithUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWPlaneAngleMeasureWithUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWPlaneAngleMeasureWithUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWPlaneAngleMeasureWithUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWPlaneAngleMeasureWithUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWPlaneAngleUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWPlaneAngleUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWPlaneAngleUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWPlaneAngleUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWPlaneAngleUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWPlaneAngleUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWPlaneAngleUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWPlaneAngleUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWProduct.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProduct.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProduct.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProduct.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWProduct.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProduct.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProduct.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProduct.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductCategory.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductCategory.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductCategory.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductCategory.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductCategory.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductCategory.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductCategory.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductCategory.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductCategoryRelationship.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductCategoryRelationship.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductCategoryRelationship.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductCategoryRelationship.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductCategoryRelationship.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductCategoryRelationship.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductCategoryRelationship.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductCategoryRelationship.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductConceptContext.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductConceptContext.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductConceptContext.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductConceptContext.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductConceptContext.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductConceptContext.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductConceptContext.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductConceptContext.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductContext.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductContext.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductContext.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductContext.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductContext.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductContext.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductContext.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductContext.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductDefinition.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinition.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductDefinition.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinition.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductDefinition.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinition.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductDefinition.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinition.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductDefinitionContext.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionContext.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductDefinitionContext.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionContext.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductDefinitionContext.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionContext.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductDefinitionContext.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionContext.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductDefinitionEffectivity.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionEffectivity.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductDefinitionEffectivity.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionEffectivity.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductDefinitionEffectivity.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionEffectivity.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductDefinitionEffectivity.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionEffectivity.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductDefinitionFormation.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionFormation.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductDefinitionFormation.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionFormation.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductDefinitionFormation.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionFormation.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductDefinitionFormation.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionFormation.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductDefinitionFormationRelationship.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionFormationRelationship.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductDefinitionFormationRelationship.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionFormationRelationship.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductDefinitionFormationRelationship.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionFormationRelationship.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductDefinitionFormationRelationship.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionFormationRelationship.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductDefinitionFormationWithSpecifiedSource.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionFormationWithSpecifiedSource.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductDefinitionFormationWithSpecifiedSource.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionFormationWithSpecifiedSource.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductDefinitionFormationWithSpecifiedSource.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionFormationWithSpecifiedSource.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductDefinitionFormationWithSpecifiedSource.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionFormationWithSpecifiedSource.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductDefinitionReference.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionReference.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductDefinitionReference.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionReference.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductDefinitionReference.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionReference.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductDefinitionReference.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionReference.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductDefinitionReferenceWithLocalRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionReferenceWithLocalRepresentation.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductDefinitionReferenceWithLocalRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionReferenceWithLocalRepresentation.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductDefinitionReferenceWithLocalRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionReferenceWithLocalRepresentation.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductDefinitionReferenceWithLocalRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionReferenceWithLocalRepresentation.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductDefinitionRelationship.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionRelationship.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductDefinitionRelationship.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionRelationship.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductDefinitionRelationship.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionRelationship.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductDefinitionRelationship.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionRelationship.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductDefinitionWithAssociatedDocuments.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionWithAssociatedDocuments.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductDefinitionWithAssociatedDocuments.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionWithAssociatedDocuments.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductDefinitionWithAssociatedDocuments.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionWithAssociatedDocuments.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductDefinitionWithAssociatedDocuments.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductDefinitionWithAssociatedDocuments.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductRelatedProductCategory.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductRelatedProductCategory.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductRelatedProductCategory.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductRelatedProductCategory.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductRelatedProductCategory.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductRelatedProductCategory.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductRelatedProductCategory.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductRelatedProductCategory.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductType.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductType.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductType.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductType.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWProductType.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductType.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWProductType.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWProductType.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWRatioMeasureWithUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWRatioMeasureWithUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWRatioMeasureWithUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWRatioMeasureWithUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWRatioMeasureWithUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWRatioMeasureWithUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWRatioMeasureWithUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWRatioMeasureWithUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWRoleAssociation.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWRoleAssociation.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWRoleAssociation.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWRoleAssociation.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWRoleAssociation.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWRoleAssociation.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWRoleAssociation.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWRoleAssociation.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWSecurityClassification.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSecurityClassification.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSecurityClassification.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSecurityClassification.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWSecurityClassification.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSecurityClassification.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSecurityClassification.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSecurityClassification.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWSecurityClassificationLevel.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSecurityClassificationLevel.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSecurityClassificationLevel.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSecurityClassificationLevel.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWSecurityClassificationLevel.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSecurityClassificationLevel.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSecurityClassificationLevel.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSecurityClassificationLevel.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWSiUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSiUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWSiUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSiUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWSiUnitAndAreaUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndAreaUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSiUnitAndAreaUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndAreaUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWSiUnitAndAreaUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndAreaUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSiUnitAndAreaUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndAreaUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWSiUnitAndLengthUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndLengthUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSiUnitAndLengthUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndLengthUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWSiUnitAndLengthUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndLengthUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSiUnitAndLengthUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndLengthUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWSiUnitAndMassUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndMassUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSiUnitAndMassUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndMassUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWSiUnitAndMassUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndMassUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSiUnitAndMassUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndMassUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWSiUnitAndPlaneAngleUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndPlaneAngleUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSiUnitAndPlaneAngleUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndPlaneAngleUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWSiUnitAndPlaneAngleUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndPlaneAngleUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSiUnitAndPlaneAngleUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndPlaneAngleUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWSiUnitAndRatioUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndRatioUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSiUnitAndRatioUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndRatioUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWSiUnitAndRatioUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndRatioUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSiUnitAndRatioUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndRatioUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWSiUnitAndSolidAngleUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndSolidAngleUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSiUnitAndSolidAngleUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndSolidAngleUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWSiUnitAndSolidAngleUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndSolidAngleUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSiUnitAndSolidAngleUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndSolidAngleUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWSiUnitAndThermodynamicTemperatureUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndThermodynamicTemperatureUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSiUnitAndThermodynamicTemperatureUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndThermodynamicTemperatureUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWSiUnitAndThermodynamicTemperatureUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndThermodynamicTemperatureUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSiUnitAndThermodynamicTemperatureUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndThermodynamicTemperatureUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWSiUnitAndTimeUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndTimeUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSiUnitAndTimeUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndTimeUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWSiUnitAndTimeUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndTimeUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSiUnitAndTimeUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndTimeUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWSiUnitAndVolumeUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndVolumeUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSiUnitAndVolumeUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndVolumeUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWSiUnitAndVolumeUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndVolumeUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSiUnitAndVolumeUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSiUnitAndVolumeUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWSolidAngleMeasureWithUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSolidAngleMeasureWithUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSolidAngleMeasureWithUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSolidAngleMeasureWithUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWSolidAngleMeasureWithUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSolidAngleMeasureWithUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSolidAngleMeasureWithUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSolidAngleMeasureWithUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWSolidAngleUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSolidAngleUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSolidAngleUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSolidAngleUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWSolidAngleUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSolidAngleUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWSolidAngleUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWSolidAngleUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWThermodynamicTemperatureUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWThermodynamicTemperatureUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWThermodynamicTemperatureUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWThermodynamicTemperatureUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWThermodynamicTemperatureUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWThermodynamicTemperatureUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWThermodynamicTemperatureUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWThermodynamicTemperatureUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWUncertaintyMeasureWithUnit.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWUncertaintyMeasureWithUnit.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWUncertaintyMeasureWithUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWUncertaintyMeasureWithUnit.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWUncertaintyMeasureWithUnit.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWUncertaintyMeasureWithUnit.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWUncertaintyMeasureWithUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWUncertaintyMeasureWithUnit.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWVersionedActionRequest.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWVersionedActionRequest.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWVersionedActionRequest.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWVersionedActionRequest.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWVersionedActionRequest.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWVersionedActionRequest.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWVersionedActionRequest.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWVersionedActionRequest.pxx diff --git a/src/RWStepBasic/RWStepBasic_RWWeekOfYearAndDayDate.cxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWWeekOfYearAndDayDate.cxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWWeekOfYearAndDayDate.cxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWWeekOfYearAndDayDate.cxx diff --git a/src/RWStepBasic/RWStepBasic_RWWeekOfYearAndDayDate.pxx b/src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWWeekOfYearAndDayDate.pxx similarity index 100% rename from src/RWStepBasic/RWStepBasic_RWWeekOfYearAndDayDate.pxx rename to src/DataExchange/TKDESTEP/RWStepBasic/RWStepBasic_RWWeekOfYearAndDayDate.pxx diff --git a/src/DataExchange/TKDESTEP/RWStepDimTol/FILES.cmake b/src/DataExchange/TKDESTEP/RWStepDimTol/FILES.cmake new file mode 100644 index 0000000000..420c5b61ba --- /dev/null +++ b/src/DataExchange/TKDESTEP/RWStepDimTol/FILES.cmake @@ -0,0 +1,103 @@ +# Source files for RWStepDimTol package +set(OCCT_RWStepDimTol_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_RWStepDimTol_FILES + RWStepDimTol_RWAngularityTolerance.cxx + RWStepDimTol_RWAngularityTolerance.pxx + RWStepDimTol_RWCircularRunoutTolerance.cxx + RWStepDimTol_RWCircularRunoutTolerance.pxx + RWStepDimTol_RWCoaxialityTolerance.cxx + RWStepDimTol_RWCoaxialityTolerance.pxx + RWStepDimTol_RWCommonDatum.cxx + RWStepDimTol_RWCommonDatum.pxx + RWStepDimTol_RWConcentricityTolerance.cxx + RWStepDimTol_RWConcentricityTolerance.pxx + RWStepDimTol_RWCylindricityTolerance.cxx + RWStepDimTol_RWCylindricityTolerance.pxx + RWStepDimTol_RWDatum.cxx + RWStepDimTol_RWDatum.pxx + RWStepDimTol_RWDatumFeature.cxx + RWStepDimTol_RWDatumFeature.pxx + RWStepDimTol_RWDatumReference.cxx + RWStepDimTol_RWDatumReference.pxx + RWStepDimTol_RWDatumReferenceCompartment.cxx + RWStepDimTol_RWDatumReferenceCompartment.pxx + RWStepDimTol_RWDatumReferenceElement.cxx + RWStepDimTol_RWDatumReferenceElement.pxx + RWStepDimTol_RWDatumReferenceModifierWithValue.cxx + RWStepDimTol_RWDatumReferenceModifierWithValue.pxx + RWStepDimTol_RWDatumSystem.cxx + RWStepDimTol_RWDatumSystem.pxx + RWStepDimTol_RWDatumTarget.cxx + RWStepDimTol_RWDatumTarget.pxx + RWStepDimTol_RWFlatnessTolerance.cxx + RWStepDimTol_RWFlatnessTolerance.pxx + RWStepDimTol_RWGeneralDatumReference.cxx + RWStepDimTol_RWGeneralDatumReference.pxx + RWStepDimTol_RWGeometricTolerance.cxx + RWStepDimTol_RWGeometricTolerance.pxx + RWStepDimTol_RWGeometricToleranceRelationship.cxx + RWStepDimTol_RWGeometricToleranceRelationship.pxx + RWStepDimTol_RWGeometricToleranceWithDatumReference.cxx + RWStepDimTol_RWGeometricToleranceWithDatumReference.pxx + RWStepDimTol_RWGeometricToleranceWithDefinedAreaUnit.cxx + RWStepDimTol_RWGeometricToleranceWithDefinedAreaUnit.pxx + RWStepDimTol_RWGeometricToleranceWithDefinedUnit.cxx + RWStepDimTol_RWGeometricToleranceWithDefinedUnit.pxx + RWStepDimTol_RWGeometricToleranceWithMaximumTolerance.cxx + RWStepDimTol_RWGeometricToleranceWithMaximumTolerance.pxx + RWStepDimTol_RWGeometricToleranceWithModifiers.cxx + RWStepDimTol_RWGeometricToleranceWithModifiers.pxx + RWStepDimTol_RWGeoTolAndGeoTolWthDatRef.cxx + RWStepDimTol_RWGeoTolAndGeoTolWthDatRef.pxx + RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMaxTol.cxx + RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMaxTol.pxx + RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMod.cxx + RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMod.pxx + RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol.cxx + RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol.pxx + RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndUneqDisGeoTol.cxx + RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndUneqDisGeoTol.pxx + RWStepDimTol_RWGeoTolAndGeoTolWthMaxTol.cxx + RWStepDimTol_RWGeoTolAndGeoTolWthMaxTol.pxx + RWStepDimTol_RWGeoTolAndGeoTolWthMod.cxx + RWStepDimTol_RWGeoTolAndGeoTolWthMod.pxx + RWStepDimTol_RWLineProfileTolerance.cxx + RWStepDimTol_RWLineProfileTolerance.pxx + RWStepDimTol_RWModifiedGeometricTolerance.cxx + RWStepDimTol_RWModifiedGeometricTolerance.pxx + RWStepDimTol_RWNonUniformZoneDefinition.cxx + RWStepDimTol_RWNonUniformZoneDefinition.pxx + RWStepDimTol_RWParallelismTolerance.cxx + RWStepDimTol_RWParallelismTolerance.pxx + RWStepDimTol_RWPerpendicularityTolerance.cxx + RWStepDimTol_RWPerpendicularityTolerance.pxx + RWStepDimTol_RWPlacedDatumTargetFeature.cxx + RWStepDimTol_RWPlacedDatumTargetFeature.pxx + RWStepDimTol_RWPositionTolerance.cxx + RWStepDimTol_RWPositionTolerance.pxx + RWStepDimTol_RWProjectedZoneDefinition.cxx + RWStepDimTol_RWProjectedZoneDefinition.pxx + RWStepDimTol_RWRoundnessTolerance.cxx + RWStepDimTol_RWRoundnessTolerance.pxx + RWStepDimTol_RWRunoutZoneDefinition.cxx + RWStepDimTol_RWRunoutZoneDefinition.pxx + RWStepDimTol_RWRunoutZoneOrientation.cxx + RWStepDimTol_RWRunoutZoneOrientation.pxx + RWStepDimTol_RWStraightnessTolerance.cxx + RWStepDimTol_RWStraightnessTolerance.pxx + RWStepDimTol_RWSurfaceProfileTolerance.cxx + RWStepDimTol_RWSurfaceProfileTolerance.pxx + RWStepDimTol_RWSymmetryTolerance.cxx + RWStepDimTol_RWSymmetryTolerance.pxx + RWStepDimTol_RWToleranceZone.cxx + RWStepDimTol_RWToleranceZone.pxx + RWStepDimTol_RWToleranceZoneDefinition.cxx + RWStepDimTol_RWToleranceZoneDefinition.pxx + RWStepDimTol_RWToleranceZoneForm.cxx + RWStepDimTol_RWToleranceZoneForm.pxx + RWStepDimTol_RWTotalRunoutTolerance.cxx + RWStepDimTol_RWTotalRunoutTolerance.pxx + RWStepDimTol_RWUnequallyDisposedGeometricTolerance.cxx + RWStepDimTol_RWUnequallyDisposedGeometricTolerance.pxx +) diff --git a/src/RWStepDimTol/RWStepDimTol_RWAngularityTolerance.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWAngularityTolerance.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWAngularityTolerance.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWAngularityTolerance.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWAngularityTolerance.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWAngularityTolerance.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWAngularityTolerance.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWAngularityTolerance.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWCircularRunoutTolerance.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWCircularRunoutTolerance.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWCircularRunoutTolerance.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWCircularRunoutTolerance.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWCircularRunoutTolerance.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWCircularRunoutTolerance.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWCircularRunoutTolerance.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWCircularRunoutTolerance.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWCoaxialityTolerance.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWCoaxialityTolerance.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWCoaxialityTolerance.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWCoaxialityTolerance.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWCoaxialityTolerance.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWCoaxialityTolerance.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWCoaxialityTolerance.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWCoaxialityTolerance.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWCommonDatum.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWCommonDatum.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWCommonDatum.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWCommonDatum.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWCommonDatum.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWCommonDatum.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWCommonDatum.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWCommonDatum.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWConcentricityTolerance.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWConcentricityTolerance.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWConcentricityTolerance.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWConcentricityTolerance.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWConcentricityTolerance.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWConcentricityTolerance.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWConcentricityTolerance.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWConcentricityTolerance.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWCylindricityTolerance.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWCylindricityTolerance.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWCylindricityTolerance.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWCylindricityTolerance.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWCylindricityTolerance.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWCylindricityTolerance.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWCylindricityTolerance.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWCylindricityTolerance.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWDatum.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatum.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWDatum.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatum.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWDatum.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatum.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWDatum.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatum.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWDatumFeature.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumFeature.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWDatumFeature.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumFeature.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWDatumFeature.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumFeature.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWDatumFeature.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumFeature.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWDatumReference.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumReference.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWDatumReference.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumReference.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWDatumReference.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumReference.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWDatumReference.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumReference.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWDatumReferenceCompartment.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumReferenceCompartment.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWDatumReferenceCompartment.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumReferenceCompartment.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWDatumReferenceCompartment.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumReferenceCompartment.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWDatumReferenceCompartment.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumReferenceCompartment.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWDatumReferenceElement.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumReferenceElement.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWDatumReferenceElement.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumReferenceElement.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWDatumReferenceElement.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumReferenceElement.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWDatumReferenceElement.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumReferenceElement.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWDatumReferenceModifierWithValue.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumReferenceModifierWithValue.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWDatumReferenceModifierWithValue.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumReferenceModifierWithValue.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWDatumReferenceModifierWithValue.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumReferenceModifierWithValue.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWDatumReferenceModifierWithValue.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumReferenceModifierWithValue.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWDatumSystem.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumSystem.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWDatumSystem.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumSystem.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWDatumSystem.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumSystem.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWDatumSystem.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumSystem.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWDatumTarget.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumTarget.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWDatumTarget.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumTarget.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWDatumTarget.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumTarget.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWDatumTarget.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWDatumTarget.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWFlatnessTolerance.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWFlatnessTolerance.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWFlatnessTolerance.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWFlatnessTolerance.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWFlatnessTolerance.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWFlatnessTolerance.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWFlatnessTolerance.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWFlatnessTolerance.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeneralDatumReference.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeneralDatumReference.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeneralDatumReference.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeneralDatumReference.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeneralDatumReference.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeneralDatumReference.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeneralDatumReference.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeneralDatumReference.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRef.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRef.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRef.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRef.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRef.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRef.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRef.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRef.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMaxTol.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMaxTol.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMaxTol.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMaxTol.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMaxTol.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMaxTol.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMaxTol.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMaxTol.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMod.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMod.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMod.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMod.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMod.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMod.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMod.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMod.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndUneqDisGeoTol.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndUneqDisGeoTol.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndUneqDisGeoTol.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndUneqDisGeoTol.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndUneqDisGeoTol.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndUneqDisGeoTol.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndUneqDisGeoTol.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndUneqDisGeoTol.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthMaxTol.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthMaxTol.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthMaxTol.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthMaxTol.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthMaxTol.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthMaxTol.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthMaxTol.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthMaxTol.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthMod.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthMod.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthMod.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthMod.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthMod.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthMod.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthMod.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeoTolAndGeoTolWthMod.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeometricTolerance.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricTolerance.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeometricTolerance.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricTolerance.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeometricTolerance.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricTolerance.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeometricTolerance.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricTolerance.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeometricToleranceRelationship.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricToleranceRelationship.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeometricToleranceRelationship.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricToleranceRelationship.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeometricToleranceRelationship.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricToleranceRelationship.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeometricToleranceRelationship.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricToleranceRelationship.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithDatumReference.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithDatumReference.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithDatumReference.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithDatumReference.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithDatumReference.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithDatumReference.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithDatumReference.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithDatumReference.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithDefinedAreaUnit.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithDefinedAreaUnit.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithDefinedAreaUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithDefinedAreaUnit.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithDefinedAreaUnit.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithDefinedAreaUnit.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithDefinedAreaUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithDefinedAreaUnit.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithDefinedUnit.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithDefinedUnit.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithDefinedUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithDefinedUnit.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithDefinedUnit.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithDefinedUnit.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithDefinedUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithDefinedUnit.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithMaximumTolerance.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithMaximumTolerance.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithMaximumTolerance.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithMaximumTolerance.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithMaximumTolerance.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithMaximumTolerance.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithMaximumTolerance.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithMaximumTolerance.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithModifiers.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithModifiers.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithModifiers.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithModifiers.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithModifiers.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithModifiers.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithModifiers.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWGeometricToleranceWithModifiers.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWLineProfileTolerance.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWLineProfileTolerance.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWLineProfileTolerance.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWLineProfileTolerance.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWLineProfileTolerance.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWLineProfileTolerance.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWLineProfileTolerance.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWLineProfileTolerance.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWModifiedGeometricTolerance.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWModifiedGeometricTolerance.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWModifiedGeometricTolerance.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWModifiedGeometricTolerance.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWModifiedGeometricTolerance.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWModifiedGeometricTolerance.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWModifiedGeometricTolerance.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWModifiedGeometricTolerance.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWNonUniformZoneDefinition.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWNonUniformZoneDefinition.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWNonUniformZoneDefinition.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWNonUniformZoneDefinition.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWNonUniformZoneDefinition.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWNonUniformZoneDefinition.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWNonUniformZoneDefinition.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWNonUniformZoneDefinition.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWParallelismTolerance.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWParallelismTolerance.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWParallelismTolerance.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWParallelismTolerance.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWParallelismTolerance.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWParallelismTolerance.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWParallelismTolerance.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWParallelismTolerance.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWPerpendicularityTolerance.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWPerpendicularityTolerance.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWPerpendicularityTolerance.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWPerpendicularityTolerance.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWPerpendicularityTolerance.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWPerpendicularityTolerance.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWPerpendicularityTolerance.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWPerpendicularityTolerance.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWPlacedDatumTargetFeature.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWPlacedDatumTargetFeature.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWPlacedDatumTargetFeature.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWPlacedDatumTargetFeature.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWPlacedDatumTargetFeature.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWPlacedDatumTargetFeature.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWPlacedDatumTargetFeature.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWPlacedDatumTargetFeature.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWPositionTolerance.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWPositionTolerance.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWPositionTolerance.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWPositionTolerance.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWPositionTolerance.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWPositionTolerance.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWPositionTolerance.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWPositionTolerance.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWProjectedZoneDefinition.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWProjectedZoneDefinition.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWProjectedZoneDefinition.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWProjectedZoneDefinition.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWProjectedZoneDefinition.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWProjectedZoneDefinition.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWProjectedZoneDefinition.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWProjectedZoneDefinition.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWRoundnessTolerance.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWRoundnessTolerance.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWRoundnessTolerance.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWRoundnessTolerance.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWRoundnessTolerance.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWRoundnessTolerance.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWRoundnessTolerance.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWRoundnessTolerance.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWRunoutZoneDefinition.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWRunoutZoneDefinition.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWRunoutZoneDefinition.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWRunoutZoneDefinition.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWRunoutZoneDefinition.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWRunoutZoneDefinition.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWRunoutZoneDefinition.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWRunoutZoneDefinition.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWRunoutZoneOrientation.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWRunoutZoneOrientation.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWRunoutZoneOrientation.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWRunoutZoneOrientation.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWRunoutZoneOrientation.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWRunoutZoneOrientation.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWRunoutZoneOrientation.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWRunoutZoneOrientation.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWStraightnessTolerance.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWStraightnessTolerance.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWStraightnessTolerance.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWStraightnessTolerance.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWStraightnessTolerance.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWStraightnessTolerance.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWStraightnessTolerance.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWStraightnessTolerance.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWSurfaceProfileTolerance.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWSurfaceProfileTolerance.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWSurfaceProfileTolerance.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWSurfaceProfileTolerance.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWSurfaceProfileTolerance.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWSurfaceProfileTolerance.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWSurfaceProfileTolerance.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWSurfaceProfileTolerance.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWSymmetryTolerance.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWSymmetryTolerance.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWSymmetryTolerance.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWSymmetryTolerance.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWSymmetryTolerance.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWSymmetryTolerance.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWSymmetryTolerance.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWSymmetryTolerance.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWToleranceZone.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWToleranceZone.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWToleranceZone.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWToleranceZone.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWToleranceZone.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWToleranceZone.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWToleranceZone.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWToleranceZone.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWToleranceZoneDefinition.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWToleranceZoneDefinition.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWToleranceZoneDefinition.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWToleranceZoneDefinition.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWToleranceZoneDefinition.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWToleranceZoneDefinition.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWToleranceZoneDefinition.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWToleranceZoneDefinition.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWToleranceZoneForm.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWToleranceZoneForm.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWToleranceZoneForm.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWToleranceZoneForm.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWToleranceZoneForm.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWToleranceZoneForm.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWToleranceZoneForm.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWToleranceZoneForm.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWTotalRunoutTolerance.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWTotalRunoutTolerance.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWTotalRunoutTolerance.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWTotalRunoutTolerance.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWTotalRunoutTolerance.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWTotalRunoutTolerance.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWTotalRunoutTolerance.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWTotalRunoutTolerance.pxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWUnequallyDisposedGeometricTolerance.cxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWUnequallyDisposedGeometricTolerance.cxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWUnequallyDisposedGeometricTolerance.cxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWUnequallyDisposedGeometricTolerance.cxx diff --git a/src/RWStepDimTol/RWStepDimTol_RWUnequallyDisposedGeometricTolerance.pxx b/src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWUnequallyDisposedGeometricTolerance.pxx similarity index 100% rename from src/RWStepDimTol/RWStepDimTol_RWUnequallyDisposedGeometricTolerance.pxx rename to src/DataExchange/TKDESTEP/RWStepDimTol/RWStepDimTol_RWUnequallyDisposedGeometricTolerance.pxx diff --git a/src/DataExchange/TKDESTEP/RWStepElement/FILES.cmake b/src/DataExchange/TKDESTEP/RWStepElement/FILES.cmake new file mode 100644 index 0000000000..76e6103649 --- /dev/null +++ b/src/DataExchange/TKDESTEP/RWStepElement/FILES.cmake @@ -0,0 +1,35 @@ +# Source files for RWStepElement package +set(OCCT_RWStepElement_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_RWStepElement_FILES + RWStepElement_RWAnalysisItemWithinRepresentation.cxx + RWStepElement_RWAnalysisItemWithinRepresentation.pxx + RWStepElement_RWCurve3dElementDescriptor.cxx + RWStepElement_RWCurve3dElementDescriptor.pxx + RWStepElement_RWCurveElementEndReleasePacket.cxx + RWStepElement_RWCurveElementEndReleasePacket.pxx + RWStepElement_RWCurveElementSectionDefinition.cxx + RWStepElement_RWCurveElementSectionDefinition.pxx + RWStepElement_RWCurveElementSectionDerivedDefinitions.cxx + RWStepElement_RWCurveElementSectionDerivedDefinitions.pxx + RWStepElement_RWElementDescriptor.cxx + RWStepElement_RWElementDescriptor.pxx + RWStepElement_RWElementMaterial.cxx + RWStepElement_RWElementMaterial.pxx + RWStepElement_RWSurface3dElementDescriptor.cxx + RWStepElement_RWSurface3dElementDescriptor.pxx + RWStepElement_RWSurfaceElementProperty.cxx + RWStepElement_RWSurfaceElementProperty.pxx + RWStepElement_RWSurfaceSection.cxx + RWStepElement_RWSurfaceSection.pxx + RWStepElement_RWSurfaceSectionField.cxx + RWStepElement_RWSurfaceSectionField.pxx + RWStepElement_RWSurfaceSectionFieldConstant.cxx + RWStepElement_RWSurfaceSectionFieldConstant.pxx + RWStepElement_RWSurfaceSectionFieldVarying.cxx + RWStepElement_RWSurfaceSectionFieldVarying.pxx + RWStepElement_RWUniformSurfaceSection.cxx + RWStepElement_RWUniformSurfaceSection.pxx + RWStepElement_RWVolume3dElementDescriptor.cxx + RWStepElement_RWVolume3dElementDescriptor.pxx +) diff --git a/src/RWStepElement/RWStepElement_RWAnalysisItemWithinRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWAnalysisItemWithinRepresentation.cxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWAnalysisItemWithinRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWAnalysisItemWithinRepresentation.cxx diff --git a/src/RWStepElement/RWStepElement_RWAnalysisItemWithinRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWAnalysisItemWithinRepresentation.pxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWAnalysisItemWithinRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWAnalysisItemWithinRepresentation.pxx diff --git a/src/RWStepElement/RWStepElement_RWCurve3dElementDescriptor.cxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWCurve3dElementDescriptor.cxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWCurve3dElementDescriptor.cxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWCurve3dElementDescriptor.cxx diff --git a/src/RWStepElement/RWStepElement_RWCurve3dElementDescriptor.pxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWCurve3dElementDescriptor.pxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWCurve3dElementDescriptor.pxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWCurve3dElementDescriptor.pxx diff --git a/src/RWStepElement/RWStepElement_RWCurveElementEndReleasePacket.cxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWCurveElementEndReleasePacket.cxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWCurveElementEndReleasePacket.cxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWCurveElementEndReleasePacket.cxx diff --git a/src/RWStepElement/RWStepElement_RWCurveElementEndReleasePacket.pxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWCurveElementEndReleasePacket.pxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWCurveElementEndReleasePacket.pxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWCurveElementEndReleasePacket.pxx diff --git a/src/RWStepElement/RWStepElement_RWCurveElementSectionDefinition.cxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWCurveElementSectionDefinition.cxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWCurveElementSectionDefinition.cxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWCurveElementSectionDefinition.cxx diff --git a/src/RWStepElement/RWStepElement_RWCurveElementSectionDefinition.pxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWCurveElementSectionDefinition.pxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWCurveElementSectionDefinition.pxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWCurveElementSectionDefinition.pxx diff --git a/src/RWStepElement/RWStepElement_RWCurveElementSectionDerivedDefinitions.cxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWCurveElementSectionDerivedDefinitions.cxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWCurveElementSectionDerivedDefinitions.cxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWCurveElementSectionDerivedDefinitions.cxx diff --git a/src/RWStepElement/RWStepElement_RWCurveElementSectionDerivedDefinitions.pxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWCurveElementSectionDerivedDefinitions.pxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWCurveElementSectionDerivedDefinitions.pxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWCurveElementSectionDerivedDefinitions.pxx diff --git a/src/RWStepElement/RWStepElement_RWElementDescriptor.cxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWElementDescriptor.cxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWElementDescriptor.cxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWElementDescriptor.cxx diff --git a/src/RWStepElement/RWStepElement_RWElementDescriptor.pxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWElementDescriptor.pxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWElementDescriptor.pxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWElementDescriptor.pxx diff --git a/src/RWStepElement/RWStepElement_RWElementMaterial.cxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWElementMaterial.cxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWElementMaterial.cxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWElementMaterial.cxx diff --git a/src/RWStepElement/RWStepElement_RWElementMaterial.pxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWElementMaterial.pxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWElementMaterial.pxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWElementMaterial.pxx diff --git a/src/RWStepElement/RWStepElement_RWSurface3dElementDescriptor.cxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWSurface3dElementDescriptor.cxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWSurface3dElementDescriptor.cxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWSurface3dElementDescriptor.cxx diff --git a/src/RWStepElement/RWStepElement_RWSurface3dElementDescriptor.pxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWSurface3dElementDescriptor.pxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWSurface3dElementDescriptor.pxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWSurface3dElementDescriptor.pxx diff --git a/src/RWStepElement/RWStepElement_RWSurfaceElementProperty.cxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWSurfaceElementProperty.cxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWSurfaceElementProperty.cxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWSurfaceElementProperty.cxx diff --git a/src/RWStepElement/RWStepElement_RWSurfaceElementProperty.pxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWSurfaceElementProperty.pxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWSurfaceElementProperty.pxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWSurfaceElementProperty.pxx diff --git a/src/RWStepElement/RWStepElement_RWSurfaceSection.cxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWSurfaceSection.cxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWSurfaceSection.cxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWSurfaceSection.cxx diff --git a/src/RWStepElement/RWStepElement_RWSurfaceSection.pxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWSurfaceSection.pxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWSurfaceSection.pxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWSurfaceSection.pxx diff --git a/src/RWStepElement/RWStepElement_RWSurfaceSectionField.cxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWSurfaceSectionField.cxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWSurfaceSectionField.cxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWSurfaceSectionField.cxx diff --git a/src/RWStepElement/RWStepElement_RWSurfaceSectionField.pxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWSurfaceSectionField.pxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWSurfaceSectionField.pxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWSurfaceSectionField.pxx diff --git a/src/RWStepElement/RWStepElement_RWSurfaceSectionFieldConstant.cxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWSurfaceSectionFieldConstant.cxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWSurfaceSectionFieldConstant.cxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWSurfaceSectionFieldConstant.cxx diff --git a/src/RWStepElement/RWStepElement_RWSurfaceSectionFieldConstant.pxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWSurfaceSectionFieldConstant.pxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWSurfaceSectionFieldConstant.pxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWSurfaceSectionFieldConstant.pxx diff --git a/src/RWStepElement/RWStepElement_RWSurfaceSectionFieldVarying.cxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWSurfaceSectionFieldVarying.cxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWSurfaceSectionFieldVarying.cxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWSurfaceSectionFieldVarying.cxx diff --git a/src/RWStepElement/RWStepElement_RWSurfaceSectionFieldVarying.pxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWSurfaceSectionFieldVarying.pxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWSurfaceSectionFieldVarying.pxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWSurfaceSectionFieldVarying.pxx diff --git a/src/RWStepElement/RWStepElement_RWUniformSurfaceSection.cxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWUniformSurfaceSection.cxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWUniformSurfaceSection.cxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWUniformSurfaceSection.cxx diff --git a/src/RWStepElement/RWStepElement_RWUniformSurfaceSection.pxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWUniformSurfaceSection.pxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWUniformSurfaceSection.pxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWUniformSurfaceSection.pxx diff --git a/src/RWStepElement/RWStepElement_RWVolume3dElementDescriptor.cxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWVolume3dElementDescriptor.cxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWVolume3dElementDescriptor.cxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWVolume3dElementDescriptor.cxx diff --git a/src/RWStepElement/RWStepElement_RWVolume3dElementDescriptor.pxx b/src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWVolume3dElementDescriptor.pxx similarity index 100% rename from src/RWStepElement/RWStepElement_RWVolume3dElementDescriptor.pxx rename to src/DataExchange/TKDESTEP/RWStepElement/RWStepElement_RWVolume3dElementDescriptor.pxx diff --git a/src/DataExchange/TKDESTEP/RWStepFEA/FILES.cmake b/src/DataExchange/TKDESTEP/RWStepFEA/FILES.cmake new file mode 100644 index 0000000000..255bb7436b --- /dev/null +++ b/src/DataExchange/TKDESTEP/RWStepFEA/FILES.cmake @@ -0,0 +1,109 @@ +# Source files for RWStepFEA package +set(OCCT_RWStepFEA_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_RWStepFEA_FILES + RWStepFEA_RWAlignedCurve3dElementCoordinateSystem.cxx + RWStepFEA_RWAlignedCurve3dElementCoordinateSystem.pxx + RWStepFEA_RWAlignedSurface3dElementCoordinateSystem.cxx + RWStepFEA_RWAlignedSurface3dElementCoordinateSystem.pxx + RWStepFEA_RWArbitraryVolume3dElementCoordinateSystem.cxx + RWStepFEA_RWArbitraryVolume3dElementCoordinateSystem.pxx + RWStepFEA_RWConstantSurface3dElementCoordinateSystem.cxx + RWStepFEA_RWConstantSurface3dElementCoordinateSystem.pxx + RWStepFEA_RWCurve3dElementProperty.cxx + RWStepFEA_RWCurve3dElementProperty.pxx + RWStepFEA_RWCurve3dElementRepresentation.cxx + RWStepFEA_RWCurve3dElementRepresentation.pxx + RWStepFEA_RWCurveElementEndOffset.cxx + RWStepFEA_RWCurveElementEndOffset.pxx + RWStepFEA_RWCurveElementEndRelease.cxx + RWStepFEA_RWCurveElementEndRelease.pxx + RWStepFEA_RWCurveElementInterval.cxx + RWStepFEA_RWCurveElementInterval.pxx + RWStepFEA_RWCurveElementIntervalConstant.cxx + RWStepFEA_RWCurveElementIntervalConstant.pxx + RWStepFEA_RWCurveElementIntervalLinearlyVarying.cxx + RWStepFEA_RWCurveElementIntervalLinearlyVarying.pxx + RWStepFEA_RWCurveElementLocation.cxx + RWStepFEA_RWCurveElementLocation.pxx + RWStepFEA_RWDummyNode.cxx + RWStepFEA_RWDummyNode.pxx + RWStepFEA_RWElementGeometricRelationship.cxx + RWStepFEA_RWElementGeometricRelationship.pxx + RWStepFEA_RWElementGroup.cxx + RWStepFEA_RWElementGroup.pxx + RWStepFEA_RWElementRepresentation.cxx + RWStepFEA_RWElementRepresentation.pxx + RWStepFEA_RWFeaAreaDensity.cxx + RWStepFEA_RWFeaAreaDensity.pxx + RWStepFEA_RWFeaAxis2Placement3d.cxx + RWStepFEA_RWFeaAxis2Placement3d.pxx + RWStepFEA_RWFeaCurveSectionGeometricRelationship.cxx + RWStepFEA_RWFeaCurveSectionGeometricRelationship.pxx + RWStepFEA_RWFeaGroup.cxx + RWStepFEA_RWFeaGroup.pxx + RWStepFEA_RWFeaLinearElasticity.cxx + RWStepFEA_RWFeaLinearElasticity.pxx + RWStepFEA_RWFeaMassDensity.cxx + RWStepFEA_RWFeaMassDensity.pxx + RWStepFEA_RWFeaMaterialPropertyRepresentation.cxx + RWStepFEA_RWFeaMaterialPropertyRepresentation.pxx + RWStepFEA_RWFeaMaterialPropertyRepresentationItem.cxx + RWStepFEA_RWFeaMaterialPropertyRepresentationItem.pxx + RWStepFEA_RWFeaModel.cxx + RWStepFEA_RWFeaModel.pxx + RWStepFEA_RWFeaModel3d.cxx + RWStepFEA_RWFeaModel3d.pxx + RWStepFEA_RWFeaModelDefinition.cxx + RWStepFEA_RWFeaModelDefinition.pxx + RWStepFEA_RWFeaMoistureAbsorption.cxx + RWStepFEA_RWFeaMoistureAbsorption.pxx + RWStepFEA_RWFeaParametricPoint.cxx + RWStepFEA_RWFeaParametricPoint.pxx + RWStepFEA_RWFeaRepresentationItem.cxx + RWStepFEA_RWFeaRepresentationItem.pxx + RWStepFEA_RWFeaSecantCoefficientOfLinearThermalExpansion.cxx + RWStepFEA_RWFeaSecantCoefficientOfLinearThermalExpansion.pxx + RWStepFEA_RWFeaShellBendingStiffness.cxx + RWStepFEA_RWFeaShellBendingStiffness.pxx + RWStepFEA_RWFeaShellMembraneBendingCouplingStiffness.cxx + RWStepFEA_RWFeaShellMembraneBendingCouplingStiffness.pxx + RWStepFEA_RWFeaShellMembraneStiffness.cxx + RWStepFEA_RWFeaShellMembraneStiffness.pxx + RWStepFEA_RWFeaShellShearStiffness.cxx + RWStepFEA_RWFeaShellShearStiffness.pxx + RWStepFEA_RWFeaSurfaceSectionGeometricRelationship.cxx + RWStepFEA_RWFeaSurfaceSectionGeometricRelationship.pxx + RWStepFEA_RWFeaTangentialCoefficientOfLinearThermalExpansion.cxx + RWStepFEA_RWFeaTangentialCoefficientOfLinearThermalExpansion.pxx + RWStepFEA_RWFreedomAndCoefficient.cxx + RWStepFEA_RWFreedomAndCoefficient.pxx + RWStepFEA_RWFreedomsList.cxx + RWStepFEA_RWFreedomsList.pxx + RWStepFEA_RWGeometricNode.cxx + RWStepFEA_RWGeometricNode.pxx + RWStepFEA_RWNode.cxx + RWStepFEA_RWNode.pxx + RWStepFEA_RWNodeDefinition.cxx + RWStepFEA_RWNodeDefinition.pxx + RWStepFEA_RWNodeGroup.cxx + RWStepFEA_RWNodeGroup.pxx + RWStepFEA_RWNodeRepresentation.cxx + RWStepFEA_RWNodeRepresentation.pxx + RWStepFEA_RWNodeSet.cxx + RWStepFEA_RWNodeSet.pxx + RWStepFEA_RWNodeWithSolutionCoordinateSystem.cxx + RWStepFEA_RWNodeWithSolutionCoordinateSystem.pxx + RWStepFEA_RWNodeWithVector.cxx + RWStepFEA_RWNodeWithVector.pxx + RWStepFEA_RWParametricCurve3dElementCoordinateDirection.cxx + RWStepFEA_RWParametricCurve3dElementCoordinateDirection.pxx + RWStepFEA_RWParametricCurve3dElementCoordinateSystem.cxx + RWStepFEA_RWParametricCurve3dElementCoordinateSystem.pxx + RWStepFEA_RWParametricSurface3dElementCoordinateSystem.cxx + RWStepFEA_RWParametricSurface3dElementCoordinateSystem.pxx + RWStepFEA_RWSurface3dElementRepresentation.cxx + RWStepFEA_RWSurface3dElementRepresentation.pxx + RWStepFEA_RWVolume3dElementRepresentation.cxx + RWStepFEA_RWVolume3dElementRepresentation.pxx +) diff --git a/src/RWStepFEA/RWStepFEA_RWAlignedCurve3dElementCoordinateSystem.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWAlignedCurve3dElementCoordinateSystem.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWAlignedCurve3dElementCoordinateSystem.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWAlignedCurve3dElementCoordinateSystem.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWAlignedCurve3dElementCoordinateSystem.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWAlignedCurve3dElementCoordinateSystem.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWAlignedCurve3dElementCoordinateSystem.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWAlignedCurve3dElementCoordinateSystem.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWAlignedSurface3dElementCoordinateSystem.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWAlignedSurface3dElementCoordinateSystem.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWAlignedSurface3dElementCoordinateSystem.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWAlignedSurface3dElementCoordinateSystem.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWAlignedSurface3dElementCoordinateSystem.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWAlignedSurface3dElementCoordinateSystem.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWAlignedSurface3dElementCoordinateSystem.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWAlignedSurface3dElementCoordinateSystem.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWArbitraryVolume3dElementCoordinateSystem.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWArbitraryVolume3dElementCoordinateSystem.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWArbitraryVolume3dElementCoordinateSystem.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWArbitraryVolume3dElementCoordinateSystem.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWArbitraryVolume3dElementCoordinateSystem.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWArbitraryVolume3dElementCoordinateSystem.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWArbitraryVolume3dElementCoordinateSystem.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWArbitraryVolume3dElementCoordinateSystem.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWConstantSurface3dElementCoordinateSystem.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWConstantSurface3dElementCoordinateSystem.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWConstantSurface3dElementCoordinateSystem.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWConstantSurface3dElementCoordinateSystem.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWConstantSurface3dElementCoordinateSystem.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWConstantSurface3dElementCoordinateSystem.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWConstantSurface3dElementCoordinateSystem.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWConstantSurface3dElementCoordinateSystem.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWCurve3dElementProperty.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurve3dElementProperty.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWCurve3dElementProperty.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurve3dElementProperty.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWCurve3dElementProperty.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurve3dElementProperty.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWCurve3dElementProperty.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurve3dElementProperty.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWCurve3dElementRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurve3dElementRepresentation.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWCurve3dElementRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurve3dElementRepresentation.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWCurve3dElementRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurve3dElementRepresentation.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWCurve3dElementRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurve3dElementRepresentation.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWCurveElementEndOffset.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurveElementEndOffset.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWCurveElementEndOffset.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurveElementEndOffset.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWCurveElementEndOffset.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurveElementEndOffset.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWCurveElementEndOffset.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurveElementEndOffset.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWCurveElementEndRelease.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurveElementEndRelease.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWCurveElementEndRelease.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurveElementEndRelease.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWCurveElementEndRelease.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurveElementEndRelease.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWCurveElementEndRelease.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurveElementEndRelease.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWCurveElementInterval.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurveElementInterval.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWCurveElementInterval.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurveElementInterval.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWCurveElementInterval.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurveElementInterval.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWCurveElementInterval.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurveElementInterval.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWCurveElementIntervalConstant.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurveElementIntervalConstant.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWCurveElementIntervalConstant.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurveElementIntervalConstant.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWCurveElementIntervalConstant.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurveElementIntervalConstant.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWCurveElementIntervalConstant.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurveElementIntervalConstant.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWCurveElementIntervalLinearlyVarying.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurveElementIntervalLinearlyVarying.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWCurveElementIntervalLinearlyVarying.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurveElementIntervalLinearlyVarying.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWCurveElementIntervalLinearlyVarying.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurveElementIntervalLinearlyVarying.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWCurveElementIntervalLinearlyVarying.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurveElementIntervalLinearlyVarying.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWCurveElementLocation.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurveElementLocation.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWCurveElementLocation.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurveElementLocation.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWCurveElementLocation.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurveElementLocation.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWCurveElementLocation.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWCurveElementLocation.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWDummyNode.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWDummyNode.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWDummyNode.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWDummyNode.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWDummyNode.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWDummyNode.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWDummyNode.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWDummyNode.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWElementGeometricRelationship.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWElementGeometricRelationship.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWElementGeometricRelationship.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWElementGeometricRelationship.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWElementGeometricRelationship.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWElementGeometricRelationship.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWElementGeometricRelationship.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWElementGeometricRelationship.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWElementGroup.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWElementGroup.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWElementGroup.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWElementGroup.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWElementGroup.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWElementGroup.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWElementGroup.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWElementGroup.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWElementRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWElementRepresentation.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWElementRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWElementRepresentation.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWElementRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWElementRepresentation.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWElementRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWElementRepresentation.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaAreaDensity.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaAreaDensity.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaAreaDensity.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaAreaDensity.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaAreaDensity.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaAreaDensity.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaAreaDensity.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaAreaDensity.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaAxis2Placement3d.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaAxis2Placement3d.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaAxis2Placement3d.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaAxis2Placement3d.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaAxis2Placement3d.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaAxis2Placement3d.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaAxis2Placement3d.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaAxis2Placement3d.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaCurveSectionGeometricRelationship.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaCurveSectionGeometricRelationship.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaCurveSectionGeometricRelationship.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaCurveSectionGeometricRelationship.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaCurveSectionGeometricRelationship.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaCurveSectionGeometricRelationship.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaCurveSectionGeometricRelationship.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaCurveSectionGeometricRelationship.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaGroup.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaGroup.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaGroup.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaGroup.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaGroup.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaGroup.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaGroup.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaGroup.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaLinearElasticity.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaLinearElasticity.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaLinearElasticity.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaLinearElasticity.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaLinearElasticity.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaLinearElasticity.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaLinearElasticity.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaLinearElasticity.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaMassDensity.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaMassDensity.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaMassDensity.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaMassDensity.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaMassDensity.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaMassDensity.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaMassDensity.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaMassDensity.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaMaterialPropertyRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaMaterialPropertyRepresentation.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaMaterialPropertyRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaMaterialPropertyRepresentation.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaMaterialPropertyRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaMaterialPropertyRepresentation.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaMaterialPropertyRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaMaterialPropertyRepresentation.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaMaterialPropertyRepresentationItem.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaMaterialPropertyRepresentationItem.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaMaterialPropertyRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaMaterialPropertyRepresentationItem.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaMaterialPropertyRepresentationItem.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaMaterialPropertyRepresentationItem.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaMaterialPropertyRepresentationItem.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaMaterialPropertyRepresentationItem.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaModel.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaModel.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaModel.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaModel.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaModel.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaModel.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaModel.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaModel.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaModel3d.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaModel3d.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaModel3d.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaModel3d.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaModel3d.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaModel3d.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaModel3d.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaModel3d.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaModelDefinition.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaModelDefinition.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaModelDefinition.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaModelDefinition.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaModelDefinition.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaModelDefinition.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaModelDefinition.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaModelDefinition.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaMoistureAbsorption.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaMoistureAbsorption.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaMoistureAbsorption.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaMoistureAbsorption.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaMoistureAbsorption.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaMoistureAbsorption.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaMoistureAbsorption.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaMoistureAbsorption.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaParametricPoint.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaParametricPoint.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaParametricPoint.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaParametricPoint.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaParametricPoint.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaParametricPoint.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaParametricPoint.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaParametricPoint.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaRepresentationItem.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaRepresentationItem.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaRepresentationItem.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaRepresentationItem.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaRepresentationItem.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaRepresentationItem.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaRepresentationItem.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaSecantCoefficientOfLinearThermalExpansion.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaSecantCoefficientOfLinearThermalExpansion.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaSecantCoefficientOfLinearThermalExpansion.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaSecantCoefficientOfLinearThermalExpansion.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaSecantCoefficientOfLinearThermalExpansion.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaSecantCoefficientOfLinearThermalExpansion.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaSecantCoefficientOfLinearThermalExpansion.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaSecantCoefficientOfLinearThermalExpansion.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaShellBendingStiffness.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaShellBendingStiffness.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaShellBendingStiffness.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaShellBendingStiffness.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaShellBendingStiffness.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaShellBendingStiffness.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaShellBendingStiffness.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaShellBendingStiffness.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaShellMembraneBendingCouplingStiffness.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaShellMembraneBendingCouplingStiffness.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaShellMembraneBendingCouplingStiffness.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaShellMembraneBendingCouplingStiffness.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaShellMembraneBendingCouplingStiffness.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaShellMembraneBendingCouplingStiffness.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaShellMembraneBendingCouplingStiffness.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaShellMembraneBendingCouplingStiffness.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaShellMembraneStiffness.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaShellMembraneStiffness.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaShellMembraneStiffness.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaShellMembraneStiffness.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaShellMembraneStiffness.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaShellMembraneStiffness.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaShellMembraneStiffness.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaShellMembraneStiffness.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaShellShearStiffness.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaShellShearStiffness.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaShellShearStiffness.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaShellShearStiffness.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaShellShearStiffness.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaShellShearStiffness.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaShellShearStiffness.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaShellShearStiffness.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaSurfaceSectionGeometricRelationship.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaSurfaceSectionGeometricRelationship.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaSurfaceSectionGeometricRelationship.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaSurfaceSectionGeometricRelationship.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaSurfaceSectionGeometricRelationship.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaSurfaceSectionGeometricRelationship.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaSurfaceSectionGeometricRelationship.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaSurfaceSectionGeometricRelationship.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaTangentialCoefficientOfLinearThermalExpansion.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaTangentialCoefficientOfLinearThermalExpansion.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaTangentialCoefficientOfLinearThermalExpansion.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaTangentialCoefficientOfLinearThermalExpansion.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWFeaTangentialCoefficientOfLinearThermalExpansion.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaTangentialCoefficientOfLinearThermalExpansion.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFeaTangentialCoefficientOfLinearThermalExpansion.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFeaTangentialCoefficientOfLinearThermalExpansion.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWFreedomAndCoefficient.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFreedomAndCoefficient.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFreedomAndCoefficient.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFreedomAndCoefficient.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWFreedomAndCoefficient.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFreedomAndCoefficient.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFreedomAndCoefficient.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFreedomAndCoefficient.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWFreedomsList.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFreedomsList.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFreedomsList.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFreedomsList.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWFreedomsList.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFreedomsList.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWFreedomsList.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWFreedomsList.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWGeometricNode.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWGeometricNode.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWGeometricNode.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWGeometricNode.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWGeometricNode.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWGeometricNode.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWGeometricNode.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWGeometricNode.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWNode.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNode.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWNode.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNode.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWNode.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNode.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWNode.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNode.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWNodeDefinition.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNodeDefinition.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWNodeDefinition.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNodeDefinition.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWNodeDefinition.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNodeDefinition.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWNodeDefinition.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNodeDefinition.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWNodeGroup.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNodeGroup.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWNodeGroup.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNodeGroup.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWNodeGroup.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNodeGroup.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWNodeGroup.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNodeGroup.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWNodeRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNodeRepresentation.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWNodeRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNodeRepresentation.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWNodeRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNodeRepresentation.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWNodeRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNodeRepresentation.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWNodeSet.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNodeSet.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWNodeSet.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNodeSet.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWNodeSet.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNodeSet.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWNodeSet.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNodeSet.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWNodeWithSolutionCoordinateSystem.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNodeWithSolutionCoordinateSystem.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWNodeWithSolutionCoordinateSystem.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNodeWithSolutionCoordinateSystem.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWNodeWithSolutionCoordinateSystem.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNodeWithSolutionCoordinateSystem.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWNodeWithSolutionCoordinateSystem.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNodeWithSolutionCoordinateSystem.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWNodeWithVector.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNodeWithVector.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWNodeWithVector.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNodeWithVector.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWNodeWithVector.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNodeWithVector.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWNodeWithVector.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWNodeWithVector.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWParametricCurve3dElementCoordinateDirection.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWParametricCurve3dElementCoordinateDirection.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWParametricCurve3dElementCoordinateDirection.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWParametricCurve3dElementCoordinateDirection.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWParametricCurve3dElementCoordinateDirection.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWParametricCurve3dElementCoordinateDirection.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWParametricCurve3dElementCoordinateDirection.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWParametricCurve3dElementCoordinateDirection.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWParametricCurve3dElementCoordinateSystem.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWParametricCurve3dElementCoordinateSystem.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWParametricCurve3dElementCoordinateSystem.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWParametricCurve3dElementCoordinateSystem.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWParametricCurve3dElementCoordinateSystem.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWParametricCurve3dElementCoordinateSystem.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWParametricCurve3dElementCoordinateSystem.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWParametricCurve3dElementCoordinateSystem.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWParametricSurface3dElementCoordinateSystem.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWParametricSurface3dElementCoordinateSystem.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWParametricSurface3dElementCoordinateSystem.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWParametricSurface3dElementCoordinateSystem.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWParametricSurface3dElementCoordinateSystem.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWParametricSurface3dElementCoordinateSystem.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWParametricSurface3dElementCoordinateSystem.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWParametricSurface3dElementCoordinateSystem.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWSurface3dElementRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWSurface3dElementRepresentation.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWSurface3dElementRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWSurface3dElementRepresentation.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWSurface3dElementRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWSurface3dElementRepresentation.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWSurface3dElementRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWSurface3dElementRepresentation.pxx diff --git a/src/RWStepFEA/RWStepFEA_RWVolume3dElementRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWVolume3dElementRepresentation.cxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWVolume3dElementRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWVolume3dElementRepresentation.cxx diff --git a/src/RWStepFEA/RWStepFEA_RWVolume3dElementRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWVolume3dElementRepresentation.pxx similarity index 100% rename from src/RWStepFEA/RWStepFEA_RWVolume3dElementRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepFEA/RWStepFEA_RWVolume3dElementRepresentation.pxx diff --git a/src/DataExchange/TKDESTEP/RWStepGeom/FILES.cmake b/src/DataExchange/TKDESTEP/RWStepGeom/FILES.cmake new file mode 100644 index 0000000000..e49f02a5ba --- /dev/null +++ b/src/DataExchange/TKDESTEP/RWStepGeom/FILES.cmake @@ -0,0 +1,171 @@ +# Source files for RWStepGeom package +set(OCCT_RWStepGeom_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_RWStepGeom_FILES + RWStepGeom_RWAxis1Placement.cxx + RWStepGeom_RWAxis1Placement.pxx + RWStepGeom_RWAxis2Placement2d.cxx + RWStepGeom_RWAxis2Placement2d.pxx + RWStepGeom_RWAxis2Placement3d.cxx + RWStepGeom_RWAxis2Placement3d.pxx + RWStepGeom_RWBezierCurve.cxx + RWStepGeom_RWBezierCurve.pxx + RWStepGeom_RWBezierCurveAndRationalBSplineCurve.cxx + RWStepGeom_RWBezierCurveAndRationalBSplineCurve.pxx + RWStepGeom_RWBezierSurface.cxx + RWStepGeom_RWBezierSurface.pxx + RWStepGeom_RWBezierSurfaceAndRationalBSplineSurface.cxx + RWStepGeom_RWBezierSurfaceAndRationalBSplineSurface.pxx + RWStepGeom_RWBoundaryCurve.cxx + RWStepGeom_RWBoundaryCurve.pxx + RWStepGeom_RWBoundedCurve.cxx + RWStepGeom_RWBoundedCurve.pxx + RWStepGeom_RWBoundedSurface.cxx + RWStepGeom_RWBoundedSurface.pxx + RWStepGeom_RWBSplineCurve.cxx + RWStepGeom_RWBSplineCurve.pxx + RWStepGeom_RWBSplineCurveWithKnots.cxx + RWStepGeom_RWBSplineCurveWithKnots.pxx + RWStepGeom_RWBSplineCurveWithKnotsAndRationalBSplineCurve.cxx + RWStepGeom_RWBSplineCurveWithKnotsAndRationalBSplineCurve.pxx + RWStepGeom_RWBSplineSurface.cxx + RWStepGeom_RWBSplineSurface.pxx + RWStepGeom_RWBSplineSurfaceWithKnots.cxx + RWStepGeom_RWBSplineSurfaceWithKnots.pxx + RWStepGeom_RWBSplineSurfaceWithKnotsAndRationalBSplineSurface.cxx + RWStepGeom_RWBSplineSurfaceWithKnotsAndRationalBSplineSurface.pxx + RWStepGeom_RWCartesianPoint.cxx + RWStepGeom_RWCartesianPoint.pxx + RWStepGeom_RWCartesianTransformationOperator.cxx + RWStepGeom_RWCartesianTransformationOperator.pxx + RWStepGeom_RWCartesianTransformationOperator3d.cxx + RWStepGeom_RWCartesianTransformationOperator3d.pxx + RWStepGeom_RWCircle.cxx + RWStepGeom_RWCircle.pxx + RWStepGeom_RWCompositeCurve.cxx + RWStepGeom_RWCompositeCurve.pxx + RWStepGeom_RWCompositeCurveOnSurface.cxx + RWStepGeom_RWCompositeCurveOnSurface.pxx + RWStepGeom_RWCompositeCurveSegment.cxx + RWStepGeom_RWCompositeCurveSegment.pxx + RWStepGeom_RWConic.cxx + RWStepGeom_RWConic.pxx + RWStepGeom_RWConicalSurface.cxx + RWStepGeom_RWConicalSurface.pxx + RWStepGeom_RWCurve.cxx + RWStepGeom_RWCurve.pxx + RWStepGeom_RWCurveBoundedSurface.cxx + RWStepGeom_RWCurveBoundedSurface.pxx + RWStepGeom_RWCurveReplica.cxx + RWStepGeom_RWCurveReplica.pxx + RWStepGeom_RWCylindricalSurface.cxx + RWStepGeom_RWCylindricalSurface.pxx + RWStepGeom_RWDegeneratePcurve.cxx + RWStepGeom_RWDegeneratePcurve.pxx + RWStepGeom_RWDegenerateToroidalSurface.cxx + RWStepGeom_RWDegenerateToroidalSurface.pxx + RWStepGeom_RWDirection.cxx + RWStepGeom_RWDirection.pxx + RWStepGeom_RWElementarySurface.cxx + RWStepGeom_RWElementarySurface.pxx + RWStepGeom_RWEllipse.cxx + RWStepGeom_RWEllipse.pxx + RWStepGeom_RWEvaluatedDegeneratePcurve.cxx + RWStepGeom_RWEvaluatedDegeneratePcurve.pxx + RWStepGeom_RWGeometricRepresentationContext.cxx + RWStepGeom_RWGeometricRepresentationContext.pxx + RWStepGeom_RWGeometricRepresentationContextAndGlobalUnitAssignedContext.cxx + RWStepGeom_RWGeometricRepresentationContextAndGlobalUnitAssignedContext.pxx + RWStepGeom_RWGeometricRepresentationContextAndParametricRepresentationContext.cxx + RWStepGeom_RWGeometricRepresentationContextAndParametricRepresentationContext.pxx + RWStepGeom_RWGeometricRepresentationItem.cxx + RWStepGeom_RWGeometricRepresentationItem.pxx + RWStepGeom_RWGeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.cxx + RWStepGeom_RWGeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.pxx + RWStepGeom_RWHyperbola.cxx + RWStepGeom_RWHyperbola.pxx + RWStepGeom_RWIntersectionCurve.cxx + RWStepGeom_RWIntersectionCurve.pxx + RWStepGeom_RWLine.cxx + RWStepGeom_RWLine.pxx + RWStepGeom_RWOffsetCurve3d.cxx + RWStepGeom_RWOffsetCurve3d.pxx + RWStepGeom_RWOffsetSurface.cxx + RWStepGeom_RWOffsetSurface.pxx + RWStepGeom_RWOrientedSurface.cxx + RWStepGeom_RWOrientedSurface.pxx + RWStepGeom_RWOuterBoundaryCurve.cxx + RWStepGeom_RWOuterBoundaryCurve.pxx + RWStepGeom_RWParabola.cxx + RWStepGeom_RWParabola.pxx + RWStepGeom_RWPcurve.cxx + RWStepGeom_RWPcurve.pxx + RWStepGeom_RWPlacement.cxx + RWStepGeom_RWPlacement.pxx + RWStepGeom_RWPlane.cxx + RWStepGeom_RWPlane.pxx + RWStepGeom_RWPoint.cxx + RWStepGeom_RWPoint.pxx + RWStepGeom_RWPointOnCurve.cxx + RWStepGeom_RWPointOnCurve.pxx + RWStepGeom_RWPointOnSurface.cxx + RWStepGeom_RWPointOnSurface.pxx + RWStepGeom_RWPointReplica.cxx + RWStepGeom_RWPointReplica.pxx + RWStepGeom_RWPolyline.cxx + RWStepGeom_RWPolyline.pxx + RWStepGeom_RWQuasiUniformCurve.cxx + RWStepGeom_RWQuasiUniformCurve.pxx + RWStepGeom_RWQuasiUniformCurveAndRationalBSplineCurve.cxx + RWStepGeom_RWQuasiUniformCurveAndRationalBSplineCurve.pxx + RWStepGeom_RWQuasiUniformSurface.cxx + RWStepGeom_RWQuasiUniformSurface.pxx + RWStepGeom_RWQuasiUniformSurfaceAndRationalBSplineSurface.cxx + RWStepGeom_RWQuasiUniformSurfaceAndRationalBSplineSurface.pxx + RWStepGeom_RWRationalBSplineCurve.cxx + RWStepGeom_RWRationalBSplineCurve.pxx + RWStepGeom_RWRationalBSplineSurface.cxx + RWStepGeom_RWRationalBSplineSurface.pxx + RWStepGeom_RWRectangularCompositeSurface.cxx + RWStepGeom_RWRectangularCompositeSurface.pxx + RWStepGeom_RWRectangularTrimmedSurface.cxx + RWStepGeom_RWRectangularTrimmedSurface.pxx + RWStepGeom_RWReparametrisedCompositeCurveSegment.cxx + RWStepGeom_RWReparametrisedCompositeCurveSegment.pxx + RWStepGeom_RWSeamCurve.cxx + RWStepGeom_RWSeamCurve.pxx + RWStepGeom_RWSphericalSurface.cxx + RWStepGeom_RWSphericalSurface.pxx + RWStepGeom_RWSuParameters.cxx + RWStepGeom_RWSuParameters.pxx + RWStepGeom_RWSurface.cxx + RWStepGeom_RWSurface.pxx + RWStepGeom_RWSurfaceCurve.cxx + RWStepGeom_RWSurfaceCurve.pxx + RWStepGeom_RWSurfaceCurveAndBoundedCurve.cxx + RWStepGeom_RWSurfaceCurveAndBoundedCurve.pxx + RWStepGeom_RWSurfaceOfLinearExtrusion.cxx + RWStepGeom_RWSurfaceOfLinearExtrusion.pxx + RWStepGeom_RWSurfaceOfRevolution.cxx + RWStepGeom_RWSurfaceOfRevolution.pxx + RWStepGeom_RWSurfacePatch.cxx + RWStepGeom_RWSurfacePatch.pxx + RWStepGeom_RWSurfaceReplica.cxx + RWStepGeom_RWSurfaceReplica.pxx + RWStepGeom_RWSweptSurface.cxx + RWStepGeom_RWSweptSurface.pxx + RWStepGeom_RWToroidalSurface.cxx + RWStepGeom_RWToroidalSurface.pxx + RWStepGeom_RWTrimmedCurve.cxx + RWStepGeom_RWTrimmedCurve.pxx + RWStepGeom_RWUniformCurve.cxx + RWStepGeom_RWUniformCurve.pxx + RWStepGeom_RWUniformCurveAndRationalBSplineCurve.cxx + RWStepGeom_RWUniformCurveAndRationalBSplineCurve.pxx + RWStepGeom_RWUniformSurface.cxx + RWStepGeom_RWUniformSurface.pxx + RWStepGeom_RWUniformSurfaceAndRationalBSplineSurface.cxx + RWStepGeom_RWUniformSurfaceAndRationalBSplineSurface.pxx + RWStepGeom_RWVector.cxx + RWStepGeom_RWVector.pxx +) diff --git a/src/RWStepGeom/RWStepGeom_RWAxis1Placement.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWAxis1Placement.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWAxis1Placement.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWAxis1Placement.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWAxis1Placement.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWAxis1Placement.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWAxis1Placement.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWAxis1Placement.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWAxis2Placement2d.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWAxis2Placement2d.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWAxis2Placement2d.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWAxis2Placement2d.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWAxis2Placement2d.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWAxis2Placement2d.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWAxis2Placement2d.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWAxis2Placement2d.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWAxis2Placement3d.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWAxis2Placement3d.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWAxis2Placement3d.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWAxis2Placement3d.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWAxis2Placement3d.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWAxis2Placement3d.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWAxis2Placement3d.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWAxis2Placement3d.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWBSplineCurve.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBSplineCurve.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBSplineCurve.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBSplineCurve.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWBSplineCurve.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBSplineCurve.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBSplineCurve.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBSplineCurve.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWBSplineCurveWithKnots.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBSplineCurveWithKnots.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBSplineCurveWithKnots.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBSplineCurveWithKnots.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWBSplineCurveWithKnots.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBSplineCurveWithKnots.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBSplineCurveWithKnots.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBSplineCurveWithKnots.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWBSplineCurveWithKnotsAndRationalBSplineCurve.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBSplineCurveWithKnotsAndRationalBSplineCurve.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBSplineCurveWithKnotsAndRationalBSplineCurve.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBSplineCurveWithKnotsAndRationalBSplineCurve.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWBSplineCurveWithKnotsAndRationalBSplineCurve.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBSplineCurveWithKnotsAndRationalBSplineCurve.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBSplineCurveWithKnotsAndRationalBSplineCurve.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBSplineCurveWithKnotsAndRationalBSplineCurve.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWBSplineSurface.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBSplineSurface.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBSplineSurface.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBSplineSurface.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWBSplineSurface.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBSplineSurface.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBSplineSurface.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBSplineSurface.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWBSplineSurfaceWithKnots.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBSplineSurfaceWithKnots.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBSplineSurfaceWithKnots.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBSplineSurfaceWithKnots.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWBSplineSurfaceWithKnots.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBSplineSurfaceWithKnots.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBSplineSurfaceWithKnots.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBSplineSurfaceWithKnots.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWBSplineSurfaceWithKnotsAndRationalBSplineSurface.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBSplineSurfaceWithKnotsAndRationalBSplineSurface.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBSplineSurfaceWithKnotsAndRationalBSplineSurface.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBSplineSurfaceWithKnotsAndRationalBSplineSurface.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWBSplineSurfaceWithKnotsAndRationalBSplineSurface.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBSplineSurfaceWithKnotsAndRationalBSplineSurface.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBSplineSurfaceWithKnotsAndRationalBSplineSurface.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBSplineSurfaceWithKnotsAndRationalBSplineSurface.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWBezierCurve.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBezierCurve.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBezierCurve.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBezierCurve.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWBezierCurve.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBezierCurve.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBezierCurve.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBezierCurve.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWBezierCurveAndRationalBSplineCurve.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBezierCurveAndRationalBSplineCurve.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBezierCurveAndRationalBSplineCurve.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBezierCurveAndRationalBSplineCurve.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWBezierCurveAndRationalBSplineCurve.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBezierCurveAndRationalBSplineCurve.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBezierCurveAndRationalBSplineCurve.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBezierCurveAndRationalBSplineCurve.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWBezierSurface.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBezierSurface.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBezierSurface.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBezierSurface.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWBezierSurface.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBezierSurface.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBezierSurface.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBezierSurface.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWBezierSurfaceAndRationalBSplineSurface.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBezierSurfaceAndRationalBSplineSurface.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBezierSurfaceAndRationalBSplineSurface.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBezierSurfaceAndRationalBSplineSurface.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWBezierSurfaceAndRationalBSplineSurface.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBezierSurfaceAndRationalBSplineSurface.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBezierSurfaceAndRationalBSplineSurface.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBezierSurfaceAndRationalBSplineSurface.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWBoundaryCurve.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBoundaryCurve.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBoundaryCurve.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBoundaryCurve.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWBoundaryCurve.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBoundaryCurve.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBoundaryCurve.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBoundaryCurve.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWBoundedCurve.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBoundedCurve.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBoundedCurve.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBoundedCurve.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWBoundedCurve.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBoundedCurve.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBoundedCurve.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBoundedCurve.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWBoundedSurface.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBoundedSurface.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBoundedSurface.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBoundedSurface.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWBoundedSurface.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBoundedSurface.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWBoundedSurface.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWBoundedSurface.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWCartesianPoint.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCartesianPoint.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWCartesianPoint.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCartesianPoint.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWCartesianPoint.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCartesianPoint.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWCartesianPoint.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCartesianPoint.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWCartesianTransformationOperator.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCartesianTransformationOperator.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWCartesianTransformationOperator.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCartesianTransformationOperator.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWCartesianTransformationOperator.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCartesianTransformationOperator.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWCartesianTransformationOperator.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCartesianTransformationOperator.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWCartesianTransformationOperator3d.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCartesianTransformationOperator3d.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWCartesianTransformationOperator3d.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCartesianTransformationOperator3d.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWCartesianTransformationOperator3d.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCartesianTransformationOperator3d.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWCartesianTransformationOperator3d.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCartesianTransformationOperator3d.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWCircle.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCircle.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWCircle.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCircle.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWCircle.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCircle.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWCircle.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCircle.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWCompositeCurve.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCompositeCurve.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWCompositeCurve.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCompositeCurve.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWCompositeCurve.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCompositeCurve.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWCompositeCurve.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCompositeCurve.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWCompositeCurveOnSurface.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCompositeCurveOnSurface.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWCompositeCurveOnSurface.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCompositeCurveOnSurface.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWCompositeCurveOnSurface.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCompositeCurveOnSurface.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWCompositeCurveOnSurface.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCompositeCurveOnSurface.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWCompositeCurveSegment.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCompositeCurveSegment.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWCompositeCurveSegment.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCompositeCurveSegment.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWCompositeCurveSegment.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCompositeCurveSegment.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWCompositeCurveSegment.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCompositeCurveSegment.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWConic.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWConic.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWConic.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWConic.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWConic.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWConic.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWConic.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWConic.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWConicalSurface.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWConicalSurface.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWConicalSurface.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWConicalSurface.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWConicalSurface.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWConicalSurface.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWConicalSurface.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWConicalSurface.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWCurve.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCurve.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWCurve.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCurve.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWCurve.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCurve.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWCurve.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCurve.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWCurveBoundedSurface.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCurveBoundedSurface.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWCurveBoundedSurface.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCurveBoundedSurface.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWCurveBoundedSurface.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCurveBoundedSurface.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWCurveBoundedSurface.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCurveBoundedSurface.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWCurveReplica.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCurveReplica.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWCurveReplica.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCurveReplica.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWCurveReplica.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCurveReplica.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWCurveReplica.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCurveReplica.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWCylindricalSurface.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCylindricalSurface.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWCylindricalSurface.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCylindricalSurface.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWCylindricalSurface.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCylindricalSurface.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWCylindricalSurface.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWCylindricalSurface.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWDegeneratePcurve.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWDegeneratePcurve.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWDegeneratePcurve.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWDegeneratePcurve.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWDegeneratePcurve.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWDegeneratePcurve.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWDegeneratePcurve.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWDegeneratePcurve.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWDegenerateToroidalSurface.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWDegenerateToroidalSurface.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWDegenerateToroidalSurface.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWDegenerateToroidalSurface.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWDegenerateToroidalSurface.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWDegenerateToroidalSurface.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWDegenerateToroidalSurface.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWDegenerateToroidalSurface.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWDirection.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWDirection.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWDirection.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWDirection.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWDirection.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWDirection.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWDirection.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWDirection.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWElementarySurface.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWElementarySurface.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWElementarySurface.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWElementarySurface.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWElementarySurface.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWElementarySurface.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWElementarySurface.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWElementarySurface.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWEllipse.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWEllipse.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWEllipse.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWEllipse.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWEllipse.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWEllipse.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWEllipse.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWEllipse.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWEvaluatedDegeneratePcurve.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWEvaluatedDegeneratePcurve.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWEvaluatedDegeneratePcurve.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWEvaluatedDegeneratePcurve.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWEvaluatedDegeneratePcurve.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWEvaluatedDegeneratePcurve.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWEvaluatedDegeneratePcurve.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWEvaluatedDegeneratePcurve.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWGeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWGeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWGeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWGeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWGeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWGeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWGeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWGeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWGeometricRepresentationContext.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWGeometricRepresentationContext.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWGeometricRepresentationContext.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWGeometricRepresentationContext.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWGeometricRepresentationContext.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWGeometricRepresentationContext.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWGeometricRepresentationContext.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWGeometricRepresentationContext.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWGeometricRepresentationContextAndGlobalUnitAssignedContext.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWGeometricRepresentationContextAndGlobalUnitAssignedContext.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWGeometricRepresentationContextAndGlobalUnitAssignedContext.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWGeometricRepresentationContextAndGlobalUnitAssignedContext.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWGeometricRepresentationContextAndGlobalUnitAssignedContext.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWGeometricRepresentationContextAndGlobalUnitAssignedContext.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWGeometricRepresentationContextAndGlobalUnitAssignedContext.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWGeometricRepresentationContextAndGlobalUnitAssignedContext.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWGeometricRepresentationContextAndParametricRepresentationContext.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWGeometricRepresentationContextAndParametricRepresentationContext.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWGeometricRepresentationContextAndParametricRepresentationContext.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWGeometricRepresentationContextAndParametricRepresentationContext.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWGeometricRepresentationContextAndParametricRepresentationContext.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWGeometricRepresentationContextAndParametricRepresentationContext.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWGeometricRepresentationContextAndParametricRepresentationContext.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWGeometricRepresentationContextAndParametricRepresentationContext.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWGeometricRepresentationItem.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWGeometricRepresentationItem.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWGeometricRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWGeometricRepresentationItem.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWGeometricRepresentationItem.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWGeometricRepresentationItem.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWGeometricRepresentationItem.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWGeometricRepresentationItem.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWHyperbola.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWHyperbola.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWHyperbola.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWHyperbola.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWHyperbola.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWHyperbola.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWHyperbola.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWHyperbola.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWIntersectionCurve.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWIntersectionCurve.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWIntersectionCurve.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWIntersectionCurve.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWIntersectionCurve.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWIntersectionCurve.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWIntersectionCurve.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWIntersectionCurve.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWLine.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWLine.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWLine.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWLine.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWLine.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWLine.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWLine.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWLine.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWOffsetCurve3d.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWOffsetCurve3d.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWOffsetCurve3d.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWOffsetCurve3d.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWOffsetCurve3d.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWOffsetCurve3d.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWOffsetCurve3d.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWOffsetCurve3d.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWOffsetSurface.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWOffsetSurface.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWOffsetSurface.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWOffsetSurface.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWOffsetSurface.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWOffsetSurface.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWOffsetSurface.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWOffsetSurface.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWOrientedSurface.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWOrientedSurface.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWOrientedSurface.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWOrientedSurface.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWOrientedSurface.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWOrientedSurface.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWOrientedSurface.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWOrientedSurface.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWOuterBoundaryCurve.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWOuterBoundaryCurve.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWOuterBoundaryCurve.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWOuterBoundaryCurve.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWOuterBoundaryCurve.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWOuterBoundaryCurve.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWOuterBoundaryCurve.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWOuterBoundaryCurve.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWParabola.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWParabola.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWParabola.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWParabola.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWParabola.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWParabola.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWParabola.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWParabola.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWPcurve.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPcurve.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWPcurve.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPcurve.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWPcurve.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPcurve.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWPcurve.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPcurve.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWPlacement.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPlacement.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWPlacement.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPlacement.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWPlacement.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPlacement.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWPlacement.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPlacement.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWPlane.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPlane.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWPlane.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPlane.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWPlane.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPlane.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWPlane.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPlane.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWPoint.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPoint.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWPoint.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPoint.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWPoint.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPoint.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWPoint.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPoint.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWPointOnCurve.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPointOnCurve.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWPointOnCurve.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPointOnCurve.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWPointOnCurve.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPointOnCurve.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWPointOnCurve.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPointOnCurve.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWPointOnSurface.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPointOnSurface.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWPointOnSurface.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPointOnSurface.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWPointOnSurface.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPointOnSurface.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWPointOnSurface.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPointOnSurface.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWPointReplica.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPointReplica.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWPointReplica.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPointReplica.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWPointReplica.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPointReplica.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWPointReplica.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPointReplica.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWPolyline.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPolyline.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWPolyline.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPolyline.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWPolyline.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPolyline.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWPolyline.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWPolyline.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWQuasiUniformCurve.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWQuasiUniformCurve.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWQuasiUniformCurve.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWQuasiUniformCurve.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWQuasiUniformCurve.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWQuasiUniformCurve.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWQuasiUniformCurve.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWQuasiUniformCurve.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWQuasiUniformCurveAndRationalBSplineCurve.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWQuasiUniformCurveAndRationalBSplineCurve.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWQuasiUniformCurveAndRationalBSplineCurve.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWQuasiUniformCurveAndRationalBSplineCurve.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWQuasiUniformCurveAndRationalBSplineCurve.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWQuasiUniformCurveAndRationalBSplineCurve.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWQuasiUniformCurveAndRationalBSplineCurve.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWQuasiUniformCurveAndRationalBSplineCurve.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWQuasiUniformSurface.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWQuasiUniformSurface.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWQuasiUniformSurface.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWQuasiUniformSurface.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWQuasiUniformSurface.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWQuasiUniformSurface.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWQuasiUniformSurface.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWQuasiUniformSurface.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWQuasiUniformSurfaceAndRationalBSplineSurface.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWQuasiUniformSurfaceAndRationalBSplineSurface.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWQuasiUniformSurfaceAndRationalBSplineSurface.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWQuasiUniformSurfaceAndRationalBSplineSurface.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWQuasiUniformSurfaceAndRationalBSplineSurface.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWQuasiUniformSurfaceAndRationalBSplineSurface.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWQuasiUniformSurfaceAndRationalBSplineSurface.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWQuasiUniformSurfaceAndRationalBSplineSurface.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWRationalBSplineCurve.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWRationalBSplineCurve.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWRationalBSplineCurve.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWRationalBSplineCurve.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWRationalBSplineCurve.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWRationalBSplineCurve.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWRationalBSplineCurve.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWRationalBSplineCurve.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWRationalBSplineSurface.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWRationalBSplineSurface.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWRationalBSplineSurface.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWRationalBSplineSurface.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWRationalBSplineSurface.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWRationalBSplineSurface.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWRationalBSplineSurface.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWRationalBSplineSurface.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWRectangularCompositeSurface.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWRectangularCompositeSurface.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWRectangularCompositeSurface.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWRectangularCompositeSurface.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWRectangularCompositeSurface.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWRectangularCompositeSurface.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWRectangularCompositeSurface.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWRectangularCompositeSurface.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWRectangularTrimmedSurface.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWRectangularTrimmedSurface.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWRectangularTrimmedSurface.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWRectangularTrimmedSurface.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWRectangularTrimmedSurface.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWRectangularTrimmedSurface.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWRectangularTrimmedSurface.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWRectangularTrimmedSurface.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWReparametrisedCompositeCurveSegment.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWReparametrisedCompositeCurveSegment.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWReparametrisedCompositeCurveSegment.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWReparametrisedCompositeCurveSegment.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWReparametrisedCompositeCurveSegment.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWReparametrisedCompositeCurveSegment.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWReparametrisedCompositeCurveSegment.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWReparametrisedCompositeCurveSegment.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWSeamCurve.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSeamCurve.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWSeamCurve.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSeamCurve.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWSeamCurve.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSeamCurve.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWSeamCurve.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSeamCurve.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWSphericalSurface.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSphericalSurface.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWSphericalSurface.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSphericalSurface.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWSphericalSurface.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSphericalSurface.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWSphericalSurface.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSphericalSurface.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWSuParameters.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSuParameters.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWSuParameters.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSuParameters.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWSuParameters.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSuParameters.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWSuParameters.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSuParameters.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWSurface.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurface.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWSurface.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurface.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWSurface.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurface.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWSurface.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurface.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWSurfaceCurve.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurfaceCurve.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWSurfaceCurve.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurfaceCurve.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWSurfaceCurve.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurfaceCurve.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWSurfaceCurve.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurfaceCurve.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWSurfaceCurveAndBoundedCurve.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurfaceCurveAndBoundedCurve.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWSurfaceCurveAndBoundedCurve.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurfaceCurveAndBoundedCurve.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWSurfaceCurveAndBoundedCurve.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurfaceCurveAndBoundedCurve.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWSurfaceCurveAndBoundedCurve.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurfaceCurveAndBoundedCurve.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWSurfaceOfLinearExtrusion.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurfaceOfLinearExtrusion.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWSurfaceOfLinearExtrusion.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurfaceOfLinearExtrusion.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWSurfaceOfLinearExtrusion.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurfaceOfLinearExtrusion.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWSurfaceOfLinearExtrusion.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurfaceOfLinearExtrusion.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWSurfaceOfRevolution.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurfaceOfRevolution.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWSurfaceOfRevolution.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurfaceOfRevolution.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWSurfaceOfRevolution.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurfaceOfRevolution.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWSurfaceOfRevolution.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurfaceOfRevolution.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWSurfacePatch.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurfacePatch.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWSurfacePatch.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurfacePatch.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWSurfacePatch.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurfacePatch.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWSurfacePatch.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurfacePatch.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWSurfaceReplica.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurfaceReplica.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWSurfaceReplica.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurfaceReplica.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWSurfaceReplica.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurfaceReplica.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWSurfaceReplica.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSurfaceReplica.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWSweptSurface.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSweptSurface.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWSweptSurface.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSweptSurface.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWSweptSurface.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSweptSurface.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWSweptSurface.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWSweptSurface.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWToroidalSurface.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWToroidalSurface.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWToroidalSurface.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWToroidalSurface.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWToroidalSurface.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWToroidalSurface.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWToroidalSurface.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWToroidalSurface.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWTrimmedCurve.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWTrimmedCurve.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWTrimmedCurve.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWTrimmedCurve.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWTrimmedCurve.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWTrimmedCurve.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWTrimmedCurve.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWTrimmedCurve.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWUniformCurve.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWUniformCurve.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWUniformCurve.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWUniformCurve.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWUniformCurve.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWUniformCurve.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWUniformCurve.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWUniformCurve.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWUniformCurveAndRationalBSplineCurve.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWUniformCurveAndRationalBSplineCurve.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWUniformCurveAndRationalBSplineCurve.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWUniformCurveAndRationalBSplineCurve.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWUniformCurveAndRationalBSplineCurve.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWUniformCurveAndRationalBSplineCurve.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWUniformCurveAndRationalBSplineCurve.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWUniformCurveAndRationalBSplineCurve.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWUniformSurface.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWUniformSurface.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWUniformSurface.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWUniformSurface.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWUniformSurface.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWUniformSurface.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWUniformSurface.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWUniformSurface.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWUniformSurfaceAndRationalBSplineSurface.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWUniformSurfaceAndRationalBSplineSurface.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWUniformSurfaceAndRationalBSplineSurface.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWUniformSurfaceAndRationalBSplineSurface.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWUniformSurfaceAndRationalBSplineSurface.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWUniformSurfaceAndRationalBSplineSurface.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWUniformSurfaceAndRationalBSplineSurface.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWUniformSurfaceAndRationalBSplineSurface.pxx diff --git a/src/RWStepGeom/RWStepGeom_RWVector.cxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWVector.cxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWVector.cxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWVector.cxx diff --git a/src/RWStepGeom/RWStepGeom_RWVector.pxx b/src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWVector.pxx similarity index 100% rename from src/RWStepGeom/RWStepGeom_RWVector.pxx rename to src/DataExchange/TKDESTEP/RWStepGeom/RWStepGeom_RWVector.pxx diff --git a/src/DataExchange/TKDESTEP/RWStepKinematics/FILES.cmake b/src/DataExchange/TKDESTEP/RWStepKinematics/FILES.cmake new file mode 100644 index 0000000000..82acb8f492 --- /dev/null +++ b/src/DataExchange/TKDESTEP/RWStepKinematics/FILES.cmake @@ -0,0 +1,153 @@ +# Source files for RWStepKinematics package +set(OCCT_RWStepKinematics_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_RWStepKinematics_FILES + RWStepKinematics_RWActuatedKinematicPair.cxx + RWStepKinematics_RWActuatedKinematicPair.pxx + RWStepKinematics_RWContextDependentKinematicLinkRepresentation.cxx + RWStepKinematics_RWContextDependentKinematicLinkRepresentation.pxx + RWStepKinematics_RWCylindricalPair.cxx + RWStepKinematics_RWCylindricalPair.pxx + RWStepKinematics_RWCylindricalPairValue.cxx + RWStepKinematics_RWCylindricalPairValue.pxx + RWStepKinematics_RWCylindricalPairWithRange.cxx + RWStepKinematics_RWCylindricalPairWithRange.pxx + RWStepKinematics_RWFullyConstrainedPair.cxx + RWStepKinematics_RWFullyConstrainedPair.pxx + RWStepKinematics_RWGearPair.cxx + RWStepKinematics_RWGearPair.pxx + RWStepKinematics_RWGearPairValue.cxx + RWStepKinematics_RWGearPairValue.pxx + RWStepKinematics_RWGearPairWithRange.cxx + RWStepKinematics_RWGearPairWithRange.pxx + RWStepKinematics_RWHomokineticPair.cxx + RWStepKinematics_RWHomokineticPair.pxx + RWStepKinematics_RWActuatedKinPairAndOrderKinPair.cxx + RWStepKinematics_RWActuatedKinPairAndOrderKinPair.pxx + RWStepKinematics_RWKinematicJoint.cxx + RWStepKinematics_RWKinematicJoint.pxx + RWStepKinematics_RWKinematicLink.cxx + RWStepKinematics_RWKinematicLink.pxx + RWStepKinematics_RWKinematicLinkRepresentationAssociation.cxx + RWStepKinematics_RWKinematicLinkRepresentationAssociation.pxx + RWStepKinematics_RWKinematicPropertyMechanismRepresentation.cxx + RWStepKinematics_RWKinematicPropertyMechanismRepresentation.pxx + RWStepKinematics_RWKinematicTopologyStructure.cxx + RWStepKinematics_RWKinematicTopologyStructure.pxx + RWStepKinematics_RWLinearFlexibleAndPinionPair.cxx + RWStepKinematics_RWLinearFlexibleAndPinionPair.pxx + RWStepKinematics_RWLinearFlexibleAndPlanarCurvePair.cxx + RWStepKinematics_RWLinearFlexibleAndPlanarCurvePair.pxx + RWStepKinematics_RWLinearFlexibleLinkRepresentation.cxx + RWStepKinematics_RWLinearFlexibleLinkRepresentation.pxx + RWStepKinematics_RWLowOrderKinematicPair.cxx + RWStepKinematics_RWLowOrderKinematicPair.pxx + RWStepKinematics_RWLowOrderKinematicPairValue.cxx + RWStepKinematics_RWLowOrderKinematicPairValue.pxx + RWStepKinematics_RWLowOrderKinematicPairWithRange.cxx + RWStepKinematics_RWLowOrderKinematicPairWithRange.pxx + RWStepKinematics_RWMechanismRepresentation.cxx + RWStepKinematics_RWMechanismRepresentation.pxx + RWStepKinematics_RWMechanismStateRepresentation.cxx + RWStepKinematics_RWMechanismStateRepresentation.pxx + RWStepKinematics_RWOrientedJoint.cxx + RWStepKinematics_RWOrientedJoint.pxx + RWStepKinematics_RWPairRepresentationRelationship.cxx + RWStepKinematics_RWPairRepresentationRelationship.pxx + RWStepKinematics_RWPlanarCurvePair.cxx + RWStepKinematics_RWPlanarCurvePair.pxx + RWStepKinematics_RWPlanarCurvePairRange.cxx + RWStepKinematics_RWPlanarCurvePairRange.pxx + RWStepKinematics_RWPlanarPair.cxx + RWStepKinematics_RWPlanarPair.pxx + RWStepKinematics_RWPlanarPairValue.cxx + RWStepKinematics_RWPlanarPairValue.pxx + RWStepKinematics_RWPlanarPairWithRange.cxx + RWStepKinematics_RWPlanarPairWithRange.pxx + RWStepKinematics_RWPointOnPlanarCurvePair.cxx + RWStepKinematics_RWPointOnPlanarCurvePair.pxx + RWStepKinematics_RWPointOnPlanarCurvePairValue.cxx + RWStepKinematics_RWPointOnPlanarCurvePairValue.pxx + RWStepKinematics_RWPointOnPlanarCurvePairWithRange.cxx + RWStepKinematics_RWPointOnPlanarCurvePairWithRange.pxx + RWStepKinematics_RWPointOnSurfacePair.cxx + RWStepKinematics_RWPointOnSurfacePair.pxx + RWStepKinematics_RWPointOnSurfacePairValue.cxx + RWStepKinematics_RWPointOnSurfacePairValue.pxx + RWStepKinematics_RWPointOnSurfacePairWithRange.cxx + RWStepKinematics_RWPointOnSurfacePairWithRange.pxx + RWStepKinematics_RWPrismaticPair.cxx + RWStepKinematics_RWPrismaticPair.pxx + RWStepKinematics_RWPrismaticPairValue.cxx + RWStepKinematics_RWPrismaticPairValue.pxx + RWStepKinematics_RWPrismaticPairWithRange.cxx + RWStepKinematics_RWPrismaticPairWithRange.pxx + RWStepKinematics_RWProductDefinitionKinematics.cxx + RWStepKinematics_RWProductDefinitionKinematics.pxx + RWStepKinematics_RWProductDefinitionRelationshipKinematics.cxx + RWStepKinematics_RWProductDefinitionRelationshipKinematics.pxx + RWStepKinematics_RWRackAndPinionPair.cxx + RWStepKinematics_RWRackAndPinionPair.pxx + RWStepKinematics_RWRackAndPinionPairValue.cxx + RWStepKinematics_RWRackAndPinionPairValue.pxx + RWStepKinematics_RWRackAndPinionPairWithRange.cxx + RWStepKinematics_RWRackAndPinionPairWithRange.pxx + RWStepKinematics_RWRevolutePair.cxx + RWStepKinematics_RWRevolutePair.pxx + RWStepKinematics_RWRevolutePairValue.cxx + RWStepKinematics_RWRevolutePairValue.pxx + RWStepKinematics_RWRevolutePairWithRange.cxx + RWStepKinematics_RWRevolutePairWithRange.pxx + RWStepKinematics_RWRigidLinkRepresentation.cxx + RWStepKinematics_RWRigidLinkRepresentation.pxx + RWStepKinematics_RWRollingCurvePair.cxx + RWStepKinematics_RWRollingCurvePair.pxx + RWStepKinematics_RWRollingCurvePairValue.cxx + RWStepKinematics_RWRollingCurvePairValue.pxx + RWStepKinematics_RWRollingSurfacePair.cxx + RWStepKinematics_RWRollingSurfacePair.pxx + RWStepKinematics_RWRollingSurfacePairValue.cxx + RWStepKinematics_RWRollingSurfacePairValue.pxx + RWStepKinematics_RWRotationAboutDirection.cxx + RWStepKinematics_RWRotationAboutDirection.pxx + RWStepKinematics_RWScrewPair.cxx + RWStepKinematics_RWScrewPair.pxx + RWStepKinematics_RWScrewPairValue.cxx + RWStepKinematics_RWScrewPairValue.pxx + RWStepKinematics_RWScrewPairWithRange.cxx + RWStepKinematics_RWScrewPairWithRange.pxx + RWStepKinematics_RWSlidingCurvePair.cxx + RWStepKinematics_RWSlidingCurvePair.pxx + RWStepKinematics_RWSlidingCurvePairValue.cxx + RWStepKinematics_RWSlidingCurvePairValue.pxx + RWStepKinematics_RWSlidingSurfacePair.cxx + RWStepKinematics_RWSlidingSurfacePair.pxx + RWStepKinematics_RWSlidingSurfacePairValue.cxx + RWStepKinematics_RWSlidingSurfacePairValue.pxx + RWStepKinematics_RWSphericalPair.cxx + RWStepKinematics_RWSphericalPair.pxx + RWStepKinematics_RWSphericalPairValue.cxx + RWStepKinematics_RWSphericalPairValue.pxx + RWStepKinematics_RWSphericalPairWithPin.cxx + RWStepKinematics_RWSphericalPairWithPin.pxx + RWStepKinematics_RWSphericalPairWithPinAndRange.cxx + RWStepKinematics_RWSphericalPairWithPinAndRange.pxx + RWStepKinematics_RWSphericalPairWithRange.cxx + RWStepKinematics_RWSphericalPairWithRange.pxx + RWStepKinematics_RWSurfacePairWithRange.cxx + RWStepKinematics_RWSurfacePairWithRange.pxx + RWStepKinematics_RWKinematicTopologyDirectedStructure.cxx + RWStepKinematics_RWKinematicTopologyDirectedStructure.pxx + RWStepKinematics_RWKinematicTopologyNetworkStructure.cxx + RWStepKinematics_RWKinematicTopologyNetworkStructure.pxx + RWStepKinematics_RWUnconstrainedPair.cxx + RWStepKinematics_RWUnconstrainedPair.pxx + RWStepKinematics_RWUnconstrainedPairValue.cxx + RWStepKinematics_RWUnconstrainedPairValue.pxx + RWStepKinematics_RWUniversalPair.cxx + RWStepKinematics_RWUniversalPair.pxx + RWStepKinematics_RWUniversalPairValue.cxx + RWStepKinematics_RWUniversalPairValue.pxx + RWStepKinematics_RWUniversalPairWithRange.cxx + RWStepKinematics_RWUniversalPairWithRange.pxx +) diff --git a/src/RWStepKinematics/RWStepKinematics_RWActuatedKinPairAndOrderKinPair.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWActuatedKinPairAndOrderKinPair.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWActuatedKinPairAndOrderKinPair.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWActuatedKinPairAndOrderKinPair.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWActuatedKinPairAndOrderKinPair.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWActuatedKinPairAndOrderKinPair.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWActuatedKinPairAndOrderKinPair.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWActuatedKinPairAndOrderKinPair.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWActuatedKinematicPair.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWActuatedKinematicPair.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWActuatedKinematicPair.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWActuatedKinematicPair.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWActuatedKinematicPair.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWActuatedKinematicPair.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWActuatedKinematicPair.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWActuatedKinematicPair.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWContextDependentKinematicLinkRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWContextDependentKinematicLinkRepresentation.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWContextDependentKinematicLinkRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWContextDependentKinematicLinkRepresentation.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWContextDependentKinematicLinkRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWContextDependentKinematicLinkRepresentation.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWContextDependentKinematicLinkRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWContextDependentKinematicLinkRepresentation.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWCylindricalPair.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWCylindricalPair.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWCylindricalPair.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWCylindricalPair.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWCylindricalPair.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWCylindricalPair.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWCylindricalPair.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWCylindricalPair.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWCylindricalPairValue.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWCylindricalPairValue.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWCylindricalPairValue.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWCylindricalPairValue.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWCylindricalPairValue.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWCylindricalPairValue.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWCylindricalPairValue.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWCylindricalPairValue.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWCylindricalPairWithRange.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWCylindricalPairWithRange.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWCylindricalPairWithRange.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWCylindricalPairWithRange.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWCylindricalPairWithRange.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWCylindricalPairWithRange.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWCylindricalPairWithRange.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWCylindricalPairWithRange.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWFullyConstrainedPair.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWFullyConstrainedPair.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWFullyConstrainedPair.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWFullyConstrainedPair.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWFullyConstrainedPair.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWFullyConstrainedPair.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWFullyConstrainedPair.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWFullyConstrainedPair.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWGearPair.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWGearPair.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWGearPair.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWGearPair.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWGearPair.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWGearPair.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWGearPair.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWGearPair.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWGearPairValue.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWGearPairValue.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWGearPairValue.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWGearPairValue.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWGearPairValue.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWGearPairValue.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWGearPairValue.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWGearPairValue.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWGearPairWithRange.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWGearPairWithRange.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWGearPairWithRange.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWGearPairWithRange.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWGearPairWithRange.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWGearPairWithRange.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWGearPairWithRange.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWGearPairWithRange.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWHomokineticPair.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWHomokineticPair.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWHomokineticPair.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWHomokineticPair.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWHomokineticPair.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWHomokineticPair.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWHomokineticPair.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWHomokineticPair.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWKinematicJoint.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicJoint.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWKinematicJoint.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicJoint.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWKinematicJoint.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicJoint.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWKinematicJoint.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicJoint.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWKinematicLink.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicLink.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWKinematicLink.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicLink.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWKinematicLink.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicLink.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWKinematicLink.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicLink.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWKinematicLinkRepresentationAssociation.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicLinkRepresentationAssociation.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWKinematicLinkRepresentationAssociation.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicLinkRepresentationAssociation.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWKinematicLinkRepresentationAssociation.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicLinkRepresentationAssociation.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWKinematicLinkRepresentationAssociation.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicLinkRepresentationAssociation.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWKinematicPropertyMechanismRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicPropertyMechanismRepresentation.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWKinematicPropertyMechanismRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicPropertyMechanismRepresentation.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWKinematicPropertyMechanismRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicPropertyMechanismRepresentation.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWKinematicPropertyMechanismRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicPropertyMechanismRepresentation.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWKinematicTopologyDirectedStructure.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicTopologyDirectedStructure.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWKinematicTopologyDirectedStructure.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicTopologyDirectedStructure.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWKinematicTopologyDirectedStructure.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicTopologyDirectedStructure.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWKinematicTopologyDirectedStructure.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicTopologyDirectedStructure.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWKinematicTopologyNetworkStructure.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicTopologyNetworkStructure.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWKinematicTopologyNetworkStructure.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicTopologyNetworkStructure.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWKinematicTopologyNetworkStructure.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicTopologyNetworkStructure.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWKinematicTopologyNetworkStructure.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicTopologyNetworkStructure.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWKinematicTopologyStructure.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicTopologyStructure.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWKinematicTopologyStructure.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicTopologyStructure.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWKinematicTopologyStructure.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicTopologyStructure.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWKinematicTopologyStructure.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWKinematicTopologyStructure.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWLinearFlexibleAndPinionPair.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWLinearFlexibleAndPinionPair.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWLinearFlexibleAndPinionPair.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWLinearFlexibleAndPinionPair.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWLinearFlexibleAndPinionPair.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWLinearFlexibleAndPinionPair.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWLinearFlexibleAndPinionPair.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWLinearFlexibleAndPinionPair.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWLinearFlexibleAndPlanarCurvePair.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWLinearFlexibleAndPlanarCurvePair.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWLinearFlexibleAndPlanarCurvePair.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWLinearFlexibleAndPlanarCurvePair.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWLinearFlexibleAndPlanarCurvePair.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWLinearFlexibleAndPlanarCurvePair.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWLinearFlexibleAndPlanarCurvePair.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWLinearFlexibleAndPlanarCurvePair.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWLinearFlexibleLinkRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWLinearFlexibleLinkRepresentation.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWLinearFlexibleLinkRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWLinearFlexibleLinkRepresentation.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWLinearFlexibleLinkRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWLinearFlexibleLinkRepresentation.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWLinearFlexibleLinkRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWLinearFlexibleLinkRepresentation.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWLowOrderKinematicPair.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWLowOrderKinematicPair.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWLowOrderKinematicPair.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWLowOrderKinematicPair.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWLowOrderKinematicPair.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWLowOrderKinematicPair.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWLowOrderKinematicPair.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWLowOrderKinematicPair.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWLowOrderKinematicPairValue.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWLowOrderKinematicPairValue.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWLowOrderKinematicPairValue.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWLowOrderKinematicPairValue.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWLowOrderKinematicPairValue.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWLowOrderKinematicPairValue.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWLowOrderKinematicPairValue.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWLowOrderKinematicPairValue.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWLowOrderKinematicPairWithRange.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWLowOrderKinematicPairWithRange.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWLowOrderKinematicPairWithRange.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWLowOrderKinematicPairWithRange.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWLowOrderKinematicPairWithRange.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWLowOrderKinematicPairWithRange.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWLowOrderKinematicPairWithRange.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWLowOrderKinematicPairWithRange.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWMechanismRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWMechanismRepresentation.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWMechanismRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWMechanismRepresentation.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWMechanismRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWMechanismRepresentation.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWMechanismRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWMechanismRepresentation.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWMechanismStateRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWMechanismStateRepresentation.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWMechanismStateRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWMechanismStateRepresentation.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWMechanismStateRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWMechanismStateRepresentation.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWMechanismStateRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWMechanismStateRepresentation.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWOrientedJoint.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWOrientedJoint.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWOrientedJoint.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWOrientedJoint.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWOrientedJoint.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWOrientedJoint.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWOrientedJoint.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWOrientedJoint.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPairRepresentationRelationship.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPairRepresentationRelationship.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPairRepresentationRelationship.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPairRepresentationRelationship.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPairRepresentationRelationship.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPairRepresentationRelationship.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPairRepresentationRelationship.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPairRepresentationRelationship.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPlanarCurvePair.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPlanarCurvePair.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPlanarCurvePair.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPlanarCurvePair.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPlanarCurvePair.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPlanarCurvePair.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPlanarCurvePair.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPlanarCurvePair.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPlanarCurvePairRange.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPlanarCurvePairRange.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPlanarCurvePairRange.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPlanarCurvePairRange.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPlanarCurvePairRange.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPlanarCurvePairRange.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPlanarCurvePairRange.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPlanarCurvePairRange.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPlanarPair.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPlanarPair.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPlanarPair.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPlanarPair.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPlanarPair.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPlanarPair.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPlanarPair.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPlanarPair.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPlanarPairValue.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPlanarPairValue.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPlanarPairValue.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPlanarPairValue.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPlanarPairValue.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPlanarPairValue.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPlanarPairValue.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPlanarPairValue.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPlanarPairWithRange.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPlanarPairWithRange.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPlanarPairWithRange.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPlanarPairWithRange.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPlanarPairWithRange.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPlanarPairWithRange.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPlanarPairWithRange.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPlanarPairWithRange.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPointOnPlanarCurvePair.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPointOnPlanarCurvePair.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPointOnPlanarCurvePair.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPointOnPlanarCurvePair.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPointOnPlanarCurvePair.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPointOnPlanarCurvePair.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPointOnPlanarCurvePair.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPointOnPlanarCurvePair.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPointOnPlanarCurvePairValue.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPointOnPlanarCurvePairValue.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPointOnPlanarCurvePairValue.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPointOnPlanarCurvePairValue.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPointOnPlanarCurvePairValue.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPointOnPlanarCurvePairValue.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPointOnPlanarCurvePairValue.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPointOnPlanarCurvePairValue.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPointOnPlanarCurvePairWithRange.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPointOnPlanarCurvePairWithRange.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPointOnPlanarCurvePairWithRange.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPointOnPlanarCurvePairWithRange.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPointOnPlanarCurvePairWithRange.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPointOnPlanarCurvePairWithRange.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPointOnPlanarCurvePairWithRange.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPointOnPlanarCurvePairWithRange.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPointOnSurfacePair.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPointOnSurfacePair.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPointOnSurfacePair.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPointOnSurfacePair.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPointOnSurfacePair.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPointOnSurfacePair.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPointOnSurfacePair.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPointOnSurfacePair.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPointOnSurfacePairValue.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPointOnSurfacePairValue.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPointOnSurfacePairValue.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPointOnSurfacePairValue.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPointOnSurfacePairValue.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPointOnSurfacePairValue.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPointOnSurfacePairValue.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPointOnSurfacePairValue.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPointOnSurfacePairWithRange.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPointOnSurfacePairWithRange.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPointOnSurfacePairWithRange.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPointOnSurfacePairWithRange.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPointOnSurfacePairWithRange.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPointOnSurfacePairWithRange.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPointOnSurfacePairWithRange.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPointOnSurfacePairWithRange.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPrismaticPair.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPrismaticPair.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPrismaticPair.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPrismaticPair.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPrismaticPair.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPrismaticPair.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPrismaticPair.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPrismaticPair.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPrismaticPairValue.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPrismaticPairValue.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPrismaticPairValue.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPrismaticPairValue.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPrismaticPairValue.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPrismaticPairValue.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPrismaticPairValue.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPrismaticPairValue.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPrismaticPairWithRange.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPrismaticPairWithRange.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPrismaticPairWithRange.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPrismaticPairWithRange.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWPrismaticPairWithRange.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPrismaticPairWithRange.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWPrismaticPairWithRange.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWPrismaticPairWithRange.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWProductDefinitionKinematics.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWProductDefinitionKinematics.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWProductDefinitionKinematics.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWProductDefinitionKinematics.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWProductDefinitionKinematics.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWProductDefinitionKinematics.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWProductDefinitionKinematics.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWProductDefinitionKinematics.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWProductDefinitionRelationshipKinematics.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWProductDefinitionRelationshipKinematics.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWProductDefinitionRelationshipKinematics.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWProductDefinitionRelationshipKinematics.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWProductDefinitionRelationshipKinematics.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWProductDefinitionRelationshipKinematics.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWProductDefinitionRelationshipKinematics.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWProductDefinitionRelationshipKinematics.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWRackAndPinionPair.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRackAndPinionPair.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWRackAndPinionPair.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRackAndPinionPair.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWRackAndPinionPair.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRackAndPinionPair.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWRackAndPinionPair.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRackAndPinionPair.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWRackAndPinionPairValue.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRackAndPinionPairValue.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWRackAndPinionPairValue.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRackAndPinionPairValue.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWRackAndPinionPairValue.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRackAndPinionPairValue.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWRackAndPinionPairValue.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRackAndPinionPairValue.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWRackAndPinionPairWithRange.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRackAndPinionPairWithRange.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWRackAndPinionPairWithRange.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRackAndPinionPairWithRange.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWRackAndPinionPairWithRange.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRackAndPinionPairWithRange.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWRackAndPinionPairWithRange.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRackAndPinionPairWithRange.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWRevolutePair.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRevolutePair.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWRevolutePair.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRevolutePair.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWRevolutePair.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRevolutePair.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWRevolutePair.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRevolutePair.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWRevolutePairValue.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRevolutePairValue.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWRevolutePairValue.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRevolutePairValue.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWRevolutePairValue.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRevolutePairValue.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWRevolutePairValue.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRevolutePairValue.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWRevolutePairWithRange.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRevolutePairWithRange.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWRevolutePairWithRange.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRevolutePairWithRange.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWRevolutePairWithRange.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRevolutePairWithRange.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWRevolutePairWithRange.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRevolutePairWithRange.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWRigidLinkRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRigidLinkRepresentation.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWRigidLinkRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRigidLinkRepresentation.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWRigidLinkRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRigidLinkRepresentation.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWRigidLinkRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRigidLinkRepresentation.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWRollingCurvePair.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRollingCurvePair.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWRollingCurvePair.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRollingCurvePair.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWRollingCurvePair.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRollingCurvePair.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWRollingCurvePair.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRollingCurvePair.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWRollingCurvePairValue.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRollingCurvePairValue.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWRollingCurvePairValue.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRollingCurvePairValue.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWRollingCurvePairValue.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRollingCurvePairValue.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWRollingCurvePairValue.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRollingCurvePairValue.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWRollingSurfacePair.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRollingSurfacePair.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWRollingSurfacePair.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRollingSurfacePair.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWRollingSurfacePair.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRollingSurfacePair.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWRollingSurfacePair.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRollingSurfacePair.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWRollingSurfacePairValue.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRollingSurfacePairValue.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWRollingSurfacePairValue.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRollingSurfacePairValue.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWRollingSurfacePairValue.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRollingSurfacePairValue.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWRollingSurfacePairValue.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRollingSurfacePairValue.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWRotationAboutDirection.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRotationAboutDirection.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWRotationAboutDirection.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRotationAboutDirection.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWRotationAboutDirection.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRotationAboutDirection.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWRotationAboutDirection.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWRotationAboutDirection.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWScrewPair.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWScrewPair.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWScrewPair.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWScrewPair.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWScrewPair.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWScrewPair.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWScrewPair.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWScrewPair.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWScrewPairValue.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWScrewPairValue.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWScrewPairValue.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWScrewPairValue.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWScrewPairValue.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWScrewPairValue.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWScrewPairValue.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWScrewPairValue.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWScrewPairWithRange.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWScrewPairWithRange.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWScrewPairWithRange.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWScrewPairWithRange.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWScrewPairWithRange.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWScrewPairWithRange.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWScrewPairWithRange.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWScrewPairWithRange.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWSlidingCurvePair.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSlidingCurvePair.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWSlidingCurvePair.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSlidingCurvePair.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWSlidingCurvePair.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSlidingCurvePair.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWSlidingCurvePair.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSlidingCurvePair.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWSlidingCurvePairValue.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSlidingCurvePairValue.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWSlidingCurvePairValue.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSlidingCurvePairValue.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWSlidingCurvePairValue.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSlidingCurvePairValue.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWSlidingCurvePairValue.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSlidingCurvePairValue.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWSlidingSurfacePair.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSlidingSurfacePair.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWSlidingSurfacePair.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSlidingSurfacePair.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWSlidingSurfacePair.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSlidingSurfacePair.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWSlidingSurfacePair.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSlidingSurfacePair.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWSlidingSurfacePairValue.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSlidingSurfacePairValue.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWSlidingSurfacePairValue.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSlidingSurfacePairValue.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWSlidingSurfacePairValue.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSlidingSurfacePairValue.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWSlidingSurfacePairValue.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSlidingSurfacePairValue.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWSphericalPair.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSphericalPair.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWSphericalPair.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSphericalPair.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWSphericalPair.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSphericalPair.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWSphericalPair.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSphericalPair.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWSphericalPairValue.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSphericalPairValue.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWSphericalPairValue.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSphericalPairValue.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWSphericalPairValue.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSphericalPairValue.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWSphericalPairValue.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSphericalPairValue.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWSphericalPairWithPin.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSphericalPairWithPin.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWSphericalPairWithPin.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSphericalPairWithPin.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWSphericalPairWithPin.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSphericalPairWithPin.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWSphericalPairWithPin.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSphericalPairWithPin.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWSphericalPairWithPinAndRange.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSphericalPairWithPinAndRange.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWSphericalPairWithPinAndRange.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSphericalPairWithPinAndRange.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWSphericalPairWithPinAndRange.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSphericalPairWithPinAndRange.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWSphericalPairWithPinAndRange.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSphericalPairWithPinAndRange.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWSphericalPairWithRange.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSphericalPairWithRange.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWSphericalPairWithRange.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSphericalPairWithRange.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWSphericalPairWithRange.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSphericalPairWithRange.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWSphericalPairWithRange.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSphericalPairWithRange.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWSurfacePairWithRange.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSurfacePairWithRange.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWSurfacePairWithRange.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSurfacePairWithRange.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWSurfacePairWithRange.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSurfacePairWithRange.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWSurfacePairWithRange.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWSurfacePairWithRange.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWUnconstrainedPair.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWUnconstrainedPair.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWUnconstrainedPair.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWUnconstrainedPair.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWUnconstrainedPair.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWUnconstrainedPair.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWUnconstrainedPair.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWUnconstrainedPair.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWUnconstrainedPairValue.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWUnconstrainedPairValue.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWUnconstrainedPairValue.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWUnconstrainedPairValue.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWUnconstrainedPairValue.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWUnconstrainedPairValue.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWUnconstrainedPairValue.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWUnconstrainedPairValue.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWUniversalPair.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWUniversalPair.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWUniversalPair.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWUniversalPair.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWUniversalPair.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWUniversalPair.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWUniversalPair.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWUniversalPair.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWUniversalPairValue.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWUniversalPairValue.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWUniversalPairValue.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWUniversalPairValue.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWUniversalPairValue.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWUniversalPairValue.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWUniversalPairValue.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWUniversalPairValue.pxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWUniversalPairWithRange.cxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWUniversalPairWithRange.cxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWUniversalPairWithRange.cxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWUniversalPairWithRange.cxx diff --git a/src/RWStepKinematics/RWStepKinematics_RWUniversalPairWithRange.pxx b/src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWUniversalPairWithRange.pxx similarity index 100% rename from src/RWStepKinematics/RWStepKinematics_RWUniversalPairWithRange.pxx rename to src/DataExchange/TKDESTEP/RWStepKinematics/RWStepKinematics_RWUniversalPairWithRange.pxx diff --git a/src/DataExchange/TKDESTEP/RWStepRepr/FILES.cmake b/src/DataExchange/TKDESTEP/RWStepRepr/FILES.cmake new file mode 100644 index 0000000000..cbf7e9bdd0 --- /dev/null +++ b/src/DataExchange/TKDESTEP/RWStepRepr/FILES.cmake @@ -0,0 +1,145 @@ +# Source files for RWStepRepr package +set(OCCT_RWStepRepr_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_RWStepRepr_FILES + RWStepRepr_RWAllAroundShapeAspect.cxx + RWStepRepr_RWAllAroundShapeAspect.pxx + RWStepRepr_RWApex.cxx + RWStepRepr_RWApex.pxx + RWStepRepr_RWAssemblyComponentUsage.cxx + RWStepRepr_RWAssemblyComponentUsage.pxx + RWStepRepr_RWAssemblyComponentUsageSubstitute.cxx + RWStepRepr_RWAssemblyComponentUsageSubstitute.pxx + RWStepRepr_RWBetweenShapeAspect.cxx + RWStepRepr_RWBetweenShapeAspect.pxx + RWStepRepr_RWBooleanRepresentationItem.cxx + RWStepRepr_RWBooleanRepresentationItem.pxx + RWStepRepr_RWCentreOfSymmetry.cxx + RWStepRepr_RWCentreOfSymmetry.pxx + RWStepRepr_RWCharacterizedRepresentation.cxx + RWStepRepr_RWCharacterizedRepresentation.pxx + RWStepRepr_RWCompGroupShAspAndCompShAspAndDatumFeatAndShAsp.cxx + RWStepRepr_RWCompGroupShAspAndCompShAspAndDatumFeatAndShAsp.pxx + RWStepRepr_RWCompositeGroupShapeAspect.cxx + RWStepRepr_RWCompositeGroupShapeAspect.pxx + RWStepRepr_RWCompositeShapeAspect.cxx + RWStepRepr_RWCompositeShapeAspect.pxx + RWStepRepr_RWCompoundRepresentationItem.cxx + RWStepRepr_RWCompoundRepresentationItem.pxx + RWStepRepr_RWCompShAspAndDatumFeatAndShAsp.cxx + RWStepRepr_RWCompShAspAndDatumFeatAndShAsp.pxx + RWStepRepr_RWConfigurationDesign.cxx + RWStepRepr_RWConfigurationDesign.pxx + RWStepRepr_RWConfigurationEffectivity.cxx + RWStepRepr_RWConfigurationEffectivity.pxx + RWStepRepr_RWConfigurationItem.cxx + RWStepRepr_RWConfigurationItem.pxx + RWStepRepr_RWConstructiveGeometryRepresentation.cxx + RWStepRepr_RWConstructiveGeometryRepresentation.pxx + RWStepRepr_RWConstructiveGeometryRepresentationRelationship.cxx + RWStepRepr_RWConstructiveGeometryRepresentationRelationship.pxx + RWStepRepr_RWContinuosShapeAspect.cxx + RWStepRepr_RWContinuosShapeAspect.pxx + RWStepRepr_RWDataEnvironment.cxx + RWStepRepr_RWDataEnvironment.pxx + RWStepRepr_RWDefinitionalRepresentation.cxx + RWStepRepr_RWDefinitionalRepresentation.pxx + RWStepRepr_RWDerivedShapeAspect.cxx + RWStepRepr_RWDerivedShapeAspect.pxx + RWStepRepr_RWDescriptiveRepresentationItem.cxx + RWStepRepr_RWDescriptiveRepresentationItem.pxx + RWStepRepr_RWExtension.cxx + RWStepRepr_RWExtension.pxx + RWStepRepr_RWFeatureForDatumTargetRelationship.cxx + RWStepRepr_RWFeatureForDatumTargetRelationship.pxx + RWStepRepr_RWFunctionallyDefinedTransformation.cxx + RWStepRepr_RWFunctionallyDefinedTransformation.pxx + RWStepRepr_RWGeometricAlignment.cxx + RWStepRepr_RWGeometricAlignment.pxx + RWStepRepr_RWGlobalUncertaintyAssignedContext.cxx + RWStepRepr_RWGlobalUncertaintyAssignedContext.pxx + RWStepRepr_RWGlobalUnitAssignedContext.cxx + RWStepRepr_RWGlobalUnitAssignedContext.pxx + RWStepRepr_RWIntegerRepresentationItem.cxx + RWStepRepr_RWIntegerRepresentationItem.pxx + RWStepRepr_RWItemDefinedTransformation.cxx + RWStepRepr_RWItemDefinedTransformation.pxx + RWStepRepr_RWMakeFromUsageOption.cxx + RWStepRepr_RWMakeFromUsageOption.pxx + RWStepRepr_RWMappedItem.cxx + RWStepRepr_RWMappedItem.pxx + RWStepRepr_RWMaterialDesignation.cxx + RWStepRepr_RWMaterialDesignation.pxx + RWStepRepr_RWMaterialProperty.cxx + RWStepRepr_RWMaterialProperty.pxx + RWStepRepr_RWMaterialPropertyRepresentation.cxx + RWStepRepr_RWMaterialPropertyRepresentation.pxx + RWStepRepr_RWMeasureRepresentationItem.cxx + RWStepRepr_RWMeasureRepresentationItem.pxx + RWStepRepr_RWMechanicalDesignAndDraughtingRelationship.cxx + RWStepRepr_RWMechanicalDesignAndDraughtingRelationship.pxx + RWStepRepr_RWParallelOffset.cxx + RWStepRepr_RWParallelOffset.pxx + RWStepRepr_RWParametricRepresentationContext.cxx + RWStepRepr_RWParametricRepresentationContext.pxx + RWStepRepr_RWPerpendicularTo.cxx + RWStepRepr_RWPerpendicularTo.pxx + RWStepRepr_RWProductConcept.cxx + RWStepRepr_RWProductConcept.pxx + RWStepRepr_RWProductDefinitionShape.cxx + RWStepRepr_RWProductDefinitionShape.pxx + RWStepRepr_RWPropertyDefinition.cxx + RWStepRepr_RWPropertyDefinition.pxx + RWStepRepr_RWPropertyDefinitionRelationship.cxx + RWStepRepr_RWPropertyDefinitionRelationship.pxx + RWStepRepr_RWPropertyDefinitionRepresentation.cxx + RWStepRepr_RWPropertyDefinitionRepresentation.pxx + RWStepRepr_RWQuantifiedAssemblyComponentUsage.cxx + RWStepRepr_RWQuantifiedAssemblyComponentUsage.pxx + RWStepRepr_RWRealRepresentationItem.cxx + RWStepRepr_RWRealRepresentationItem.pxx + RWStepRepr_RWRepresentation.cxx + RWStepRepr_RWRepresentation.pxx + RWStepRepr_RWRepresentationContext.cxx + RWStepRepr_RWRepresentationContext.pxx + RWStepRepr_RWRepresentationContextReference.cxx + RWStepRepr_RWRepresentationContextReference.pxx + RWStepRepr_RWRepresentationItem.cxx + RWStepRepr_RWRepresentationItem.pxx + RWStepRepr_RWRepresentationMap.cxx + RWStepRepr_RWRepresentationMap.pxx + RWStepRepr_RWRepresentationReference.cxx + RWStepRepr_RWRepresentationReference.pxx + RWStepRepr_RWRepresentationRelationship.cxx + RWStepRepr_RWRepresentationRelationship.pxx + RWStepRepr_RWRepresentationRelationshipWithTransformation.cxx + RWStepRepr_RWRepresentationRelationshipWithTransformation.pxx + RWStepRepr_RWReprItemAndLengthMeasureWithUnit.cxx + RWStepRepr_RWReprItemAndLengthMeasureWithUnit.pxx + RWStepRepr_RWReprItemAndLengthMeasureWithUnitAndQRI.cxx + RWStepRepr_RWReprItemAndLengthMeasureWithUnitAndQRI.pxx + RWStepRepr_RWReprItemAndPlaneAngleMeasureWithUnit.cxx + RWStepRepr_RWReprItemAndPlaneAngleMeasureWithUnit.pxx + RWStepRepr_RWReprItemAndPlaneAngleMeasureWithUnitAndQRI.cxx + RWStepRepr_RWReprItemAndPlaneAngleMeasureWithUnitAndQRI.pxx + RWStepRepr_RWShapeAspect.cxx + RWStepRepr_RWShapeAspect.pxx + RWStepRepr_RWShapeAspectDerivingRelationship.cxx + RWStepRepr_RWShapeAspectDerivingRelationship.pxx + RWStepRepr_RWShapeAspectRelationship.cxx + RWStepRepr_RWShapeAspectRelationship.pxx + RWStepRepr_RWShapeAspectTransition.cxx + RWStepRepr_RWShapeAspectTransition.pxx + RWStepRepr_RWShapeRepresentationRelationshipWithTransformation.cxx + RWStepRepr_RWShapeRepresentationRelationshipWithTransformation.pxx + RWStepRepr_RWSpecifiedHigherUsageOccurrence.cxx + RWStepRepr_RWSpecifiedHigherUsageOccurrence.pxx + RWStepRepr_RWStructuralResponseProperty.cxx + RWStepRepr_RWStructuralResponseProperty.pxx + RWStepRepr_RWStructuralResponsePropertyDefinitionRepresentation.cxx + RWStepRepr_RWStructuralResponsePropertyDefinitionRepresentation.pxx + RWStepRepr_RWTangent.cxx + RWStepRepr_RWTangent.pxx + RWStepRepr_RWValueRepresentationItem.cxx + RWStepRepr_RWValueRepresentationItem.pxx +) diff --git a/src/RWStepRepr/RWStepRepr_RWAllAroundShapeAspect.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWAllAroundShapeAspect.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWAllAroundShapeAspect.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWAllAroundShapeAspect.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWAllAroundShapeAspect.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWAllAroundShapeAspect.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWAllAroundShapeAspect.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWAllAroundShapeAspect.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWApex.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWApex.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWApex.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWApex.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWApex.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWApex.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWApex.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWApex.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWAssemblyComponentUsage.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWAssemblyComponentUsage.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWAssemblyComponentUsage.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWAssemblyComponentUsage.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWAssemblyComponentUsage.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWAssemblyComponentUsage.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWAssemblyComponentUsage.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWAssemblyComponentUsage.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWAssemblyComponentUsageSubstitute.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWAssemblyComponentUsageSubstitute.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWAssemblyComponentUsageSubstitute.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWAssemblyComponentUsageSubstitute.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWAssemblyComponentUsageSubstitute.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWAssemblyComponentUsageSubstitute.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWAssemblyComponentUsageSubstitute.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWAssemblyComponentUsageSubstitute.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWBetweenShapeAspect.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWBetweenShapeAspect.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWBetweenShapeAspect.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWBetweenShapeAspect.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWBetweenShapeAspect.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWBetweenShapeAspect.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWBetweenShapeAspect.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWBetweenShapeAspect.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWBooleanRepresentationItem.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWBooleanRepresentationItem.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWBooleanRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWBooleanRepresentationItem.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWBooleanRepresentationItem.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWBooleanRepresentationItem.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWBooleanRepresentationItem.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWBooleanRepresentationItem.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWCentreOfSymmetry.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCentreOfSymmetry.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWCentreOfSymmetry.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCentreOfSymmetry.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWCentreOfSymmetry.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCentreOfSymmetry.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWCentreOfSymmetry.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCentreOfSymmetry.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWCharacterizedRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCharacterizedRepresentation.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWCharacterizedRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCharacterizedRepresentation.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWCharacterizedRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCharacterizedRepresentation.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWCharacterizedRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCharacterizedRepresentation.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWCompGroupShAspAndCompShAspAndDatumFeatAndShAsp.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCompGroupShAspAndCompShAspAndDatumFeatAndShAsp.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWCompGroupShAspAndCompShAspAndDatumFeatAndShAsp.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCompGroupShAspAndCompShAspAndDatumFeatAndShAsp.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWCompGroupShAspAndCompShAspAndDatumFeatAndShAsp.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCompGroupShAspAndCompShAspAndDatumFeatAndShAsp.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWCompGroupShAspAndCompShAspAndDatumFeatAndShAsp.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCompGroupShAspAndCompShAspAndDatumFeatAndShAsp.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWCompShAspAndDatumFeatAndShAsp.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCompShAspAndDatumFeatAndShAsp.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWCompShAspAndDatumFeatAndShAsp.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCompShAspAndDatumFeatAndShAsp.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWCompShAspAndDatumFeatAndShAsp.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCompShAspAndDatumFeatAndShAsp.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWCompShAspAndDatumFeatAndShAsp.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCompShAspAndDatumFeatAndShAsp.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWCompositeGroupShapeAspect.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCompositeGroupShapeAspect.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWCompositeGroupShapeAspect.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCompositeGroupShapeAspect.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWCompositeGroupShapeAspect.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCompositeGroupShapeAspect.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWCompositeGroupShapeAspect.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCompositeGroupShapeAspect.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWCompositeShapeAspect.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCompositeShapeAspect.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWCompositeShapeAspect.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCompositeShapeAspect.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWCompositeShapeAspect.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCompositeShapeAspect.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWCompositeShapeAspect.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCompositeShapeAspect.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWCompoundRepresentationItem.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCompoundRepresentationItem.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWCompoundRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCompoundRepresentationItem.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWCompoundRepresentationItem.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCompoundRepresentationItem.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWCompoundRepresentationItem.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWCompoundRepresentationItem.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWConfigurationDesign.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWConfigurationDesign.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWConfigurationDesign.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWConfigurationDesign.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWConfigurationDesign.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWConfigurationDesign.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWConfigurationDesign.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWConfigurationDesign.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWConfigurationEffectivity.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWConfigurationEffectivity.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWConfigurationEffectivity.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWConfigurationEffectivity.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWConfigurationEffectivity.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWConfigurationEffectivity.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWConfigurationEffectivity.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWConfigurationEffectivity.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWConfigurationItem.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWConfigurationItem.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWConfigurationItem.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWConfigurationItem.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWConfigurationItem.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWConfigurationItem.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWConfigurationItem.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWConfigurationItem.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWConstructiveGeometryRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWConstructiveGeometryRepresentation.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWConstructiveGeometryRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWConstructiveGeometryRepresentation.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWConstructiveGeometryRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWConstructiveGeometryRepresentation.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWConstructiveGeometryRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWConstructiveGeometryRepresentation.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWConstructiveGeometryRepresentationRelationship.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWConstructiveGeometryRepresentationRelationship.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWConstructiveGeometryRepresentationRelationship.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWConstructiveGeometryRepresentationRelationship.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWConstructiveGeometryRepresentationRelationship.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWConstructiveGeometryRepresentationRelationship.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWConstructiveGeometryRepresentationRelationship.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWConstructiveGeometryRepresentationRelationship.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWContinuosShapeAspect.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWContinuosShapeAspect.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWContinuosShapeAspect.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWContinuosShapeAspect.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWContinuosShapeAspect.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWContinuosShapeAspect.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWContinuosShapeAspect.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWContinuosShapeAspect.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWDataEnvironment.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWDataEnvironment.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWDataEnvironment.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWDataEnvironment.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWDataEnvironment.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWDataEnvironment.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWDataEnvironment.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWDataEnvironment.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWDefinitionalRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWDefinitionalRepresentation.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWDefinitionalRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWDefinitionalRepresentation.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWDefinitionalRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWDefinitionalRepresentation.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWDefinitionalRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWDefinitionalRepresentation.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWDerivedShapeAspect.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWDerivedShapeAspect.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWDerivedShapeAspect.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWDerivedShapeAspect.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWDerivedShapeAspect.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWDerivedShapeAspect.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWDerivedShapeAspect.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWDerivedShapeAspect.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWDescriptiveRepresentationItem.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWDescriptiveRepresentationItem.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWDescriptiveRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWDescriptiveRepresentationItem.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWDescriptiveRepresentationItem.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWDescriptiveRepresentationItem.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWDescriptiveRepresentationItem.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWDescriptiveRepresentationItem.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWExtension.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWExtension.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWExtension.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWExtension.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWExtension.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWExtension.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWExtension.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWExtension.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWFeatureForDatumTargetRelationship.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWFeatureForDatumTargetRelationship.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWFeatureForDatumTargetRelationship.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWFeatureForDatumTargetRelationship.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWFeatureForDatumTargetRelationship.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWFeatureForDatumTargetRelationship.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWFeatureForDatumTargetRelationship.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWFeatureForDatumTargetRelationship.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWFunctionallyDefinedTransformation.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWFunctionallyDefinedTransformation.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWFunctionallyDefinedTransformation.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWFunctionallyDefinedTransformation.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWFunctionallyDefinedTransformation.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWFunctionallyDefinedTransformation.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWFunctionallyDefinedTransformation.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWFunctionallyDefinedTransformation.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWGeometricAlignment.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWGeometricAlignment.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWGeometricAlignment.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWGeometricAlignment.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWGeometricAlignment.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWGeometricAlignment.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWGeometricAlignment.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWGeometricAlignment.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWGlobalUncertaintyAssignedContext.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWGlobalUncertaintyAssignedContext.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWGlobalUncertaintyAssignedContext.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWGlobalUncertaintyAssignedContext.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWGlobalUncertaintyAssignedContext.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWGlobalUncertaintyAssignedContext.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWGlobalUncertaintyAssignedContext.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWGlobalUncertaintyAssignedContext.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWGlobalUnitAssignedContext.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWGlobalUnitAssignedContext.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWGlobalUnitAssignedContext.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWGlobalUnitAssignedContext.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWGlobalUnitAssignedContext.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWGlobalUnitAssignedContext.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWGlobalUnitAssignedContext.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWGlobalUnitAssignedContext.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWIntegerRepresentationItem.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWIntegerRepresentationItem.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWIntegerRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWIntegerRepresentationItem.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWIntegerRepresentationItem.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWIntegerRepresentationItem.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWIntegerRepresentationItem.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWIntegerRepresentationItem.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWItemDefinedTransformation.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWItemDefinedTransformation.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWItemDefinedTransformation.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWItemDefinedTransformation.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWItemDefinedTransformation.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWItemDefinedTransformation.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWItemDefinedTransformation.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWItemDefinedTransformation.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWMakeFromUsageOption.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMakeFromUsageOption.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWMakeFromUsageOption.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMakeFromUsageOption.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWMakeFromUsageOption.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMakeFromUsageOption.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWMakeFromUsageOption.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMakeFromUsageOption.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWMappedItem.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMappedItem.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWMappedItem.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMappedItem.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWMappedItem.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMappedItem.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWMappedItem.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMappedItem.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWMaterialDesignation.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMaterialDesignation.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWMaterialDesignation.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMaterialDesignation.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWMaterialDesignation.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMaterialDesignation.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWMaterialDesignation.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMaterialDesignation.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWMaterialProperty.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMaterialProperty.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWMaterialProperty.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMaterialProperty.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWMaterialProperty.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMaterialProperty.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWMaterialProperty.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMaterialProperty.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWMaterialPropertyRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMaterialPropertyRepresentation.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWMaterialPropertyRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMaterialPropertyRepresentation.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWMaterialPropertyRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMaterialPropertyRepresentation.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWMaterialPropertyRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMaterialPropertyRepresentation.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWMeasureRepresentationItem.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMeasureRepresentationItem.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWMeasureRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMeasureRepresentationItem.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWMeasureRepresentationItem.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMeasureRepresentationItem.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWMeasureRepresentationItem.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMeasureRepresentationItem.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWMechanicalDesignAndDraughtingRelationship.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMechanicalDesignAndDraughtingRelationship.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWMechanicalDesignAndDraughtingRelationship.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMechanicalDesignAndDraughtingRelationship.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWMechanicalDesignAndDraughtingRelationship.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMechanicalDesignAndDraughtingRelationship.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWMechanicalDesignAndDraughtingRelationship.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWMechanicalDesignAndDraughtingRelationship.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWParallelOffset.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWParallelOffset.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWParallelOffset.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWParallelOffset.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWParallelOffset.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWParallelOffset.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWParallelOffset.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWParallelOffset.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWParametricRepresentationContext.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWParametricRepresentationContext.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWParametricRepresentationContext.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWParametricRepresentationContext.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWParametricRepresentationContext.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWParametricRepresentationContext.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWParametricRepresentationContext.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWParametricRepresentationContext.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWPerpendicularTo.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWPerpendicularTo.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWPerpendicularTo.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWPerpendicularTo.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWPerpendicularTo.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWPerpendicularTo.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWPerpendicularTo.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWPerpendicularTo.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWProductConcept.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWProductConcept.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWProductConcept.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWProductConcept.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWProductConcept.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWProductConcept.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWProductConcept.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWProductConcept.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWProductDefinitionShape.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWProductDefinitionShape.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWProductDefinitionShape.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWProductDefinitionShape.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWProductDefinitionShape.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWProductDefinitionShape.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWProductDefinitionShape.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWProductDefinitionShape.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWPropertyDefinition.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWPropertyDefinition.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWPropertyDefinition.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWPropertyDefinition.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWPropertyDefinition.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWPropertyDefinition.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWPropertyDefinition.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWPropertyDefinition.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWPropertyDefinitionRelationship.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWPropertyDefinitionRelationship.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWPropertyDefinitionRelationship.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWPropertyDefinitionRelationship.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWPropertyDefinitionRelationship.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWPropertyDefinitionRelationship.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWPropertyDefinitionRelationship.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWPropertyDefinitionRelationship.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWPropertyDefinitionRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWPropertyDefinitionRepresentation.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWPropertyDefinitionRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWPropertyDefinitionRepresentation.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWPropertyDefinitionRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWPropertyDefinitionRepresentation.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWPropertyDefinitionRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWPropertyDefinitionRepresentation.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWQuantifiedAssemblyComponentUsage.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWQuantifiedAssemblyComponentUsage.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWQuantifiedAssemblyComponentUsage.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWQuantifiedAssemblyComponentUsage.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWQuantifiedAssemblyComponentUsage.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWQuantifiedAssemblyComponentUsage.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWQuantifiedAssemblyComponentUsage.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWQuantifiedAssemblyComponentUsage.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWRealRepresentationItem.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRealRepresentationItem.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWRealRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRealRepresentationItem.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWRealRepresentationItem.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRealRepresentationItem.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWRealRepresentationItem.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRealRepresentationItem.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWReprItemAndLengthMeasureWithUnit.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWReprItemAndLengthMeasureWithUnit.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWReprItemAndLengthMeasureWithUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWReprItemAndLengthMeasureWithUnit.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWReprItemAndLengthMeasureWithUnit.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWReprItemAndLengthMeasureWithUnit.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWReprItemAndLengthMeasureWithUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWReprItemAndLengthMeasureWithUnit.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWReprItemAndLengthMeasureWithUnitAndQRI.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWReprItemAndLengthMeasureWithUnitAndQRI.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWReprItemAndLengthMeasureWithUnitAndQRI.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWReprItemAndLengthMeasureWithUnitAndQRI.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWReprItemAndLengthMeasureWithUnitAndQRI.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWReprItemAndLengthMeasureWithUnitAndQRI.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWReprItemAndLengthMeasureWithUnitAndQRI.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWReprItemAndLengthMeasureWithUnitAndQRI.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWReprItemAndPlaneAngleMeasureWithUnit.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWReprItemAndPlaneAngleMeasureWithUnit.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWReprItemAndPlaneAngleMeasureWithUnit.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWReprItemAndPlaneAngleMeasureWithUnit.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWReprItemAndPlaneAngleMeasureWithUnit.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWReprItemAndPlaneAngleMeasureWithUnit.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWReprItemAndPlaneAngleMeasureWithUnit.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWReprItemAndPlaneAngleMeasureWithUnit.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWReprItemAndPlaneAngleMeasureWithUnitAndQRI.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWReprItemAndPlaneAngleMeasureWithUnitAndQRI.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWReprItemAndPlaneAngleMeasureWithUnitAndQRI.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWReprItemAndPlaneAngleMeasureWithUnitAndQRI.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWReprItemAndPlaneAngleMeasureWithUnitAndQRI.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWReprItemAndPlaneAngleMeasureWithUnitAndQRI.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWReprItemAndPlaneAngleMeasureWithUnitAndQRI.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWReprItemAndPlaneAngleMeasureWithUnitAndQRI.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentation.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentation.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentation.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentation.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWRepresentationContext.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationContext.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWRepresentationContext.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationContext.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWRepresentationContext.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationContext.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWRepresentationContext.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationContext.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWRepresentationContextReference.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationContextReference.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWRepresentationContextReference.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationContextReference.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWRepresentationContextReference.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationContextReference.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWRepresentationContextReference.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationContextReference.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWRepresentationItem.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationItem.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationItem.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWRepresentationItem.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationItem.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWRepresentationItem.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationItem.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWRepresentationMap.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationMap.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWRepresentationMap.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationMap.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWRepresentationMap.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationMap.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWRepresentationMap.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationMap.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWRepresentationReference.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationReference.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWRepresentationReference.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationReference.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWRepresentationReference.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationReference.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWRepresentationReference.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationReference.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWRepresentationRelationship.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationRelationship.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWRepresentationRelationship.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationRelationship.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWRepresentationRelationship.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationRelationship.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWRepresentationRelationship.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationRelationship.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWRepresentationRelationshipWithTransformation.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationRelationshipWithTransformation.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWRepresentationRelationshipWithTransformation.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationRelationshipWithTransformation.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWRepresentationRelationshipWithTransformation.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationRelationshipWithTransformation.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWRepresentationRelationshipWithTransformation.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWRepresentationRelationshipWithTransformation.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWShapeAspect.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWShapeAspect.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWShapeAspect.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWShapeAspect.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWShapeAspect.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWShapeAspect.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWShapeAspect.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWShapeAspect.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWShapeAspectDerivingRelationship.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWShapeAspectDerivingRelationship.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWShapeAspectDerivingRelationship.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWShapeAspectDerivingRelationship.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWShapeAspectDerivingRelationship.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWShapeAspectDerivingRelationship.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWShapeAspectDerivingRelationship.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWShapeAspectDerivingRelationship.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWShapeAspectRelationship.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWShapeAspectRelationship.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWShapeAspectRelationship.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWShapeAspectRelationship.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWShapeAspectRelationship.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWShapeAspectRelationship.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWShapeAspectRelationship.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWShapeAspectRelationship.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWShapeAspectTransition.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWShapeAspectTransition.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWShapeAspectTransition.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWShapeAspectTransition.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWShapeAspectTransition.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWShapeAspectTransition.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWShapeAspectTransition.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWShapeAspectTransition.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWShapeRepresentationRelationshipWithTransformation.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWShapeRepresentationRelationshipWithTransformation.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWShapeRepresentationRelationshipWithTransformation.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWShapeRepresentationRelationshipWithTransformation.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWShapeRepresentationRelationshipWithTransformation.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWShapeRepresentationRelationshipWithTransformation.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWShapeRepresentationRelationshipWithTransformation.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWShapeRepresentationRelationshipWithTransformation.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWSpecifiedHigherUsageOccurrence.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWSpecifiedHigherUsageOccurrence.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWSpecifiedHigherUsageOccurrence.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWSpecifiedHigherUsageOccurrence.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWSpecifiedHigherUsageOccurrence.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWSpecifiedHigherUsageOccurrence.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWSpecifiedHigherUsageOccurrence.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWSpecifiedHigherUsageOccurrence.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWStructuralResponseProperty.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWStructuralResponseProperty.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWStructuralResponseProperty.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWStructuralResponseProperty.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWStructuralResponseProperty.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWStructuralResponseProperty.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWStructuralResponseProperty.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWStructuralResponseProperty.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWStructuralResponsePropertyDefinitionRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWStructuralResponsePropertyDefinitionRepresentation.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWStructuralResponsePropertyDefinitionRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWStructuralResponsePropertyDefinitionRepresentation.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWStructuralResponsePropertyDefinitionRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWStructuralResponsePropertyDefinitionRepresentation.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWStructuralResponsePropertyDefinitionRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWStructuralResponsePropertyDefinitionRepresentation.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWTangent.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWTangent.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWTangent.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWTangent.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWTangent.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWTangent.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWTangent.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWTangent.pxx diff --git a/src/RWStepRepr/RWStepRepr_RWValueRepresentationItem.cxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWValueRepresentationItem.cxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWValueRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWValueRepresentationItem.cxx diff --git a/src/RWStepRepr/RWStepRepr_RWValueRepresentationItem.pxx b/src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWValueRepresentationItem.pxx similarity index 100% rename from src/RWStepRepr/RWStepRepr_RWValueRepresentationItem.pxx rename to src/DataExchange/TKDESTEP/RWStepRepr/RWStepRepr_RWValueRepresentationItem.pxx diff --git a/src/DataExchange/TKDESTEP/RWStepShape/FILES.cmake b/src/DataExchange/TKDESTEP/RWStepShape/FILES.cmake new file mode 100644 index 0000000000..b97ce9acc3 --- /dev/null +++ b/src/DataExchange/TKDESTEP/RWStepShape/FILES.cmake @@ -0,0 +1,187 @@ +# Source files for RWStepShape package +set(OCCT_RWStepShape_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_RWStepShape_FILES + RWStepShape_RWAdvancedBrepShapeRepresentation.cxx + RWStepShape_RWAdvancedBrepShapeRepresentation.pxx + RWStepShape_RWAdvancedFace.cxx + RWStepShape_RWAdvancedFace.pxx + RWStepShape_RWAngularLocation.cxx + RWStepShape_RWAngularLocation.pxx + RWStepShape_RWAngularSize.cxx + RWStepShape_RWAngularSize.pxx + RWStepShape_RWBlock.cxx + RWStepShape_RWBlock.pxx + RWStepShape_RWBooleanResult.cxx + RWStepShape_RWBooleanResult.pxx + RWStepShape_RWBoxDomain.cxx + RWStepShape_RWBoxDomain.pxx + RWStepShape_RWBoxedHalfSpace.cxx + RWStepShape_RWBoxedHalfSpace.pxx + RWStepShape_RWBrepWithVoids.cxx + RWStepShape_RWBrepWithVoids.pxx + RWStepShape_RWClosedShell.cxx + RWStepShape_RWClosedShell.pxx + RWStepShape_RWCompoundShapeRepresentation.cxx + RWStepShape_RWCompoundShapeRepresentation.pxx + RWStepShape_RWConnectedEdgeSet.cxx + RWStepShape_RWConnectedEdgeSet.pxx + RWStepShape_RWConnectedFaceSet.cxx + RWStepShape_RWConnectedFaceSet.pxx + RWStepShape_RWConnectedFaceShapeRepresentation.cxx + RWStepShape_RWConnectedFaceShapeRepresentation.pxx + RWStepShape_RWConnectedFaceSubSet.cxx + RWStepShape_RWConnectedFaceSubSet.pxx + RWStepShape_RWContextDependentShapeRepresentation.cxx + RWStepShape_RWContextDependentShapeRepresentation.pxx + RWStepShape_RWCsgShapeRepresentation.cxx + RWStepShape_RWCsgShapeRepresentation.pxx + RWStepShape_RWCsgSolid.cxx + RWStepShape_RWCsgSolid.pxx + RWStepShape_RWDefinitionalRepresentationAndShapeRepresentation.cxx + RWStepShape_RWDefinitionalRepresentationAndShapeRepresentation.pxx + RWStepShape_RWDimensionalCharacteristicRepresentation.cxx + RWStepShape_RWDimensionalCharacteristicRepresentation.pxx + RWStepShape_RWDimensionalLocation.cxx + RWStepShape_RWDimensionalLocation.pxx + RWStepShape_RWDimensionalLocationWithPath.cxx + RWStepShape_RWDimensionalLocationWithPath.pxx + RWStepShape_RWDimensionalSize.cxx + RWStepShape_RWDimensionalSize.pxx + RWStepShape_RWDimensionalSizeWithPath.cxx + RWStepShape_RWDimensionalSizeWithPath.pxx + RWStepShape_RWEdge.cxx + RWStepShape_RWEdge.pxx + RWStepShape_RWEdgeBasedWireframeModel.cxx + RWStepShape_RWEdgeBasedWireframeModel.pxx + RWStepShape_RWEdgeBasedWireframeShapeRepresentation.cxx + RWStepShape_RWEdgeBasedWireframeShapeRepresentation.pxx + RWStepShape_RWEdgeCurve.cxx + RWStepShape_RWEdgeCurve.pxx + RWStepShape_RWEdgeLoop.cxx + RWStepShape_RWEdgeLoop.pxx + RWStepShape_RWExtrudedAreaSolid.cxx + RWStepShape_RWExtrudedAreaSolid.pxx + RWStepShape_RWExtrudedFaceSolid.cxx + RWStepShape_RWExtrudedFaceSolid.pxx + RWStepShape_RWFace.cxx + RWStepShape_RWFace.pxx + RWStepShape_RWFaceBasedSurfaceModel.cxx + RWStepShape_RWFaceBasedSurfaceModel.pxx + RWStepShape_RWFaceBound.cxx + RWStepShape_RWFaceBound.pxx + RWStepShape_RWFaceOuterBound.cxx + RWStepShape_RWFaceOuterBound.pxx + RWStepShape_RWFaceSurface.cxx + RWStepShape_RWFaceSurface.pxx + RWStepShape_RWFacetedBrep.cxx + RWStepShape_RWFacetedBrep.pxx + RWStepShape_RWFacetedBrepAndBrepWithVoids.cxx + RWStepShape_RWFacetedBrepAndBrepWithVoids.pxx + RWStepShape_RWFacetedBrepShapeRepresentation.cxx + RWStepShape_RWFacetedBrepShapeRepresentation.pxx + RWStepShape_RWGeometricallyBoundedSurfaceShapeRepresentation.cxx + RWStepShape_RWGeometricallyBoundedSurfaceShapeRepresentation.pxx + RWStepShape_RWGeometricallyBoundedWireframeShapeRepresentation.cxx + RWStepShape_RWGeometricallyBoundedWireframeShapeRepresentation.pxx + RWStepShape_RWGeometricCurveSet.cxx + RWStepShape_RWGeometricCurveSet.pxx + RWStepShape_RWGeometricSet.cxx + RWStepShape_RWGeometricSet.pxx + RWStepShape_RWHalfSpaceSolid.cxx + RWStepShape_RWHalfSpaceSolid.pxx + RWStepShape_RWLimitsAndFits.cxx + RWStepShape_RWLimitsAndFits.pxx + RWStepShape_RWLoop.cxx + RWStepShape_RWLoop.pxx + RWStepShape_RWLoopAndPath.cxx + RWStepShape_RWLoopAndPath.pxx + RWStepShape_RWManifoldSolidBrep.cxx + RWStepShape_RWManifoldSolidBrep.pxx + RWStepShape_RWManifoldSurfaceShapeRepresentation.cxx + RWStepShape_RWManifoldSurfaceShapeRepresentation.pxx + RWStepShape_RWMeasureQualification.cxx + RWStepShape_RWMeasureQualification.pxx + RWStepShape_RWMeasureRepresentationItemAndQualifiedRepresentationItem.cxx + RWStepShape_RWMeasureRepresentationItemAndQualifiedRepresentationItem.pxx + RWStepShape_RWNonManifoldSurfaceShapeRepresentation.cxx + RWStepShape_RWNonManifoldSurfaceShapeRepresentation.pxx + RWStepShape_RWOpenShell.cxx + RWStepShape_RWOpenShell.pxx + RWStepShape_RWOrientedClosedShell.cxx + RWStepShape_RWOrientedClosedShell.pxx + RWStepShape_RWOrientedEdge.cxx + RWStepShape_RWOrientedEdge.pxx + RWStepShape_RWOrientedFace.cxx + RWStepShape_RWOrientedFace.pxx + RWStepShape_RWOrientedOpenShell.cxx + RWStepShape_RWOrientedOpenShell.pxx + RWStepShape_RWOrientedPath.cxx + RWStepShape_RWOrientedPath.pxx + RWStepShape_RWPath.cxx + RWStepShape_RWPath.pxx + RWStepShape_RWPlusMinusTolerance.cxx + RWStepShape_RWPlusMinusTolerance.pxx + RWStepShape_RWPointRepresentation.cxx + RWStepShape_RWPointRepresentation.pxx + RWStepShape_RWPolyLoop.cxx + RWStepShape_RWPolyLoop.pxx + RWStepShape_RWPrecisionQualifier.cxx + RWStepShape_RWPrecisionQualifier.pxx + RWStepShape_RWQualifiedRepresentationItem.cxx + RWStepShape_RWQualifiedRepresentationItem.pxx + RWStepShape_RWRevolvedAreaSolid.cxx + RWStepShape_RWRevolvedAreaSolid.pxx + RWStepShape_RWRevolvedFaceSolid.cxx + RWStepShape_RWRevolvedFaceSolid.pxx + RWStepShape_RWRightAngularWedge.cxx + RWStepShape_RWRightAngularWedge.pxx + RWStepShape_RWRightCircularCone.cxx + RWStepShape_RWRightCircularCone.pxx + RWStepShape_RWRightCircularCylinder.cxx + RWStepShape_RWRightCircularCylinder.pxx + RWStepShape_RWSeamEdge.cxx + RWStepShape_RWSeamEdge.pxx + RWStepShape_RWShapeDefinitionRepresentation.cxx + RWStepShape_RWShapeDefinitionRepresentation.pxx + RWStepShape_RWShapeDimensionRepresentation.cxx + RWStepShape_RWShapeDimensionRepresentation.pxx + RWStepShape_RWShapeRepresentation.cxx + RWStepShape_RWShapeRepresentation.pxx + RWStepShape_RWShapeRepresentationWithParameters.cxx + RWStepShape_RWShapeRepresentationWithParameters.pxx + RWStepShape_RWShellBasedSurfaceModel.cxx + RWStepShape_RWShellBasedSurfaceModel.pxx + RWStepShape_RWSolidModel.cxx + RWStepShape_RWSolidModel.pxx + RWStepShape_RWSolidReplica.cxx + RWStepShape_RWSolidReplica.pxx + RWStepShape_RWSphere.cxx + RWStepShape_RWSphere.pxx + RWStepShape_RWSubedge.cxx + RWStepShape_RWSubedge.pxx + RWStepShape_RWSubface.cxx + RWStepShape_RWSubface.pxx + RWStepShape_RWSweptAreaSolid.cxx + RWStepShape_RWSweptAreaSolid.pxx + RWStepShape_RWSweptFaceSolid.cxx + RWStepShape_RWSweptFaceSolid.pxx + RWStepShape_RWToleranceValue.cxx + RWStepShape_RWToleranceValue.pxx + RWStepShape_RWTopologicalRepresentationItem.cxx + RWStepShape_RWTopologicalRepresentationItem.pxx + RWStepShape_RWTorus.cxx + RWStepShape_RWTorus.pxx + RWStepShape_RWTransitionalShapeRepresentation.cxx + RWStepShape_RWTransitionalShapeRepresentation.pxx + RWStepShape_RWTypeQualifier.cxx + RWStepShape_RWTypeQualifier.pxx + RWStepShape_RWValueFormatTypeQualifier.cxx + RWStepShape_RWValueFormatTypeQualifier.pxx + RWStepShape_RWVertex.cxx + RWStepShape_RWVertex.pxx + RWStepShape_RWVertexLoop.cxx + RWStepShape_RWVertexLoop.pxx + RWStepShape_RWVertexPoint.cxx + RWStepShape_RWVertexPoint.pxx +) diff --git a/src/RWStepShape/RWStepShape_RWAdvancedBrepShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWAdvancedBrepShapeRepresentation.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWAdvancedBrepShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWAdvancedBrepShapeRepresentation.cxx diff --git a/src/RWStepShape/RWStepShape_RWAdvancedBrepShapeRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWAdvancedBrepShapeRepresentation.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWAdvancedBrepShapeRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWAdvancedBrepShapeRepresentation.pxx diff --git a/src/RWStepShape/RWStepShape_RWAdvancedFace.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWAdvancedFace.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWAdvancedFace.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWAdvancedFace.cxx diff --git a/src/RWStepShape/RWStepShape_RWAdvancedFace.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWAdvancedFace.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWAdvancedFace.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWAdvancedFace.pxx diff --git a/src/RWStepShape/RWStepShape_RWAngularLocation.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWAngularLocation.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWAngularLocation.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWAngularLocation.cxx diff --git a/src/RWStepShape/RWStepShape_RWAngularLocation.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWAngularLocation.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWAngularLocation.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWAngularLocation.pxx diff --git a/src/RWStepShape/RWStepShape_RWAngularSize.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWAngularSize.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWAngularSize.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWAngularSize.cxx diff --git a/src/RWStepShape/RWStepShape_RWAngularSize.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWAngularSize.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWAngularSize.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWAngularSize.pxx diff --git a/src/RWStepShape/RWStepShape_RWBlock.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWBlock.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWBlock.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWBlock.cxx diff --git a/src/RWStepShape/RWStepShape_RWBlock.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWBlock.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWBlock.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWBlock.pxx diff --git a/src/RWStepShape/RWStepShape_RWBooleanResult.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWBooleanResult.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWBooleanResult.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWBooleanResult.cxx diff --git a/src/RWStepShape/RWStepShape_RWBooleanResult.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWBooleanResult.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWBooleanResult.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWBooleanResult.pxx diff --git a/src/RWStepShape/RWStepShape_RWBoxDomain.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWBoxDomain.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWBoxDomain.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWBoxDomain.cxx diff --git a/src/RWStepShape/RWStepShape_RWBoxDomain.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWBoxDomain.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWBoxDomain.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWBoxDomain.pxx diff --git a/src/RWStepShape/RWStepShape_RWBoxedHalfSpace.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWBoxedHalfSpace.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWBoxedHalfSpace.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWBoxedHalfSpace.cxx diff --git a/src/RWStepShape/RWStepShape_RWBoxedHalfSpace.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWBoxedHalfSpace.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWBoxedHalfSpace.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWBoxedHalfSpace.pxx diff --git a/src/RWStepShape/RWStepShape_RWBrepWithVoids.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWBrepWithVoids.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWBrepWithVoids.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWBrepWithVoids.cxx diff --git a/src/RWStepShape/RWStepShape_RWBrepWithVoids.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWBrepWithVoids.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWBrepWithVoids.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWBrepWithVoids.pxx diff --git a/src/RWStepShape/RWStepShape_RWClosedShell.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWClosedShell.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWClosedShell.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWClosedShell.cxx diff --git a/src/RWStepShape/RWStepShape_RWClosedShell.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWClosedShell.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWClosedShell.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWClosedShell.pxx diff --git a/src/RWStepShape/RWStepShape_RWCompoundShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWCompoundShapeRepresentation.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWCompoundShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWCompoundShapeRepresentation.cxx diff --git a/src/RWStepShape/RWStepShape_RWCompoundShapeRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWCompoundShapeRepresentation.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWCompoundShapeRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWCompoundShapeRepresentation.pxx diff --git a/src/RWStepShape/RWStepShape_RWConnectedEdgeSet.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWConnectedEdgeSet.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWConnectedEdgeSet.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWConnectedEdgeSet.cxx diff --git a/src/RWStepShape/RWStepShape_RWConnectedEdgeSet.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWConnectedEdgeSet.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWConnectedEdgeSet.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWConnectedEdgeSet.pxx diff --git a/src/RWStepShape/RWStepShape_RWConnectedFaceSet.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWConnectedFaceSet.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWConnectedFaceSet.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWConnectedFaceSet.cxx diff --git a/src/RWStepShape/RWStepShape_RWConnectedFaceSet.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWConnectedFaceSet.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWConnectedFaceSet.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWConnectedFaceSet.pxx diff --git a/src/RWStepShape/RWStepShape_RWConnectedFaceShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWConnectedFaceShapeRepresentation.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWConnectedFaceShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWConnectedFaceShapeRepresentation.cxx diff --git a/src/RWStepShape/RWStepShape_RWConnectedFaceShapeRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWConnectedFaceShapeRepresentation.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWConnectedFaceShapeRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWConnectedFaceShapeRepresentation.pxx diff --git a/src/RWStepShape/RWStepShape_RWConnectedFaceSubSet.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWConnectedFaceSubSet.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWConnectedFaceSubSet.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWConnectedFaceSubSet.cxx diff --git a/src/RWStepShape/RWStepShape_RWConnectedFaceSubSet.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWConnectedFaceSubSet.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWConnectedFaceSubSet.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWConnectedFaceSubSet.pxx diff --git a/src/RWStepShape/RWStepShape_RWContextDependentShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWContextDependentShapeRepresentation.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWContextDependentShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWContextDependentShapeRepresentation.cxx diff --git a/src/RWStepShape/RWStepShape_RWContextDependentShapeRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWContextDependentShapeRepresentation.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWContextDependentShapeRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWContextDependentShapeRepresentation.pxx diff --git a/src/RWStepShape/RWStepShape_RWCsgShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWCsgShapeRepresentation.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWCsgShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWCsgShapeRepresentation.cxx diff --git a/src/RWStepShape/RWStepShape_RWCsgShapeRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWCsgShapeRepresentation.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWCsgShapeRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWCsgShapeRepresentation.pxx diff --git a/src/RWStepShape/RWStepShape_RWCsgSolid.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWCsgSolid.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWCsgSolid.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWCsgSolid.cxx diff --git a/src/RWStepShape/RWStepShape_RWCsgSolid.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWCsgSolid.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWCsgSolid.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWCsgSolid.pxx diff --git a/src/RWStepShape/RWStepShape_RWDefinitionalRepresentationAndShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWDefinitionalRepresentationAndShapeRepresentation.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWDefinitionalRepresentationAndShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWDefinitionalRepresentationAndShapeRepresentation.cxx diff --git a/src/RWStepShape/RWStepShape_RWDefinitionalRepresentationAndShapeRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWDefinitionalRepresentationAndShapeRepresentation.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWDefinitionalRepresentationAndShapeRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWDefinitionalRepresentationAndShapeRepresentation.pxx diff --git a/src/RWStepShape/RWStepShape_RWDimensionalCharacteristicRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWDimensionalCharacteristicRepresentation.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWDimensionalCharacteristicRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWDimensionalCharacteristicRepresentation.cxx diff --git a/src/RWStepShape/RWStepShape_RWDimensionalCharacteristicRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWDimensionalCharacteristicRepresentation.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWDimensionalCharacteristicRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWDimensionalCharacteristicRepresentation.pxx diff --git a/src/RWStepShape/RWStepShape_RWDimensionalLocation.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWDimensionalLocation.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWDimensionalLocation.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWDimensionalLocation.cxx diff --git a/src/RWStepShape/RWStepShape_RWDimensionalLocation.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWDimensionalLocation.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWDimensionalLocation.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWDimensionalLocation.pxx diff --git a/src/RWStepShape/RWStepShape_RWDimensionalLocationWithPath.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWDimensionalLocationWithPath.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWDimensionalLocationWithPath.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWDimensionalLocationWithPath.cxx diff --git a/src/RWStepShape/RWStepShape_RWDimensionalLocationWithPath.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWDimensionalLocationWithPath.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWDimensionalLocationWithPath.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWDimensionalLocationWithPath.pxx diff --git a/src/RWStepShape/RWStepShape_RWDimensionalSize.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWDimensionalSize.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWDimensionalSize.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWDimensionalSize.cxx diff --git a/src/RWStepShape/RWStepShape_RWDimensionalSize.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWDimensionalSize.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWDimensionalSize.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWDimensionalSize.pxx diff --git a/src/RWStepShape/RWStepShape_RWDimensionalSizeWithPath.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWDimensionalSizeWithPath.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWDimensionalSizeWithPath.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWDimensionalSizeWithPath.cxx diff --git a/src/RWStepShape/RWStepShape_RWDimensionalSizeWithPath.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWDimensionalSizeWithPath.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWDimensionalSizeWithPath.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWDimensionalSizeWithPath.pxx diff --git a/src/RWStepShape/RWStepShape_RWEdge.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWEdge.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWEdge.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWEdge.cxx diff --git a/src/RWStepShape/RWStepShape_RWEdge.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWEdge.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWEdge.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWEdge.pxx diff --git a/src/RWStepShape/RWStepShape_RWEdgeBasedWireframeModel.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWEdgeBasedWireframeModel.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWEdgeBasedWireframeModel.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWEdgeBasedWireframeModel.cxx diff --git a/src/RWStepShape/RWStepShape_RWEdgeBasedWireframeModel.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWEdgeBasedWireframeModel.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWEdgeBasedWireframeModel.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWEdgeBasedWireframeModel.pxx diff --git a/src/RWStepShape/RWStepShape_RWEdgeBasedWireframeShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWEdgeBasedWireframeShapeRepresentation.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWEdgeBasedWireframeShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWEdgeBasedWireframeShapeRepresentation.cxx diff --git a/src/RWStepShape/RWStepShape_RWEdgeBasedWireframeShapeRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWEdgeBasedWireframeShapeRepresentation.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWEdgeBasedWireframeShapeRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWEdgeBasedWireframeShapeRepresentation.pxx diff --git a/src/RWStepShape/RWStepShape_RWEdgeCurve.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWEdgeCurve.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWEdgeCurve.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWEdgeCurve.cxx diff --git a/src/RWStepShape/RWStepShape_RWEdgeCurve.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWEdgeCurve.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWEdgeCurve.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWEdgeCurve.pxx diff --git a/src/RWStepShape/RWStepShape_RWEdgeLoop.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWEdgeLoop.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWEdgeLoop.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWEdgeLoop.cxx diff --git a/src/RWStepShape/RWStepShape_RWEdgeLoop.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWEdgeLoop.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWEdgeLoop.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWEdgeLoop.pxx diff --git a/src/RWStepShape/RWStepShape_RWExtrudedAreaSolid.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWExtrudedAreaSolid.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWExtrudedAreaSolid.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWExtrudedAreaSolid.cxx diff --git a/src/RWStepShape/RWStepShape_RWExtrudedAreaSolid.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWExtrudedAreaSolid.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWExtrudedAreaSolid.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWExtrudedAreaSolid.pxx diff --git a/src/RWStepShape/RWStepShape_RWExtrudedFaceSolid.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWExtrudedFaceSolid.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWExtrudedFaceSolid.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWExtrudedFaceSolid.cxx diff --git a/src/RWStepShape/RWStepShape_RWExtrudedFaceSolid.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWExtrudedFaceSolid.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWExtrudedFaceSolid.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWExtrudedFaceSolid.pxx diff --git a/src/RWStepShape/RWStepShape_RWFace.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFace.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWFace.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFace.cxx diff --git a/src/RWStepShape/RWStepShape_RWFace.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFace.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWFace.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFace.pxx diff --git a/src/RWStepShape/RWStepShape_RWFaceBasedSurfaceModel.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFaceBasedSurfaceModel.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWFaceBasedSurfaceModel.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFaceBasedSurfaceModel.cxx diff --git a/src/RWStepShape/RWStepShape_RWFaceBasedSurfaceModel.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFaceBasedSurfaceModel.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWFaceBasedSurfaceModel.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFaceBasedSurfaceModel.pxx diff --git a/src/RWStepShape/RWStepShape_RWFaceBound.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFaceBound.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWFaceBound.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFaceBound.cxx diff --git a/src/RWStepShape/RWStepShape_RWFaceBound.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFaceBound.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWFaceBound.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFaceBound.pxx diff --git a/src/RWStepShape/RWStepShape_RWFaceOuterBound.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFaceOuterBound.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWFaceOuterBound.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFaceOuterBound.cxx diff --git a/src/RWStepShape/RWStepShape_RWFaceOuterBound.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFaceOuterBound.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWFaceOuterBound.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFaceOuterBound.pxx diff --git a/src/RWStepShape/RWStepShape_RWFaceSurface.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFaceSurface.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWFaceSurface.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFaceSurface.cxx diff --git a/src/RWStepShape/RWStepShape_RWFaceSurface.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFaceSurface.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWFaceSurface.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFaceSurface.pxx diff --git a/src/RWStepShape/RWStepShape_RWFacetedBrep.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFacetedBrep.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWFacetedBrep.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFacetedBrep.cxx diff --git a/src/RWStepShape/RWStepShape_RWFacetedBrep.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFacetedBrep.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWFacetedBrep.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFacetedBrep.pxx diff --git a/src/RWStepShape/RWStepShape_RWFacetedBrepAndBrepWithVoids.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFacetedBrepAndBrepWithVoids.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWFacetedBrepAndBrepWithVoids.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFacetedBrepAndBrepWithVoids.cxx diff --git a/src/RWStepShape/RWStepShape_RWFacetedBrepAndBrepWithVoids.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFacetedBrepAndBrepWithVoids.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWFacetedBrepAndBrepWithVoids.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFacetedBrepAndBrepWithVoids.pxx diff --git a/src/RWStepShape/RWStepShape_RWFacetedBrepShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFacetedBrepShapeRepresentation.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWFacetedBrepShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFacetedBrepShapeRepresentation.cxx diff --git a/src/RWStepShape/RWStepShape_RWFacetedBrepShapeRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFacetedBrepShapeRepresentation.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWFacetedBrepShapeRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWFacetedBrepShapeRepresentation.pxx diff --git a/src/RWStepShape/RWStepShape_RWGeometricCurveSet.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWGeometricCurveSet.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWGeometricCurveSet.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWGeometricCurveSet.cxx diff --git a/src/RWStepShape/RWStepShape_RWGeometricCurveSet.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWGeometricCurveSet.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWGeometricCurveSet.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWGeometricCurveSet.pxx diff --git a/src/RWStepShape/RWStepShape_RWGeometricSet.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWGeometricSet.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWGeometricSet.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWGeometricSet.cxx diff --git a/src/RWStepShape/RWStepShape_RWGeometricSet.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWGeometricSet.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWGeometricSet.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWGeometricSet.pxx diff --git a/src/RWStepShape/RWStepShape_RWGeometricallyBoundedSurfaceShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWGeometricallyBoundedSurfaceShapeRepresentation.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWGeometricallyBoundedSurfaceShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWGeometricallyBoundedSurfaceShapeRepresentation.cxx diff --git a/src/RWStepShape/RWStepShape_RWGeometricallyBoundedSurfaceShapeRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWGeometricallyBoundedSurfaceShapeRepresentation.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWGeometricallyBoundedSurfaceShapeRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWGeometricallyBoundedSurfaceShapeRepresentation.pxx diff --git a/src/RWStepShape/RWStepShape_RWGeometricallyBoundedWireframeShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWGeometricallyBoundedWireframeShapeRepresentation.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWGeometricallyBoundedWireframeShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWGeometricallyBoundedWireframeShapeRepresentation.cxx diff --git a/src/RWStepShape/RWStepShape_RWGeometricallyBoundedWireframeShapeRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWGeometricallyBoundedWireframeShapeRepresentation.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWGeometricallyBoundedWireframeShapeRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWGeometricallyBoundedWireframeShapeRepresentation.pxx diff --git a/src/RWStepShape/RWStepShape_RWHalfSpaceSolid.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWHalfSpaceSolid.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWHalfSpaceSolid.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWHalfSpaceSolid.cxx diff --git a/src/RWStepShape/RWStepShape_RWHalfSpaceSolid.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWHalfSpaceSolid.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWHalfSpaceSolid.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWHalfSpaceSolid.pxx diff --git a/src/RWStepShape/RWStepShape_RWLimitsAndFits.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWLimitsAndFits.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWLimitsAndFits.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWLimitsAndFits.cxx diff --git a/src/RWStepShape/RWStepShape_RWLimitsAndFits.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWLimitsAndFits.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWLimitsAndFits.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWLimitsAndFits.pxx diff --git a/src/RWStepShape/RWStepShape_RWLoop.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWLoop.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWLoop.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWLoop.cxx diff --git a/src/RWStepShape/RWStepShape_RWLoop.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWLoop.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWLoop.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWLoop.pxx diff --git a/src/RWStepShape/RWStepShape_RWLoopAndPath.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWLoopAndPath.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWLoopAndPath.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWLoopAndPath.cxx diff --git a/src/RWStepShape/RWStepShape_RWLoopAndPath.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWLoopAndPath.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWLoopAndPath.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWLoopAndPath.pxx diff --git a/src/RWStepShape/RWStepShape_RWManifoldSolidBrep.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWManifoldSolidBrep.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWManifoldSolidBrep.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWManifoldSolidBrep.cxx diff --git a/src/RWStepShape/RWStepShape_RWManifoldSolidBrep.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWManifoldSolidBrep.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWManifoldSolidBrep.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWManifoldSolidBrep.pxx diff --git a/src/RWStepShape/RWStepShape_RWManifoldSurfaceShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWManifoldSurfaceShapeRepresentation.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWManifoldSurfaceShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWManifoldSurfaceShapeRepresentation.cxx diff --git a/src/RWStepShape/RWStepShape_RWManifoldSurfaceShapeRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWManifoldSurfaceShapeRepresentation.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWManifoldSurfaceShapeRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWManifoldSurfaceShapeRepresentation.pxx diff --git a/src/RWStepShape/RWStepShape_RWMeasureQualification.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWMeasureQualification.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWMeasureQualification.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWMeasureQualification.cxx diff --git a/src/RWStepShape/RWStepShape_RWMeasureQualification.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWMeasureQualification.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWMeasureQualification.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWMeasureQualification.pxx diff --git a/src/RWStepShape/RWStepShape_RWMeasureRepresentationItemAndQualifiedRepresentationItem.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWMeasureRepresentationItemAndQualifiedRepresentationItem.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWMeasureRepresentationItemAndQualifiedRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWMeasureRepresentationItemAndQualifiedRepresentationItem.cxx diff --git a/src/RWStepShape/RWStepShape_RWMeasureRepresentationItemAndQualifiedRepresentationItem.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWMeasureRepresentationItemAndQualifiedRepresentationItem.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWMeasureRepresentationItemAndQualifiedRepresentationItem.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWMeasureRepresentationItemAndQualifiedRepresentationItem.pxx diff --git a/src/RWStepShape/RWStepShape_RWNonManifoldSurfaceShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWNonManifoldSurfaceShapeRepresentation.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWNonManifoldSurfaceShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWNonManifoldSurfaceShapeRepresentation.cxx diff --git a/src/RWStepShape/RWStepShape_RWNonManifoldSurfaceShapeRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWNonManifoldSurfaceShapeRepresentation.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWNonManifoldSurfaceShapeRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWNonManifoldSurfaceShapeRepresentation.pxx diff --git a/src/RWStepShape/RWStepShape_RWOpenShell.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWOpenShell.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWOpenShell.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWOpenShell.cxx diff --git a/src/RWStepShape/RWStepShape_RWOpenShell.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWOpenShell.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWOpenShell.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWOpenShell.pxx diff --git a/src/RWStepShape/RWStepShape_RWOrientedClosedShell.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWOrientedClosedShell.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWOrientedClosedShell.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWOrientedClosedShell.cxx diff --git a/src/RWStepShape/RWStepShape_RWOrientedClosedShell.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWOrientedClosedShell.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWOrientedClosedShell.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWOrientedClosedShell.pxx diff --git a/src/RWStepShape/RWStepShape_RWOrientedEdge.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWOrientedEdge.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWOrientedEdge.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWOrientedEdge.cxx diff --git a/src/RWStepShape/RWStepShape_RWOrientedEdge.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWOrientedEdge.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWOrientedEdge.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWOrientedEdge.pxx diff --git a/src/RWStepShape/RWStepShape_RWOrientedFace.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWOrientedFace.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWOrientedFace.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWOrientedFace.cxx diff --git a/src/RWStepShape/RWStepShape_RWOrientedFace.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWOrientedFace.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWOrientedFace.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWOrientedFace.pxx diff --git a/src/RWStepShape/RWStepShape_RWOrientedOpenShell.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWOrientedOpenShell.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWOrientedOpenShell.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWOrientedOpenShell.cxx diff --git a/src/RWStepShape/RWStepShape_RWOrientedOpenShell.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWOrientedOpenShell.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWOrientedOpenShell.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWOrientedOpenShell.pxx diff --git a/src/RWStepShape/RWStepShape_RWOrientedPath.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWOrientedPath.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWOrientedPath.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWOrientedPath.cxx diff --git a/src/RWStepShape/RWStepShape_RWOrientedPath.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWOrientedPath.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWOrientedPath.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWOrientedPath.pxx diff --git a/src/RWStepShape/RWStepShape_RWPath.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWPath.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWPath.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWPath.cxx diff --git a/src/RWStepShape/RWStepShape_RWPath.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWPath.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWPath.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWPath.pxx diff --git a/src/RWStepShape/RWStepShape_RWPlusMinusTolerance.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWPlusMinusTolerance.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWPlusMinusTolerance.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWPlusMinusTolerance.cxx diff --git a/src/RWStepShape/RWStepShape_RWPlusMinusTolerance.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWPlusMinusTolerance.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWPlusMinusTolerance.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWPlusMinusTolerance.pxx diff --git a/src/RWStepShape/RWStepShape_RWPointRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWPointRepresentation.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWPointRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWPointRepresentation.cxx diff --git a/src/RWStepShape/RWStepShape_RWPointRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWPointRepresentation.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWPointRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWPointRepresentation.pxx diff --git a/src/RWStepShape/RWStepShape_RWPolyLoop.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWPolyLoop.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWPolyLoop.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWPolyLoop.cxx diff --git a/src/RWStepShape/RWStepShape_RWPolyLoop.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWPolyLoop.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWPolyLoop.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWPolyLoop.pxx diff --git a/src/RWStepShape/RWStepShape_RWPrecisionQualifier.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWPrecisionQualifier.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWPrecisionQualifier.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWPrecisionQualifier.cxx diff --git a/src/RWStepShape/RWStepShape_RWPrecisionQualifier.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWPrecisionQualifier.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWPrecisionQualifier.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWPrecisionQualifier.pxx diff --git a/src/RWStepShape/RWStepShape_RWQualifiedRepresentationItem.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWQualifiedRepresentationItem.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWQualifiedRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWQualifiedRepresentationItem.cxx diff --git a/src/RWStepShape/RWStepShape_RWQualifiedRepresentationItem.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWQualifiedRepresentationItem.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWQualifiedRepresentationItem.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWQualifiedRepresentationItem.pxx diff --git a/src/RWStepShape/RWStepShape_RWRevolvedAreaSolid.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWRevolvedAreaSolid.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWRevolvedAreaSolid.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWRevolvedAreaSolid.cxx diff --git a/src/RWStepShape/RWStepShape_RWRevolvedAreaSolid.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWRevolvedAreaSolid.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWRevolvedAreaSolid.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWRevolvedAreaSolid.pxx diff --git a/src/RWStepShape/RWStepShape_RWRevolvedFaceSolid.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWRevolvedFaceSolid.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWRevolvedFaceSolid.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWRevolvedFaceSolid.cxx diff --git a/src/RWStepShape/RWStepShape_RWRevolvedFaceSolid.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWRevolvedFaceSolid.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWRevolvedFaceSolid.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWRevolvedFaceSolid.pxx diff --git a/src/RWStepShape/RWStepShape_RWRightAngularWedge.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWRightAngularWedge.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWRightAngularWedge.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWRightAngularWedge.cxx diff --git a/src/RWStepShape/RWStepShape_RWRightAngularWedge.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWRightAngularWedge.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWRightAngularWedge.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWRightAngularWedge.pxx diff --git a/src/RWStepShape/RWStepShape_RWRightCircularCone.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWRightCircularCone.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWRightCircularCone.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWRightCircularCone.cxx diff --git a/src/RWStepShape/RWStepShape_RWRightCircularCone.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWRightCircularCone.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWRightCircularCone.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWRightCircularCone.pxx diff --git a/src/RWStepShape/RWStepShape_RWRightCircularCylinder.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWRightCircularCylinder.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWRightCircularCylinder.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWRightCircularCylinder.cxx diff --git a/src/RWStepShape/RWStepShape_RWRightCircularCylinder.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWRightCircularCylinder.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWRightCircularCylinder.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWRightCircularCylinder.pxx diff --git a/src/RWStepShape/RWStepShape_RWSeamEdge.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSeamEdge.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWSeamEdge.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSeamEdge.cxx diff --git a/src/RWStepShape/RWStepShape_RWSeamEdge.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSeamEdge.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWSeamEdge.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSeamEdge.pxx diff --git a/src/RWStepShape/RWStepShape_RWShapeDefinitionRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWShapeDefinitionRepresentation.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWShapeDefinitionRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWShapeDefinitionRepresentation.cxx diff --git a/src/RWStepShape/RWStepShape_RWShapeDefinitionRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWShapeDefinitionRepresentation.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWShapeDefinitionRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWShapeDefinitionRepresentation.pxx diff --git a/src/RWStepShape/RWStepShape_RWShapeDimensionRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWShapeDimensionRepresentation.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWShapeDimensionRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWShapeDimensionRepresentation.cxx diff --git a/src/RWStepShape/RWStepShape_RWShapeDimensionRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWShapeDimensionRepresentation.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWShapeDimensionRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWShapeDimensionRepresentation.pxx diff --git a/src/RWStepShape/RWStepShape_RWShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWShapeRepresentation.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWShapeRepresentation.cxx diff --git a/src/RWStepShape/RWStepShape_RWShapeRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWShapeRepresentation.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWShapeRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWShapeRepresentation.pxx diff --git a/src/RWStepShape/RWStepShape_RWShapeRepresentationWithParameters.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWShapeRepresentationWithParameters.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWShapeRepresentationWithParameters.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWShapeRepresentationWithParameters.cxx diff --git a/src/RWStepShape/RWStepShape_RWShapeRepresentationWithParameters.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWShapeRepresentationWithParameters.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWShapeRepresentationWithParameters.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWShapeRepresentationWithParameters.pxx diff --git a/src/RWStepShape/RWStepShape_RWShellBasedSurfaceModel.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWShellBasedSurfaceModel.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWShellBasedSurfaceModel.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWShellBasedSurfaceModel.cxx diff --git a/src/RWStepShape/RWStepShape_RWShellBasedSurfaceModel.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWShellBasedSurfaceModel.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWShellBasedSurfaceModel.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWShellBasedSurfaceModel.pxx diff --git a/src/RWStepShape/RWStepShape_RWSolidModel.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSolidModel.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWSolidModel.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSolidModel.cxx diff --git a/src/RWStepShape/RWStepShape_RWSolidModel.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSolidModel.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWSolidModel.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSolidModel.pxx diff --git a/src/RWStepShape/RWStepShape_RWSolidReplica.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSolidReplica.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWSolidReplica.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSolidReplica.cxx diff --git a/src/RWStepShape/RWStepShape_RWSolidReplica.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSolidReplica.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWSolidReplica.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSolidReplica.pxx diff --git a/src/RWStepShape/RWStepShape_RWSphere.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSphere.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWSphere.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSphere.cxx diff --git a/src/RWStepShape/RWStepShape_RWSphere.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSphere.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWSphere.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSphere.pxx diff --git a/src/RWStepShape/RWStepShape_RWSubedge.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSubedge.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWSubedge.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSubedge.cxx diff --git a/src/RWStepShape/RWStepShape_RWSubedge.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSubedge.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWSubedge.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSubedge.pxx diff --git a/src/RWStepShape/RWStepShape_RWSubface.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSubface.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWSubface.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSubface.cxx diff --git a/src/RWStepShape/RWStepShape_RWSubface.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSubface.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWSubface.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSubface.pxx diff --git a/src/RWStepShape/RWStepShape_RWSweptAreaSolid.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSweptAreaSolid.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWSweptAreaSolid.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSweptAreaSolid.cxx diff --git a/src/RWStepShape/RWStepShape_RWSweptAreaSolid.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSweptAreaSolid.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWSweptAreaSolid.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSweptAreaSolid.pxx diff --git a/src/RWStepShape/RWStepShape_RWSweptFaceSolid.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSweptFaceSolid.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWSweptFaceSolid.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSweptFaceSolid.cxx diff --git a/src/RWStepShape/RWStepShape_RWSweptFaceSolid.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSweptFaceSolid.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWSweptFaceSolid.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWSweptFaceSolid.pxx diff --git a/src/RWStepShape/RWStepShape_RWToleranceValue.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWToleranceValue.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWToleranceValue.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWToleranceValue.cxx diff --git a/src/RWStepShape/RWStepShape_RWToleranceValue.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWToleranceValue.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWToleranceValue.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWToleranceValue.pxx diff --git a/src/RWStepShape/RWStepShape_RWTopologicalRepresentationItem.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWTopologicalRepresentationItem.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWTopologicalRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWTopologicalRepresentationItem.cxx diff --git a/src/RWStepShape/RWStepShape_RWTopologicalRepresentationItem.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWTopologicalRepresentationItem.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWTopologicalRepresentationItem.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWTopologicalRepresentationItem.pxx diff --git a/src/RWStepShape/RWStepShape_RWTorus.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWTorus.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWTorus.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWTorus.cxx diff --git a/src/RWStepShape/RWStepShape_RWTorus.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWTorus.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWTorus.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWTorus.pxx diff --git a/src/RWStepShape/RWStepShape_RWTransitionalShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWTransitionalShapeRepresentation.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWTransitionalShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWTransitionalShapeRepresentation.cxx diff --git a/src/RWStepShape/RWStepShape_RWTransitionalShapeRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWTransitionalShapeRepresentation.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWTransitionalShapeRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWTransitionalShapeRepresentation.pxx diff --git a/src/RWStepShape/RWStepShape_RWTypeQualifier.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWTypeQualifier.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWTypeQualifier.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWTypeQualifier.cxx diff --git a/src/RWStepShape/RWStepShape_RWTypeQualifier.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWTypeQualifier.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWTypeQualifier.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWTypeQualifier.pxx diff --git a/src/RWStepShape/RWStepShape_RWValueFormatTypeQualifier.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWValueFormatTypeQualifier.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWValueFormatTypeQualifier.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWValueFormatTypeQualifier.cxx diff --git a/src/RWStepShape/RWStepShape_RWValueFormatTypeQualifier.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWValueFormatTypeQualifier.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWValueFormatTypeQualifier.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWValueFormatTypeQualifier.pxx diff --git a/src/RWStepShape/RWStepShape_RWVertex.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWVertex.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWVertex.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWVertex.cxx diff --git a/src/RWStepShape/RWStepShape_RWVertex.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWVertex.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWVertex.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWVertex.pxx diff --git a/src/RWStepShape/RWStepShape_RWVertexLoop.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWVertexLoop.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWVertexLoop.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWVertexLoop.cxx diff --git a/src/RWStepShape/RWStepShape_RWVertexLoop.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWVertexLoop.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWVertexLoop.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWVertexLoop.pxx diff --git a/src/RWStepShape/RWStepShape_RWVertexPoint.cxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWVertexPoint.cxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWVertexPoint.cxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWVertexPoint.cxx diff --git a/src/RWStepShape/RWStepShape_RWVertexPoint.pxx b/src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWVertexPoint.pxx similarity index 100% rename from src/RWStepShape/RWStepShape_RWVertexPoint.pxx rename to src/DataExchange/TKDESTEP/RWStepShape/RWStepShape_RWVertexPoint.pxx diff --git a/src/DataExchange/TKDESTEP/RWStepVisual/FILES.cmake b/src/DataExchange/TKDESTEP/RWStepVisual/FILES.cmake new file mode 100644 index 0000000000..9b19354f12 --- /dev/null +++ b/src/DataExchange/TKDESTEP/RWStepVisual/FILES.cmake @@ -0,0 +1,199 @@ +# Source files for RWStepVisual package +set(OCCT_RWStepVisual_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_RWStepVisual_FILES + RWStepVisual_RWAnnotationCurveOccurrence.cxx + RWStepVisual_RWAnnotationCurveOccurrence.pxx + RWStepVisual_RWAnnotationCurveOccurrenceAndGeomReprItem.cxx + RWStepVisual_RWAnnotationCurveOccurrenceAndGeomReprItem.pxx + RWStepVisual_RWAnnotationFillArea.cxx + RWStepVisual_RWAnnotationFillArea.pxx + RWStepVisual_RWAnnotationFillAreaOccurrence.cxx + RWStepVisual_RWAnnotationFillAreaOccurrence.pxx + RWStepVisual_RWAnnotationOccurrence.cxx + RWStepVisual_RWAnnotationOccurrence.pxx + RWStepVisual_RWAnnotationPlane.cxx + RWStepVisual_RWAnnotationPlane.pxx + RWStepVisual_RWAreaInSet.cxx + RWStepVisual_RWAreaInSet.pxx + RWStepVisual_RWBackgroundColour.cxx + RWStepVisual_RWBackgroundColour.pxx + RWStepVisual_RWCameraImage.cxx + RWStepVisual_RWCameraImage.pxx + RWStepVisual_RWCameraModel.cxx + RWStepVisual_RWCameraModel.pxx + RWStepVisual_RWCameraModelD2.cxx + RWStepVisual_RWCameraModelD2.pxx + RWStepVisual_RWCameraModelD3.cxx + RWStepVisual_RWCameraModelD3.pxx + RWStepVisual_RWCameraModelD3MultiClipping.cxx + RWStepVisual_RWCameraModelD3MultiClipping.pxx + RWStepVisual_RWCameraModelD3MultiClippingIntersection.cxx + RWStepVisual_RWCameraModelD3MultiClippingIntersection.pxx + RWStepVisual_RWCameraModelD3MultiClippingUnion.cxx + RWStepVisual_RWCameraModelD3MultiClippingUnion.pxx + RWStepVisual_RWCameraUsage.cxx + RWStepVisual_RWCameraUsage.pxx + RWStepVisual_RWCharacterizedObjAndRepresentationAndDraughtingModel.cxx + RWStepVisual_RWCharacterizedObjAndRepresentationAndDraughtingModel.pxx + RWStepVisual_RWColour.cxx + RWStepVisual_RWColour.pxx + RWStepVisual_RWColourRgb.cxx + RWStepVisual_RWColourRgb.pxx + RWStepVisual_RWColourSpecification.cxx + RWStepVisual_RWColourSpecification.pxx + RWStepVisual_RWCompositeText.cxx + RWStepVisual_RWCompositeText.pxx + RWStepVisual_RWCompositeTextWithExtent.cxx + RWStepVisual_RWCompositeTextWithExtent.pxx + RWStepVisual_RWContextDependentInvisibility.cxx + RWStepVisual_RWContextDependentInvisibility.pxx + RWStepVisual_RWContextDependentOverRidingStyledItem.cxx + RWStepVisual_RWContextDependentOverRidingStyledItem.pxx + RWStepVisual_RWCurveStyle.cxx + RWStepVisual_RWCurveStyle.pxx + RWStepVisual_RWCurveStyleFont.cxx + RWStepVisual_RWCurveStyleFont.pxx + RWStepVisual_RWCurveStyleFontPattern.cxx + RWStepVisual_RWCurveStyleFontPattern.pxx + RWStepVisual_RWDraughtingCallout.cxx + RWStepVisual_RWDraughtingCallout.pxx + RWStepVisual_RWDraughtingModel.cxx + RWStepVisual_RWDraughtingModel.pxx + RWStepVisual_RWDraughtingPreDefinedColour.cxx + RWStepVisual_RWDraughtingPreDefinedColour.pxx + RWStepVisual_RWDraughtingPreDefinedCurveFont.cxx + RWStepVisual_RWDraughtingPreDefinedCurveFont.pxx + RWStepVisual_RWExternallyDefinedCurveFont.cxx + RWStepVisual_RWExternallyDefinedCurveFont.pxx + RWStepVisual_RWFillAreaStyle.cxx + RWStepVisual_RWFillAreaStyle.pxx + RWStepVisual_RWFillAreaStyleColour.cxx + RWStepVisual_RWFillAreaStyleColour.pxx + RWStepVisual_RWInvisibility.cxx + RWStepVisual_RWInvisibility.pxx + RWStepVisual_RWMechanicalDesignGeometricPresentationArea.cxx + RWStepVisual_RWMechanicalDesignGeometricPresentationArea.pxx + RWStepVisual_RWMechanicalDesignGeometricPresentationRepresentation.cxx + RWStepVisual_RWMechanicalDesignGeometricPresentationRepresentation.pxx + RWStepVisual_RWOverRidingStyledItem.cxx + RWStepVisual_RWOverRidingStyledItem.pxx + RWStepVisual_RWPlanarBox.cxx + RWStepVisual_RWPlanarBox.pxx + RWStepVisual_RWPlanarExtent.cxx + RWStepVisual_RWPlanarExtent.pxx + RWStepVisual_RWPointStyle.cxx + RWStepVisual_RWPointStyle.pxx + RWStepVisual_RWPreDefinedColour.cxx + RWStepVisual_RWPreDefinedColour.pxx + RWStepVisual_RWPreDefinedCurveFont.cxx + RWStepVisual_RWPreDefinedCurveFont.pxx + RWStepVisual_RWPreDefinedItem.cxx + RWStepVisual_RWPreDefinedItem.pxx + RWStepVisual_RWPresentationArea.cxx + RWStepVisual_RWPresentationArea.pxx + RWStepVisual_RWPresentationLayerAssignment.cxx + RWStepVisual_RWPresentationLayerAssignment.pxx + RWStepVisual_RWPresentationLayerUsage.cxx + RWStepVisual_RWPresentationLayerUsage.pxx + RWStepVisual_RWPresentationRepresentation.cxx + RWStepVisual_RWPresentationRepresentation.pxx + RWStepVisual_RWPresentationSet.cxx + RWStepVisual_RWPresentationSet.pxx + RWStepVisual_RWPresentationSize.cxx + RWStepVisual_RWPresentationSize.pxx + RWStepVisual_RWPresentationStyleAssignment.cxx + RWStepVisual_RWPresentationStyleAssignment.pxx + RWStepVisual_RWPresentationStyleByContext.cxx + RWStepVisual_RWPresentationStyleByContext.pxx + RWStepVisual_RWPresentationView.cxx + RWStepVisual_RWPresentationView.pxx + RWStepVisual_RWPresentedItemRepresentation.cxx + RWStepVisual_RWPresentedItemRepresentation.pxx + RWStepVisual_RWRepositionedTessellatedGeometricSet.cxx + RWStepVisual_RWRepositionedTessellatedGeometricSet.pxx + RWStepVisual_RWRepositionedTessellatedItem.cxx + RWStepVisual_RWRepositionedTessellatedItem.pxx + RWStepVisual_RWStyledItem.cxx + RWStepVisual_RWStyledItem.pxx + RWStepVisual_RWSurfaceSideStyle.cxx + RWStepVisual_RWSurfaceSideStyle.pxx + RWStepVisual_RWSurfaceStyleBoundary.cxx + RWStepVisual_RWSurfaceStyleBoundary.pxx + RWStepVisual_RWSurfaceStyleControlGrid.cxx + RWStepVisual_RWSurfaceStyleControlGrid.pxx + RWStepVisual_RWSurfaceStyleFillArea.cxx + RWStepVisual_RWSurfaceStyleFillArea.pxx + RWStepVisual_RWSurfaceStyleParameterLine.cxx + RWStepVisual_RWSurfaceStyleParameterLine.pxx + RWStepVisual_RWSurfaceStyleReflectanceAmbient.cxx + RWStepVisual_RWSurfaceStyleReflectanceAmbient.pxx + RWStepVisual_RWSurfaceStyleRendering.cxx + RWStepVisual_RWSurfaceStyleRendering.pxx + RWStepVisual_RWSurfaceStyleRenderingWithProperties.cxx + RWStepVisual_RWSurfaceStyleRenderingWithProperties.pxx + RWStepVisual_RWSurfaceStyleSegmentationCurve.cxx + RWStepVisual_RWSurfaceStyleSegmentationCurve.pxx + RWStepVisual_RWSurfaceStyleSilhouette.cxx + RWStepVisual_RWSurfaceStyleSilhouette.pxx + RWStepVisual_RWSurfaceStyleTransparent.cxx + RWStepVisual_RWSurfaceStyleTransparent.pxx + RWStepVisual_RWSurfaceStyleUsage.cxx + RWStepVisual_RWSurfaceStyleUsage.pxx + RWStepVisual_RWTemplate.cxx + RWStepVisual_RWTemplate.pxx + RWStepVisual_RWTemplateInstance.cxx + RWStepVisual_RWTemplateInstance.pxx + RWStepVisual_RWTextLiteral.cxx + RWStepVisual_RWTextLiteral.pxx + RWStepVisual_RWTextStyle.cxx + RWStepVisual_RWTextStyle.pxx + RWStepVisual_RWTextStyleForDefinedFont.cxx + RWStepVisual_RWTextStyleForDefinedFont.pxx + RWStepVisual_RWTextStyleWithBoxCharacteristics.cxx + RWStepVisual_RWTextStyleWithBoxCharacteristics.pxx + RWStepVisual_RWViewVolume.cxx + RWStepVisual_RWViewVolume.pxx + RWStepVisual_RWTessellatedItem.pxx + RWStepVisual_RWTessellatedItem.cxx + RWStepVisual_RWTessellatedAnnotationOccurrence.pxx + RWStepVisual_RWTessellatedAnnotationOccurrence.cxx + RWStepVisual_RWTessellatedGeometricSet.pxx + RWStepVisual_RWTessellatedGeometricSet.cxx + RWStepVisual_RWCoordinatesList.pxx + RWStepVisual_RWCoordinatesList.cxx + RWStepVisual_RWTessellatedCurveSet.pxx + RWStepVisual_RWTessellatedCurveSet.cxx + RWStepVisual_RWComplexTriangulatedFace.cxx + RWStepVisual_RWComplexTriangulatedFace.pxx + RWStepVisual_RWComplexTriangulatedSurfaceSet.cxx + RWStepVisual_RWComplexTriangulatedSurfaceSet.pxx + RWStepVisual_RWCubicBezierTessellatedEdge.cxx + RWStepVisual_RWCubicBezierTessellatedEdge.pxx + RWStepVisual_RWCubicBezierTriangulatedFace.cxx + RWStepVisual_RWCubicBezierTriangulatedFace.pxx + RWStepVisual_RWTessellatedConnectingEdge.cxx + RWStepVisual_RWTessellatedConnectingEdge.pxx + RWStepVisual_RWTessellatedEdge.cxx + RWStepVisual_RWTessellatedEdge.pxx + RWStepVisual_RWTessellatedPointSet.cxx + RWStepVisual_RWTessellatedPointSet.pxx + RWStepVisual_RWTessellatedShapeRepresentation.cxx + RWStepVisual_RWTessellatedShapeRepresentation.pxx + RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters.cxx + RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters.pxx + RWStepVisual_RWTessellatedShell.cxx + RWStepVisual_RWTessellatedShell.pxx + RWStepVisual_RWTessellatedSolid.cxx + RWStepVisual_RWTessellatedSolid.pxx + RWStepVisual_RWTessellatedStructuredItem.cxx + RWStepVisual_RWTessellatedStructuredItem.pxx + RWStepVisual_RWTessellatedVertex.cxx + RWStepVisual_RWTessellatedVertex.pxx + RWStepVisual_RWTessellatedWire.cxx + RWStepVisual_RWTessellatedWire.pxx + RWStepVisual_RWTriangulatedFace.cxx + RWStepVisual_RWTriangulatedFace.pxx + RWStepVisual_RWTriangulatedSurfaceSet.cxx + RWStepVisual_RWTriangulatedSurfaceSet.pxx +) diff --git a/src/RWStepVisual/RWStepVisual_RWAnnotationCurveOccurrence.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAnnotationCurveOccurrence.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWAnnotationCurveOccurrence.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAnnotationCurveOccurrence.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWAnnotationCurveOccurrence.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAnnotationCurveOccurrence.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWAnnotationCurveOccurrence.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAnnotationCurveOccurrence.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWAnnotationCurveOccurrenceAndGeomReprItem.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAnnotationCurveOccurrenceAndGeomReprItem.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWAnnotationCurveOccurrenceAndGeomReprItem.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAnnotationCurveOccurrenceAndGeomReprItem.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWAnnotationCurveOccurrenceAndGeomReprItem.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAnnotationCurveOccurrenceAndGeomReprItem.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWAnnotationCurveOccurrenceAndGeomReprItem.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAnnotationCurveOccurrenceAndGeomReprItem.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWAnnotationFillArea.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAnnotationFillArea.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWAnnotationFillArea.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAnnotationFillArea.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWAnnotationFillArea.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAnnotationFillArea.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWAnnotationFillArea.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAnnotationFillArea.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWAnnotationFillAreaOccurrence.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAnnotationFillAreaOccurrence.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWAnnotationFillAreaOccurrence.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAnnotationFillAreaOccurrence.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWAnnotationFillAreaOccurrence.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAnnotationFillAreaOccurrence.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWAnnotationFillAreaOccurrence.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAnnotationFillAreaOccurrence.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWAnnotationOccurrence.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAnnotationOccurrence.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWAnnotationOccurrence.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAnnotationOccurrence.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWAnnotationOccurrence.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAnnotationOccurrence.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWAnnotationOccurrence.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAnnotationOccurrence.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWAnnotationPlane.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAnnotationPlane.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWAnnotationPlane.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAnnotationPlane.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWAnnotationPlane.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAnnotationPlane.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWAnnotationPlane.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAnnotationPlane.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWAreaInSet.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAreaInSet.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWAreaInSet.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAreaInSet.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWAreaInSet.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAreaInSet.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWAreaInSet.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWAreaInSet.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWBackgroundColour.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWBackgroundColour.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWBackgroundColour.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWBackgroundColour.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWBackgroundColour.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWBackgroundColour.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWBackgroundColour.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWBackgroundColour.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWCameraImage.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraImage.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCameraImage.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraImage.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWCameraImage.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraImage.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCameraImage.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraImage.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWCameraModel.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraModel.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCameraModel.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraModel.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWCameraModel.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraModel.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCameraModel.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraModel.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWCameraModelD2.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraModelD2.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCameraModelD2.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraModelD2.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWCameraModelD2.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraModelD2.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCameraModelD2.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraModelD2.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWCameraModelD3.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraModelD3.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCameraModelD3.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraModelD3.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWCameraModelD3.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraModelD3.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCameraModelD3.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraModelD3.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWCameraModelD3MultiClipping.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraModelD3MultiClipping.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCameraModelD3MultiClipping.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraModelD3MultiClipping.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWCameraModelD3MultiClipping.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraModelD3MultiClipping.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCameraModelD3MultiClipping.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraModelD3MultiClipping.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWCameraModelD3MultiClippingIntersection.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraModelD3MultiClippingIntersection.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCameraModelD3MultiClippingIntersection.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraModelD3MultiClippingIntersection.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWCameraModelD3MultiClippingIntersection.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraModelD3MultiClippingIntersection.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCameraModelD3MultiClippingIntersection.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraModelD3MultiClippingIntersection.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWCameraModelD3MultiClippingUnion.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraModelD3MultiClippingUnion.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCameraModelD3MultiClippingUnion.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraModelD3MultiClippingUnion.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWCameraModelD3MultiClippingUnion.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraModelD3MultiClippingUnion.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCameraModelD3MultiClippingUnion.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraModelD3MultiClippingUnion.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWCameraUsage.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraUsage.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCameraUsage.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraUsage.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWCameraUsage.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraUsage.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCameraUsage.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCameraUsage.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWCharacterizedObjAndRepresentationAndDraughtingModel.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCharacterizedObjAndRepresentationAndDraughtingModel.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCharacterizedObjAndRepresentationAndDraughtingModel.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCharacterizedObjAndRepresentationAndDraughtingModel.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWCharacterizedObjAndRepresentationAndDraughtingModel.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCharacterizedObjAndRepresentationAndDraughtingModel.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCharacterizedObjAndRepresentationAndDraughtingModel.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCharacterizedObjAndRepresentationAndDraughtingModel.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWColour.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWColour.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWColour.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWColour.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWColour.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWColour.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWColour.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWColour.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWColourRgb.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWColourRgb.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWColourRgb.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWColourRgb.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWColourRgb.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWColourRgb.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWColourRgb.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWColourRgb.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWColourSpecification.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWColourSpecification.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWColourSpecification.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWColourSpecification.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWColourSpecification.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWColourSpecification.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWColourSpecification.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWColourSpecification.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWComplexTriangulatedFace.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWComplexTriangulatedFace.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWComplexTriangulatedFace.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWComplexTriangulatedFace.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWComplexTriangulatedFace.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWComplexTriangulatedFace.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWComplexTriangulatedFace.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWComplexTriangulatedFace.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWComplexTriangulatedSurfaceSet.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWComplexTriangulatedSurfaceSet.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWComplexTriangulatedSurfaceSet.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWComplexTriangulatedSurfaceSet.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWComplexTriangulatedSurfaceSet.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWComplexTriangulatedSurfaceSet.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWComplexTriangulatedSurfaceSet.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWComplexTriangulatedSurfaceSet.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWCompositeText.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCompositeText.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCompositeText.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCompositeText.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWCompositeText.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCompositeText.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCompositeText.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCompositeText.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWCompositeTextWithExtent.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCompositeTextWithExtent.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCompositeTextWithExtent.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCompositeTextWithExtent.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWCompositeTextWithExtent.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCompositeTextWithExtent.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCompositeTextWithExtent.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCompositeTextWithExtent.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWContextDependentInvisibility.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWContextDependentInvisibility.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWContextDependentInvisibility.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWContextDependentInvisibility.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWContextDependentInvisibility.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWContextDependentInvisibility.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWContextDependentInvisibility.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWContextDependentInvisibility.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWContextDependentOverRidingStyledItem.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWContextDependentOverRidingStyledItem.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWContextDependentOverRidingStyledItem.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWContextDependentOverRidingStyledItem.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWContextDependentOverRidingStyledItem.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWContextDependentOverRidingStyledItem.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWContextDependentOverRidingStyledItem.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWContextDependentOverRidingStyledItem.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWCoordinatesList.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCoordinatesList.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCoordinatesList.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCoordinatesList.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWCoordinatesList.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCoordinatesList.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCoordinatesList.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCoordinatesList.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWCubicBezierTessellatedEdge.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCubicBezierTessellatedEdge.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCubicBezierTessellatedEdge.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCubicBezierTessellatedEdge.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWCubicBezierTessellatedEdge.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCubicBezierTessellatedEdge.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCubicBezierTessellatedEdge.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCubicBezierTessellatedEdge.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWCubicBezierTriangulatedFace.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCubicBezierTriangulatedFace.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCubicBezierTriangulatedFace.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCubicBezierTriangulatedFace.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWCubicBezierTriangulatedFace.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCubicBezierTriangulatedFace.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCubicBezierTriangulatedFace.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCubicBezierTriangulatedFace.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWCurveStyle.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCurveStyle.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCurveStyle.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCurveStyle.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWCurveStyle.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCurveStyle.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCurveStyle.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCurveStyle.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWCurveStyleFont.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCurveStyleFont.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCurveStyleFont.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCurveStyleFont.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWCurveStyleFont.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCurveStyleFont.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCurveStyleFont.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCurveStyleFont.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWCurveStyleFontPattern.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCurveStyleFontPattern.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCurveStyleFontPattern.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCurveStyleFontPattern.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWCurveStyleFontPattern.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCurveStyleFontPattern.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWCurveStyleFontPattern.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWCurveStyleFontPattern.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWDraughtingCallout.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWDraughtingCallout.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWDraughtingCallout.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWDraughtingCallout.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWDraughtingCallout.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWDraughtingCallout.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWDraughtingCallout.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWDraughtingCallout.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWDraughtingModel.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWDraughtingModel.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWDraughtingModel.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWDraughtingModel.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWDraughtingModel.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWDraughtingModel.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWDraughtingModel.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWDraughtingModel.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWDraughtingPreDefinedColour.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWDraughtingPreDefinedColour.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWDraughtingPreDefinedColour.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWDraughtingPreDefinedColour.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWDraughtingPreDefinedColour.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWDraughtingPreDefinedColour.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWDraughtingPreDefinedColour.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWDraughtingPreDefinedColour.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWDraughtingPreDefinedCurveFont.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWDraughtingPreDefinedCurveFont.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWDraughtingPreDefinedCurveFont.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWDraughtingPreDefinedCurveFont.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWDraughtingPreDefinedCurveFont.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWDraughtingPreDefinedCurveFont.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWDraughtingPreDefinedCurveFont.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWDraughtingPreDefinedCurveFont.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWExternallyDefinedCurveFont.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWExternallyDefinedCurveFont.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWExternallyDefinedCurveFont.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWExternallyDefinedCurveFont.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWExternallyDefinedCurveFont.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWExternallyDefinedCurveFont.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWExternallyDefinedCurveFont.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWExternallyDefinedCurveFont.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWFillAreaStyle.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWFillAreaStyle.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWFillAreaStyle.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWFillAreaStyle.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWFillAreaStyle.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWFillAreaStyle.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWFillAreaStyle.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWFillAreaStyle.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWFillAreaStyleColour.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWFillAreaStyleColour.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWFillAreaStyleColour.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWFillAreaStyleColour.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWFillAreaStyleColour.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWFillAreaStyleColour.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWFillAreaStyleColour.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWFillAreaStyleColour.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWInvisibility.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWInvisibility.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWInvisibility.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWInvisibility.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWInvisibility.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWInvisibility.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWInvisibility.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWInvisibility.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWMechanicalDesignGeometricPresentationArea.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWMechanicalDesignGeometricPresentationArea.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWMechanicalDesignGeometricPresentationArea.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWMechanicalDesignGeometricPresentationArea.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWMechanicalDesignGeometricPresentationArea.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWMechanicalDesignGeometricPresentationArea.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWMechanicalDesignGeometricPresentationArea.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWMechanicalDesignGeometricPresentationArea.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWMechanicalDesignGeometricPresentationRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWMechanicalDesignGeometricPresentationRepresentation.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWMechanicalDesignGeometricPresentationRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWMechanicalDesignGeometricPresentationRepresentation.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWMechanicalDesignGeometricPresentationRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWMechanicalDesignGeometricPresentationRepresentation.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWMechanicalDesignGeometricPresentationRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWMechanicalDesignGeometricPresentationRepresentation.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWOverRidingStyledItem.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWOverRidingStyledItem.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWOverRidingStyledItem.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWOverRidingStyledItem.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWOverRidingStyledItem.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWOverRidingStyledItem.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWOverRidingStyledItem.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWOverRidingStyledItem.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWPlanarBox.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPlanarBox.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPlanarBox.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPlanarBox.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWPlanarBox.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPlanarBox.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPlanarBox.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPlanarBox.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWPlanarExtent.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPlanarExtent.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPlanarExtent.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPlanarExtent.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWPlanarExtent.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPlanarExtent.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPlanarExtent.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPlanarExtent.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWPointStyle.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPointStyle.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPointStyle.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPointStyle.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWPointStyle.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPointStyle.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPointStyle.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPointStyle.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWPreDefinedColour.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPreDefinedColour.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPreDefinedColour.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPreDefinedColour.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWPreDefinedColour.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPreDefinedColour.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPreDefinedColour.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPreDefinedColour.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWPreDefinedCurveFont.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPreDefinedCurveFont.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPreDefinedCurveFont.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPreDefinedCurveFont.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWPreDefinedCurveFont.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPreDefinedCurveFont.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPreDefinedCurveFont.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPreDefinedCurveFont.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWPreDefinedItem.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPreDefinedItem.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPreDefinedItem.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPreDefinedItem.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWPreDefinedItem.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPreDefinedItem.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPreDefinedItem.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPreDefinedItem.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWPresentationArea.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationArea.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPresentationArea.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationArea.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWPresentationArea.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationArea.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPresentationArea.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationArea.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWPresentationLayerAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationLayerAssignment.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPresentationLayerAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationLayerAssignment.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWPresentationLayerAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationLayerAssignment.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPresentationLayerAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationLayerAssignment.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWPresentationLayerUsage.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationLayerUsage.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPresentationLayerUsage.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationLayerUsage.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWPresentationLayerUsage.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationLayerUsage.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPresentationLayerUsage.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationLayerUsage.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWPresentationRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationRepresentation.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPresentationRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationRepresentation.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWPresentationRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationRepresentation.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPresentationRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationRepresentation.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWPresentationSet.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationSet.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPresentationSet.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationSet.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWPresentationSet.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationSet.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPresentationSet.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationSet.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWPresentationSize.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationSize.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPresentationSize.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationSize.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWPresentationSize.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationSize.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPresentationSize.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationSize.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWPresentationStyleAssignment.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationStyleAssignment.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPresentationStyleAssignment.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationStyleAssignment.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWPresentationStyleAssignment.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationStyleAssignment.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPresentationStyleAssignment.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationStyleAssignment.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWPresentationStyleByContext.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationStyleByContext.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPresentationStyleByContext.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationStyleByContext.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWPresentationStyleByContext.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationStyleByContext.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPresentationStyleByContext.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationStyleByContext.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWPresentationView.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationView.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPresentationView.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationView.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWPresentationView.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationView.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPresentationView.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentationView.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWPresentedItemRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentedItemRepresentation.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPresentedItemRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentedItemRepresentation.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWPresentedItemRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentedItemRepresentation.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWPresentedItemRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWPresentedItemRepresentation.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWRepositionedTessellatedGeometricSet.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWRepositionedTessellatedGeometricSet.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWRepositionedTessellatedGeometricSet.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWRepositionedTessellatedGeometricSet.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWRepositionedTessellatedGeometricSet.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWRepositionedTessellatedGeometricSet.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWRepositionedTessellatedGeometricSet.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWRepositionedTessellatedGeometricSet.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWRepositionedTessellatedItem.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWRepositionedTessellatedItem.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWRepositionedTessellatedItem.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWRepositionedTessellatedItem.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWRepositionedTessellatedItem.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWRepositionedTessellatedItem.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWRepositionedTessellatedItem.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWRepositionedTessellatedItem.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWStyledItem.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWStyledItem.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWStyledItem.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWStyledItem.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWStyledItem.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWStyledItem.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWStyledItem.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWStyledItem.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWSurfaceSideStyle.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceSideStyle.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWSurfaceSideStyle.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceSideStyle.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWSurfaceSideStyle.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceSideStyle.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWSurfaceSideStyle.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceSideStyle.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWSurfaceStyleBoundary.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleBoundary.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWSurfaceStyleBoundary.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleBoundary.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWSurfaceStyleBoundary.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleBoundary.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWSurfaceStyleBoundary.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleBoundary.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWSurfaceStyleControlGrid.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleControlGrid.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWSurfaceStyleControlGrid.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleControlGrid.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWSurfaceStyleControlGrid.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleControlGrid.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWSurfaceStyleControlGrid.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleControlGrid.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWSurfaceStyleFillArea.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleFillArea.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWSurfaceStyleFillArea.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleFillArea.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWSurfaceStyleFillArea.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleFillArea.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWSurfaceStyleFillArea.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleFillArea.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWSurfaceStyleParameterLine.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleParameterLine.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWSurfaceStyleParameterLine.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleParameterLine.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWSurfaceStyleParameterLine.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleParameterLine.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWSurfaceStyleParameterLine.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleParameterLine.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWSurfaceStyleReflectanceAmbient.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleReflectanceAmbient.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWSurfaceStyleReflectanceAmbient.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleReflectanceAmbient.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWSurfaceStyleReflectanceAmbient.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleReflectanceAmbient.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWSurfaceStyleReflectanceAmbient.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleReflectanceAmbient.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWSurfaceStyleRendering.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleRendering.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWSurfaceStyleRendering.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleRendering.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWSurfaceStyleRendering.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleRendering.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWSurfaceStyleRendering.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleRendering.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWSurfaceStyleRenderingWithProperties.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleRenderingWithProperties.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWSurfaceStyleRenderingWithProperties.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleRenderingWithProperties.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWSurfaceStyleRenderingWithProperties.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleRenderingWithProperties.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWSurfaceStyleRenderingWithProperties.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleRenderingWithProperties.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWSurfaceStyleSegmentationCurve.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleSegmentationCurve.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWSurfaceStyleSegmentationCurve.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleSegmentationCurve.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWSurfaceStyleSegmentationCurve.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleSegmentationCurve.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWSurfaceStyleSegmentationCurve.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleSegmentationCurve.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWSurfaceStyleSilhouette.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleSilhouette.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWSurfaceStyleSilhouette.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleSilhouette.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWSurfaceStyleSilhouette.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleSilhouette.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWSurfaceStyleSilhouette.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleSilhouette.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWSurfaceStyleTransparent.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleTransparent.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWSurfaceStyleTransparent.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleTransparent.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWSurfaceStyleTransparent.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleTransparent.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWSurfaceStyleTransparent.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleTransparent.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWSurfaceStyleUsage.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleUsage.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWSurfaceStyleUsage.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleUsage.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWSurfaceStyleUsage.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleUsage.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWSurfaceStyleUsage.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWSurfaceStyleUsage.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWTemplate.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTemplate.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTemplate.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTemplate.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWTemplate.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTemplate.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTemplate.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTemplate.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWTemplateInstance.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTemplateInstance.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTemplateInstance.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTemplateInstance.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWTemplateInstance.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTemplateInstance.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTemplateInstance.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTemplateInstance.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedAnnotationOccurrence.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedAnnotationOccurrence.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedAnnotationOccurrence.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedAnnotationOccurrence.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedAnnotationOccurrence.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedAnnotationOccurrence.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedAnnotationOccurrence.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedAnnotationOccurrence.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedConnectingEdge.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedConnectingEdge.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedConnectingEdge.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedConnectingEdge.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedConnectingEdge.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedConnectingEdge.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedConnectingEdge.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedConnectingEdge.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedCurveSet.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedCurveSet.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedCurveSet.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedCurveSet.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedCurveSet.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedCurveSet.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedCurveSet.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedCurveSet.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedEdge.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedEdge.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedEdge.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedEdge.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedEdge.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedEdge.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedEdge.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedEdge.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedGeometricSet.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedGeometricSet.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedGeometricSet.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedGeometricSet.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedGeometricSet.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedGeometricSet.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedGeometricSet.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedGeometricSet.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedItem.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedItem.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedItem.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedItem.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedItem.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedItem.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedItem.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedItem.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedPointSet.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedPointSet.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedPointSet.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedPointSet.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedPointSet.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedPointSet.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedPointSet.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedPointSet.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentation.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentation.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentation.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentation.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentation.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentation.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedShell.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedShell.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedShell.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedShell.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedShell.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedShell.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedShell.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedShell.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedSolid.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedSolid.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedSolid.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedSolid.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedSolid.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedSolid.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedSolid.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedSolid.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedStructuredItem.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedStructuredItem.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedStructuredItem.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedStructuredItem.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedStructuredItem.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedStructuredItem.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedStructuredItem.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedStructuredItem.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedVertex.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedVertex.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedVertex.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedVertex.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedVertex.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedVertex.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedVertex.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedVertex.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedWire.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedWire.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedWire.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedWire.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWTessellatedWire.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedWire.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTessellatedWire.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTessellatedWire.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWTextLiteral.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTextLiteral.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTextLiteral.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTextLiteral.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWTextLiteral.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTextLiteral.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTextLiteral.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTextLiteral.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWTextStyle.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTextStyle.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTextStyle.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTextStyle.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWTextStyle.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTextStyle.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTextStyle.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTextStyle.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWTextStyleForDefinedFont.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTextStyleForDefinedFont.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTextStyleForDefinedFont.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTextStyleForDefinedFont.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWTextStyleForDefinedFont.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTextStyleForDefinedFont.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTextStyleForDefinedFont.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTextStyleForDefinedFont.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWTextStyleWithBoxCharacteristics.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTextStyleWithBoxCharacteristics.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTextStyleWithBoxCharacteristics.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTextStyleWithBoxCharacteristics.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWTextStyleWithBoxCharacteristics.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTextStyleWithBoxCharacteristics.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTextStyleWithBoxCharacteristics.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTextStyleWithBoxCharacteristics.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWTriangulatedFace.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTriangulatedFace.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTriangulatedFace.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTriangulatedFace.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWTriangulatedFace.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTriangulatedFace.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTriangulatedFace.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTriangulatedFace.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWTriangulatedSurfaceSet.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTriangulatedSurfaceSet.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTriangulatedSurfaceSet.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTriangulatedSurfaceSet.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWTriangulatedSurfaceSet.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTriangulatedSurfaceSet.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWTriangulatedSurfaceSet.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWTriangulatedSurfaceSet.pxx diff --git a/src/RWStepVisual/RWStepVisual_RWViewVolume.cxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWViewVolume.cxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWViewVolume.cxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWViewVolume.cxx diff --git a/src/RWStepVisual/RWStepVisual_RWViewVolume.pxx b/src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWViewVolume.pxx similarity index 100% rename from src/RWStepVisual/RWStepVisual_RWViewVolume.pxx rename to src/DataExchange/TKDESTEP/RWStepVisual/RWStepVisual_RWViewVolume.pxx diff --git a/src/DataExchange/TKDESTEP/STEPCAFControl/FILES.cmake b/src/DataExchange/TKDESTEP/STEPCAFControl/FILES.cmake new file mode 100644 index 0000000000..4a0b3fda16 --- /dev/null +++ b/src/DataExchange/TKDESTEP/STEPCAFControl/FILES.cmake @@ -0,0 +1,32 @@ +# Source files for STEPCAFControl package +set(OCCT_STEPCAFControl_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_STEPCAFControl_FILES + STEPCAFControl_ActorWrite.cxx + STEPCAFControl_ActorWrite.hxx + STEPCAFControl_ConfigurationNode.hxx + STEPCAFControl_Controller.cxx + STEPCAFControl_Controller.hxx + STEPCAFControl_DataMapIteratorOfDataMapOfLabelExternFile.hxx + STEPCAFControl_DataMapIteratorOfDataMapOfLabelShape.hxx + STEPCAFControl_DataMapIteratorOfDataMapOfPDExternFile.hxx + STEPCAFControl_DataMapIteratorOfDataMapOfSDRExternFile.hxx + STEPCAFControl_DataMapIteratorOfDataMapOfShapePD.hxx + STEPCAFControl_DataMapIteratorOfDataMapOfShapeSDR.hxx + STEPCAFControl_DataMapOfLabelExternFile.hxx + STEPCAFControl_DataMapOfLabelShape.hxx + STEPCAFControl_DataMapOfPDExternFile.hxx + STEPCAFControl_DataMapOfSDRExternFile.hxx + STEPCAFControl_DataMapOfShapePD.hxx + STEPCAFControl_DataMapOfShapeSDR.hxx + STEPCAFControl_ExternFile.cxx + STEPCAFControl_ExternFile.hxx + STEPCAFControl_ExternFile.lxx + STEPCAFControl_GDTProperty.hxx + STEPCAFControl_GDTProperty.cxx + STEPCAFControl_Provider.hxx + STEPCAFControl_Reader.cxx + STEPCAFControl_Reader.hxx + STEPCAFControl_Writer.cxx + STEPCAFControl_Writer.hxx +) diff --git a/src/STEPCAFControl/STEPCAFControl_ActorWrite.cxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_ActorWrite.cxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_ActorWrite.cxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_ActorWrite.cxx diff --git a/src/STEPCAFControl/STEPCAFControl_ActorWrite.hxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_ActorWrite.hxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_ActorWrite.hxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_ActorWrite.hxx diff --git a/src/STEPCAFControl/STEPCAFControl_ConfigurationNode.hxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_ConfigurationNode.hxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_ConfigurationNode.hxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_ConfigurationNode.hxx diff --git a/src/STEPCAFControl/STEPCAFControl_Controller.cxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_Controller.cxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_Controller.cxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_Controller.cxx diff --git a/src/STEPCAFControl/STEPCAFControl_Controller.hxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_Controller.hxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_Controller.hxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_Controller.hxx diff --git a/src/STEPCAFControl/STEPCAFControl_DataMapIteratorOfDataMapOfLabelExternFile.hxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_DataMapIteratorOfDataMapOfLabelExternFile.hxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_DataMapIteratorOfDataMapOfLabelExternFile.hxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_DataMapIteratorOfDataMapOfLabelExternFile.hxx diff --git a/src/STEPCAFControl/STEPCAFControl_DataMapIteratorOfDataMapOfLabelShape.hxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_DataMapIteratorOfDataMapOfLabelShape.hxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_DataMapIteratorOfDataMapOfLabelShape.hxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_DataMapIteratorOfDataMapOfLabelShape.hxx diff --git a/src/STEPCAFControl/STEPCAFControl_DataMapIteratorOfDataMapOfPDExternFile.hxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_DataMapIteratorOfDataMapOfPDExternFile.hxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_DataMapIteratorOfDataMapOfPDExternFile.hxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_DataMapIteratorOfDataMapOfPDExternFile.hxx diff --git a/src/STEPCAFControl/STEPCAFControl_DataMapIteratorOfDataMapOfSDRExternFile.hxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_DataMapIteratorOfDataMapOfSDRExternFile.hxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_DataMapIteratorOfDataMapOfSDRExternFile.hxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_DataMapIteratorOfDataMapOfSDRExternFile.hxx diff --git a/src/STEPCAFControl/STEPCAFControl_DataMapIteratorOfDataMapOfShapePD.hxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_DataMapIteratorOfDataMapOfShapePD.hxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_DataMapIteratorOfDataMapOfShapePD.hxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_DataMapIteratorOfDataMapOfShapePD.hxx diff --git a/src/STEPCAFControl/STEPCAFControl_DataMapIteratorOfDataMapOfShapeSDR.hxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_DataMapIteratorOfDataMapOfShapeSDR.hxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_DataMapIteratorOfDataMapOfShapeSDR.hxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_DataMapIteratorOfDataMapOfShapeSDR.hxx diff --git a/src/STEPCAFControl/STEPCAFControl_DataMapOfLabelExternFile.hxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_DataMapOfLabelExternFile.hxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_DataMapOfLabelExternFile.hxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_DataMapOfLabelExternFile.hxx diff --git a/src/STEPCAFControl/STEPCAFControl_DataMapOfLabelShape.hxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_DataMapOfLabelShape.hxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_DataMapOfLabelShape.hxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_DataMapOfLabelShape.hxx diff --git a/src/STEPCAFControl/STEPCAFControl_DataMapOfPDExternFile.hxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_DataMapOfPDExternFile.hxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_DataMapOfPDExternFile.hxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_DataMapOfPDExternFile.hxx diff --git a/src/STEPCAFControl/STEPCAFControl_DataMapOfSDRExternFile.hxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_DataMapOfSDRExternFile.hxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_DataMapOfSDRExternFile.hxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_DataMapOfSDRExternFile.hxx diff --git a/src/STEPCAFControl/STEPCAFControl_DataMapOfShapePD.hxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_DataMapOfShapePD.hxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_DataMapOfShapePD.hxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_DataMapOfShapePD.hxx diff --git a/src/STEPCAFControl/STEPCAFControl_DataMapOfShapeSDR.hxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_DataMapOfShapeSDR.hxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_DataMapOfShapeSDR.hxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_DataMapOfShapeSDR.hxx diff --git a/src/STEPCAFControl/STEPCAFControl_ExternFile.cxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_ExternFile.cxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_ExternFile.cxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_ExternFile.cxx diff --git a/src/STEPCAFControl/STEPCAFControl_ExternFile.hxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_ExternFile.hxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_ExternFile.hxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_ExternFile.hxx diff --git a/src/STEPCAFControl/STEPCAFControl_ExternFile.lxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_ExternFile.lxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_ExternFile.lxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_ExternFile.lxx diff --git a/src/STEPCAFControl/STEPCAFControl_GDTProperty.cxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_GDTProperty.cxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_GDTProperty.cxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_GDTProperty.cxx diff --git a/src/STEPCAFControl/STEPCAFControl_GDTProperty.hxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_GDTProperty.hxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_GDTProperty.hxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_GDTProperty.hxx diff --git a/src/STEPCAFControl/STEPCAFControl_Provider.hxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_Provider.hxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_Provider.hxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_Provider.hxx diff --git a/src/STEPCAFControl/STEPCAFControl_Reader.cxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_Reader.cxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_Reader.cxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_Reader.cxx diff --git a/src/STEPCAFControl/STEPCAFControl_Reader.hxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_Reader.hxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_Reader.hxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_Reader.hxx diff --git a/src/STEPCAFControl/STEPCAFControl_Writer.cxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_Writer.cxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_Writer.cxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_Writer.cxx diff --git a/src/STEPCAFControl/STEPCAFControl_Writer.hxx b/src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_Writer.hxx similarity index 100% rename from src/STEPCAFControl/STEPCAFControl_Writer.hxx rename to src/DataExchange/TKDESTEP/STEPCAFControl/STEPCAFControl_Writer.hxx diff --git a/src/DataExchange/TKDESTEP/STEPConstruct/FILES.cmake b/src/DataExchange/TKDESTEP/STEPConstruct/FILES.cmake new file mode 100644 index 0000000000..81d45737e0 --- /dev/null +++ b/src/DataExchange/TKDESTEP/STEPConstruct/FILES.cmake @@ -0,0 +1,30 @@ +# Source files for STEPConstruct package +set(OCCT_STEPConstruct_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_STEPConstruct_FILES + STEPConstruct.cxx + STEPConstruct.hxx + STEPConstruct_AP203Context.cxx + STEPConstruct_AP203Context.hxx + STEPConstruct_Assembly.cxx + STEPConstruct_Assembly.hxx + STEPConstruct_ContextTool.cxx + STEPConstruct_ContextTool.hxx + STEPConstruct_DataMapIteratorOfDataMapOfAsciiStringTransient.hxx + STEPConstruct_DataMapIteratorOfDataMapOfPointTransient.hxx + STEPConstruct_DataMapOfAsciiStringTransient.hxx + STEPConstruct_DataMapOfPointTransient.hxx + STEPConstruct_ExternRefs.cxx + STEPConstruct_ExternRefs.hxx + STEPConstruct_Part.cxx + STEPConstruct_Part.hxx + STEPConstruct_Styles.cxx + STEPConstruct_Styles.hxx + STEPConstruct_Tool.cxx + STEPConstruct_Tool.hxx + STEPConstruct_Tool.lxx + STEPConstruct_UnitContext.cxx + STEPConstruct_UnitContext.hxx + STEPConstruct_ValidationProps.cxx + STEPConstruct_ValidationProps.hxx +) diff --git a/src/STEPConstruct/STEPConstruct.cxx b/src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct.cxx similarity index 100% rename from src/STEPConstruct/STEPConstruct.cxx rename to src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct.cxx diff --git a/src/STEPConstruct/STEPConstruct.hxx b/src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct.hxx similarity index 100% rename from src/STEPConstruct/STEPConstruct.hxx rename to src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct.hxx diff --git a/src/STEPConstruct/STEPConstruct_AP203Context.cxx b/src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_AP203Context.cxx similarity index 100% rename from src/STEPConstruct/STEPConstruct_AP203Context.cxx rename to src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_AP203Context.cxx diff --git a/src/STEPConstruct/STEPConstruct_AP203Context.hxx b/src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_AP203Context.hxx similarity index 100% rename from src/STEPConstruct/STEPConstruct_AP203Context.hxx rename to src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_AP203Context.hxx diff --git a/src/STEPConstruct/STEPConstruct_Assembly.cxx b/src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_Assembly.cxx similarity index 100% rename from src/STEPConstruct/STEPConstruct_Assembly.cxx rename to src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_Assembly.cxx diff --git a/src/STEPConstruct/STEPConstruct_Assembly.hxx b/src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_Assembly.hxx similarity index 100% rename from src/STEPConstruct/STEPConstruct_Assembly.hxx rename to src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_Assembly.hxx diff --git a/src/STEPConstruct/STEPConstruct_ContextTool.cxx b/src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_ContextTool.cxx similarity index 100% rename from src/STEPConstruct/STEPConstruct_ContextTool.cxx rename to src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_ContextTool.cxx diff --git a/src/STEPConstruct/STEPConstruct_ContextTool.hxx b/src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_ContextTool.hxx similarity index 100% rename from src/STEPConstruct/STEPConstruct_ContextTool.hxx rename to src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_ContextTool.hxx diff --git a/src/STEPConstruct/STEPConstruct_DataMapIteratorOfDataMapOfAsciiStringTransient.hxx b/src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_DataMapIteratorOfDataMapOfAsciiStringTransient.hxx similarity index 100% rename from src/STEPConstruct/STEPConstruct_DataMapIteratorOfDataMapOfAsciiStringTransient.hxx rename to src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_DataMapIteratorOfDataMapOfAsciiStringTransient.hxx diff --git a/src/STEPConstruct/STEPConstruct_DataMapIteratorOfDataMapOfPointTransient.hxx b/src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_DataMapIteratorOfDataMapOfPointTransient.hxx similarity index 100% rename from src/STEPConstruct/STEPConstruct_DataMapIteratorOfDataMapOfPointTransient.hxx rename to src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_DataMapIteratorOfDataMapOfPointTransient.hxx diff --git a/src/STEPConstruct/STEPConstruct_DataMapOfAsciiStringTransient.hxx b/src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_DataMapOfAsciiStringTransient.hxx similarity index 100% rename from src/STEPConstruct/STEPConstruct_DataMapOfAsciiStringTransient.hxx rename to src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_DataMapOfAsciiStringTransient.hxx diff --git a/src/STEPConstruct/STEPConstruct_DataMapOfPointTransient.hxx b/src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_DataMapOfPointTransient.hxx similarity index 100% rename from src/STEPConstruct/STEPConstruct_DataMapOfPointTransient.hxx rename to src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_DataMapOfPointTransient.hxx diff --git a/src/STEPConstruct/STEPConstruct_ExternRefs.cxx b/src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_ExternRefs.cxx similarity index 100% rename from src/STEPConstruct/STEPConstruct_ExternRefs.cxx rename to src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_ExternRefs.cxx diff --git a/src/STEPConstruct/STEPConstruct_ExternRefs.hxx b/src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_ExternRefs.hxx similarity index 100% rename from src/STEPConstruct/STEPConstruct_ExternRefs.hxx rename to src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_ExternRefs.hxx diff --git a/src/STEPConstruct/STEPConstruct_Part.cxx b/src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_Part.cxx similarity index 100% rename from src/STEPConstruct/STEPConstruct_Part.cxx rename to src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_Part.cxx diff --git a/src/STEPConstruct/STEPConstruct_Part.hxx b/src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_Part.hxx similarity index 100% rename from src/STEPConstruct/STEPConstruct_Part.hxx rename to src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_Part.hxx diff --git a/src/STEPConstruct/STEPConstruct_Styles.cxx b/src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_Styles.cxx similarity index 100% rename from src/STEPConstruct/STEPConstruct_Styles.cxx rename to src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_Styles.cxx diff --git a/src/STEPConstruct/STEPConstruct_Styles.hxx b/src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_Styles.hxx similarity index 100% rename from src/STEPConstruct/STEPConstruct_Styles.hxx rename to src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_Styles.hxx diff --git a/src/STEPConstruct/STEPConstruct_Tool.cxx b/src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_Tool.cxx similarity index 100% rename from src/STEPConstruct/STEPConstruct_Tool.cxx rename to src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_Tool.cxx diff --git a/src/STEPConstruct/STEPConstruct_Tool.hxx b/src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_Tool.hxx similarity index 100% rename from src/STEPConstruct/STEPConstruct_Tool.hxx rename to src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_Tool.hxx diff --git a/src/STEPConstruct/STEPConstruct_Tool.lxx b/src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_Tool.lxx similarity index 100% rename from src/STEPConstruct/STEPConstruct_Tool.lxx rename to src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_Tool.lxx diff --git a/src/STEPConstruct/STEPConstruct_UnitContext.cxx b/src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_UnitContext.cxx similarity index 100% rename from src/STEPConstruct/STEPConstruct_UnitContext.cxx rename to src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_UnitContext.cxx diff --git a/src/STEPConstruct/STEPConstruct_UnitContext.hxx b/src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_UnitContext.hxx similarity index 100% rename from src/STEPConstruct/STEPConstruct_UnitContext.hxx rename to src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_UnitContext.hxx diff --git a/src/STEPConstruct/STEPConstruct_ValidationProps.cxx b/src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_ValidationProps.cxx similarity index 100% rename from src/STEPConstruct/STEPConstruct_ValidationProps.cxx rename to src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_ValidationProps.cxx diff --git a/src/STEPConstruct/STEPConstruct_ValidationProps.hxx b/src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_ValidationProps.hxx similarity index 100% rename from src/STEPConstruct/STEPConstruct_ValidationProps.hxx rename to src/DataExchange/TKDESTEP/STEPConstruct/STEPConstruct_ValidationProps.hxx diff --git a/src/DataExchange/TKDESTEP/STEPControl/FILES.cmake b/src/DataExchange/TKDESTEP/STEPControl/FILES.cmake new file mode 100644 index 0000000000..2583c6212c --- /dev/null +++ b/src/DataExchange/TKDESTEP/STEPControl/FILES.cmake @@ -0,0 +1,16 @@ +# Source files for STEPControl package +set(OCCT_STEPControl_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_STEPControl_FILES + STEPControl_ActorRead.cxx + STEPControl_ActorRead.hxx + STEPControl_ActorWrite.cxx + STEPControl_ActorWrite.hxx + STEPControl_Controller.cxx + STEPControl_Controller.hxx + STEPControl_Reader.cxx + STEPControl_Reader.hxx + STEPControl_StepModelType.hxx + STEPControl_Writer.cxx + STEPControl_Writer.hxx +) diff --git a/src/STEPControl/STEPControl_ActorRead.cxx b/src/DataExchange/TKDESTEP/STEPControl/STEPControl_ActorRead.cxx similarity index 100% rename from src/STEPControl/STEPControl_ActorRead.cxx rename to src/DataExchange/TKDESTEP/STEPControl/STEPControl_ActorRead.cxx diff --git a/src/STEPControl/STEPControl_ActorRead.hxx b/src/DataExchange/TKDESTEP/STEPControl/STEPControl_ActorRead.hxx similarity index 100% rename from src/STEPControl/STEPControl_ActorRead.hxx rename to src/DataExchange/TKDESTEP/STEPControl/STEPControl_ActorRead.hxx diff --git a/src/STEPControl/STEPControl_ActorWrite.cxx b/src/DataExchange/TKDESTEP/STEPControl/STEPControl_ActorWrite.cxx similarity index 100% rename from src/STEPControl/STEPControl_ActorWrite.cxx rename to src/DataExchange/TKDESTEP/STEPControl/STEPControl_ActorWrite.cxx diff --git a/src/STEPControl/STEPControl_ActorWrite.hxx b/src/DataExchange/TKDESTEP/STEPControl/STEPControl_ActorWrite.hxx similarity index 100% rename from src/STEPControl/STEPControl_ActorWrite.hxx rename to src/DataExchange/TKDESTEP/STEPControl/STEPControl_ActorWrite.hxx diff --git a/src/STEPControl/STEPControl_Controller.cxx b/src/DataExchange/TKDESTEP/STEPControl/STEPControl_Controller.cxx similarity index 100% rename from src/STEPControl/STEPControl_Controller.cxx rename to src/DataExchange/TKDESTEP/STEPControl/STEPControl_Controller.cxx diff --git a/src/STEPControl/STEPControl_Controller.hxx b/src/DataExchange/TKDESTEP/STEPControl/STEPControl_Controller.hxx similarity index 100% rename from src/STEPControl/STEPControl_Controller.hxx rename to src/DataExchange/TKDESTEP/STEPControl/STEPControl_Controller.hxx diff --git a/src/STEPControl/STEPControl_Reader.cxx b/src/DataExchange/TKDESTEP/STEPControl/STEPControl_Reader.cxx similarity index 100% rename from src/STEPControl/STEPControl_Reader.cxx rename to src/DataExchange/TKDESTEP/STEPControl/STEPControl_Reader.cxx diff --git a/src/STEPControl/STEPControl_Reader.hxx b/src/DataExchange/TKDESTEP/STEPControl/STEPControl_Reader.hxx similarity index 100% rename from src/STEPControl/STEPControl_Reader.hxx rename to src/DataExchange/TKDESTEP/STEPControl/STEPControl_Reader.hxx diff --git a/src/STEPControl/STEPControl_StepModelType.hxx b/src/DataExchange/TKDESTEP/STEPControl/STEPControl_StepModelType.hxx similarity index 100% rename from src/STEPControl/STEPControl_StepModelType.hxx rename to src/DataExchange/TKDESTEP/STEPControl/STEPControl_StepModelType.hxx diff --git a/src/STEPControl/STEPControl_Writer.cxx b/src/DataExchange/TKDESTEP/STEPControl/STEPControl_Writer.cxx similarity index 100% rename from src/STEPControl/STEPControl_Writer.cxx rename to src/DataExchange/TKDESTEP/STEPControl/STEPControl_Writer.cxx diff --git a/src/STEPControl/STEPControl_Writer.hxx b/src/DataExchange/TKDESTEP/STEPControl/STEPControl_Writer.hxx similarity index 100% rename from src/STEPControl/STEPControl_Writer.hxx rename to src/DataExchange/TKDESTEP/STEPControl/STEPControl_Writer.hxx diff --git a/src/DataExchange/TKDESTEP/STEPEdit/FILES.cmake b/src/DataExchange/TKDESTEP/STEPEdit/FILES.cmake new file mode 100644 index 0000000000..b40402a3c7 --- /dev/null +++ b/src/DataExchange/TKDESTEP/STEPEdit/FILES.cmake @@ -0,0 +1,11 @@ +# Source files for STEPEdit package +set(OCCT_STEPEdit_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_STEPEdit_FILES + STEPEdit.cxx + STEPEdit.hxx + STEPEdit_EditContext.cxx + STEPEdit_EditContext.hxx + STEPEdit_EditSDR.cxx + STEPEdit_EditSDR.hxx +) diff --git a/src/STEPEdit/STEPEdit.cxx b/src/DataExchange/TKDESTEP/STEPEdit/STEPEdit.cxx similarity index 100% rename from src/STEPEdit/STEPEdit.cxx rename to src/DataExchange/TKDESTEP/STEPEdit/STEPEdit.cxx diff --git a/src/STEPEdit/STEPEdit.hxx b/src/DataExchange/TKDESTEP/STEPEdit/STEPEdit.hxx similarity index 100% rename from src/STEPEdit/STEPEdit.hxx rename to src/DataExchange/TKDESTEP/STEPEdit/STEPEdit.hxx diff --git a/src/STEPEdit/STEPEdit_EditContext.cxx b/src/DataExchange/TKDESTEP/STEPEdit/STEPEdit_EditContext.cxx similarity index 100% rename from src/STEPEdit/STEPEdit_EditContext.cxx rename to src/DataExchange/TKDESTEP/STEPEdit/STEPEdit_EditContext.cxx diff --git a/src/STEPEdit/STEPEdit_EditContext.hxx b/src/DataExchange/TKDESTEP/STEPEdit/STEPEdit_EditContext.hxx similarity index 100% rename from src/STEPEdit/STEPEdit_EditContext.hxx rename to src/DataExchange/TKDESTEP/STEPEdit/STEPEdit_EditContext.hxx diff --git a/src/STEPEdit/STEPEdit_EditSDR.cxx b/src/DataExchange/TKDESTEP/STEPEdit/STEPEdit_EditSDR.cxx similarity index 100% rename from src/STEPEdit/STEPEdit_EditSDR.cxx rename to src/DataExchange/TKDESTEP/STEPEdit/STEPEdit_EditSDR.cxx diff --git a/src/STEPEdit/STEPEdit_EditSDR.hxx b/src/DataExchange/TKDESTEP/STEPEdit/STEPEdit_EditSDR.hxx similarity index 100% rename from src/STEPEdit/STEPEdit_EditSDR.hxx rename to src/DataExchange/TKDESTEP/STEPEdit/STEPEdit_EditSDR.hxx diff --git a/src/DataExchange/TKDESTEP/STEPSelections/FILES.cmake b/src/DataExchange/TKDESTEP/STEPSelections/FILES.cmake new file mode 100644 index 0000000000..2b51ebc1e4 --- /dev/null +++ b/src/DataExchange/TKDESTEP/STEPSelections/FILES.cmake @@ -0,0 +1,32 @@ +# Source files for STEPSelections package +set(OCCT_STEPSelections_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_STEPSelections_FILES + STEPSelections_AssemblyComponent.cxx + STEPSelections_AssemblyComponent.hxx + STEPSelections_AssemblyComponent.lxx + STEPSelections_AssemblyExplorer.cxx + STEPSelections_AssemblyExplorer.hxx + STEPSelections_AssemblyExplorer.lxx + STEPSelections_AssemblyLink.cxx + STEPSelections_AssemblyLink.hxx + STEPSelections_AssemblyLink.lxx + STEPSelections_Counter.cxx + STEPSelections_Counter.hxx + STEPSelections_Counter.lxx + STEPSelections_HSequenceOfAssemblyLink.hxx + STEPSelections_SelectAssembly.cxx + STEPSelections_SelectAssembly.hxx + STEPSelections_SelectDerived.cxx + STEPSelections_SelectDerived.hxx + STEPSelections_SelectFaces.cxx + STEPSelections_SelectFaces.hxx + STEPSelections_SelectForTransfer.cxx + STEPSelections_SelectForTransfer.hxx + STEPSelections_SelectGSCurves.cxx + STEPSelections_SelectGSCurves.hxx + STEPSelections_SelectInstances.cxx + STEPSelections_SelectInstances.hxx + STEPSelections_SequenceOfAssemblyComponent.hxx + STEPSelections_SequenceOfAssemblyLink.hxx +) diff --git a/src/STEPSelections/STEPSelections_AssemblyComponent.cxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_AssemblyComponent.cxx similarity index 100% rename from src/STEPSelections/STEPSelections_AssemblyComponent.cxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_AssemblyComponent.cxx diff --git a/src/STEPSelections/STEPSelections_AssemblyComponent.hxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_AssemblyComponent.hxx similarity index 100% rename from src/STEPSelections/STEPSelections_AssemblyComponent.hxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_AssemblyComponent.hxx diff --git a/src/STEPSelections/STEPSelections_AssemblyComponent.lxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_AssemblyComponent.lxx similarity index 100% rename from src/STEPSelections/STEPSelections_AssemblyComponent.lxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_AssemblyComponent.lxx diff --git a/src/STEPSelections/STEPSelections_AssemblyExplorer.cxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_AssemblyExplorer.cxx similarity index 100% rename from src/STEPSelections/STEPSelections_AssemblyExplorer.cxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_AssemblyExplorer.cxx diff --git a/src/STEPSelections/STEPSelections_AssemblyExplorer.hxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_AssemblyExplorer.hxx similarity index 100% rename from src/STEPSelections/STEPSelections_AssemblyExplorer.hxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_AssemblyExplorer.hxx diff --git a/src/STEPSelections/STEPSelections_AssemblyExplorer.lxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_AssemblyExplorer.lxx similarity index 100% rename from src/STEPSelections/STEPSelections_AssemblyExplorer.lxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_AssemblyExplorer.lxx diff --git a/src/STEPSelections/STEPSelections_AssemblyLink.cxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_AssemblyLink.cxx similarity index 100% rename from src/STEPSelections/STEPSelections_AssemblyLink.cxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_AssemblyLink.cxx diff --git a/src/STEPSelections/STEPSelections_AssemblyLink.hxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_AssemblyLink.hxx similarity index 100% rename from src/STEPSelections/STEPSelections_AssemblyLink.hxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_AssemblyLink.hxx diff --git a/src/STEPSelections/STEPSelections_AssemblyLink.lxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_AssemblyLink.lxx similarity index 100% rename from src/STEPSelections/STEPSelections_AssemblyLink.lxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_AssemblyLink.lxx diff --git a/src/STEPSelections/STEPSelections_Counter.cxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_Counter.cxx similarity index 100% rename from src/STEPSelections/STEPSelections_Counter.cxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_Counter.cxx diff --git a/src/STEPSelections/STEPSelections_Counter.hxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_Counter.hxx similarity index 100% rename from src/STEPSelections/STEPSelections_Counter.hxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_Counter.hxx diff --git a/src/STEPSelections/STEPSelections_Counter.lxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_Counter.lxx similarity index 100% rename from src/STEPSelections/STEPSelections_Counter.lxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_Counter.lxx diff --git a/src/STEPSelections/STEPSelections_HSequenceOfAssemblyLink.hxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_HSequenceOfAssemblyLink.hxx similarity index 100% rename from src/STEPSelections/STEPSelections_HSequenceOfAssemblyLink.hxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_HSequenceOfAssemblyLink.hxx diff --git a/src/STEPSelections/STEPSelections_SelectAssembly.cxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SelectAssembly.cxx similarity index 100% rename from src/STEPSelections/STEPSelections_SelectAssembly.cxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SelectAssembly.cxx diff --git a/src/STEPSelections/STEPSelections_SelectAssembly.hxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SelectAssembly.hxx similarity index 100% rename from src/STEPSelections/STEPSelections_SelectAssembly.hxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SelectAssembly.hxx diff --git a/src/STEPSelections/STEPSelections_SelectDerived.cxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SelectDerived.cxx similarity index 100% rename from src/STEPSelections/STEPSelections_SelectDerived.cxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SelectDerived.cxx diff --git a/src/STEPSelections/STEPSelections_SelectDerived.hxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SelectDerived.hxx similarity index 100% rename from src/STEPSelections/STEPSelections_SelectDerived.hxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SelectDerived.hxx diff --git a/src/STEPSelections/STEPSelections_SelectFaces.cxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SelectFaces.cxx similarity index 100% rename from src/STEPSelections/STEPSelections_SelectFaces.cxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SelectFaces.cxx diff --git a/src/STEPSelections/STEPSelections_SelectFaces.hxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SelectFaces.hxx similarity index 100% rename from src/STEPSelections/STEPSelections_SelectFaces.hxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SelectFaces.hxx diff --git a/src/STEPSelections/STEPSelections_SelectForTransfer.cxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SelectForTransfer.cxx similarity index 100% rename from src/STEPSelections/STEPSelections_SelectForTransfer.cxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SelectForTransfer.cxx diff --git a/src/STEPSelections/STEPSelections_SelectForTransfer.hxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SelectForTransfer.hxx similarity index 100% rename from src/STEPSelections/STEPSelections_SelectForTransfer.hxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SelectForTransfer.hxx diff --git a/src/STEPSelections/STEPSelections_SelectGSCurves.cxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SelectGSCurves.cxx similarity index 100% rename from src/STEPSelections/STEPSelections_SelectGSCurves.cxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SelectGSCurves.cxx diff --git a/src/STEPSelections/STEPSelections_SelectGSCurves.hxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SelectGSCurves.hxx similarity index 100% rename from src/STEPSelections/STEPSelections_SelectGSCurves.hxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SelectGSCurves.hxx diff --git a/src/STEPSelections/STEPSelections_SelectInstances.cxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SelectInstances.cxx similarity index 100% rename from src/STEPSelections/STEPSelections_SelectInstances.cxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SelectInstances.cxx diff --git a/src/STEPSelections/STEPSelections_SelectInstances.hxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SelectInstances.hxx similarity index 100% rename from src/STEPSelections/STEPSelections_SelectInstances.hxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SelectInstances.hxx diff --git a/src/STEPSelections/STEPSelections_SequenceOfAssemblyComponent.hxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SequenceOfAssemblyComponent.hxx similarity index 100% rename from src/STEPSelections/STEPSelections_SequenceOfAssemblyComponent.hxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SequenceOfAssemblyComponent.hxx diff --git a/src/STEPSelections/STEPSelections_SequenceOfAssemblyLink.hxx b/src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SequenceOfAssemblyLink.hxx similarity index 100% rename from src/STEPSelections/STEPSelections_SequenceOfAssemblyLink.hxx rename to src/DataExchange/TKDESTEP/STEPSelections/STEPSelections_SequenceOfAssemblyLink.hxx diff --git a/src/DataExchange/TKDESTEP/StepAP203/FILES.cmake b/src/DataExchange/TKDESTEP/StepAP203/FILES.cmake new file mode 100644 index 0000000000..5a0957938f --- /dev/null +++ b/src/DataExchange/TKDESTEP/StepAP203/FILES.cmake @@ -0,0 +1,67 @@ +# Source files for StepAP203 package +set(OCCT_StepAP203_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StepAP203_FILES + StepAP203_ApprovedItem.cxx + StepAP203_ApprovedItem.hxx + StepAP203_Array1OfApprovedItem.hxx + StepAP203_Array1OfCertifiedItem.hxx + StepAP203_Array1OfChangeRequestItem.hxx + StepAP203_Array1OfClassifiedItem.hxx + StepAP203_Array1OfContractedItem.hxx + StepAP203_Array1OfDateTimeItem.hxx + StepAP203_Array1OfPersonOrganizationItem.hxx + StepAP203_Array1OfSpecifiedItem.hxx + StepAP203_Array1OfStartRequestItem.hxx + StepAP203_Array1OfWorkItem.hxx + StepAP203_CcDesignApproval.cxx + StepAP203_CcDesignApproval.hxx + StepAP203_CcDesignCertification.cxx + StepAP203_CcDesignCertification.hxx + StepAP203_CcDesignContract.cxx + StepAP203_CcDesignContract.hxx + StepAP203_CcDesignDateAndTimeAssignment.cxx + StepAP203_CcDesignDateAndTimeAssignment.hxx + StepAP203_CcDesignPersonAndOrganizationAssignment.cxx + StepAP203_CcDesignPersonAndOrganizationAssignment.hxx + StepAP203_CcDesignSecurityClassification.cxx + StepAP203_CcDesignSecurityClassification.hxx + StepAP203_CcDesignSpecificationReference.cxx + StepAP203_CcDesignSpecificationReference.hxx + StepAP203_CertifiedItem.cxx + StepAP203_CertifiedItem.hxx + StepAP203_Change.cxx + StepAP203_Change.hxx + StepAP203_ChangeRequest.cxx + StepAP203_ChangeRequest.hxx + StepAP203_ChangeRequestItem.cxx + StepAP203_ChangeRequestItem.hxx + StepAP203_ClassifiedItem.cxx + StepAP203_ClassifiedItem.hxx + StepAP203_ContractedItem.cxx + StepAP203_ContractedItem.hxx + StepAP203_DateTimeItem.cxx + StepAP203_DateTimeItem.hxx + StepAP203_HArray1OfApprovedItem.hxx + StepAP203_HArray1OfCertifiedItem.hxx + StepAP203_HArray1OfChangeRequestItem.hxx + StepAP203_HArray1OfClassifiedItem.hxx + StepAP203_HArray1OfContractedItem.hxx + StepAP203_HArray1OfDateTimeItem.hxx + StepAP203_HArray1OfPersonOrganizationItem.hxx + StepAP203_HArray1OfSpecifiedItem.hxx + StepAP203_HArray1OfStartRequestItem.hxx + StepAP203_HArray1OfWorkItem.hxx + StepAP203_PersonOrganizationItem.cxx + StepAP203_PersonOrganizationItem.hxx + StepAP203_SpecifiedItem.cxx + StepAP203_SpecifiedItem.hxx + StepAP203_StartRequest.cxx + StepAP203_StartRequest.hxx + StepAP203_StartRequestItem.cxx + StepAP203_StartRequestItem.hxx + StepAP203_StartWork.cxx + StepAP203_StartWork.hxx + StepAP203_WorkItem.cxx + StepAP203_WorkItem.hxx +) diff --git a/src/StepAP203/StepAP203_ApprovedItem.cxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_ApprovedItem.cxx similarity index 100% rename from src/StepAP203/StepAP203_ApprovedItem.cxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_ApprovedItem.cxx diff --git a/src/StepAP203/StepAP203_ApprovedItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_ApprovedItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_ApprovedItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_ApprovedItem.hxx diff --git a/src/StepAP203/StepAP203_Array1OfApprovedItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_Array1OfApprovedItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_Array1OfApprovedItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_Array1OfApprovedItem.hxx diff --git a/src/StepAP203/StepAP203_Array1OfCertifiedItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_Array1OfCertifiedItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_Array1OfCertifiedItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_Array1OfCertifiedItem.hxx diff --git a/src/StepAP203/StepAP203_Array1OfChangeRequestItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_Array1OfChangeRequestItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_Array1OfChangeRequestItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_Array1OfChangeRequestItem.hxx diff --git a/src/StepAP203/StepAP203_Array1OfClassifiedItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_Array1OfClassifiedItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_Array1OfClassifiedItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_Array1OfClassifiedItem.hxx diff --git a/src/StepAP203/StepAP203_Array1OfContractedItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_Array1OfContractedItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_Array1OfContractedItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_Array1OfContractedItem.hxx diff --git a/src/StepAP203/StepAP203_Array1OfDateTimeItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_Array1OfDateTimeItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_Array1OfDateTimeItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_Array1OfDateTimeItem.hxx diff --git a/src/StepAP203/StepAP203_Array1OfPersonOrganizationItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_Array1OfPersonOrganizationItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_Array1OfPersonOrganizationItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_Array1OfPersonOrganizationItem.hxx diff --git a/src/StepAP203/StepAP203_Array1OfSpecifiedItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_Array1OfSpecifiedItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_Array1OfSpecifiedItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_Array1OfSpecifiedItem.hxx diff --git a/src/StepAP203/StepAP203_Array1OfStartRequestItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_Array1OfStartRequestItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_Array1OfStartRequestItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_Array1OfStartRequestItem.hxx diff --git a/src/StepAP203/StepAP203_Array1OfWorkItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_Array1OfWorkItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_Array1OfWorkItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_Array1OfWorkItem.hxx diff --git a/src/StepAP203/StepAP203_CcDesignApproval.cxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignApproval.cxx similarity index 100% rename from src/StepAP203/StepAP203_CcDesignApproval.cxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignApproval.cxx diff --git a/src/StepAP203/StepAP203_CcDesignApproval.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignApproval.hxx similarity index 100% rename from src/StepAP203/StepAP203_CcDesignApproval.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignApproval.hxx diff --git a/src/StepAP203/StepAP203_CcDesignCertification.cxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignCertification.cxx similarity index 100% rename from src/StepAP203/StepAP203_CcDesignCertification.cxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignCertification.cxx diff --git a/src/StepAP203/StepAP203_CcDesignCertification.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignCertification.hxx similarity index 100% rename from src/StepAP203/StepAP203_CcDesignCertification.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignCertification.hxx diff --git a/src/StepAP203/StepAP203_CcDesignContract.cxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignContract.cxx similarity index 100% rename from src/StepAP203/StepAP203_CcDesignContract.cxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignContract.cxx diff --git a/src/StepAP203/StepAP203_CcDesignContract.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignContract.hxx similarity index 100% rename from src/StepAP203/StepAP203_CcDesignContract.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignContract.hxx diff --git a/src/StepAP203/StepAP203_CcDesignDateAndTimeAssignment.cxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignDateAndTimeAssignment.cxx similarity index 100% rename from src/StepAP203/StepAP203_CcDesignDateAndTimeAssignment.cxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignDateAndTimeAssignment.cxx diff --git a/src/StepAP203/StepAP203_CcDesignDateAndTimeAssignment.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignDateAndTimeAssignment.hxx similarity index 100% rename from src/StepAP203/StepAP203_CcDesignDateAndTimeAssignment.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignDateAndTimeAssignment.hxx diff --git a/src/StepAP203/StepAP203_CcDesignPersonAndOrganizationAssignment.cxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignPersonAndOrganizationAssignment.cxx similarity index 100% rename from src/StepAP203/StepAP203_CcDesignPersonAndOrganizationAssignment.cxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignPersonAndOrganizationAssignment.cxx diff --git a/src/StepAP203/StepAP203_CcDesignPersonAndOrganizationAssignment.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignPersonAndOrganizationAssignment.hxx similarity index 100% rename from src/StepAP203/StepAP203_CcDesignPersonAndOrganizationAssignment.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignPersonAndOrganizationAssignment.hxx diff --git a/src/StepAP203/StepAP203_CcDesignSecurityClassification.cxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignSecurityClassification.cxx similarity index 100% rename from src/StepAP203/StepAP203_CcDesignSecurityClassification.cxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignSecurityClassification.cxx diff --git a/src/StepAP203/StepAP203_CcDesignSecurityClassification.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignSecurityClassification.hxx similarity index 100% rename from src/StepAP203/StepAP203_CcDesignSecurityClassification.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignSecurityClassification.hxx diff --git a/src/StepAP203/StepAP203_CcDesignSpecificationReference.cxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignSpecificationReference.cxx similarity index 100% rename from src/StepAP203/StepAP203_CcDesignSpecificationReference.cxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignSpecificationReference.cxx diff --git a/src/StepAP203/StepAP203_CcDesignSpecificationReference.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignSpecificationReference.hxx similarity index 100% rename from src/StepAP203/StepAP203_CcDesignSpecificationReference.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_CcDesignSpecificationReference.hxx diff --git a/src/StepAP203/StepAP203_CertifiedItem.cxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_CertifiedItem.cxx similarity index 100% rename from src/StepAP203/StepAP203_CertifiedItem.cxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_CertifiedItem.cxx diff --git a/src/StepAP203/StepAP203_CertifiedItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_CertifiedItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_CertifiedItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_CertifiedItem.hxx diff --git a/src/StepAP203/StepAP203_Change.cxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_Change.cxx similarity index 100% rename from src/StepAP203/StepAP203_Change.cxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_Change.cxx diff --git a/src/StepAP203/StepAP203_Change.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_Change.hxx similarity index 100% rename from src/StepAP203/StepAP203_Change.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_Change.hxx diff --git a/src/StepAP203/StepAP203_ChangeRequest.cxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_ChangeRequest.cxx similarity index 100% rename from src/StepAP203/StepAP203_ChangeRequest.cxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_ChangeRequest.cxx diff --git a/src/StepAP203/StepAP203_ChangeRequest.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_ChangeRequest.hxx similarity index 100% rename from src/StepAP203/StepAP203_ChangeRequest.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_ChangeRequest.hxx diff --git a/src/StepAP203/StepAP203_ChangeRequestItem.cxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_ChangeRequestItem.cxx similarity index 100% rename from src/StepAP203/StepAP203_ChangeRequestItem.cxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_ChangeRequestItem.cxx diff --git a/src/StepAP203/StepAP203_ChangeRequestItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_ChangeRequestItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_ChangeRequestItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_ChangeRequestItem.hxx diff --git a/src/StepAP203/StepAP203_ClassifiedItem.cxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_ClassifiedItem.cxx similarity index 100% rename from src/StepAP203/StepAP203_ClassifiedItem.cxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_ClassifiedItem.cxx diff --git a/src/StepAP203/StepAP203_ClassifiedItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_ClassifiedItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_ClassifiedItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_ClassifiedItem.hxx diff --git a/src/StepAP203/StepAP203_ContractedItem.cxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_ContractedItem.cxx similarity index 100% rename from src/StepAP203/StepAP203_ContractedItem.cxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_ContractedItem.cxx diff --git a/src/StepAP203/StepAP203_ContractedItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_ContractedItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_ContractedItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_ContractedItem.hxx diff --git a/src/StepAP203/StepAP203_DateTimeItem.cxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_DateTimeItem.cxx similarity index 100% rename from src/StepAP203/StepAP203_DateTimeItem.cxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_DateTimeItem.cxx diff --git a/src/StepAP203/StepAP203_DateTimeItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_DateTimeItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_DateTimeItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_DateTimeItem.hxx diff --git a/src/StepAP203/StepAP203_HArray1OfApprovedItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_HArray1OfApprovedItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_HArray1OfApprovedItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_HArray1OfApprovedItem.hxx diff --git a/src/StepAP203/StepAP203_HArray1OfCertifiedItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_HArray1OfCertifiedItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_HArray1OfCertifiedItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_HArray1OfCertifiedItem.hxx diff --git a/src/StepAP203/StepAP203_HArray1OfChangeRequestItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_HArray1OfChangeRequestItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_HArray1OfChangeRequestItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_HArray1OfChangeRequestItem.hxx diff --git a/src/StepAP203/StepAP203_HArray1OfClassifiedItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_HArray1OfClassifiedItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_HArray1OfClassifiedItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_HArray1OfClassifiedItem.hxx diff --git a/src/StepAP203/StepAP203_HArray1OfContractedItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_HArray1OfContractedItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_HArray1OfContractedItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_HArray1OfContractedItem.hxx diff --git a/src/StepAP203/StepAP203_HArray1OfDateTimeItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_HArray1OfDateTimeItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_HArray1OfDateTimeItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_HArray1OfDateTimeItem.hxx diff --git a/src/StepAP203/StepAP203_HArray1OfPersonOrganizationItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_HArray1OfPersonOrganizationItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_HArray1OfPersonOrganizationItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_HArray1OfPersonOrganizationItem.hxx diff --git a/src/StepAP203/StepAP203_HArray1OfSpecifiedItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_HArray1OfSpecifiedItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_HArray1OfSpecifiedItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_HArray1OfSpecifiedItem.hxx diff --git a/src/StepAP203/StepAP203_HArray1OfStartRequestItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_HArray1OfStartRequestItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_HArray1OfStartRequestItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_HArray1OfStartRequestItem.hxx diff --git a/src/StepAP203/StepAP203_HArray1OfWorkItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_HArray1OfWorkItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_HArray1OfWorkItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_HArray1OfWorkItem.hxx diff --git a/src/StepAP203/StepAP203_PersonOrganizationItem.cxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_PersonOrganizationItem.cxx similarity index 100% rename from src/StepAP203/StepAP203_PersonOrganizationItem.cxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_PersonOrganizationItem.cxx diff --git a/src/StepAP203/StepAP203_PersonOrganizationItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_PersonOrganizationItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_PersonOrganizationItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_PersonOrganizationItem.hxx diff --git a/src/StepAP203/StepAP203_SpecifiedItem.cxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_SpecifiedItem.cxx similarity index 100% rename from src/StepAP203/StepAP203_SpecifiedItem.cxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_SpecifiedItem.cxx diff --git a/src/StepAP203/StepAP203_SpecifiedItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_SpecifiedItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_SpecifiedItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_SpecifiedItem.hxx diff --git a/src/StepAP203/StepAP203_StartRequest.cxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_StartRequest.cxx similarity index 100% rename from src/StepAP203/StepAP203_StartRequest.cxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_StartRequest.cxx diff --git a/src/StepAP203/StepAP203_StartRequest.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_StartRequest.hxx similarity index 100% rename from src/StepAP203/StepAP203_StartRequest.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_StartRequest.hxx diff --git a/src/StepAP203/StepAP203_StartRequestItem.cxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_StartRequestItem.cxx similarity index 100% rename from src/StepAP203/StepAP203_StartRequestItem.cxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_StartRequestItem.cxx diff --git a/src/StepAP203/StepAP203_StartRequestItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_StartRequestItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_StartRequestItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_StartRequestItem.hxx diff --git a/src/StepAP203/StepAP203_StartWork.cxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_StartWork.cxx similarity index 100% rename from src/StepAP203/StepAP203_StartWork.cxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_StartWork.cxx diff --git a/src/StepAP203/StepAP203_StartWork.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_StartWork.hxx similarity index 100% rename from src/StepAP203/StepAP203_StartWork.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_StartWork.hxx diff --git a/src/StepAP203/StepAP203_WorkItem.cxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_WorkItem.cxx similarity index 100% rename from src/StepAP203/StepAP203_WorkItem.cxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_WorkItem.cxx diff --git a/src/StepAP203/StepAP203_WorkItem.hxx b/src/DataExchange/TKDESTEP/StepAP203/StepAP203_WorkItem.hxx similarity index 100% rename from src/StepAP203/StepAP203_WorkItem.hxx rename to src/DataExchange/TKDESTEP/StepAP203/StepAP203_WorkItem.hxx diff --git a/src/DataExchange/TKDESTEP/StepAP209/FILES.cmake b/src/DataExchange/TKDESTEP/StepAP209/FILES.cmake new file mode 100644 index 0000000000..582fa073bd --- /dev/null +++ b/src/DataExchange/TKDESTEP/StepAP209/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for StepAP209 package +set(OCCT_StepAP209_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StepAP209_FILES + StepAP209_Construct.cxx + StepAP209_Construct.hxx +) diff --git a/src/StepAP209/StepAP209_Construct.cxx b/src/DataExchange/TKDESTEP/StepAP209/StepAP209_Construct.cxx similarity index 100% rename from src/StepAP209/StepAP209_Construct.cxx rename to src/DataExchange/TKDESTEP/StepAP209/StepAP209_Construct.cxx diff --git a/src/StepAP209/StepAP209_Construct.hxx b/src/DataExchange/TKDESTEP/StepAP209/StepAP209_Construct.hxx similarity index 100% rename from src/StepAP209/StepAP209_Construct.hxx rename to src/DataExchange/TKDESTEP/StepAP209/StepAP209_Construct.hxx diff --git a/src/DataExchange/TKDESTEP/StepAP214/FILES.cmake b/src/DataExchange/TKDESTEP/StepAP214/FILES.cmake new file mode 100644 index 0000000000..0e7e37c605 --- /dev/null +++ b/src/DataExchange/TKDESTEP/StepAP214/FILES.cmake @@ -0,0 +1,131 @@ +# Source files for StepAP214 package +set(OCCT_StepAP214_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StepAP214_FILES + StepAP214.cxx + StepAP214.hxx + StepAP214_AppliedApprovalAssignment.cxx + StepAP214_AppliedApprovalAssignment.hxx + StepAP214_AppliedDateAndTimeAssignment.cxx + StepAP214_AppliedDateAndTimeAssignment.hxx + StepAP214_AppliedDateAssignment.cxx + StepAP214_AppliedDateAssignment.hxx + StepAP214_AppliedDocumentReference.cxx + StepAP214_AppliedDocumentReference.hxx + StepAP214_AppliedExternalIdentificationAssignment.cxx + StepAP214_AppliedExternalIdentificationAssignment.hxx + StepAP214_AppliedGroupAssignment.cxx + StepAP214_AppliedGroupAssignment.hxx + StepAP214_AppliedOrganizationAssignment.cxx + StepAP214_AppliedOrganizationAssignment.hxx + StepAP214_AppliedPersonAndOrganizationAssignment.cxx + StepAP214_AppliedPersonAndOrganizationAssignment.hxx + StepAP214_AppliedPresentedItem.cxx + StepAP214_AppliedPresentedItem.hxx + StepAP214_AppliedSecurityClassificationAssignment.cxx + StepAP214_AppliedSecurityClassificationAssignment.hxx + StepAP214_ApprovalItem.cxx + StepAP214_ApprovalItem.hxx + StepAP214_Array1OfApprovalItem.hxx + StepAP214_Array1OfAutoDesignDateAndPersonItem.hxx + StepAP214_Array1OfAutoDesignDateAndTimeItem.hxx + StepAP214_Array1OfAutoDesignDatedItem.hxx + StepAP214_Array1OfAutoDesignGeneralOrgItem.hxx + StepAP214_Array1OfAutoDesignGroupedItem.hxx + StepAP214_Array1OfAutoDesignPresentedItemSelect.hxx + StepAP214_Array1OfAutoDesignReferencingItem.hxx + StepAP214_Array1OfDateAndTimeItem.hxx + StepAP214_Array1OfDateItem.hxx + StepAP214_Array1OfDocumentReferenceItem.hxx + StepAP214_Array1OfExternalIdentificationItem.hxx + StepAP214_Array1OfGroupItem.hxx + StepAP214_Array1OfOrganizationItem.hxx + StepAP214_Array1OfPersonAndOrganizationItem.hxx + StepAP214_Array1OfPresentedItemSelect.hxx + StepAP214_Array1OfSecurityClassificationItem.hxx + StepAP214_AutoDesignActualDateAndTimeAssignment.cxx + StepAP214_AutoDesignActualDateAndTimeAssignment.hxx + StepAP214_AutoDesignActualDateAssignment.cxx + StepAP214_AutoDesignActualDateAssignment.hxx + StepAP214_AutoDesignApprovalAssignment.cxx + StepAP214_AutoDesignApprovalAssignment.hxx + StepAP214_AutoDesignDateAndPersonAssignment.cxx + StepAP214_AutoDesignDateAndPersonAssignment.hxx + StepAP214_AutoDesignDateAndPersonItem.cxx + StepAP214_AutoDesignDateAndPersonItem.hxx + StepAP214_AutoDesignDateAndTimeItem.cxx + StepAP214_AutoDesignDateAndTimeItem.hxx + StepAP214_AutoDesignDatedItem.cxx + StepAP214_AutoDesignDatedItem.hxx + StepAP214_AutoDesignDocumentReference.cxx + StepAP214_AutoDesignDocumentReference.hxx + StepAP214_AutoDesignGeneralOrgItem.cxx + StepAP214_AutoDesignGeneralOrgItem.hxx + StepAP214_AutoDesignGroupAssignment.cxx + StepAP214_AutoDesignGroupAssignment.hxx + StepAP214_AutoDesignGroupedItem.cxx + StepAP214_AutoDesignGroupedItem.hxx + StepAP214_AutoDesignNominalDateAndTimeAssignment.cxx + StepAP214_AutoDesignNominalDateAndTimeAssignment.hxx + StepAP214_AutoDesignNominalDateAssignment.cxx + StepAP214_AutoDesignNominalDateAssignment.hxx + StepAP214_AutoDesignOrganizationAssignment.cxx + StepAP214_AutoDesignOrganizationAssignment.hxx + StepAP214_AutoDesignOrganizationItem.cxx + StepAP214_AutoDesignOrganizationItem.hxx + StepAP214_AutoDesignPersonAndOrganizationAssignment.cxx + StepAP214_AutoDesignPersonAndOrganizationAssignment.hxx + StepAP214_AutoDesignPresentedItem.cxx + StepAP214_AutoDesignPresentedItem.hxx + StepAP214_AutoDesignPresentedItemSelect.cxx + StepAP214_AutoDesignPresentedItemSelect.hxx + StepAP214_AutoDesignReferencingItem.cxx + StepAP214_AutoDesignReferencingItem.hxx + StepAP214_AutoDesignSecurityClassificationAssignment.cxx + StepAP214_AutoDesignSecurityClassificationAssignment.hxx + StepAP214_Class.cxx + StepAP214_Class.hxx + StepAP214_DateAndTimeItem.cxx + StepAP214_DateAndTimeItem.hxx + StepAP214_DateItem.cxx + StepAP214_DateItem.hxx + StepAP214_DocumentReferenceItem.cxx + StepAP214_DocumentReferenceItem.hxx + StepAP214_ExternalIdentificationItem.cxx + StepAP214_ExternalIdentificationItem.hxx + StepAP214_ExternallyDefinedClass.cxx + StepAP214_ExternallyDefinedClass.hxx + StepAP214_ExternallyDefinedGeneralProperty.cxx + StepAP214_ExternallyDefinedGeneralProperty.hxx + StepAP214_GroupItem.cxx + StepAP214_GroupItem.hxx + StepAP214_HArray1OfApprovalItem.hxx + StepAP214_HArray1OfAutoDesignDateAndPersonItem.hxx + StepAP214_HArray1OfAutoDesignDateAndTimeItem.hxx + StepAP214_HArray1OfAutoDesignDatedItem.hxx + StepAP214_HArray1OfAutoDesignGeneralOrgItem.hxx + StepAP214_HArray1OfAutoDesignGroupedItem.hxx + StepAP214_HArray1OfAutoDesignPresentedItemSelect.hxx + StepAP214_HArray1OfAutoDesignReferencingItem.hxx + StepAP214_HArray1OfDateAndTimeItem.hxx + StepAP214_HArray1OfDateItem.hxx + StepAP214_HArray1OfDocumentReferenceItem.hxx + StepAP214_HArray1OfExternalIdentificationItem.hxx + StepAP214_HArray1OfGroupItem.hxx + StepAP214_HArray1OfOrganizationItem.hxx + StepAP214_HArray1OfPersonAndOrganizationItem.hxx + StepAP214_HArray1OfPresentedItemSelect.hxx + StepAP214_HArray1OfSecurityClassificationItem.hxx + StepAP214_OrganizationItem.cxx + StepAP214_OrganizationItem.hxx + StepAP214_PersonAndOrganizationItem.cxx + StepAP214_PersonAndOrganizationItem.hxx + StepAP214_PresentedItemSelect.cxx + StepAP214_PresentedItemSelect.hxx + StepAP214_Protocol.cxx + StepAP214_Protocol.hxx + StepAP214_RepItemGroup.cxx + StepAP214_RepItemGroup.hxx + StepAP214_SecurityClassificationItem.cxx + StepAP214_SecurityClassificationItem.hxx +) diff --git a/src/StepAP214/StepAP214.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214.cxx similarity index 100% rename from src/StepAP214/StepAP214.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214.cxx diff --git a/src/StepAP214/StepAP214.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214.hxx similarity index 100% rename from src/StepAP214/StepAP214.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214.hxx diff --git a/src/StepAP214/StepAP214_AppliedApprovalAssignment.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedApprovalAssignment.cxx similarity index 100% rename from src/StepAP214/StepAP214_AppliedApprovalAssignment.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedApprovalAssignment.cxx diff --git a/src/StepAP214/StepAP214_AppliedApprovalAssignment.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedApprovalAssignment.hxx similarity index 100% rename from src/StepAP214/StepAP214_AppliedApprovalAssignment.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedApprovalAssignment.hxx diff --git a/src/StepAP214/StepAP214_AppliedDateAndTimeAssignment.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedDateAndTimeAssignment.cxx similarity index 100% rename from src/StepAP214/StepAP214_AppliedDateAndTimeAssignment.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedDateAndTimeAssignment.cxx diff --git a/src/StepAP214/StepAP214_AppliedDateAndTimeAssignment.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedDateAndTimeAssignment.hxx similarity index 100% rename from src/StepAP214/StepAP214_AppliedDateAndTimeAssignment.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedDateAndTimeAssignment.hxx diff --git a/src/StepAP214/StepAP214_AppliedDateAssignment.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedDateAssignment.cxx similarity index 100% rename from src/StepAP214/StepAP214_AppliedDateAssignment.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedDateAssignment.cxx diff --git a/src/StepAP214/StepAP214_AppliedDateAssignment.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedDateAssignment.hxx similarity index 100% rename from src/StepAP214/StepAP214_AppliedDateAssignment.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedDateAssignment.hxx diff --git a/src/StepAP214/StepAP214_AppliedDocumentReference.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedDocumentReference.cxx similarity index 100% rename from src/StepAP214/StepAP214_AppliedDocumentReference.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedDocumentReference.cxx diff --git a/src/StepAP214/StepAP214_AppliedDocumentReference.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedDocumentReference.hxx similarity index 100% rename from src/StepAP214/StepAP214_AppliedDocumentReference.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedDocumentReference.hxx diff --git a/src/StepAP214/StepAP214_AppliedExternalIdentificationAssignment.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedExternalIdentificationAssignment.cxx similarity index 100% rename from src/StepAP214/StepAP214_AppliedExternalIdentificationAssignment.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedExternalIdentificationAssignment.cxx diff --git a/src/StepAP214/StepAP214_AppliedExternalIdentificationAssignment.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedExternalIdentificationAssignment.hxx similarity index 100% rename from src/StepAP214/StepAP214_AppliedExternalIdentificationAssignment.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedExternalIdentificationAssignment.hxx diff --git a/src/StepAP214/StepAP214_AppliedGroupAssignment.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedGroupAssignment.cxx similarity index 100% rename from src/StepAP214/StepAP214_AppliedGroupAssignment.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedGroupAssignment.cxx diff --git a/src/StepAP214/StepAP214_AppliedGroupAssignment.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedGroupAssignment.hxx similarity index 100% rename from src/StepAP214/StepAP214_AppliedGroupAssignment.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedGroupAssignment.hxx diff --git a/src/StepAP214/StepAP214_AppliedOrganizationAssignment.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedOrganizationAssignment.cxx similarity index 100% rename from src/StepAP214/StepAP214_AppliedOrganizationAssignment.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedOrganizationAssignment.cxx diff --git a/src/StepAP214/StepAP214_AppliedOrganizationAssignment.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedOrganizationAssignment.hxx similarity index 100% rename from src/StepAP214/StepAP214_AppliedOrganizationAssignment.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedOrganizationAssignment.hxx diff --git a/src/StepAP214/StepAP214_AppliedPersonAndOrganizationAssignment.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedPersonAndOrganizationAssignment.cxx similarity index 100% rename from src/StepAP214/StepAP214_AppliedPersonAndOrganizationAssignment.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedPersonAndOrganizationAssignment.cxx diff --git a/src/StepAP214/StepAP214_AppliedPersonAndOrganizationAssignment.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedPersonAndOrganizationAssignment.hxx similarity index 100% rename from src/StepAP214/StepAP214_AppliedPersonAndOrganizationAssignment.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedPersonAndOrganizationAssignment.hxx diff --git a/src/StepAP214/StepAP214_AppliedPresentedItem.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedPresentedItem.cxx similarity index 100% rename from src/StepAP214/StepAP214_AppliedPresentedItem.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedPresentedItem.cxx diff --git a/src/StepAP214/StepAP214_AppliedPresentedItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedPresentedItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_AppliedPresentedItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedPresentedItem.hxx diff --git a/src/StepAP214/StepAP214_AppliedSecurityClassificationAssignment.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedSecurityClassificationAssignment.cxx similarity index 100% rename from src/StepAP214/StepAP214_AppliedSecurityClassificationAssignment.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedSecurityClassificationAssignment.cxx diff --git a/src/StepAP214/StepAP214_AppliedSecurityClassificationAssignment.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedSecurityClassificationAssignment.hxx similarity index 100% rename from src/StepAP214/StepAP214_AppliedSecurityClassificationAssignment.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AppliedSecurityClassificationAssignment.hxx diff --git a/src/StepAP214/StepAP214_ApprovalItem.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_ApprovalItem.cxx similarity index 100% rename from src/StepAP214/StepAP214_ApprovalItem.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_ApprovalItem.cxx diff --git a/src/StepAP214/StepAP214_ApprovalItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_ApprovalItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_ApprovalItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_ApprovalItem.hxx diff --git a/src/StepAP214/StepAP214_Array1OfApprovalItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfApprovalItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_Array1OfApprovalItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfApprovalItem.hxx diff --git a/src/StepAP214/StepAP214_Array1OfAutoDesignDateAndPersonItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfAutoDesignDateAndPersonItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_Array1OfAutoDesignDateAndPersonItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfAutoDesignDateAndPersonItem.hxx diff --git a/src/StepAP214/StepAP214_Array1OfAutoDesignDateAndTimeItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfAutoDesignDateAndTimeItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_Array1OfAutoDesignDateAndTimeItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfAutoDesignDateAndTimeItem.hxx diff --git a/src/StepAP214/StepAP214_Array1OfAutoDesignDatedItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfAutoDesignDatedItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_Array1OfAutoDesignDatedItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfAutoDesignDatedItem.hxx diff --git a/src/StepAP214/StepAP214_Array1OfAutoDesignGeneralOrgItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfAutoDesignGeneralOrgItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_Array1OfAutoDesignGeneralOrgItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfAutoDesignGeneralOrgItem.hxx diff --git a/src/StepAP214/StepAP214_Array1OfAutoDesignGroupedItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfAutoDesignGroupedItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_Array1OfAutoDesignGroupedItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfAutoDesignGroupedItem.hxx diff --git a/src/StepAP214/StepAP214_Array1OfAutoDesignPresentedItemSelect.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfAutoDesignPresentedItemSelect.hxx similarity index 100% rename from src/StepAP214/StepAP214_Array1OfAutoDesignPresentedItemSelect.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfAutoDesignPresentedItemSelect.hxx diff --git a/src/StepAP214/StepAP214_Array1OfAutoDesignReferencingItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfAutoDesignReferencingItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_Array1OfAutoDesignReferencingItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfAutoDesignReferencingItem.hxx diff --git a/src/StepAP214/StepAP214_Array1OfDateAndTimeItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfDateAndTimeItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_Array1OfDateAndTimeItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfDateAndTimeItem.hxx diff --git a/src/StepAP214/StepAP214_Array1OfDateItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfDateItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_Array1OfDateItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfDateItem.hxx diff --git a/src/StepAP214/StepAP214_Array1OfDocumentReferenceItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfDocumentReferenceItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_Array1OfDocumentReferenceItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfDocumentReferenceItem.hxx diff --git a/src/StepAP214/StepAP214_Array1OfExternalIdentificationItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfExternalIdentificationItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_Array1OfExternalIdentificationItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfExternalIdentificationItem.hxx diff --git a/src/StepAP214/StepAP214_Array1OfGroupItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfGroupItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_Array1OfGroupItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfGroupItem.hxx diff --git a/src/StepAP214/StepAP214_Array1OfOrganizationItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfOrganizationItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_Array1OfOrganizationItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfOrganizationItem.hxx diff --git a/src/StepAP214/StepAP214_Array1OfPersonAndOrganizationItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfPersonAndOrganizationItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_Array1OfPersonAndOrganizationItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfPersonAndOrganizationItem.hxx diff --git a/src/StepAP214/StepAP214_Array1OfPresentedItemSelect.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfPresentedItemSelect.hxx similarity index 100% rename from src/StepAP214/StepAP214_Array1OfPresentedItemSelect.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfPresentedItemSelect.hxx diff --git a/src/StepAP214/StepAP214_Array1OfSecurityClassificationItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfSecurityClassificationItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_Array1OfSecurityClassificationItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_Array1OfSecurityClassificationItem.hxx diff --git a/src/StepAP214/StepAP214_AutoDesignActualDateAndTimeAssignment.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignActualDateAndTimeAssignment.cxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignActualDateAndTimeAssignment.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignActualDateAndTimeAssignment.cxx diff --git a/src/StepAP214/StepAP214_AutoDesignActualDateAndTimeAssignment.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignActualDateAndTimeAssignment.hxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignActualDateAndTimeAssignment.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignActualDateAndTimeAssignment.hxx diff --git a/src/StepAP214/StepAP214_AutoDesignActualDateAssignment.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignActualDateAssignment.cxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignActualDateAssignment.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignActualDateAssignment.cxx diff --git a/src/StepAP214/StepAP214_AutoDesignActualDateAssignment.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignActualDateAssignment.hxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignActualDateAssignment.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignActualDateAssignment.hxx diff --git a/src/StepAP214/StepAP214_AutoDesignApprovalAssignment.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignApprovalAssignment.cxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignApprovalAssignment.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignApprovalAssignment.cxx diff --git a/src/StepAP214/StepAP214_AutoDesignApprovalAssignment.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignApprovalAssignment.hxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignApprovalAssignment.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignApprovalAssignment.hxx diff --git a/src/StepAP214/StepAP214_AutoDesignDateAndPersonAssignment.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignDateAndPersonAssignment.cxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignDateAndPersonAssignment.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignDateAndPersonAssignment.cxx diff --git a/src/StepAP214/StepAP214_AutoDesignDateAndPersonAssignment.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignDateAndPersonAssignment.hxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignDateAndPersonAssignment.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignDateAndPersonAssignment.hxx diff --git a/src/StepAP214/StepAP214_AutoDesignDateAndPersonItem.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignDateAndPersonItem.cxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignDateAndPersonItem.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignDateAndPersonItem.cxx diff --git a/src/StepAP214/StepAP214_AutoDesignDateAndPersonItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignDateAndPersonItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignDateAndPersonItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignDateAndPersonItem.hxx diff --git a/src/StepAP214/StepAP214_AutoDesignDateAndTimeItem.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignDateAndTimeItem.cxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignDateAndTimeItem.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignDateAndTimeItem.cxx diff --git a/src/StepAP214/StepAP214_AutoDesignDateAndTimeItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignDateAndTimeItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignDateAndTimeItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignDateAndTimeItem.hxx diff --git a/src/StepAP214/StepAP214_AutoDesignDatedItem.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignDatedItem.cxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignDatedItem.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignDatedItem.cxx diff --git a/src/StepAP214/StepAP214_AutoDesignDatedItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignDatedItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignDatedItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignDatedItem.hxx diff --git a/src/StepAP214/StepAP214_AutoDesignDocumentReference.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignDocumentReference.cxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignDocumentReference.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignDocumentReference.cxx diff --git a/src/StepAP214/StepAP214_AutoDesignDocumentReference.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignDocumentReference.hxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignDocumentReference.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignDocumentReference.hxx diff --git a/src/StepAP214/StepAP214_AutoDesignGeneralOrgItem.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignGeneralOrgItem.cxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignGeneralOrgItem.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignGeneralOrgItem.cxx diff --git a/src/StepAP214/StepAP214_AutoDesignGeneralOrgItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignGeneralOrgItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignGeneralOrgItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignGeneralOrgItem.hxx diff --git a/src/StepAP214/StepAP214_AutoDesignGroupAssignment.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignGroupAssignment.cxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignGroupAssignment.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignGroupAssignment.cxx diff --git a/src/StepAP214/StepAP214_AutoDesignGroupAssignment.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignGroupAssignment.hxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignGroupAssignment.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignGroupAssignment.hxx diff --git a/src/StepAP214/StepAP214_AutoDesignGroupedItem.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignGroupedItem.cxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignGroupedItem.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignGroupedItem.cxx diff --git a/src/StepAP214/StepAP214_AutoDesignGroupedItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignGroupedItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignGroupedItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignGroupedItem.hxx diff --git a/src/StepAP214/StepAP214_AutoDesignNominalDateAndTimeAssignment.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignNominalDateAndTimeAssignment.cxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignNominalDateAndTimeAssignment.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignNominalDateAndTimeAssignment.cxx diff --git a/src/StepAP214/StepAP214_AutoDesignNominalDateAndTimeAssignment.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignNominalDateAndTimeAssignment.hxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignNominalDateAndTimeAssignment.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignNominalDateAndTimeAssignment.hxx diff --git a/src/StepAP214/StepAP214_AutoDesignNominalDateAssignment.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignNominalDateAssignment.cxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignNominalDateAssignment.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignNominalDateAssignment.cxx diff --git a/src/StepAP214/StepAP214_AutoDesignNominalDateAssignment.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignNominalDateAssignment.hxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignNominalDateAssignment.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignNominalDateAssignment.hxx diff --git a/src/StepAP214/StepAP214_AutoDesignOrganizationAssignment.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignOrganizationAssignment.cxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignOrganizationAssignment.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignOrganizationAssignment.cxx diff --git a/src/StepAP214/StepAP214_AutoDesignOrganizationAssignment.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignOrganizationAssignment.hxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignOrganizationAssignment.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignOrganizationAssignment.hxx diff --git a/src/StepAP214/StepAP214_AutoDesignOrganizationItem.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignOrganizationItem.cxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignOrganizationItem.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignOrganizationItem.cxx diff --git a/src/StepAP214/StepAP214_AutoDesignOrganizationItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignOrganizationItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignOrganizationItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignOrganizationItem.hxx diff --git a/src/StepAP214/StepAP214_AutoDesignPersonAndOrganizationAssignment.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignPersonAndOrganizationAssignment.cxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignPersonAndOrganizationAssignment.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignPersonAndOrganizationAssignment.cxx diff --git a/src/StepAP214/StepAP214_AutoDesignPersonAndOrganizationAssignment.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignPersonAndOrganizationAssignment.hxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignPersonAndOrganizationAssignment.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignPersonAndOrganizationAssignment.hxx diff --git a/src/StepAP214/StepAP214_AutoDesignPresentedItem.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignPresentedItem.cxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignPresentedItem.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignPresentedItem.cxx diff --git a/src/StepAP214/StepAP214_AutoDesignPresentedItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignPresentedItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignPresentedItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignPresentedItem.hxx diff --git a/src/StepAP214/StepAP214_AutoDesignPresentedItemSelect.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignPresentedItemSelect.cxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignPresentedItemSelect.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignPresentedItemSelect.cxx diff --git a/src/StepAP214/StepAP214_AutoDesignPresentedItemSelect.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignPresentedItemSelect.hxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignPresentedItemSelect.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignPresentedItemSelect.hxx diff --git a/src/StepAP214/StepAP214_AutoDesignReferencingItem.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignReferencingItem.cxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignReferencingItem.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignReferencingItem.cxx diff --git a/src/StepAP214/StepAP214_AutoDesignReferencingItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignReferencingItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignReferencingItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignReferencingItem.hxx diff --git a/src/StepAP214/StepAP214_AutoDesignSecurityClassificationAssignment.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignSecurityClassificationAssignment.cxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignSecurityClassificationAssignment.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignSecurityClassificationAssignment.cxx diff --git a/src/StepAP214/StepAP214_AutoDesignSecurityClassificationAssignment.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignSecurityClassificationAssignment.hxx similarity index 100% rename from src/StepAP214/StepAP214_AutoDesignSecurityClassificationAssignment.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_AutoDesignSecurityClassificationAssignment.hxx diff --git a/src/StepAP214/StepAP214_Class.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_Class.cxx similarity index 100% rename from src/StepAP214/StepAP214_Class.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_Class.cxx diff --git a/src/StepAP214/StepAP214_Class.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_Class.hxx similarity index 100% rename from src/StepAP214/StepAP214_Class.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_Class.hxx diff --git a/src/StepAP214/StepAP214_DateAndTimeItem.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_DateAndTimeItem.cxx similarity index 100% rename from src/StepAP214/StepAP214_DateAndTimeItem.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_DateAndTimeItem.cxx diff --git a/src/StepAP214/StepAP214_DateAndTimeItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_DateAndTimeItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_DateAndTimeItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_DateAndTimeItem.hxx diff --git a/src/StepAP214/StepAP214_DateItem.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_DateItem.cxx similarity index 100% rename from src/StepAP214/StepAP214_DateItem.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_DateItem.cxx diff --git a/src/StepAP214/StepAP214_DateItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_DateItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_DateItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_DateItem.hxx diff --git a/src/StepAP214/StepAP214_DocumentReferenceItem.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_DocumentReferenceItem.cxx similarity index 100% rename from src/StepAP214/StepAP214_DocumentReferenceItem.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_DocumentReferenceItem.cxx diff --git a/src/StepAP214/StepAP214_DocumentReferenceItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_DocumentReferenceItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_DocumentReferenceItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_DocumentReferenceItem.hxx diff --git a/src/StepAP214/StepAP214_ExternalIdentificationItem.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_ExternalIdentificationItem.cxx similarity index 100% rename from src/StepAP214/StepAP214_ExternalIdentificationItem.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_ExternalIdentificationItem.cxx diff --git a/src/StepAP214/StepAP214_ExternalIdentificationItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_ExternalIdentificationItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_ExternalIdentificationItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_ExternalIdentificationItem.hxx diff --git a/src/StepAP214/StepAP214_ExternallyDefinedClass.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_ExternallyDefinedClass.cxx similarity index 100% rename from src/StepAP214/StepAP214_ExternallyDefinedClass.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_ExternallyDefinedClass.cxx diff --git a/src/StepAP214/StepAP214_ExternallyDefinedClass.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_ExternallyDefinedClass.hxx similarity index 100% rename from src/StepAP214/StepAP214_ExternallyDefinedClass.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_ExternallyDefinedClass.hxx diff --git a/src/StepAP214/StepAP214_ExternallyDefinedGeneralProperty.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_ExternallyDefinedGeneralProperty.cxx similarity index 100% rename from src/StepAP214/StepAP214_ExternallyDefinedGeneralProperty.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_ExternallyDefinedGeneralProperty.cxx diff --git a/src/StepAP214/StepAP214_ExternallyDefinedGeneralProperty.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_ExternallyDefinedGeneralProperty.hxx similarity index 100% rename from src/StepAP214/StepAP214_ExternallyDefinedGeneralProperty.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_ExternallyDefinedGeneralProperty.hxx diff --git a/src/StepAP214/StepAP214_GroupItem.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_GroupItem.cxx similarity index 100% rename from src/StepAP214/StepAP214_GroupItem.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_GroupItem.cxx diff --git a/src/StepAP214/StepAP214_GroupItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_GroupItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_GroupItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_GroupItem.hxx diff --git a/src/StepAP214/StepAP214_HArray1OfApprovalItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfApprovalItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_HArray1OfApprovalItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfApprovalItem.hxx diff --git a/src/StepAP214/StepAP214_HArray1OfAutoDesignDateAndPersonItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfAutoDesignDateAndPersonItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_HArray1OfAutoDesignDateAndPersonItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfAutoDesignDateAndPersonItem.hxx diff --git a/src/StepAP214/StepAP214_HArray1OfAutoDesignDateAndTimeItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfAutoDesignDateAndTimeItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_HArray1OfAutoDesignDateAndTimeItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfAutoDesignDateAndTimeItem.hxx diff --git a/src/StepAP214/StepAP214_HArray1OfAutoDesignDatedItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfAutoDesignDatedItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_HArray1OfAutoDesignDatedItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfAutoDesignDatedItem.hxx diff --git a/src/StepAP214/StepAP214_HArray1OfAutoDesignGeneralOrgItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfAutoDesignGeneralOrgItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_HArray1OfAutoDesignGeneralOrgItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfAutoDesignGeneralOrgItem.hxx diff --git a/src/StepAP214/StepAP214_HArray1OfAutoDesignGroupedItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfAutoDesignGroupedItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_HArray1OfAutoDesignGroupedItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfAutoDesignGroupedItem.hxx diff --git a/src/StepAP214/StepAP214_HArray1OfAutoDesignPresentedItemSelect.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfAutoDesignPresentedItemSelect.hxx similarity index 100% rename from src/StepAP214/StepAP214_HArray1OfAutoDesignPresentedItemSelect.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfAutoDesignPresentedItemSelect.hxx diff --git a/src/StepAP214/StepAP214_HArray1OfAutoDesignReferencingItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfAutoDesignReferencingItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_HArray1OfAutoDesignReferencingItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfAutoDesignReferencingItem.hxx diff --git a/src/StepAP214/StepAP214_HArray1OfDateAndTimeItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfDateAndTimeItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_HArray1OfDateAndTimeItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfDateAndTimeItem.hxx diff --git a/src/StepAP214/StepAP214_HArray1OfDateItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfDateItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_HArray1OfDateItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfDateItem.hxx diff --git a/src/StepAP214/StepAP214_HArray1OfDocumentReferenceItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfDocumentReferenceItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_HArray1OfDocumentReferenceItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfDocumentReferenceItem.hxx diff --git a/src/StepAP214/StepAP214_HArray1OfExternalIdentificationItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfExternalIdentificationItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_HArray1OfExternalIdentificationItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfExternalIdentificationItem.hxx diff --git a/src/StepAP214/StepAP214_HArray1OfGroupItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfGroupItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_HArray1OfGroupItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfGroupItem.hxx diff --git a/src/StepAP214/StepAP214_HArray1OfOrganizationItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfOrganizationItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_HArray1OfOrganizationItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfOrganizationItem.hxx diff --git a/src/StepAP214/StepAP214_HArray1OfPersonAndOrganizationItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfPersonAndOrganizationItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_HArray1OfPersonAndOrganizationItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfPersonAndOrganizationItem.hxx diff --git a/src/StepAP214/StepAP214_HArray1OfPresentedItemSelect.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfPresentedItemSelect.hxx similarity index 100% rename from src/StepAP214/StepAP214_HArray1OfPresentedItemSelect.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfPresentedItemSelect.hxx diff --git a/src/StepAP214/StepAP214_HArray1OfSecurityClassificationItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfSecurityClassificationItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_HArray1OfSecurityClassificationItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_HArray1OfSecurityClassificationItem.hxx diff --git a/src/StepAP214/StepAP214_OrganizationItem.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_OrganizationItem.cxx similarity index 100% rename from src/StepAP214/StepAP214_OrganizationItem.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_OrganizationItem.cxx diff --git a/src/StepAP214/StepAP214_OrganizationItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_OrganizationItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_OrganizationItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_OrganizationItem.hxx diff --git a/src/StepAP214/StepAP214_PersonAndOrganizationItem.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_PersonAndOrganizationItem.cxx similarity index 100% rename from src/StepAP214/StepAP214_PersonAndOrganizationItem.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_PersonAndOrganizationItem.cxx diff --git a/src/StepAP214/StepAP214_PersonAndOrganizationItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_PersonAndOrganizationItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_PersonAndOrganizationItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_PersonAndOrganizationItem.hxx diff --git a/src/StepAP214/StepAP214_PresentedItemSelect.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_PresentedItemSelect.cxx similarity index 100% rename from src/StepAP214/StepAP214_PresentedItemSelect.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_PresentedItemSelect.cxx diff --git a/src/StepAP214/StepAP214_PresentedItemSelect.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_PresentedItemSelect.hxx similarity index 100% rename from src/StepAP214/StepAP214_PresentedItemSelect.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_PresentedItemSelect.hxx diff --git a/src/StepAP214/StepAP214_Protocol.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_Protocol.cxx similarity index 100% rename from src/StepAP214/StepAP214_Protocol.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_Protocol.cxx diff --git a/src/StepAP214/StepAP214_Protocol.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_Protocol.hxx similarity index 100% rename from src/StepAP214/StepAP214_Protocol.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_Protocol.hxx diff --git a/src/StepAP214/StepAP214_RepItemGroup.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_RepItemGroup.cxx similarity index 100% rename from src/StepAP214/StepAP214_RepItemGroup.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_RepItemGroup.cxx diff --git a/src/StepAP214/StepAP214_RepItemGroup.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_RepItemGroup.hxx similarity index 100% rename from src/StepAP214/StepAP214_RepItemGroup.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_RepItemGroup.hxx diff --git a/src/StepAP214/StepAP214_SecurityClassificationItem.cxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_SecurityClassificationItem.cxx similarity index 100% rename from src/StepAP214/StepAP214_SecurityClassificationItem.cxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_SecurityClassificationItem.cxx diff --git a/src/StepAP214/StepAP214_SecurityClassificationItem.hxx b/src/DataExchange/TKDESTEP/StepAP214/StepAP214_SecurityClassificationItem.hxx similarity index 100% rename from src/StepAP214/StepAP214_SecurityClassificationItem.hxx rename to src/DataExchange/TKDESTEP/StepAP214/StepAP214_SecurityClassificationItem.hxx diff --git a/src/DataExchange/TKDESTEP/StepAP242/FILES.cmake b/src/DataExchange/TKDESTEP/StepAP242/FILES.cmake new file mode 100644 index 0000000000..8b1d941085 --- /dev/null +++ b/src/DataExchange/TKDESTEP/StepAP242/FILES.cmake @@ -0,0 +1,17 @@ +# Source files for StepAP242 package +set(OCCT_StepAP242_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StepAP242_FILES + StepAP242_DraughtingModelItemAssociation.cxx + StepAP242_DraughtingModelItemAssociation.hxx + StepAP242_GeometricItemSpecificUsage.cxx + StepAP242_GeometricItemSpecificUsage.hxx + StepAP242_IdAttribute.cxx + StepAP242_IdAttribute.hxx + StepAP242_IdAttributeSelect.cxx + StepAP242_IdAttributeSelect.hxx + StepAP242_ItemIdentifiedRepresentationUsage.cxx + StepAP242_ItemIdentifiedRepresentationUsage.hxx + StepAP242_ItemIdentifiedRepresentationUsageDefinition.cxx + StepAP242_ItemIdentifiedRepresentationUsageDefinition.hxx +) diff --git a/src/StepAP242/StepAP242_DraughtingModelItemAssociation.cxx b/src/DataExchange/TKDESTEP/StepAP242/StepAP242_DraughtingModelItemAssociation.cxx similarity index 100% rename from src/StepAP242/StepAP242_DraughtingModelItemAssociation.cxx rename to src/DataExchange/TKDESTEP/StepAP242/StepAP242_DraughtingModelItemAssociation.cxx diff --git a/src/StepAP242/StepAP242_DraughtingModelItemAssociation.hxx b/src/DataExchange/TKDESTEP/StepAP242/StepAP242_DraughtingModelItemAssociation.hxx similarity index 100% rename from src/StepAP242/StepAP242_DraughtingModelItemAssociation.hxx rename to src/DataExchange/TKDESTEP/StepAP242/StepAP242_DraughtingModelItemAssociation.hxx diff --git a/src/StepAP242/StepAP242_GeometricItemSpecificUsage.cxx b/src/DataExchange/TKDESTEP/StepAP242/StepAP242_GeometricItemSpecificUsage.cxx similarity index 100% rename from src/StepAP242/StepAP242_GeometricItemSpecificUsage.cxx rename to src/DataExchange/TKDESTEP/StepAP242/StepAP242_GeometricItemSpecificUsage.cxx diff --git a/src/StepAP242/StepAP242_GeometricItemSpecificUsage.hxx b/src/DataExchange/TKDESTEP/StepAP242/StepAP242_GeometricItemSpecificUsage.hxx similarity index 100% rename from src/StepAP242/StepAP242_GeometricItemSpecificUsage.hxx rename to src/DataExchange/TKDESTEP/StepAP242/StepAP242_GeometricItemSpecificUsage.hxx diff --git a/src/StepAP242/StepAP242_IdAttribute.cxx b/src/DataExchange/TKDESTEP/StepAP242/StepAP242_IdAttribute.cxx similarity index 100% rename from src/StepAP242/StepAP242_IdAttribute.cxx rename to src/DataExchange/TKDESTEP/StepAP242/StepAP242_IdAttribute.cxx diff --git a/src/StepAP242/StepAP242_IdAttribute.hxx b/src/DataExchange/TKDESTEP/StepAP242/StepAP242_IdAttribute.hxx similarity index 100% rename from src/StepAP242/StepAP242_IdAttribute.hxx rename to src/DataExchange/TKDESTEP/StepAP242/StepAP242_IdAttribute.hxx diff --git a/src/StepAP242/StepAP242_IdAttributeSelect.cxx b/src/DataExchange/TKDESTEP/StepAP242/StepAP242_IdAttributeSelect.cxx similarity index 100% rename from src/StepAP242/StepAP242_IdAttributeSelect.cxx rename to src/DataExchange/TKDESTEP/StepAP242/StepAP242_IdAttributeSelect.cxx diff --git a/src/StepAP242/StepAP242_IdAttributeSelect.hxx b/src/DataExchange/TKDESTEP/StepAP242/StepAP242_IdAttributeSelect.hxx similarity index 100% rename from src/StepAP242/StepAP242_IdAttributeSelect.hxx rename to src/DataExchange/TKDESTEP/StepAP242/StepAP242_IdAttributeSelect.hxx diff --git a/src/StepAP242/StepAP242_ItemIdentifiedRepresentationUsage.cxx b/src/DataExchange/TKDESTEP/StepAP242/StepAP242_ItemIdentifiedRepresentationUsage.cxx similarity index 100% rename from src/StepAP242/StepAP242_ItemIdentifiedRepresentationUsage.cxx rename to src/DataExchange/TKDESTEP/StepAP242/StepAP242_ItemIdentifiedRepresentationUsage.cxx diff --git a/src/StepAP242/StepAP242_ItemIdentifiedRepresentationUsage.hxx b/src/DataExchange/TKDESTEP/StepAP242/StepAP242_ItemIdentifiedRepresentationUsage.hxx similarity index 100% rename from src/StepAP242/StepAP242_ItemIdentifiedRepresentationUsage.hxx rename to src/DataExchange/TKDESTEP/StepAP242/StepAP242_ItemIdentifiedRepresentationUsage.hxx diff --git a/src/StepAP242/StepAP242_ItemIdentifiedRepresentationUsageDefinition.cxx b/src/DataExchange/TKDESTEP/StepAP242/StepAP242_ItemIdentifiedRepresentationUsageDefinition.cxx similarity index 100% rename from src/StepAP242/StepAP242_ItemIdentifiedRepresentationUsageDefinition.cxx rename to src/DataExchange/TKDESTEP/StepAP242/StepAP242_ItemIdentifiedRepresentationUsageDefinition.cxx diff --git a/src/StepAP242/StepAP242_ItemIdentifiedRepresentationUsageDefinition.hxx b/src/DataExchange/TKDESTEP/StepAP242/StepAP242_ItemIdentifiedRepresentationUsageDefinition.hxx similarity index 100% rename from src/StepAP242/StepAP242_ItemIdentifiedRepresentationUsageDefinition.hxx rename to src/DataExchange/TKDESTEP/StepAP242/StepAP242_ItemIdentifiedRepresentationUsageDefinition.hxx diff --git a/src/DataExchange/TKDESTEP/StepBasic/FILES.cmake b/src/DataExchange/TKDESTEP/StepBasic/FILES.cmake new file mode 100644 index 0000000000..79ee9d06f4 --- /dev/null +++ b/src/DataExchange/TKDESTEP/StepBasic/FILES.cmake @@ -0,0 +1,317 @@ +# Source files for StepBasic package +set(OCCT_StepBasic_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StepBasic_FILES + StepBasic_Action.cxx + StepBasic_Action.hxx + StepBasic_ActionAssignment.cxx + StepBasic_ActionAssignment.hxx + StepBasic_ActionMethod.cxx + StepBasic_ActionMethod.hxx + StepBasic_ActionRequestAssignment.cxx + StepBasic_ActionRequestAssignment.hxx + StepBasic_ActionRequestSolution.cxx + StepBasic_ActionRequestSolution.hxx + StepBasic_Address.cxx + StepBasic_Address.hxx + StepBasic_AheadOrBehind.hxx + StepBasic_ApplicationContext.cxx + StepBasic_ApplicationContext.hxx + StepBasic_ApplicationContextElement.cxx + StepBasic_ApplicationContextElement.hxx + StepBasic_ApplicationProtocolDefinition.cxx + StepBasic_ApplicationProtocolDefinition.hxx + StepBasic_Approval.cxx + StepBasic_Approval.hxx + StepBasic_ApprovalAssignment.cxx + StepBasic_ApprovalAssignment.hxx + StepBasic_ApprovalDateTime.cxx + StepBasic_ApprovalDateTime.hxx + StepBasic_ApprovalPersonOrganization.cxx + StepBasic_ApprovalPersonOrganization.hxx + StepBasic_ApprovalRelationship.cxx + StepBasic_ApprovalRelationship.hxx + StepBasic_ApprovalRole.cxx + StepBasic_ApprovalRole.hxx + StepBasic_ApprovalStatus.cxx + StepBasic_ApprovalStatus.hxx + StepBasic_AreaUnit.cxx + StepBasic_AreaUnit.hxx + StepBasic_Array1OfApproval.hxx + StepBasic_Array1OfDerivedUnitElement.hxx + StepBasic_Array1OfDocument.hxx + StepBasic_Array1OfNamedUnit.hxx + StepBasic_Array1OfOrganization.hxx + StepBasic_Array1OfPerson.hxx + StepBasic_Array1OfProduct.hxx + StepBasic_Array1OfProductContext.hxx + StepBasic_Array1OfProductDefinition.hxx + StepBasic_Array1OfUncertaintyMeasureWithUnit.hxx + StepBasic_CalendarDate.cxx + StepBasic_CalendarDate.hxx + StepBasic_Certification.cxx + StepBasic_Certification.hxx + StepBasic_CertificationAssignment.cxx + StepBasic_CertificationAssignment.hxx + StepBasic_CertificationType.cxx + StepBasic_CertificationType.hxx + StepBasic_CharacterizedObject.cxx + StepBasic_CharacterizedObject.hxx + StepBasic_Contract.cxx + StepBasic_Contract.hxx + StepBasic_ContractAssignment.cxx + StepBasic_ContractAssignment.hxx + StepBasic_ContractType.cxx + StepBasic_ContractType.hxx + StepBasic_ConversionBasedUnit.cxx + StepBasic_ConversionBasedUnit.hxx + StepBasic_ConversionBasedUnitAndAreaUnit.cxx + StepBasic_ConversionBasedUnitAndAreaUnit.hxx + StepBasic_ConversionBasedUnitAndLengthUnit.cxx + StepBasic_ConversionBasedUnitAndLengthUnit.hxx + StepBasic_ConversionBasedUnitAndMassUnit.cxx + StepBasic_ConversionBasedUnitAndMassUnit.hxx + StepBasic_ConversionBasedUnitAndPlaneAngleUnit.cxx + StepBasic_ConversionBasedUnitAndPlaneAngleUnit.hxx + StepBasic_ConversionBasedUnitAndRatioUnit.cxx + StepBasic_ConversionBasedUnitAndRatioUnit.hxx + StepBasic_ConversionBasedUnitAndSolidAngleUnit.cxx + StepBasic_ConversionBasedUnitAndSolidAngleUnit.hxx + StepBasic_ConversionBasedUnitAndTimeUnit.cxx + StepBasic_ConversionBasedUnitAndTimeUnit.hxx + StepBasic_ConversionBasedUnitAndVolumeUnit.cxx + StepBasic_ConversionBasedUnitAndVolumeUnit.hxx + StepBasic_CoordinatedUniversalTimeOffset.cxx + StepBasic_CoordinatedUniversalTimeOffset.hxx + StepBasic_Date.cxx + StepBasic_Date.hxx + StepBasic_DateAndTime.cxx + StepBasic_DateAndTime.hxx + StepBasic_DateAndTimeAssignment.cxx + StepBasic_DateAndTimeAssignment.hxx + StepBasic_DateAssignment.cxx + StepBasic_DateAssignment.hxx + StepBasic_DateRole.cxx + StepBasic_DateRole.hxx + StepBasic_DateTimeRole.cxx + StepBasic_DateTimeRole.hxx + StepBasic_DateTimeSelect.cxx + StepBasic_DateTimeSelect.hxx + StepBasic_DerivedUnit.cxx + StepBasic_DerivedUnit.hxx + StepBasic_DerivedUnitElement.cxx + StepBasic_DerivedUnitElement.hxx + StepBasic_DesignContext.cxx + StepBasic_DesignContext.hxx + StepBasic_DigitalDocument.cxx + StepBasic_DigitalDocument.hxx + StepBasic_DimensionalExponents.cxx + StepBasic_DimensionalExponents.hxx + StepBasic_Document.cxx + StepBasic_Document.hxx + StepBasic_DocumentFile.cxx + StepBasic_DocumentFile.hxx + StepBasic_DocumentProductAssociation.cxx + StepBasic_DocumentProductAssociation.hxx + StepBasic_DocumentProductEquivalence.cxx + StepBasic_DocumentProductEquivalence.hxx + StepBasic_DocumentReference.cxx + StepBasic_DocumentReference.hxx + StepBasic_DocumentRelationship.cxx + StepBasic_DocumentRelationship.hxx + StepBasic_DocumentRepresentationType.cxx + StepBasic_DocumentRepresentationType.hxx + StepBasic_DocumentType.cxx + StepBasic_DocumentType.hxx + StepBasic_DocumentUsageConstraint.cxx + StepBasic_DocumentUsageConstraint.hxx + StepBasic_Effectivity.cxx + StepBasic_Effectivity.hxx + StepBasic_EffectivityAssignment.cxx + StepBasic_EffectivityAssignment.hxx + StepBasic_EulerAngles.cxx + StepBasic_EulerAngles.hxx + StepBasic_ExternalIdentificationAssignment.cxx + StepBasic_ExternalIdentificationAssignment.hxx + StepBasic_ExternallyDefinedItem.cxx + StepBasic_ExternallyDefinedItem.hxx + StepBasic_ExternalSource.cxx + StepBasic_ExternalSource.hxx + StepBasic_GeneralProperty.cxx + StepBasic_GeneralProperty.hxx + StepBasic_GeneralPropertyAssociation.cxx + StepBasic_GeneralPropertyAssociation.hxx + StepBasic_GeneralPropertyRelationship.cxx + StepBasic_GeneralPropertyRelationship.hxx + StepBasic_Group.cxx + StepBasic_Group.hxx + StepBasic_GroupAssignment.cxx + StepBasic_GroupAssignment.hxx + StepBasic_GroupRelationship.cxx + StepBasic_GroupRelationship.hxx + StepBasic_HArray1OfApproval.hxx + StepBasic_HArray1OfDerivedUnitElement.hxx + StepBasic_HArray1OfDocument.hxx + StepBasic_HArray1OfNamedUnit.hxx + StepBasic_HArray1OfOrganization.hxx + StepBasic_HArray1OfPerson.hxx + StepBasic_HArray1OfProduct.hxx + StepBasic_HArray1OfProductContext.hxx + StepBasic_HArray1OfProductDefinition.hxx + StepBasic_HArray1OfUncertaintyMeasureWithUnit.hxx + StepBasic_IdentificationAssignment.cxx + StepBasic_IdentificationAssignment.hxx + StepBasic_IdentificationRole.cxx + StepBasic_IdentificationRole.hxx + StepBasic_LengthMeasureWithUnit.cxx + StepBasic_LengthMeasureWithUnit.hxx + StepBasic_LengthUnit.cxx + StepBasic_LengthUnit.hxx + StepBasic_LocalTime.cxx + StepBasic_LocalTime.hxx + StepBasic_MassMeasureWithUnit.cxx + StepBasic_MassMeasureWithUnit.hxx + StepBasic_MassUnit.cxx + StepBasic_MassUnit.hxx + StepBasic_MeasureValueMember.cxx + StepBasic_MeasureValueMember.hxx + StepBasic_MeasureWithUnit.cxx + StepBasic_MeasureWithUnit.hxx + StepBasic_MechanicalContext.cxx + StepBasic_MechanicalContext.hxx + StepBasic_NameAssignment.cxx + StepBasic_NameAssignment.hxx + StepBasic_NamedUnit.cxx + StepBasic_NamedUnit.hxx + StepBasic_ObjectRole.cxx + StepBasic_ObjectRole.hxx + StepBasic_OrdinalDate.cxx + StepBasic_OrdinalDate.hxx + StepBasic_Organization.cxx + StepBasic_Organization.hxx + StepBasic_OrganizationalAddress.cxx + StepBasic_OrganizationalAddress.hxx + StepBasic_OrganizationAssignment.cxx + StepBasic_OrganizationAssignment.hxx + StepBasic_OrganizationRole.cxx + StepBasic_OrganizationRole.hxx + StepBasic_Person.cxx + StepBasic_Person.hxx + StepBasic_PersonalAddress.cxx + StepBasic_PersonalAddress.hxx + StepBasic_PersonAndOrganization.cxx + StepBasic_PersonAndOrganization.hxx + StepBasic_PersonAndOrganizationAssignment.cxx + StepBasic_PersonAndOrganizationAssignment.hxx + StepBasic_PersonAndOrganizationRole.cxx + StepBasic_PersonAndOrganizationRole.hxx + StepBasic_PersonOrganizationSelect.cxx + StepBasic_PersonOrganizationSelect.hxx + StepBasic_PhysicallyModeledProductDefinition.cxx + StepBasic_PhysicallyModeledProductDefinition.hxx + StepBasic_PlaneAngleMeasureWithUnit.cxx + StepBasic_PlaneAngleMeasureWithUnit.hxx + StepBasic_PlaneAngleUnit.cxx + StepBasic_PlaneAngleUnit.hxx + StepBasic_Product.cxx + StepBasic_Product.hxx + StepBasic_ProductCategory.cxx + StepBasic_ProductCategory.hxx + StepBasic_ProductCategoryRelationship.cxx + StepBasic_ProductCategoryRelationship.hxx + StepBasic_ProductConceptContext.cxx + StepBasic_ProductConceptContext.hxx + StepBasic_ProductContext.cxx + StepBasic_ProductContext.hxx + StepBasic_ProductDefinition.cxx + StepBasic_ProductDefinition.hxx + StepBasic_ProductDefinitionContext.cxx + StepBasic_ProductDefinitionContext.hxx + StepBasic_ProductDefinitionEffectivity.cxx + StepBasic_ProductDefinitionEffectivity.hxx + StepBasic_ProductDefinitionFormation.cxx + StepBasic_ProductDefinitionFormation.hxx + StepBasic_ProductDefinitionFormationRelationship.cxx + StepBasic_ProductDefinitionFormationRelationship.hxx + StepBasic_ProductDefinitionFormationWithSpecifiedSource.cxx + StepBasic_ProductDefinitionFormationWithSpecifiedSource.hxx + StepBasic_ProductDefinitionOrReference.cxx + StepBasic_ProductDefinitionOrReference.hxx + StepBasic_ProductDefinitionReference.cxx + StepBasic_ProductDefinitionReference.hxx + StepBasic_ProductDefinitionReferenceWithLocalRepresentation.cxx + StepBasic_ProductDefinitionReferenceWithLocalRepresentation.hxx + StepBasic_ProductDefinitionRelationship.cxx + StepBasic_ProductDefinitionRelationship.hxx + StepBasic_ProductDefinitionWithAssociatedDocuments.cxx + StepBasic_ProductDefinitionWithAssociatedDocuments.hxx + StepBasic_ProductOrFormationOrDefinition.cxx + StepBasic_ProductOrFormationOrDefinition.hxx + StepBasic_ProductRelatedProductCategory.cxx + StepBasic_ProductRelatedProductCategory.hxx + StepBasic_ProductType.cxx + StepBasic_ProductType.hxx + StepBasic_RatioMeasureWithUnit.cxx + StepBasic_RatioMeasureWithUnit.hxx + StepBasic_RatioUnit.cxx + StepBasic_RatioUnit.hxx + StepBasic_RoleAssociation.cxx + StepBasic_RoleAssociation.hxx + StepBasic_RoleSelect.cxx + StepBasic_RoleSelect.hxx + StepBasic_SecurityClassification.cxx + StepBasic_SecurityClassification.hxx + StepBasic_SecurityClassificationAssignment.cxx + StepBasic_SecurityClassificationAssignment.hxx + StepBasic_SecurityClassificationLevel.cxx + StepBasic_SecurityClassificationLevel.hxx + StepBasic_SiPrefix.hxx + StepBasic_SiUnit.cxx + StepBasic_SiUnit.hxx + StepBasic_SiUnitAndAreaUnit.cxx + StepBasic_SiUnitAndAreaUnit.hxx + StepBasic_SiUnitAndLengthUnit.cxx + StepBasic_SiUnitAndLengthUnit.hxx + StepBasic_SiUnitAndMassUnit.cxx + StepBasic_SiUnitAndMassUnit.hxx + StepBasic_SiUnitAndPlaneAngleUnit.cxx + StepBasic_SiUnitAndPlaneAngleUnit.hxx + StepBasic_SiUnitAndRatioUnit.cxx + StepBasic_SiUnitAndRatioUnit.hxx + StepBasic_SiUnitAndSolidAngleUnit.cxx + StepBasic_SiUnitAndSolidAngleUnit.hxx + StepBasic_SiUnitAndThermodynamicTemperatureUnit.cxx + StepBasic_SiUnitAndThermodynamicTemperatureUnit.hxx + StepBasic_SiUnitAndTimeUnit.cxx + StepBasic_SiUnitAndTimeUnit.hxx + StepBasic_SiUnitAndVolumeUnit.cxx + StepBasic_SiUnitAndVolumeUnit.hxx + StepBasic_SiUnitName.hxx + StepBasic_SizeMember.cxx + StepBasic_SizeMember.hxx + StepBasic_SizeSelect.cxx + StepBasic_SizeSelect.hxx + StepBasic_SolidAngleMeasureWithUnit.cxx + StepBasic_SolidAngleMeasureWithUnit.hxx + StepBasic_SolidAngleUnit.cxx + StepBasic_SolidAngleUnit.hxx + StepBasic_Source.hxx + StepBasic_SourceItem.cxx + StepBasic_SourceItem.hxx + StepBasic_ThermodynamicTemperatureUnit.cxx + StepBasic_ThermodynamicTemperatureUnit.hxx + StepBasic_TimeMeasureWithUnit.cxx + StepBasic_TimeMeasureWithUnit.hxx + StepBasic_TimeUnit.cxx + StepBasic_TimeUnit.hxx + StepBasic_UncertaintyMeasureWithUnit.cxx + StepBasic_UncertaintyMeasureWithUnit.hxx + StepBasic_Unit.cxx + StepBasic_Unit.hxx + StepBasic_VersionedActionRequest.cxx + StepBasic_VersionedActionRequest.hxx + StepBasic_VolumeUnit.cxx + StepBasic_VolumeUnit.hxx + StepBasic_WeekOfYearAndDayDate.cxx + StepBasic_WeekOfYearAndDayDate.hxx +) diff --git a/src/StepBasic/StepBasic_Action.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Action.cxx similarity index 100% rename from src/StepBasic/StepBasic_Action.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Action.cxx diff --git a/src/StepBasic/StepBasic_Action.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Action.hxx similarity index 100% rename from src/StepBasic/StepBasic_Action.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Action.hxx diff --git a/src/StepBasic/StepBasic_ActionAssignment.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ActionAssignment.cxx similarity index 100% rename from src/StepBasic/StepBasic_ActionAssignment.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ActionAssignment.cxx diff --git a/src/StepBasic/StepBasic_ActionAssignment.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ActionAssignment.hxx similarity index 100% rename from src/StepBasic/StepBasic_ActionAssignment.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ActionAssignment.hxx diff --git a/src/StepBasic/StepBasic_ActionMethod.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ActionMethod.cxx similarity index 100% rename from src/StepBasic/StepBasic_ActionMethod.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ActionMethod.cxx diff --git a/src/StepBasic/StepBasic_ActionMethod.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ActionMethod.hxx similarity index 100% rename from src/StepBasic/StepBasic_ActionMethod.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ActionMethod.hxx diff --git a/src/StepBasic/StepBasic_ActionRequestAssignment.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ActionRequestAssignment.cxx similarity index 100% rename from src/StepBasic/StepBasic_ActionRequestAssignment.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ActionRequestAssignment.cxx diff --git a/src/StepBasic/StepBasic_ActionRequestAssignment.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ActionRequestAssignment.hxx similarity index 100% rename from src/StepBasic/StepBasic_ActionRequestAssignment.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ActionRequestAssignment.hxx diff --git a/src/StepBasic/StepBasic_ActionRequestSolution.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ActionRequestSolution.cxx similarity index 100% rename from src/StepBasic/StepBasic_ActionRequestSolution.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ActionRequestSolution.cxx diff --git a/src/StepBasic/StepBasic_ActionRequestSolution.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ActionRequestSolution.hxx similarity index 100% rename from src/StepBasic/StepBasic_ActionRequestSolution.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ActionRequestSolution.hxx diff --git a/src/StepBasic/StepBasic_Address.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Address.cxx similarity index 100% rename from src/StepBasic/StepBasic_Address.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Address.cxx diff --git a/src/StepBasic/StepBasic_Address.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Address.hxx similarity index 100% rename from src/StepBasic/StepBasic_Address.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Address.hxx diff --git a/src/StepBasic/StepBasic_AheadOrBehind.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_AheadOrBehind.hxx similarity index 100% rename from src/StepBasic/StepBasic_AheadOrBehind.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_AheadOrBehind.hxx diff --git a/src/StepBasic/StepBasic_ApplicationContext.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApplicationContext.cxx similarity index 100% rename from src/StepBasic/StepBasic_ApplicationContext.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApplicationContext.cxx diff --git a/src/StepBasic/StepBasic_ApplicationContext.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApplicationContext.hxx similarity index 100% rename from src/StepBasic/StepBasic_ApplicationContext.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApplicationContext.hxx diff --git a/src/StepBasic/StepBasic_ApplicationContextElement.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApplicationContextElement.cxx similarity index 100% rename from src/StepBasic/StepBasic_ApplicationContextElement.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApplicationContextElement.cxx diff --git a/src/StepBasic/StepBasic_ApplicationContextElement.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApplicationContextElement.hxx similarity index 100% rename from src/StepBasic/StepBasic_ApplicationContextElement.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApplicationContextElement.hxx diff --git a/src/StepBasic/StepBasic_ApplicationProtocolDefinition.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApplicationProtocolDefinition.cxx similarity index 100% rename from src/StepBasic/StepBasic_ApplicationProtocolDefinition.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApplicationProtocolDefinition.cxx diff --git a/src/StepBasic/StepBasic_ApplicationProtocolDefinition.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApplicationProtocolDefinition.hxx similarity index 100% rename from src/StepBasic/StepBasic_ApplicationProtocolDefinition.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApplicationProtocolDefinition.hxx diff --git a/src/StepBasic/StepBasic_Approval.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Approval.cxx similarity index 100% rename from src/StepBasic/StepBasic_Approval.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Approval.cxx diff --git a/src/StepBasic/StepBasic_Approval.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Approval.hxx similarity index 100% rename from src/StepBasic/StepBasic_Approval.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Approval.hxx diff --git a/src/StepBasic/StepBasic_ApprovalAssignment.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApprovalAssignment.cxx similarity index 100% rename from src/StepBasic/StepBasic_ApprovalAssignment.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApprovalAssignment.cxx diff --git a/src/StepBasic/StepBasic_ApprovalAssignment.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApprovalAssignment.hxx similarity index 100% rename from src/StepBasic/StepBasic_ApprovalAssignment.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApprovalAssignment.hxx diff --git a/src/StepBasic/StepBasic_ApprovalDateTime.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApprovalDateTime.cxx similarity index 100% rename from src/StepBasic/StepBasic_ApprovalDateTime.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApprovalDateTime.cxx diff --git a/src/StepBasic/StepBasic_ApprovalDateTime.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApprovalDateTime.hxx similarity index 100% rename from src/StepBasic/StepBasic_ApprovalDateTime.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApprovalDateTime.hxx diff --git a/src/StepBasic/StepBasic_ApprovalPersonOrganization.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApprovalPersonOrganization.cxx similarity index 100% rename from src/StepBasic/StepBasic_ApprovalPersonOrganization.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApprovalPersonOrganization.cxx diff --git a/src/StepBasic/StepBasic_ApprovalPersonOrganization.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApprovalPersonOrganization.hxx similarity index 100% rename from src/StepBasic/StepBasic_ApprovalPersonOrganization.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApprovalPersonOrganization.hxx diff --git a/src/StepBasic/StepBasic_ApprovalRelationship.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApprovalRelationship.cxx similarity index 100% rename from src/StepBasic/StepBasic_ApprovalRelationship.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApprovalRelationship.cxx diff --git a/src/StepBasic/StepBasic_ApprovalRelationship.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApprovalRelationship.hxx similarity index 100% rename from src/StepBasic/StepBasic_ApprovalRelationship.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApprovalRelationship.hxx diff --git a/src/StepBasic/StepBasic_ApprovalRole.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApprovalRole.cxx similarity index 100% rename from src/StepBasic/StepBasic_ApprovalRole.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApprovalRole.cxx diff --git a/src/StepBasic/StepBasic_ApprovalRole.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApprovalRole.hxx similarity index 100% rename from src/StepBasic/StepBasic_ApprovalRole.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApprovalRole.hxx diff --git a/src/StepBasic/StepBasic_ApprovalStatus.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApprovalStatus.cxx similarity index 100% rename from src/StepBasic/StepBasic_ApprovalStatus.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApprovalStatus.cxx diff --git a/src/StepBasic/StepBasic_ApprovalStatus.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApprovalStatus.hxx similarity index 100% rename from src/StepBasic/StepBasic_ApprovalStatus.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ApprovalStatus.hxx diff --git a/src/StepBasic/StepBasic_AreaUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_AreaUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_AreaUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_AreaUnit.cxx diff --git a/src/StepBasic/StepBasic_AreaUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_AreaUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_AreaUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_AreaUnit.hxx diff --git a/src/StepBasic/StepBasic_Array1OfApproval.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Array1OfApproval.hxx similarity index 100% rename from src/StepBasic/StepBasic_Array1OfApproval.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Array1OfApproval.hxx diff --git a/src/StepBasic/StepBasic_Array1OfDerivedUnitElement.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Array1OfDerivedUnitElement.hxx similarity index 100% rename from src/StepBasic/StepBasic_Array1OfDerivedUnitElement.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Array1OfDerivedUnitElement.hxx diff --git a/src/StepBasic/StepBasic_Array1OfDocument.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Array1OfDocument.hxx similarity index 100% rename from src/StepBasic/StepBasic_Array1OfDocument.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Array1OfDocument.hxx diff --git a/src/StepBasic/StepBasic_Array1OfNamedUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Array1OfNamedUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_Array1OfNamedUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Array1OfNamedUnit.hxx diff --git a/src/StepBasic/StepBasic_Array1OfOrganization.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Array1OfOrganization.hxx similarity index 100% rename from src/StepBasic/StepBasic_Array1OfOrganization.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Array1OfOrganization.hxx diff --git a/src/StepBasic/StepBasic_Array1OfPerson.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Array1OfPerson.hxx similarity index 100% rename from src/StepBasic/StepBasic_Array1OfPerson.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Array1OfPerson.hxx diff --git a/src/StepBasic/StepBasic_Array1OfProduct.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Array1OfProduct.hxx similarity index 100% rename from src/StepBasic/StepBasic_Array1OfProduct.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Array1OfProduct.hxx diff --git a/src/StepBasic/StepBasic_Array1OfProductContext.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Array1OfProductContext.hxx similarity index 100% rename from src/StepBasic/StepBasic_Array1OfProductContext.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Array1OfProductContext.hxx diff --git a/src/StepBasic/StepBasic_Array1OfProductDefinition.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Array1OfProductDefinition.hxx similarity index 100% rename from src/StepBasic/StepBasic_Array1OfProductDefinition.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Array1OfProductDefinition.hxx diff --git a/src/StepBasic/StepBasic_Array1OfUncertaintyMeasureWithUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Array1OfUncertaintyMeasureWithUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_Array1OfUncertaintyMeasureWithUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Array1OfUncertaintyMeasureWithUnit.hxx diff --git a/src/StepBasic/StepBasic_CalendarDate.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_CalendarDate.cxx similarity index 100% rename from src/StepBasic/StepBasic_CalendarDate.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_CalendarDate.cxx diff --git a/src/StepBasic/StepBasic_CalendarDate.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_CalendarDate.hxx similarity index 100% rename from src/StepBasic/StepBasic_CalendarDate.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_CalendarDate.hxx diff --git a/src/StepBasic/StepBasic_Certification.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Certification.cxx similarity index 100% rename from src/StepBasic/StepBasic_Certification.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Certification.cxx diff --git a/src/StepBasic/StepBasic_Certification.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Certification.hxx similarity index 100% rename from src/StepBasic/StepBasic_Certification.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Certification.hxx diff --git a/src/StepBasic/StepBasic_CertificationAssignment.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_CertificationAssignment.cxx similarity index 100% rename from src/StepBasic/StepBasic_CertificationAssignment.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_CertificationAssignment.cxx diff --git a/src/StepBasic/StepBasic_CertificationAssignment.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_CertificationAssignment.hxx similarity index 100% rename from src/StepBasic/StepBasic_CertificationAssignment.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_CertificationAssignment.hxx diff --git a/src/StepBasic/StepBasic_CertificationType.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_CertificationType.cxx similarity index 100% rename from src/StepBasic/StepBasic_CertificationType.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_CertificationType.cxx diff --git a/src/StepBasic/StepBasic_CertificationType.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_CertificationType.hxx similarity index 100% rename from src/StepBasic/StepBasic_CertificationType.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_CertificationType.hxx diff --git a/src/StepBasic/StepBasic_CharacterizedObject.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_CharacterizedObject.cxx similarity index 100% rename from src/StepBasic/StepBasic_CharacterizedObject.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_CharacterizedObject.cxx diff --git a/src/StepBasic/StepBasic_CharacterizedObject.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_CharacterizedObject.hxx similarity index 100% rename from src/StepBasic/StepBasic_CharacterizedObject.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_CharacterizedObject.hxx diff --git a/src/StepBasic/StepBasic_Contract.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Contract.cxx similarity index 100% rename from src/StepBasic/StepBasic_Contract.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Contract.cxx diff --git a/src/StepBasic/StepBasic_Contract.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Contract.hxx similarity index 100% rename from src/StepBasic/StepBasic_Contract.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Contract.hxx diff --git a/src/StepBasic/StepBasic_ContractAssignment.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ContractAssignment.cxx similarity index 100% rename from src/StepBasic/StepBasic_ContractAssignment.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ContractAssignment.cxx diff --git a/src/StepBasic/StepBasic_ContractAssignment.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ContractAssignment.hxx similarity index 100% rename from src/StepBasic/StepBasic_ContractAssignment.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ContractAssignment.hxx diff --git a/src/StepBasic/StepBasic_ContractType.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ContractType.cxx similarity index 100% rename from src/StepBasic/StepBasic_ContractType.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ContractType.cxx diff --git a/src/StepBasic/StepBasic_ContractType.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ContractType.hxx similarity index 100% rename from src/StepBasic/StepBasic_ContractType.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ContractType.hxx diff --git a/src/StepBasic/StepBasic_ConversionBasedUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_ConversionBasedUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnit.cxx diff --git a/src/StepBasic/StepBasic_ConversionBasedUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_ConversionBasedUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnit.hxx diff --git a/src/StepBasic/StepBasic_ConversionBasedUnitAndAreaUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndAreaUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_ConversionBasedUnitAndAreaUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndAreaUnit.cxx diff --git a/src/StepBasic/StepBasic_ConversionBasedUnitAndAreaUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndAreaUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_ConversionBasedUnitAndAreaUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndAreaUnit.hxx diff --git a/src/StepBasic/StepBasic_ConversionBasedUnitAndLengthUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndLengthUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_ConversionBasedUnitAndLengthUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndLengthUnit.cxx diff --git a/src/StepBasic/StepBasic_ConversionBasedUnitAndLengthUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndLengthUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_ConversionBasedUnitAndLengthUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndLengthUnit.hxx diff --git a/src/StepBasic/StepBasic_ConversionBasedUnitAndMassUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndMassUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_ConversionBasedUnitAndMassUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndMassUnit.cxx diff --git a/src/StepBasic/StepBasic_ConversionBasedUnitAndMassUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndMassUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_ConversionBasedUnitAndMassUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndMassUnit.hxx diff --git a/src/StepBasic/StepBasic_ConversionBasedUnitAndPlaneAngleUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndPlaneAngleUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_ConversionBasedUnitAndPlaneAngleUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndPlaneAngleUnit.cxx diff --git a/src/StepBasic/StepBasic_ConversionBasedUnitAndPlaneAngleUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndPlaneAngleUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_ConversionBasedUnitAndPlaneAngleUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndPlaneAngleUnit.hxx diff --git a/src/StepBasic/StepBasic_ConversionBasedUnitAndRatioUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndRatioUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_ConversionBasedUnitAndRatioUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndRatioUnit.cxx diff --git a/src/StepBasic/StepBasic_ConversionBasedUnitAndRatioUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndRatioUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_ConversionBasedUnitAndRatioUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndRatioUnit.hxx diff --git a/src/StepBasic/StepBasic_ConversionBasedUnitAndSolidAngleUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndSolidAngleUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_ConversionBasedUnitAndSolidAngleUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndSolidAngleUnit.cxx diff --git a/src/StepBasic/StepBasic_ConversionBasedUnitAndSolidAngleUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndSolidAngleUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_ConversionBasedUnitAndSolidAngleUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndSolidAngleUnit.hxx diff --git a/src/StepBasic/StepBasic_ConversionBasedUnitAndTimeUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndTimeUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_ConversionBasedUnitAndTimeUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndTimeUnit.cxx diff --git a/src/StepBasic/StepBasic_ConversionBasedUnitAndTimeUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndTimeUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_ConversionBasedUnitAndTimeUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndTimeUnit.hxx diff --git a/src/StepBasic/StepBasic_ConversionBasedUnitAndVolumeUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndVolumeUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_ConversionBasedUnitAndVolumeUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndVolumeUnit.cxx diff --git a/src/StepBasic/StepBasic_ConversionBasedUnitAndVolumeUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndVolumeUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_ConversionBasedUnitAndVolumeUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ConversionBasedUnitAndVolumeUnit.hxx diff --git a/src/StepBasic/StepBasic_CoordinatedUniversalTimeOffset.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_CoordinatedUniversalTimeOffset.cxx similarity index 100% rename from src/StepBasic/StepBasic_CoordinatedUniversalTimeOffset.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_CoordinatedUniversalTimeOffset.cxx diff --git a/src/StepBasic/StepBasic_CoordinatedUniversalTimeOffset.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_CoordinatedUniversalTimeOffset.hxx similarity index 100% rename from src/StepBasic/StepBasic_CoordinatedUniversalTimeOffset.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_CoordinatedUniversalTimeOffset.hxx diff --git a/src/StepBasic/StepBasic_Date.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Date.cxx similarity index 100% rename from src/StepBasic/StepBasic_Date.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Date.cxx diff --git a/src/StepBasic/StepBasic_Date.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Date.hxx similarity index 100% rename from src/StepBasic/StepBasic_Date.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Date.hxx diff --git a/src/StepBasic/StepBasic_DateAndTime.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DateAndTime.cxx similarity index 100% rename from src/StepBasic/StepBasic_DateAndTime.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DateAndTime.cxx diff --git a/src/StepBasic/StepBasic_DateAndTime.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DateAndTime.hxx similarity index 100% rename from src/StepBasic/StepBasic_DateAndTime.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DateAndTime.hxx diff --git a/src/StepBasic/StepBasic_DateAndTimeAssignment.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DateAndTimeAssignment.cxx similarity index 100% rename from src/StepBasic/StepBasic_DateAndTimeAssignment.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DateAndTimeAssignment.cxx diff --git a/src/StepBasic/StepBasic_DateAndTimeAssignment.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DateAndTimeAssignment.hxx similarity index 100% rename from src/StepBasic/StepBasic_DateAndTimeAssignment.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DateAndTimeAssignment.hxx diff --git a/src/StepBasic/StepBasic_DateAssignment.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DateAssignment.cxx similarity index 100% rename from src/StepBasic/StepBasic_DateAssignment.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DateAssignment.cxx diff --git a/src/StepBasic/StepBasic_DateAssignment.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DateAssignment.hxx similarity index 100% rename from src/StepBasic/StepBasic_DateAssignment.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DateAssignment.hxx diff --git a/src/StepBasic/StepBasic_DateRole.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DateRole.cxx similarity index 100% rename from src/StepBasic/StepBasic_DateRole.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DateRole.cxx diff --git a/src/StepBasic/StepBasic_DateRole.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DateRole.hxx similarity index 100% rename from src/StepBasic/StepBasic_DateRole.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DateRole.hxx diff --git a/src/StepBasic/StepBasic_DateTimeRole.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DateTimeRole.cxx similarity index 100% rename from src/StepBasic/StepBasic_DateTimeRole.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DateTimeRole.cxx diff --git a/src/StepBasic/StepBasic_DateTimeRole.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DateTimeRole.hxx similarity index 100% rename from src/StepBasic/StepBasic_DateTimeRole.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DateTimeRole.hxx diff --git a/src/StepBasic/StepBasic_DateTimeSelect.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DateTimeSelect.cxx similarity index 100% rename from src/StepBasic/StepBasic_DateTimeSelect.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DateTimeSelect.cxx diff --git a/src/StepBasic/StepBasic_DateTimeSelect.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DateTimeSelect.hxx similarity index 100% rename from src/StepBasic/StepBasic_DateTimeSelect.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DateTimeSelect.hxx diff --git a/src/StepBasic/StepBasic_DerivedUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DerivedUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_DerivedUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DerivedUnit.cxx diff --git a/src/StepBasic/StepBasic_DerivedUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DerivedUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_DerivedUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DerivedUnit.hxx diff --git a/src/StepBasic/StepBasic_DerivedUnitElement.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DerivedUnitElement.cxx similarity index 100% rename from src/StepBasic/StepBasic_DerivedUnitElement.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DerivedUnitElement.cxx diff --git a/src/StepBasic/StepBasic_DerivedUnitElement.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DerivedUnitElement.hxx similarity index 100% rename from src/StepBasic/StepBasic_DerivedUnitElement.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DerivedUnitElement.hxx diff --git a/src/StepBasic/StepBasic_DesignContext.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DesignContext.cxx similarity index 100% rename from src/StepBasic/StepBasic_DesignContext.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DesignContext.cxx diff --git a/src/StepBasic/StepBasic_DesignContext.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DesignContext.hxx similarity index 100% rename from src/StepBasic/StepBasic_DesignContext.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DesignContext.hxx diff --git a/src/StepBasic/StepBasic_DigitalDocument.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DigitalDocument.cxx similarity index 100% rename from src/StepBasic/StepBasic_DigitalDocument.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DigitalDocument.cxx diff --git a/src/StepBasic/StepBasic_DigitalDocument.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DigitalDocument.hxx similarity index 100% rename from src/StepBasic/StepBasic_DigitalDocument.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DigitalDocument.hxx diff --git a/src/StepBasic/StepBasic_DimensionalExponents.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DimensionalExponents.cxx similarity index 100% rename from src/StepBasic/StepBasic_DimensionalExponents.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DimensionalExponents.cxx diff --git a/src/StepBasic/StepBasic_DimensionalExponents.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DimensionalExponents.hxx similarity index 100% rename from src/StepBasic/StepBasic_DimensionalExponents.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DimensionalExponents.hxx diff --git a/src/StepBasic/StepBasic_Document.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Document.cxx similarity index 100% rename from src/StepBasic/StepBasic_Document.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Document.cxx diff --git a/src/StepBasic/StepBasic_Document.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Document.hxx similarity index 100% rename from src/StepBasic/StepBasic_Document.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Document.hxx diff --git a/src/StepBasic/StepBasic_DocumentFile.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentFile.cxx similarity index 100% rename from src/StepBasic/StepBasic_DocumentFile.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentFile.cxx diff --git a/src/StepBasic/StepBasic_DocumentFile.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentFile.hxx similarity index 100% rename from src/StepBasic/StepBasic_DocumentFile.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentFile.hxx diff --git a/src/StepBasic/StepBasic_DocumentProductAssociation.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentProductAssociation.cxx similarity index 100% rename from src/StepBasic/StepBasic_DocumentProductAssociation.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentProductAssociation.cxx diff --git a/src/StepBasic/StepBasic_DocumentProductAssociation.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentProductAssociation.hxx similarity index 100% rename from src/StepBasic/StepBasic_DocumentProductAssociation.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentProductAssociation.hxx diff --git a/src/StepBasic/StepBasic_DocumentProductEquivalence.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentProductEquivalence.cxx similarity index 100% rename from src/StepBasic/StepBasic_DocumentProductEquivalence.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentProductEquivalence.cxx diff --git a/src/StepBasic/StepBasic_DocumentProductEquivalence.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentProductEquivalence.hxx similarity index 100% rename from src/StepBasic/StepBasic_DocumentProductEquivalence.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentProductEquivalence.hxx diff --git a/src/StepBasic/StepBasic_DocumentReference.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentReference.cxx similarity index 100% rename from src/StepBasic/StepBasic_DocumentReference.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentReference.cxx diff --git a/src/StepBasic/StepBasic_DocumentReference.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentReference.hxx similarity index 100% rename from src/StepBasic/StepBasic_DocumentReference.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentReference.hxx diff --git a/src/StepBasic/StepBasic_DocumentRelationship.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentRelationship.cxx similarity index 100% rename from src/StepBasic/StepBasic_DocumentRelationship.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentRelationship.cxx diff --git a/src/StepBasic/StepBasic_DocumentRelationship.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentRelationship.hxx similarity index 100% rename from src/StepBasic/StepBasic_DocumentRelationship.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentRelationship.hxx diff --git a/src/StepBasic/StepBasic_DocumentRepresentationType.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentRepresentationType.cxx similarity index 100% rename from src/StepBasic/StepBasic_DocumentRepresentationType.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentRepresentationType.cxx diff --git a/src/StepBasic/StepBasic_DocumentRepresentationType.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentRepresentationType.hxx similarity index 100% rename from src/StepBasic/StepBasic_DocumentRepresentationType.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentRepresentationType.hxx diff --git a/src/StepBasic/StepBasic_DocumentType.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentType.cxx similarity index 100% rename from src/StepBasic/StepBasic_DocumentType.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentType.cxx diff --git a/src/StepBasic/StepBasic_DocumentType.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentType.hxx similarity index 100% rename from src/StepBasic/StepBasic_DocumentType.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentType.hxx diff --git a/src/StepBasic/StepBasic_DocumentUsageConstraint.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentUsageConstraint.cxx similarity index 100% rename from src/StepBasic/StepBasic_DocumentUsageConstraint.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentUsageConstraint.cxx diff --git a/src/StepBasic/StepBasic_DocumentUsageConstraint.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentUsageConstraint.hxx similarity index 100% rename from src/StepBasic/StepBasic_DocumentUsageConstraint.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_DocumentUsageConstraint.hxx diff --git a/src/StepBasic/StepBasic_Effectivity.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Effectivity.cxx similarity index 100% rename from src/StepBasic/StepBasic_Effectivity.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Effectivity.cxx diff --git a/src/StepBasic/StepBasic_Effectivity.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Effectivity.hxx similarity index 100% rename from src/StepBasic/StepBasic_Effectivity.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Effectivity.hxx diff --git a/src/StepBasic/StepBasic_EffectivityAssignment.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_EffectivityAssignment.cxx similarity index 100% rename from src/StepBasic/StepBasic_EffectivityAssignment.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_EffectivityAssignment.cxx diff --git a/src/StepBasic/StepBasic_EffectivityAssignment.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_EffectivityAssignment.hxx similarity index 100% rename from src/StepBasic/StepBasic_EffectivityAssignment.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_EffectivityAssignment.hxx diff --git a/src/StepBasic/StepBasic_EulerAngles.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_EulerAngles.cxx similarity index 100% rename from src/StepBasic/StepBasic_EulerAngles.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_EulerAngles.cxx diff --git a/src/StepBasic/StepBasic_EulerAngles.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_EulerAngles.hxx similarity index 100% rename from src/StepBasic/StepBasic_EulerAngles.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_EulerAngles.hxx diff --git a/src/StepBasic/StepBasic_ExternalIdentificationAssignment.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ExternalIdentificationAssignment.cxx similarity index 100% rename from src/StepBasic/StepBasic_ExternalIdentificationAssignment.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ExternalIdentificationAssignment.cxx diff --git a/src/StepBasic/StepBasic_ExternalIdentificationAssignment.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ExternalIdentificationAssignment.hxx similarity index 100% rename from src/StepBasic/StepBasic_ExternalIdentificationAssignment.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ExternalIdentificationAssignment.hxx diff --git a/src/StepBasic/StepBasic_ExternalSource.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ExternalSource.cxx similarity index 100% rename from src/StepBasic/StepBasic_ExternalSource.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ExternalSource.cxx diff --git a/src/StepBasic/StepBasic_ExternalSource.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ExternalSource.hxx similarity index 100% rename from src/StepBasic/StepBasic_ExternalSource.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ExternalSource.hxx diff --git a/src/StepBasic/StepBasic_ExternallyDefinedItem.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ExternallyDefinedItem.cxx similarity index 100% rename from src/StepBasic/StepBasic_ExternallyDefinedItem.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ExternallyDefinedItem.cxx diff --git a/src/StepBasic/StepBasic_ExternallyDefinedItem.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ExternallyDefinedItem.hxx similarity index 100% rename from src/StepBasic/StepBasic_ExternallyDefinedItem.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ExternallyDefinedItem.hxx diff --git a/src/StepBasic/StepBasic_GeneralProperty.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_GeneralProperty.cxx similarity index 100% rename from src/StepBasic/StepBasic_GeneralProperty.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_GeneralProperty.cxx diff --git a/src/StepBasic/StepBasic_GeneralProperty.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_GeneralProperty.hxx similarity index 100% rename from src/StepBasic/StepBasic_GeneralProperty.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_GeneralProperty.hxx diff --git a/src/StepBasic/StepBasic_GeneralPropertyAssociation.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_GeneralPropertyAssociation.cxx similarity index 100% rename from src/StepBasic/StepBasic_GeneralPropertyAssociation.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_GeneralPropertyAssociation.cxx diff --git a/src/StepBasic/StepBasic_GeneralPropertyAssociation.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_GeneralPropertyAssociation.hxx similarity index 100% rename from src/StepBasic/StepBasic_GeneralPropertyAssociation.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_GeneralPropertyAssociation.hxx diff --git a/src/StepBasic/StepBasic_GeneralPropertyRelationship.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_GeneralPropertyRelationship.cxx similarity index 100% rename from src/StepBasic/StepBasic_GeneralPropertyRelationship.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_GeneralPropertyRelationship.cxx diff --git a/src/StepBasic/StepBasic_GeneralPropertyRelationship.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_GeneralPropertyRelationship.hxx similarity index 100% rename from src/StepBasic/StepBasic_GeneralPropertyRelationship.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_GeneralPropertyRelationship.hxx diff --git a/src/StepBasic/StepBasic_Group.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Group.cxx similarity index 100% rename from src/StepBasic/StepBasic_Group.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Group.cxx diff --git a/src/StepBasic/StepBasic_Group.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Group.hxx similarity index 100% rename from src/StepBasic/StepBasic_Group.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Group.hxx diff --git a/src/StepBasic/StepBasic_GroupAssignment.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_GroupAssignment.cxx similarity index 100% rename from src/StepBasic/StepBasic_GroupAssignment.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_GroupAssignment.cxx diff --git a/src/StepBasic/StepBasic_GroupAssignment.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_GroupAssignment.hxx similarity index 100% rename from src/StepBasic/StepBasic_GroupAssignment.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_GroupAssignment.hxx diff --git a/src/StepBasic/StepBasic_GroupRelationship.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_GroupRelationship.cxx similarity index 100% rename from src/StepBasic/StepBasic_GroupRelationship.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_GroupRelationship.cxx diff --git a/src/StepBasic/StepBasic_GroupRelationship.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_GroupRelationship.hxx similarity index 100% rename from src/StepBasic/StepBasic_GroupRelationship.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_GroupRelationship.hxx diff --git a/src/StepBasic/StepBasic_HArray1OfApproval.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_HArray1OfApproval.hxx similarity index 100% rename from src/StepBasic/StepBasic_HArray1OfApproval.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_HArray1OfApproval.hxx diff --git a/src/StepBasic/StepBasic_HArray1OfDerivedUnitElement.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_HArray1OfDerivedUnitElement.hxx similarity index 100% rename from src/StepBasic/StepBasic_HArray1OfDerivedUnitElement.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_HArray1OfDerivedUnitElement.hxx diff --git a/src/StepBasic/StepBasic_HArray1OfDocument.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_HArray1OfDocument.hxx similarity index 100% rename from src/StepBasic/StepBasic_HArray1OfDocument.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_HArray1OfDocument.hxx diff --git a/src/StepBasic/StepBasic_HArray1OfNamedUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_HArray1OfNamedUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_HArray1OfNamedUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_HArray1OfNamedUnit.hxx diff --git a/src/StepBasic/StepBasic_HArray1OfOrganization.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_HArray1OfOrganization.hxx similarity index 100% rename from src/StepBasic/StepBasic_HArray1OfOrganization.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_HArray1OfOrganization.hxx diff --git a/src/StepBasic/StepBasic_HArray1OfPerson.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_HArray1OfPerson.hxx similarity index 100% rename from src/StepBasic/StepBasic_HArray1OfPerson.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_HArray1OfPerson.hxx diff --git a/src/StepBasic/StepBasic_HArray1OfProduct.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_HArray1OfProduct.hxx similarity index 100% rename from src/StepBasic/StepBasic_HArray1OfProduct.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_HArray1OfProduct.hxx diff --git a/src/StepBasic/StepBasic_HArray1OfProductContext.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_HArray1OfProductContext.hxx similarity index 100% rename from src/StepBasic/StepBasic_HArray1OfProductContext.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_HArray1OfProductContext.hxx diff --git a/src/StepBasic/StepBasic_HArray1OfProductDefinition.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_HArray1OfProductDefinition.hxx similarity index 100% rename from src/StepBasic/StepBasic_HArray1OfProductDefinition.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_HArray1OfProductDefinition.hxx diff --git a/src/StepBasic/StepBasic_HArray1OfUncertaintyMeasureWithUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_HArray1OfUncertaintyMeasureWithUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_HArray1OfUncertaintyMeasureWithUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_HArray1OfUncertaintyMeasureWithUnit.hxx diff --git a/src/StepBasic/StepBasic_IdentificationAssignment.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_IdentificationAssignment.cxx similarity index 100% rename from src/StepBasic/StepBasic_IdentificationAssignment.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_IdentificationAssignment.cxx diff --git a/src/StepBasic/StepBasic_IdentificationAssignment.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_IdentificationAssignment.hxx similarity index 100% rename from src/StepBasic/StepBasic_IdentificationAssignment.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_IdentificationAssignment.hxx diff --git a/src/StepBasic/StepBasic_IdentificationRole.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_IdentificationRole.cxx similarity index 100% rename from src/StepBasic/StepBasic_IdentificationRole.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_IdentificationRole.cxx diff --git a/src/StepBasic/StepBasic_IdentificationRole.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_IdentificationRole.hxx similarity index 100% rename from src/StepBasic/StepBasic_IdentificationRole.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_IdentificationRole.hxx diff --git a/src/StepBasic/StepBasic_LengthMeasureWithUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_LengthMeasureWithUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_LengthMeasureWithUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_LengthMeasureWithUnit.cxx diff --git a/src/StepBasic/StepBasic_LengthMeasureWithUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_LengthMeasureWithUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_LengthMeasureWithUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_LengthMeasureWithUnit.hxx diff --git a/src/StepBasic/StepBasic_LengthUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_LengthUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_LengthUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_LengthUnit.cxx diff --git a/src/StepBasic/StepBasic_LengthUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_LengthUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_LengthUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_LengthUnit.hxx diff --git a/src/StepBasic/StepBasic_LocalTime.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_LocalTime.cxx similarity index 100% rename from src/StepBasic/StepBasic_LocalTime.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_LocalTime.cxx diff --git a/src/StepBasic/StepBasic_LocalTime.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_LocalTime.hxx similarity index 100% rename from src/StepBasic/StepBasic_LocalTime.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_LocalTime.hxx diff --git a/src/StepBasic/StepBasic_MassMeasureWithUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_MassMeasureWithUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_MassMeasureWithUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_MassMeasureWithUnit.cxx diff --git a/src/StepBasic/StepBasic_MassMeasureWithUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_MassMeasureWithUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_MassMeasureWithUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_MassMeasureWithUnit.hxx diff --git a/src/StepBasic/StepBasic_MassUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_MassUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_MassUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_MassUnit.cxx diff --git a/src/StepBasic/StepBasic_MassUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_MassUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_MassUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_MassUnit.hxx diff --git a/src/StepBasic/StepBasic_MeasureValueMember.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_MeasureValueMember.cxx similarity index 100% rename from src/StepBasic/StepBasic_MeasureValueMember.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_MeasureValueMember.cxx diff --git a/src/StepBasic/StepBasic_MeasureValueMember.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_MeasureValueMember.hxx similarity index 100% rename from src/StepBasic/StepBasic_MeasureValueMember.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_MeasureValueMember.hxx diff --git a/src/StepBasic/StepBasic_MeasureWithUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_MeasureWithUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_MeasureWithUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_MeasureWithUnit.cxx diff --git a/src/StepBasic/StepBasic_MeasureWithUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_MeasureWithUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_MeasureWithUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_MeasureWithUnit.hxx diff --git a/src/StepBasic/StepBasic_MechanicalContext.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_MechanicalContext.cxx similarity index 100% rename from src/StepBasic/StepBasic_MechanicalContext.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_MechanicalContext.cxx diff --git a/src/StepBasic/StepBasic_MechanicalContext.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_MechanicalContext.hxx similarity index 100% rename from src/StepBasic/StepBasic_MechanicalContext.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_MechanicalContext.hxx diff --git a/src/StepBasic/StepBasic_NameAssignment.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_NameAssignment.cxx similarity index 100% rename from src/StepBasic/StepBasic_NameAssignment.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_NameAssignment.cxx diff --git a/src/StepBasic/StepBasic_NameAssignment.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_NameAssignment.hxx similarity index 100% rename from src/StepBasic/StepBasic_NameAssignment.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_NameAssignment.hxx diff --git a/src/StepBasic/StepBasic_NamedUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_NamedUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_NamedUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_NamedUnit.cxx diff --git a/src/StepBasic/StepBasic_NamedUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_NamedUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_NamedUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_NamedUnit.hxx diff --git a/src/StepBasic/StepBasic_ObjectRole.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ObjectRole.cxx similarity index 100% rename from src/StepBasic/StepBasic_ObjectRole.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ObjectRole.cxx diff --git a/src/StepBasic/StepBasic_ObjectRole.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ObjectRole.hxx similarity index 100% rename from src/StepBasic/StepBasic_ObjectRole.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ObjectRole.hxx diff --git a/src/StepBasic/StepBasic_OrdinalDate.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_OrdinalDate.cxx similarity index 100% rename from src/StepBasic/StepBasic_OrdinalDate.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_OrdinalDate.cxx diff --git a/src/StepBasic/StepBasic_OrdinalDate.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_OrdinalDate.hxx similarity index 100% rename from src/StepBasic/StepBasic_OrdinalDate.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_OrdinalDate.hxx diff --git a/src/StepBasic/StepBasic_Organization.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Organization.cxx similarity index 100% rename from src/StepBasic/StepBasic_Organization.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Organization.cxx diff --git a/src/StepBasic/StepBasic_Organization.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Organization.hxx similarity index 100% rename from src/StepBasic/StepBasic_Organization.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Organization.hxx diff --git a/src/StepBasic/StepBasic_OrganizationAssignment.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_OrganizationAssignment.cxx similarity index 100% rename from src/StepBasic/StepBasic_OrganizationAssignment.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_OrganizationAssignment.cxx diff --git a/src/StepBasic/StepBasic_OrganizationAssignment.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_OrganizationAssignment.hxx similarity index 100% rename from src/StepBasic/StepBasic_OrganizationAssignment.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_OrganizationAssignment.hxx diff --git a/src/StepBasic/StepBasic_OrganizationRole.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_OrganizationRole.cxx similarity index 100% rename from src/StepBasic/StepBasic_OrganizationRole.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_OrganizationRole.cxx diff --git a/src/StepBasic/StepBasic_OrganizationRole.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_OrganizationRole.hxx similarity index 100% rename from src/StepBasic/StepBasic_OrganizationRole.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_OrganizationRole.hxx diff --git a/src/StepBasic/StepBasic_OrganizationalAddress.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_OrganizationalAddress.cxx similarity index 100% rename from src/StepBasic/StepBasic_OrganizationalAddress.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_OrganizationalAddress.cxx diff --git a/src/StepBasic/StepBasic_OrganizationalAddress.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_OrganizationalAddress.hxx similarity index 100% rename from src/StepBasic/StepBasic_OrganizationalAddress.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_OrganizationalAddress.hxx diff --git a/src/StepBasic/StepBasic_Person.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Person.cxx similarity index 100% rename from src/StepBasic/StepBasic_Person.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Person.cxx diff --git a/src/StepBasic/StepBasic_Person.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Person.hxx similarity index 100% rename from src/StepBasic/StepBasic_Person.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Person.hxx diff --git a/src/StepBasic/StepBasic_PersonAndOrganization.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_PersonAndOrganization.cxx similarity index 100% rename from src/StepBasic/StepBasic_PersonAndOrganization.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_PersonAndOrganization.cxx diff --git a/src/StepBasic/StepBasic_PersonAndOrganization.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_PersonAndOrganization.hxx similarity index 100% rename from src/StepBasic/StepBasic_PersonAndOrganization.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_PersonAndOrganization.hxx diff --git a/src/StepBasic/StepBasic_PersonAndOrganizationAssignment.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_PersonAndOrganizationAssignment.cxx similarity index 100% rename from src/StepBasic/StepBasic_PersonAndOrganizationAssignment.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_PersonAndOrganizationAssignment.cxx diff --git a/src/StepBasic/StepBasic_PersonAndOrganizationAssignment.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_PersonAndOrganizationAssignment.hxx similarity index 100% rename from src/StepBasic/StepBasic_PersonAndOrganizationAssignment.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_PersonAndOrganizationAssignment.hxx diff --git a/src/StepBasic/StepBasic_PersonAndOrganizationRole.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_PersonAndOrganizationRole.cxx similarity index 100% rename from src/StepBasic/StepBasic_PersonAndOrganizationRole.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_PersonAndOrganizationRole.cxx diff --git a/src/StepBasic/StepBasic_PersonAndOrganizationRole.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_PersonAndOrganizationRole.hxx similarity index 100% rename from src/StepBasic/StepBasic_PersonAndOrganizationRole.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_PersonAndOrganizationRole.hxx diff --git a/src/StepBasic/StepBasic_PersonOrganizationSelect.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_PersonOrganizationSelect.cxx similarity index 100% rename from src/StepBasic/StepBasic_PersonOrganizationSelect.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_PersonOrganizationSelect.cxx diff --git a/src/StepBasic/StepBasic_PersonOrganizationSelect.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_PersonOrganizationSelect.hxx similarity index 100% rename from src/StepBasic/StepBasic_PersonOrganizationSelect.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_PersonOrganizationSelect.hxx diff --git a/src/StepBasic/StepBasic_PersonalAddress.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_PersonalAddress.cxx similarity index 100% rename from src/StepBasic/StepBasic_PersonalAddress.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_PersonalAddress.cxx diff --git a/src/StepBasic/StepBasic_PersonalAddress.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_PersonalAddress.hxx similarity index 100% rename from src/StepBasic/StepBasic_PersonalAddress.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_PersonalAddress.hxx diff --git a/src/StepBasic/StepBasic_PhysicallyModeledProductDefinition.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_PhysicallyModeledProductDefinition.cxx similarity index 100% rename from src/StepBasic/StepBasic_PhysicallyModeledProductDefinition.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_PhysicallyModeledProductDefinition.cxx diff --git a/src/StepBasic/StepBasic_PhysicallyModeledProductDefinition.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_PhysicallyModeledProductDefinition.hxx similarity index 100% rename from src/StepBasic/StepBasic_PhysicallyModeledProductDefinition.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_PhysicallyModeledProductDefinition.hxx diff --git a/src/StepBasic/StepBasic_PlaneAngleMeasureWithUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_PlaneAngleMeasureWithUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_PlaneAngleMeasureWithUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_PlaneAngleMeasureWithUnit.cxx diff --git a/src/StepBasic/StepBasic_PlaneAngleMeasureWithUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_PlaneAngleMeasureWithUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_PlaneAngleMeasureWithUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_PlaneAngleMeasureWithUnit.hxx diff --git a/src/StepBasic/StepBasic_PlaneAngleUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_PlaneAngleUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_PlaneAngleUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_PlaneAngleUnit.cxx diff --git a/src/StepBasic/StepBasic_PlaneAngleUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_PlaneAngleUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_PlaneAngleUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_PlaneAngleUnit.hxx diff --git a/src/StepBasic/StepBasic_Product.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Product.cxx similarity index 100% rename from src/StepBasic/StepBasic_Product.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Product.cxx diff --git a/src/StepBasic/StepBasic_Product.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Product.hxx similarity index 100% rename from src/StepBasic/StepBasic_Product.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Product.hxx diff --git a/src/StepBasic/StepBasic_ProductCategory.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductCategory.cxx similarity index 100% rename from src/StepBasic/StepBasic_ProductCategory.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductCategory.cxx diff --git a/src/StepBasic/StepBasic_ProductCategory.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductCategory.hxx similarity index 100% rename from src/StepBasic/StepBasic_ProductCategory.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductCategory.hxx diff --git a/src/StepBasic/StepBasic_ProductCategoryRelationship.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductCategoryRelationship.cxx similarity index 100% rename from src/StepBasic/StepBasic_ProductCategoryRelationship.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductCategoryRelationship.cxx diff --git a/src/StepBasic/StepBasic_ProductCategoryRelationship.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductCategoryRelationship.hxx similarity index 100% rename from src/StepBasic/StepBasic_ProductCategoryRelationship.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductCategoryRelationship.hxx diff --git a/src/StepBasic/StepBasic_ProductConceptContext.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductConceptContext.cxx similarity index 100% rename from src/StepBasic/StepBasic_ProductConceptContext.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductConceptContext.cxx diff --git a/src/StepBasic/StepBasic_ProductConceptContext.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductConceptContext.hxx similarity index 100% rename from src/StepBasic/StepBasic_ProductConceptContext.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductConceptContext.hxx diff --git a/src/StepBasic/StepBasic_ProductContext.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductContext.cxx similarity index 100% rename from src/StepBasic/StepBasic_ProductContext.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductContext.cxx diff --git a/src/StepBasic/StepBasic_ProductContext.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductContext.hxx similarity index 100% rename from src/StepBasic/StepBasic_ProductContext.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductContext.hxx diff --git a/src/StepBasic/StepBasic_ProductDefinition.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinition.cxx similarity index 100% rename from src/StepBasic/StepBasic_ProductDefinition.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinition.cxx diff --git a/src/StepBasic/StepBasic_ProductDefinition.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinition.hxx similarity index 100% rename from src/StepBasic/StepBasic_ProductDefinition.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinition.hxx diff --git a/src/StepBasic/StepBasic_ProductDefinitionContext.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionContext.cxx similarity index 100% rename from src/StepBasic/StepBasic_ProductDefinitionContext.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionContext.cxx diff --git a/src/StepBasic/StepBasic_ProductDefinitionContext.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionContext.hxx similarity index 100% rename from src/StepBasic/StepBasic_ProductDefinitionContext.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionContext.hxx diff --git a/src/StepBasic/StepBasic_ProductDefinitionEffectivity.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionEffectivity.cxx similarity index 100% rename from src/StepBasic/StepBasic_ProductDefinitionEffectivity.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionEffectivity.cxx diff --git a/src/StepBasic/StepBasic_ProductDefinitionEffectivity.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionEffectivity.hxx similarity index 100% rename from src/StepBasic/StepBasic_ProductDefinitionEffectivity.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionEffectivity.hxx diff --git a/src/StepBasic/StepBasic_ProductDefinitionFormation.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionFormation.cxx similarity index 100% rename from src/StepBasic/StepBasic_ProductDefinitionFormation.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionFormation.cxx diff --git a/src/StepBasic/StepBasic_ProductDefinitionFormation.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionFormation.hxx similarity index 100% rename from src/StepBasic/StepBasic_ProductDefinitionFormation.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionFormation.hxx diff --git a/src/StepBasic/StepBasic_ProductDefinitionFormationRelationship.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionFormationRelationship.cxx similarity index 100% rename from src/StepBasic/StepBasic_ProductDefinitionFormationRelationship.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionFormationRelationship.cxx diff --git a/src/StepBasic/StepBasic_ProductDefinitionFormationRelationship.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionFormationRelationship.hxx similarity index 100% rename from src/StepBasic/StepBasic_ProductDefinitionFormationRelationship.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionFormationRelationship.hxx diff --git a/src/StepBasic/StepBasic_ProductDefinitionFormationWithSpecifiedSource.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionFormationWithSpecifiedSource.cxx similarity index 100% rename from src/StepBasic/StepBasic_ProductDefinitionFormationWithSpecifiedSource.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionFormationWithSpecifiedSource.cxx diff --git a/src/StepBasic/StepBasic_ProductDefinitionFormationWithSpecifiedSource.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionFormationWithSpecifiedSource.hxx similarity index 100% rename from src/StepBasic/StepBasic_ProductDefinitionFormationWithSpecifiedSource.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionFormationWithSpecifiedSource.hxx diff --git a/src/StepBasic/StepBasic_ProductDefinitionOrReference.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionOrReference.cxx similarity index 100% rename from src/StepBasic/StepBasic_ProductDefinitionOrReference.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionOrReference.cxx diff --git a/src/StepBasic/StepBasic_ProductDefinitionOrReference.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionOrReference.hxx similarity index 100% rename from src/StepBasic/StepBasic_ProductDefinitionOrReference.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionOrReference.hxx diff --git a/src/StepBasic/StepBasic_ProductDefinitionReference.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionReference.cxx similarity index 100% rename from src/StepBasic/StepBasic_ProductDefinitionReference.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionReference.cxx diff --git a/src/StepBasic/StepBasic_ProductDefinitionReference.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionReference.hxx similarity index 100% rename from src/StepBasic/StepBasic_ProductDefinitionReference.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionReference.hxx diff --git a/src/StepBasic/StepBasic_ProductDefinitionReferenceWithLocalRepresentation.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionReferenceWithLocalRepresentation.cxx similarity index 100% rename from src/StepBasic/StepBasic_ProductDefinitionReferenceWithLocalRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionReferenceWithLocalRepresentation.cxx diff --git a/src/StepBasic/StepBasic_ProductDefinitionReferenceWithLocalRepresentation.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionReferenceWithLocalRepresentation.hxx similarity index 100% rename from src/StepBasic/StepBasic_ProductDefinitionReferenceWithLocalRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionReferenceWithLocalRepresentation.hxx diff --git a/src/StepBasic/StepBasic_ProductDefinitionRelationship.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionRelationship.cxx similarity index 100% rename from src/StepBasic/StepBasic_ProductDefinitionRelationship.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionRelationship.cxx diff --git a/src/StepBasic/StepBasic_ProductDefinitionRelationship.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionRelationship.hxx similarity index 100% rename from src/StepBasic/StepBasic_ProductDefinitionRelationship.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionRelationship.hxx diff --git a/src/StepBasic/StepBasic_ProductDefinitionWithAssociatedDocuments.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionWithAssociatedDocuments.cxx similarity index 100% rename from src/StepBasic/StepBasic_ProductDefinitionWithAssociatedDocuments.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionWithAssociatedDocuments.cxx diff --git a/src/StepBasic/StepBasic_ProductDefinitionWithAssociatedDocuments.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionWithAssociatedDocuments.hxx similarity index 100% rename from src/StepBasic/StepBasic_ProductDefinitionWithAssociatedDocuments.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductDefinitionWithAssociatedDocuments.hxx diff --git a/src/StepBasic/StepBasic_ProductOrFormationOrDefinition.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductOrFormationOrDefinition.cxx similarity index 100% rename from src/StepBasic/StepBasic_ProductOrFormationOrDefinition.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductOrFormationOrDefinition.cxx diff --git a/src/StepBasic/StepBasic_ProductOrFormationOrDefinition.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductOrFormationOrDefinition.hxx similarity index 100% rename from src/StepBasic/StepBasic_ProductOrFormationOrDefinition.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductOrFormationOrDefinition.hxx diff --git a/src/StepBasic/StepBasic_ProductRelatedProductCategory.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductRelatedProductCategory.cxx similarity index 100% rename from src/StepBasic/StepBasic_ProductRelatedProductCategory.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductRelatedProductCategory.cxx diff --git a/src/StepBasic/StepBasic_ProductRelatedProductCategory.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductRelatedProductCategory.hxx similarity index 100% rename from src/StepBasic/StepBasic_ProductRelatedProductCategory.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductRelatedProductCategory.hxx diff --git a/src/StepBasic/StepBasic_ProductType.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductType.cxx similarity index 100% rename from src/StepBasic/StepBasic_ProductType.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductType.cxx diff --git a/src/StepBasic/StepBasic_ProductType.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductType.hxx similarity index 100% rename from src/StepBasic/StepBasic_ProductType.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ProductType.hxx diff --git a/src/StepBasic/StepBasic_RatioMeasureWithUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_RatioMeasureWithUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_RatioMeasureWithUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_RatioMeasureWithUnit.cxx diff --git a/src/StepBasic/StepBasic_RatioMeasureWithUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_RatioMeasureWithUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_RatioMeasureWithUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_RatioMeasureWithUnit.hxx diff --git a/src/StepBasic/StepBasic_RatioUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_RatioUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_RatioUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_RatioUnit.cxx diff --git a/src/StepBasic/StepBasic_RatioUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_RatioUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_RatioUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_RatioUnit.hxx diff --git a/src/StepBasic/StepBasic_RoleAssociation.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_RoleAssociation.cxx similarity index 100% rename from src/StepBasic/StepBasic_RoleAssociation.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_RoleAssociation.cxx diff --git a/src/StepBasic/StepBasic_RoleAssociation.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_RoleAssociation.hxx similarity index 100% rename from src/StepBasic/StepBasic_RoleAssociation.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_RoleAssociation.hxx diff --git a/src/StepBasic/StepBasic_RoleSelect.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_RoleSelect.cxx similarity index 100% rename from src/StepBasic/StepBasic_RoleSelect.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_RoleSelect.cxx diff --git a/src/StepBasic/StepBasic_RoleSelect.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_RoleSelect.hxx similarity index 100% rename from src/StepBasic/StepBasic_RoleSelect.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_RoleSelect.hxx diff --git a/src/StepBasic/StepBasic_SecurityClassification.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SecurityClassification.cxx similarity index 100% rename from src/StepBasic/StepBasic_SecurityClassification.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SecurityClassification.cxx diff --git a/src/StepBasic/StepBasic_SecurityClassification.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SecurityClassification.hxx similarity index 100% rename from src/StepBasic/StepBasic_SecurityClassification.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SecurityClassification.hxx diff --git a/src/StepBasic/StepBasic_SecurityClassificationAssignment.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SecurityClassificationAssignment.cxx similarity index 100% rename from src/StepBasic/StepBasic_SecurityClassificationAssignment.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SecurityClassificationAssignment.cxx diff --git a/src/StepBasic/StepBasic_SecurityClassificationAssignment.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SecurityClassificationAssignment.hxx similarity index 100% rename from src/StepBasic/StepBasic_SecurityClassificationAssignment.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SecurityClassificationAssignment.hxx diff --git a/src/StepBasic/StepBasic_SecurityClassificationLevel.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SecurityClassificationLevel.cxx similarity index 100% rename from src/StepBasic/StepBasic_SecurityClassificationLevel.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SecurityClassificationLevel.cxx diff --git a/src/StepBasic/StepBasic_SecurityClassificationLevel.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SecurityClassificationLevel.hxx similarity index 100% rename from src/StepBasic/StepBasic_SecurityClassificationLevel.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SecurityClassificationLevel.hxx diff --git a/src/StepBasic/StepBasic_SiPrefix.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiPrefix.hxx similarity index 100% rename from src/StepBasic/StepBasic_SiPrefix.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiPrefix.hxx diff --git a/src/StepBasic/StepBasic_SiUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_SiUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnit.cxx diff --git a/src/StepBasic/StepBasic_SiUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_SiUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnit.hxx diff --git a/src/StepBasic/StepBasic_SiUnitAndAreaUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndAreaUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_SiUnitAndAreaUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndAreaUnit.cxx diff --git a/src/StepBasic/StepBasic_SiUnitAndAreaUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndAreaUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_SiUnitAndAreaUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndAreaUnit.hxx diff --git a/src/StepBasic/StepBasic_SiUnitAndLengthUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndLengthUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_SiUnitAndLengthUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndLengthUnit.cxx diff --git a/src/StepBasic/StepBasic_SiUnitAndLengthUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndLengthUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_SiUnitAndLengthUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndLengthUnit.hxx diff --git a/src/StepBasic/StepBasic_SiUnitAndMassUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndMassUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_SiUnitAndMassUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndMassUnit.cxx diff --git a/src/StepBasic/StepBasic_SiUnitAndMassUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndMassUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_SiUnitAndMassUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndMassUnit.hxx diff --git a/src/StepBasic/StepBasic_SiUnitAndPlaneAngleUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndPlaneAngleUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_SiUnitAndPlaneAngleUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndPlaneAngleUnit.cxx diff --git a/src/StepBasic/StepBasic_SiUnitAndPlaneAngleUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndPlaneAngleUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_SiUnitAndPlaneAngleUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndPlaneAngleUnit.hxx diff --git a/src/StepBasic/StepBasic_SiUnitAndRatioUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndRatioUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_SiUnitAndRatioUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndRatioUnit.cxx diff --git a/src/StepBasic/StepBasic_SiUnitAndRatioUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndRatioUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_SiUnitAndRatioUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndRatioUnit.hxx diff --git a/src/StepBasic/StepBasic_SiUnitAndSolidAngleUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndSolidAngleUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_SiUnitAndSolidAngleUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndSolidAngleUnit.cxx diff --git a/src/StepBasic/StepBasic_SiUnitAndSolidAngleUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndSolidAngleUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_SiUnitAndSolidAngleUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndSolidAngleUnit.hxx diff --git a/src/StepBasic/StepBasic_SiUnitAndThermodynamicTemperatureUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndThermodynamicTemperatureUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_SiUnitAndThermodynamicTemperatureUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndThermodynamicTemperatureUnit.cxx diff --git a/src/StepBasic/StepBasic_SiUnitAndThermodynamicTemperatureUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndThermodynamicTemperatureUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_SiUnitAndThermodynamicTemperatureUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndThermodynamicTemperatureUnit.hxx diff --git a/src/StepBasic/StepBasic_SiUnitAndTimeUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndTimeUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_SiUnitAndTimeUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndTimeUnit.cxx diff --git a/src/StepBasic/StepBasic_SiUnitAndTimeUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndTimeUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_SiUnitAndTimeUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndTimeUnit.hxx diff --git a/src/StepBasic/StepBasic_SiUnitAndVolumeUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndVolumeUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_SiUnitAndVolumeUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndVolumeUnit.cxx diff --git a/src/StepBasic/StepBasic_SiUnitAndVolumeUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndVolumeUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_SiUnitAndVolumeUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitAndVolumeUnit.hxx diff --git a/src/StepBasic/StepBasic_SiUnitName.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitName.hxx similarity index 100% rename from src/StepBasic/StepBasic_SiUnitName.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SiUnitName.hxx diff --git a/src/StepBasic/StepBasic_SizeMember.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SizeMember.cxx similarity index 100% rename from src/StepBasic/StepBasic_SizeMember.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SizeMember.cxx diff --git a/src/StepBasic/StepBasic_SizeMember.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SizeMember.hxx similarity index 100% rename from src/StepBasic/StepBasic_SizeMember.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SizeMember.hxx diff --git a/src/StepBasic/StepBasic_SizeSelect.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SizeSelect.cxx similarity index 100% rename from src/StepBasic/StepBasic_SizeSelect.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SizeSelect.cxx diff --git a/src/StepBasic/StepBasic_SizeSelect.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SizeSelect.hxx similarity index 100% rename from src/StepBasic/StepBasic_SizeSelect.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SizeSelect.hxx diff --git a/src/StepBasic/StepBasic_SolidAngleMeasureWithUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SolidAngleMeasureWithUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_SolidAngleMeasureWithUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SolidAngleMeasureWithUnit.cxx diff --git a/src/StepBasic/StepBasic_SolidAngleMeasureWithUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SolidAngleMeasureWithUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_SolidAngleMeasureWithUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SolidAngleMeasureWithUnit.hxx diff --git a/src/StepBasic/StepBasic_SolidAngleUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SolidAngleUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_SolidAngleUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SolidAngleUnit.cxx diff --git a/src/StepBasic/StepBasic_SolidAngleUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SolidAngleUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_SolidAngleUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SolidAngleUnit.hxx diff --git a/src/StepBasic/StepBasic_Source.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Source.hxx similarity index 100% rename from src/StepBasic/StepBasic_Source.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Source.hxx diff --git a/src/StepBasic/StepBasic_SourceItem.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SourceItem.cxx similarity index 100% rename from src/StepBasic/StepBasic_SourceItem.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SourceItem.cxx diff --git a/src/StepBasic/StepBasic_SourceItem.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_SourceItem.hxx similarity index 100% rename from src/StepBasic/StepBasic_SourceItem.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_SourceItem.hxx diff --git a/src/StepBasic/StepBasic_ThermodynamicTemperatureUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ThermodynamicTemperatureUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_ThermodynamicTemperatureUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ThermodynamicTemperatureUnit.cxx diff --git a/src/StepBasic/StepBasic_ThermodynamicTemperatureUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_ThermodynamicTemperatureUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_ThermodynamicTemperatureUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_ThermodynamicTemperatureUnit.hxx diff --git a/src/StepBasic/StepBasic_TimeMeasureWithUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_TimeMeasureWithUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_TimeMeasureWithUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_TimeMeasureWithUnit.cxx diff --git a/src/StepBasic/StepBasic_TimeMeasureWithUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_TimeMeasureWithUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_TimeMeasureWithUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_TimeMeasureWithUnit.hxx diff --git a/src/StepBasic/StepBasic_TimeUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_TimeUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_TimeUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_TimeUnit.cxx diff --git a/src/StepBasic/StepBasic_TimeUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_TimeUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_TimeUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_TimeUnit.hxx diff --git a/src/StepBasic/StepBasic_UncertaintyMeasureWithUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_UncertaintyMeasureWithUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_UncertaintyMeasureWithUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_UncertaintyMeasureWithUnit.cxx diff --git a/src/StepBasic/StepBasic_UncertaintyMeasureWithUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_UncertaintyMeasureWithUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_UncertaintyMeasureWithUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_UncertaintyMeasureWithUnit.hxx diff --git a/src/StepBasic/StepBasic_Unit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Unit.cxx similarity index 100% rename from src/StepBasic/StepBasic_Unit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Unit.cxx diff --git a/src/StepBasic/StepBasic_Unit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_Unit.hxx similarity index 100% rename from src/StepBasic/StepBasic_Unit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_Unit.hxx diff --git a/src/StepBasic/StepBasic_VersionedActionRequest.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_VersionedActionRequest.cxx similarity index 100% rename from src/StepBasic/StepBasic_VersionedActionRequest.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_VersionedActionRequest.cxx diff --git a/src/StepBasic/StepBasic_VersionedActionRequest.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_VersionedActionRequest.hxx similarity index 100% rename from src/StepBasic/StepBasic_VersionedActionRequest.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_VersionedActionRequest.hxx diff --git a/src/StepBasic/StepBasic_VolumeUnit.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_VolumeUnit.cxx similarity index 100% rename from src/StepBasic/StepBasic_VolumeUnit.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_VolumeUnit.cxx diff --git a/src/StepBasic/StepBasic_VolumeUnit.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_VolumeUnit.hxx similarity index 100% rename from src/StepBasic/StepBasic_VolumeUnit.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_VolumeUnit.hxx diff --git a/src/StepBasic/StepBasic_WeekOfYearAndDayDate.cxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_WeekOfYearAndDayDate.cxx similarity index 100% rename from src/StepBasic/StepBasic_WeekOfYearAndDayDate.cxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_WeekOfYearAndDayDate.cxx diff --git a/src/StepBasic/StepBasic_WeekOfYearAndDayDate.hxx b/src/DataExchange/TKDESTEP/StepBasic/StepBasic_WeekOfYearAndDayDate.hxx similarity index 100% rename from src/StepBasic/StepBasic_WeekOfYearAndDayDate.hxx rename to src/DataExchange/TKDESTEP/StepBasic/StepBasic_WeekOfYearAndDayDate.hxx diff --git a/src/DataExchange/TKDESTEP/StepData/FILES.cmake b/src/DataExchange/TKDESTEP/StepData/FILES.cmake new file mode 100644 index 0000000000..c07c5aab91 --- /dev/null +++ b/src/DataExchange/TKDESTEP/StepData/FILES.cmake @@ -0,0 +1,83 @@ +# Source files for StepData package +set(OCCT_StepData_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StepData_FILES + StepData.cxx + StepData.hxx + StepData_Array1OfField.hxx + StepData_ConfParameters.hxx + StepData_DefaultGeneral.cxx + StepData_DefaultGeneral.hxx + StepData_Described.cxx + StepData_Described.hxx + StepData_ECDescr.cxx + StepData_ECDescr.hxx + StepData_EDescr.cxx + StepData_EDescr.hxx + StepData_EnumTool.cxx + StepData_EnumTool.hxx + StepData_ESDescr.cxx + StepData_ESDescr.hxx + StepData_Factors.cxx + StepData_Factors.hxx + StepData_Field.cxx + StepData_Field.hxx + StepData_FieldList.cxx + StepData_FieldList.hxx + StepData_FieldList1.cxx + StepData_FieldList1.hxx + StepData_FieldListD.cxx + StepData_FieldListD.hxx + StepData_FieldListN.cxx + StepData_FieldListN.hxx + StepData_FileProtocol.cxx + StepData_FileProtocol.hxx + StepData_FileRecognizer.hxx + StepData_FileRecognizer_0.cxx + StepData_FreeFormEntity.cxx + StepData_FreeFormEntity.hxx + StepData_GeneralModule.cxx + StepData_GeneralModule.hxx + StepData_GlobalNodeOfWriterLib.hxx + StepData_GlobalNodeOfWriterLib_0.cxx + StepData_HArray1OfField.hxx + StepData_Logical.hxx + StepData_NodeOfWriterLib.hxx + StepData_NodeOfWriterLib_0.cxx + StepData_PDescr.cxx + StepData_PDescr.hxx + StepData_Plex.cxx + StepData_Plex.hxx + StepData_Protocol.cxx + StepData_Protocol.hxx + StepData_ReadWriteModule.cxx + StepData_ReadWriteModule.hxx + StepData_SelectArrReal.cxx + StepData_SelectArrReal.hxx + StepData_SelectInt.cxx + StepData_SelectInt.hxx + StepData_SelectMember.cxx + StepData_SelectMember.hxx + StepData_SelectNamed.cxx + StepData_SelectNamed.hxx + StepData_SelectReal.cxx + StepData_SelectReal.hxx + StepData_SelectType.cxx + StepData_SelectType.hxx + StepData_Simple.cxx + StepData_Simple.hxx + StepData_StepDumper.cxx + StepData_StepDumper.hxx + StepData_StepModel.cxx + StepData_StepModel.hxx + StepData_StepReaderData.cxx + StepData_StepReaderData.hxx + StepData_StepReaderTool.cxx + StepData_StepReaderTool.hxx + StepData_StepWriter.cxx + StepData_StepWriter.hxx + StepData_UndefinedEntity.cxx + StepData_UndefinedEntity.hxx + StepData_WriterLib.hxx + StepData_WriterLib_0.cxx +) diff --git a/src/StepData/StepData.cxx b/src/DataExchange/TKDESTEP/StepData/StepData.cxx similarity index 100% rename from src/StepData/StepData.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData.cxx diff --git a/src/StepData/StepData.hxx b/src/DataExchange/TKDESTEP/StepData/StepData.hxx similarity index 100% rename from src/StepData/StepData.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData.hxx diff --git a/src/StepData/StepData_Array1OfField.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_Array1OfField.hxx similarity index 100% rename from src/StepData/StepData_Array1OfField.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_Array1OfField.hxx diff --git a/src/StepData/StepData_ConfParameters.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_ConfParameters.hxx similarity index 100% rename from src/StepData/StepData_ConfParameters.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_ConfParameters.hxx diff --git a/src/StepData/StepData_DefaultGeneral.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_DefaultGeneral.cxx similarity index 100% rename from src/StepData/StepData_DefaultGeneral.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_DefaultGeneral.cxx diff --git a/src/StepData/StepData_DefaultGeneral.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_DefaultGeneral.hxx similarity index 100% rename from src/StepData/StepData_DefaultGeneral.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_DefaultGeneral.hxx diff --git a/src/StepData/StepData_Described.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_Described.cxx similarity index 100% rename from src/StepData/StepData_Described.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_Described.cxx diff --git a/src/StepData/StepData_Described.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_Described.hxx similarity index 100% rename from src/StepData/StepData_Described.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_Described.hxx diff --git a/src/StepData/StepData_ECDescr.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_ECDescr.cxx similarity index 100% rename from src/StepData/StepData_ECDescr.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_ECDescr.cxx diff --git a/src/StepData/StepData_ECDescr.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_ECDescr.hxx similarity index 100% rename from src/StepData/StepData_ECDescr.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_ECDescr.hxx diff --git a/src/StepData/StepData_EDescr.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_EDescr.cxx similarity index 100% rename from src/StepData/StepData_EDescr.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_EDescr.cxx diff --git a/src/StepData/StepData_EDescr.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_EDescr.hxx similarity index 100% rename from src/StepData/StepData_EDescr.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_EDescr.hxx diff --git a/src/StepData/StepData_ESDescr.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_ESDescr.cxx similarity index 100% rename from src/StepData/StepData_ESDescr.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_ESDescr.cxx diff --git a/src/StepData/StepData_ESDescr.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_ESDescr.hxx similarity index 100% rename from src/StepData/StepData_ESDescr.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_ESDescr.hxx diff --git a/src/StepData/StepData_EnumTool.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_EnumTool.cxx similarity index 100% rename from src/StepData/StepData_EnumTool.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_EnumTool.cxx diff --git a/src/StepData/StepData_EnumTool.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_EnumTool.hxx similarity index 100% rename from src/StepData/StepData_EnumTool.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_EnumTool.hxx diff --git a/src/StepData/StepData_Factors.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_Factors.cxx similarity index 100% rename from src/StepData/StepData_Factors.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_Factors.cxx diff --git a/src/StepData/StepData_Factors.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_Factors.hxx similarity index 100% rename from src/StepData/StepData_Factors.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_Factors.hxx diff --git a/src/StepData/StepData_Field.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_Field.cxx similarity index 100% rename from src/StepData/StepData_Field.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_Field.cxx diff --git a/src/StepData/StepData_Field.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_Field.hxx similarity index 100% rename from src/StepData/StepData_Field.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_Field.hxx diff --git a/src/StepData/StepData_FieldList.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_FieldList.cxx similarity index 100% rename from src/StepData/StepData_FieldList.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_FieldList.cxx diff --git a/src/StepData/StepData_FieldList.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_FieldList.hxx similarity index 100% rename from src/StepData/StepData_FieldList.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_FieldList.hxx diff --git a/src/StepData/StepData_FieldList1.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_FieldList1.cxx similarity index 100% rename from src/StepData/StepData_FieldList1.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_FieldList1.cxx diff --git a/src/StepData/StepData_FieldList1.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_FieldList1.hxx similarity index 100% rename from src/StepData/StepData_FieldList1.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_FieldList1.hxx diff --git a/src/StepData/StepData_FieldListD.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_FieldListD.cxx similarity index 100% rename from src/StepData/StepData_FieldListD.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_FieldListD.cxx diff --git a/src/StepData/StepData_FieldListD.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_FieldListD.hxx similarity index 100% rename from src/StepData/StepData_FieldListD.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_FieldListD.hxx diff --git a/src/StepData/StepData_FieldListN.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_FieldListN.cxx similarity index 100% rename from src/StepData/StepData_FieldListN.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_FieldListN.cxx diff --git a/src/StepData/StepData_FieldListN.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_FieldListN.hxx similarity index 100% rename from src/StepData/StepData_FieldListN.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_FieldListN.hxx diff --git a/src/StepData/StepData_FileProtocol.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_FileProtocol.cxx similarity index 100% rename from src/StepData/StepData_FileProtocol.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_FileProtocol.cxx diff --git a/src/StepData/StepData_FileProtocol.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_FileProtocol.hxx similarity index 100% rename from src/StepData/StepData_FileProtocol.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_FileProtocol.hxx diff --git a/src/StepData/StepData_FileRecognizer.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_FileRecognizer.hxx similarity index 100% rename from src/StepData/StepData_FileRecognizer.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_FileRecognizer.hxx diff --git a/src/StepData/StepData_FileRecognizer_0.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_FileRecognizer_0.cxx similarity index 100% rename from src/StepData/StepData_FileRecognizer_0.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_FileRecognizer_0.cxx diff --git a/src/StepData/StepData_FreeFormEntity.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_FreeFormEntity.cxx similarity index 100% rename from src/StepData/StepData_FreeFormEntity.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_FreeFormEntity.cxx diff --git a/src/StepData/StepData_FreeFormEntity.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_FreeFormEntity.hxx similarity index 100% rename from src/StepData/StepData_FreeFormEntity.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_FreeFormEntity.hxx diff --git a/src/StepData/StepData_GeneralModule.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_GeneralModule.cxx similarity index 100% rename from src/StepData/StepData_GeneralModule.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_GeneralModule.cxx diff --git a/src/StepData/StepData_GeneralModule.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_GeneralModule.hxx similarity index 100% rename from src/StepData/StepData_GeneralModule.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_GeneralModule.hxx diff --git a/src/StepData/StepData_GlobalNodeOfWriterLib.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_GlobalNodeOfWriterLib.hxx similarity index 100% rename from src/StepData/StepData_GlobalNodeOfWriterLib.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_GlobalNodeOfWriterLib.hxx diff --git a/src/StepData/StepData_GlobalNodeOfWriterLib_0.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_GlobalNodeOfWriterLib_0.cxx similarity index 100% rename from src/StepData/StepData_GlobalNodeOfWriterLib_0.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_GlobalNodeOfWriterLib_0.cxx diff --git a/src/StepData/StepData_HArray1OfField.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_HArray1OfField.hxx similarity index 100% rename from src/StepData/StepData_HArray1OfField.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_HArray1OfField.hxx diff --git a/src/StepData/StepData_Logical.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_Logical.hxx similarity index 100% rename from src/StepData/StepData_Logical.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_Logical.hxx diff --git a/src/StepData/StepData_NodeOfWriterLib.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_NodeOfWriterLib.hxx similarity index 100% rename from src/StepData/StepData_NodeOfWriterLib.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_NodeOfWriterLib.hxx diff --git a/src/StepData/StepData_NodeOfWriterLib_0.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_NodeOfWriterLib_0.cxx similarity index 100% rename from src/StepData/StepData_NodeOfWriterLib_0.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_NodeOfWriterLib_0.cxx diff --git a/src/StepData/StepData_PDescr.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_PDescr.cxx similarity index 100% rename from src/StepData/StepData_PDescr.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_PDescr.cxx diff --git a/src/StepData/StepData_PDescr.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_PDescr.hxx similarity index 100% rename from src/StepData/StepData_PDescr.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_PDescr.hxx diff --git a/src/StepData/StepData_Plex.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_Plex.cxx similarity index 100% rename from src/StepData/StepData_Plex.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_Plex.cxx diff --git a/src/StepData/StepData_Plex.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_Plex.hxx similarity index 100% rename from src/StepData/StepData_Plex.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_Plex.hxx diff --git a/src/StepData/StepData_Protocol.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_Protocol.cxx similarity index 100% rename from src/StepData/StepData_Protocol.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_Protocol.cxx diff --git a/src/StepData/StepData_Protocol.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_Protocol.hxx similarity index 100% rename from src/StepData/StepData_Protocol.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_Protocol.hxx diff --git a/src/StepData/StepData_ReadWriteModule.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_ReadWriteModule.cxx similarity index 100% rename from src/StepData/StepData_ReadWriteModule.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_ReadWriteModule.cxx diff --git a/src/StepData/StepData_ReadWriteModule.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_ReadWriteModule.hxx similarity index 100% rename from src/StepData/StepData_ReadWriteModule.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_ReadWriteModule.hxx diff --git a/src/StepData/StepData_SelectArrReal.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_SelectArrReal.cxx similarity index 100% rename from src/StepData/StepData_SelectArrReal.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_SelectArrReal.cxx diff --git a/src/StepData/StepData_SelectArrReal.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_SelectArrReal.hxx similarity index 100% rename from src/StepData/StepData_SelectArrReal.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_SelectArrReal.hxx diff --git a/src/StepData/StepData_SelectInt.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_SelectInt.cxx similarity index 100% rename from src/StepData/StepData_SelectInt.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_SelectInt.cxx diff --git a/src/StepData/StepData_SelectInt.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_SelectInt.hxx similarity index 100% rename from src/StepData/StepData_SelectInt.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_SelectInt.hxx diff --git a/src/StepData/StepData_SelectMember.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_SelectMember.cxx similarity index 100% rename from src/StepData/StepData_SelectMember.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_SelectMember.cxx diff --git a/src/StepData/StepData_SelectMember.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_SelectMember.hxx similarity index 100% rename from src/StepData/StepData_SelectMember.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_SelectMember.hxx diff --git a/src/StepData/StepData_SelectNamed.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_SelectNamed.cxx similarity index 100% rename from src/StepData/StepData_SelectNamed.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_SelectNamed.cxx diff --git a/src/StepData/StepData_SelectNamed.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_SelectNamed.hxx similarity index 100% rename from src/StepData/StepData_SelectNamed.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_SelectNamed.hxx diff --git a/src/StepData/StepData_SelectReal.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_SelectReal.cxx similarity index 100% rename from src/StepData/StepData_SelectReal.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_SelectReal.cxx diff --git a/src/StepData/StepData_SelectReal.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_SelectReal.hxx similarity index 100% rename from src/StepData/StepData_SelectReal.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_SelectReal.hxx diff --git a/src/StepData/StepData_SelectType.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_SelectType.cxx similarity index 100% rename from src/StepData/StepData_SelectType.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_SelectType.cxx diff --git a/src/StepData/StepData_SelectType.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_SelectType.hxx similarity index 100% rename from src/StepData/StepData_SelectType.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_SelectType.hxx diff --git a/src/StepData/StepData_Simple.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_Simple.cxx similarity index 100% rename from src/StepData/StepData_Simple.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_Simple.cxx diff --git a/src/StepData/StepData_Simple.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_Simple.hxx similarity index 100% rename from src/StepData/StepData_Simple.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_Simple.hxx diff --git a/src/StepData/StepData_StepDumper.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_StepDumper.cxx similarity index 100% rename from src/StepData/StepData_StepDumper.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_StepDumper.cxx diff --git a/src/StepData/StepData_StepDumper.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_StepDumper.hxx similarity index 100% rename from src/StepData/StepData_StepDumper.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_StepDumper.hxx diff --git a/src/StepData/StepData_StepModel.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_StepModel.cxx similarity index 100% rename from src/StepData/StepData_StepModel.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_StepModel.cxx diff --git a/src/StepData/StepData_StepModel.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_StepModel.hxx similarity index 100% rename from src/StepData/StepData_StepModel.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_StepModel.hxx diff --git a/src/StepData/StepData_StepReaderData.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_StepReaderData.cxx similarity index 100% rename from src/StepData/StepData_StepReaderData.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_StepReaderData.cxx diff --git a/src/StepData/StepData_StepReaderData.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_StepReaderData.hxx similarity index 100% rename from src/StepData/StepData_StepReaderData.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_StepReaderData.hxx diff --git a/src/StepData/StepData_StepReaderTool.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_StepReaderTool.cxx similarity index 100% rename from src/StepData/StepData_StepReaderTool.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_StepReaderTool.cxx diff --git a/src/StepData/StepData_StepReaderTool.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_StepReaderTool.hxx similarity index 100% rename from src/StepData/StepData_StepReaderTool.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_StepReaderTool.hxx diff --git a/src/StepData/StepData_StepWriter.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_StepWriter.cxx similarity index 100% rename from src/StepData/StepData_StepWriter.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_StepWriter.cxx diff --git a/src/StepData/StepData_StepWriter.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_StepWriter.hxx similarity index 100% rename from src/StepData/StepData_StepWriter.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_StepWriter.hxx diff --git a/src/StepData/StepData_UndefinedEntity.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_UndefinedEntity.cxx similarity index 100% rename from src/StepData/StepData_UndefinedEntity.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_UndefinedEntity.cxx diff --git a/src/StepData/StepData_UndefinedEntity.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_UndefinedEntity.hxx similarity index 100% rename from src/StepData/StepData_UndefinedEntity.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_UndefinedEntity.hxx diff --git a/src/StepData/StepData_WriterLib.hxx b/src/DataExchange/TKDESTEP/StepData/StepData_WriterLib.hxx similarity index 100% rename from src/StepData/StepData_WriterLib.hxx rename to src/DataExchange/TKDESTEP/StepData/StepData_WriterLib.hxx diff --git a/src/StepData/StepData_WriterLib_0.cxx b/src/DataExchange/TKDESTEP/StepData/StepData_WriterLib_0.cxx similarity index 100% rename from src/StepData/StepData_WriterLib_0.cxx rename to src/DataExchange/TKDESTEP/StepData/StepData_WriterLib_0.cxx diff --git a/src/DataExchange/TKDESTEP/StepDimTol/FILES.cmake b/src/DataExchange/TKDESTEP/StepDimTol/FILES.cmake new file mode 100644 index 0000000000..0be9155b46 --- /dev/null +++ b/src/DataExchange/TKDESTEP/StepDimTol/FILES.cmake @@ -0,0 +1,137 @@ +# Source files for StepDimTol package +set(OCCT_StepDimTol_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StepDimTol_FILES + StepDimTol_AngularityTolerance.cxx + StepDimTol_AngularityTolerance.hxx + StepDimTol_AreaUnitType.hxx + StepDimTol_Array1OfDatumReference.hxx + StepDimTol_Array1OfDatumReferenceCompartment.hxx + StepDimTol_Array1OfDatumReferenceElement.hxx + StepDimTol_Array1OfDatumReferenceModifier.hxx + StepDimTol_Array1OfDatumSystemOrReference.hxx + StepDimTol_Array1OfGeometricToleranceModifier.hxx + StepDimTol_Array1OfToleranceZoneTarget.hxx + StepDimTol_CircularRunoutTolerance.cxx + StepDimTol_CircularRunoutTolerance.hxx + StepDimTol_CoaxialityTolerance.cxx + StepDimTol_CoaxialityTolerance.hxx + StepDimTol_CommonDatum.cxx + StepDimTol_CommonDatum.hxx + StepDimTol_ConcentricityTolerance.cxx + StepDimTol_ConcentricityTolerance.hxx + StepDimTol_CylindricityTolerance.cxx + StepDimTol_CylindricityTolerance.hxx + StepDimTol_Datum.cxx + StepDimTol_Datum.hxx + StepDimTol_DatumFeature.cxx + StepDimTol_DatumFeature.hxx + StepDimTol_DatumOrCommonDatum.cxx + StepDimTol_DatumOrCommonDatum.hxx + StepDimTol_DatumReference.cxx + StepDimTol_DatumReference.hxx + StepDimTol_DatumReferenceCompartment.cxx + StepDimTol_DatumReferenceCompartment.hxx + StepDimTol_DatumReferenceElement.cxx + StepDimTol_DatumReferenceElement.hxx + StepDimTol_DatumReferenceModifier.cxx + StepDimTol_DatumReferenceModifier.hxx + StepDimTol_DatumReferenceModifierWithValue.cxx + StepDimTol_DatumReferenceModifierWithValue.hxx + StepDimTol_DatumReferenceModifierType.hxx + StepDimTol_DatumSystem.cxx + StepDimTol_DatumSystem.hxx + StepDimTol_DatumSystemOrReference.cxx + StepDimTol_DatumSystemOrReference.hxx + StepDimTol_DatumTarget.cxx + StepDimTol_DatumTarget.hxx + StepDimTol_FlatnessTolerance.cxx + StepDimTol_FlatnessTolerance.hxx + StepDimTol_GeneralDatumReference.cxx + StepDimTol_GeneralDatumReference.hxx + StepDimTol_GeometricTolerance.cxx + StepDimTol_GeometricTolerance.hxx + StepDimTol_GeometricToleranceModifier.hxx + StepDimTol_GeometricToleranceRelationship.cxx + StepDimTol_GeometricToleranceRelationship.hxx + StepDimTol_GeometricToleranceTarget.cxx + StepDimTol_GeometricToleranceTarget.hxx + StepDimTol_GeometricToleranceType.hxx + StepDimTol_GeometricToleranceWithDatumReference.cxx + StepDimTol_GeometricToleranceWithDatumReference.hxx + StepDimTol_GeometricToleranceWithDefinedAreaUnit.cxx + StepDimTol_GeometricToleranceWithDefinedAreaUnit.hxx + StepDimTol_GeometricToleranceWithDefinedUnit.cxx + StepDimTol_GeometricToleranceWithDefinedUnit.hxx + StepDimTol_GeometricToleranceWithMaximumTolerance.cxx + StepDimTol_GeometricToleranceWithMaximumTolerance.hxx + StepDimTol_GeometricToleranceWithModifiers.cxx + StepDimTol_GeometricToleranceWithModifiers.hxx + StepDimTol_GeoTolAndGeoTolWthDatRef.cxx + StepDimTol_GeoTolAndGeoTolWthDatRef.hxx + StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMaxTol.cxx + StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMaxTol.hxx + StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMod.cxx + StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMod.hxx + StepDimTol_GeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol.cxx + StepDimTol_GeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol.hxx + StepDimTol_GeoTolAndGeoTolWthDatRefAndUneqDisGeoTol.cxx + StepDimTol_GeoTolAndGeoTolWthDatRefAndUneqDisGeoTol.hxx + StepDimTol_GeoTolAndGeoTolWthMaxTol.cxx + StepDimTol_GeoTolAndGeoTolWthMaxTol.hxx + StepDimTol_GeoTolAndGeoTolWthMod.cxx + StepDimTol_GeoTolAndGeoTolWthMod.hxx + StepDimTol_HArray1OfDatumReference.hxx + StepDimTol_HArray1OfDatumReferenceCompartment.hxx + StepDimTol_HArray1OfDatumReferenceElement.hxx + StepDimTol_HArray1OfDatumReferenceModifier.hxx + StepDimTol_HArray1OfDatumSystemOrReference.hxx + StepDimTol_HArray1OfGeometricToleranceModifier.hxx + StepDimTol_HArray1OfToleranceZoneTarget.hxx + StepDimTol_LimitCondition.hxx + StepDimTol_LineProfileTolerance.cxx + StepDimTol_LineProfileTolerance.hxx + StepDimTol_ModifiedGeometricTolerance.cxx + StepDimTol_ModifiedGeometricTolerance.hxx + StepDimTol_NonUniformZoneDefinition.cxx + StepDimTol_NonUniformZoneDefinition.hxx + StepDimTol_ParallelismTolerance.cxx + StepDimTol_ParallelismTolerance.hxx + StepDimTol_PerpendicularityTolerance.cxx + StepDimTol_PerpendicularityTolerance.hxx + StepDimTol_PlacedDatumTargetFeature.cxx + StepDimTol_PlacedDatumTargetFeature.hxx + StepDimTol_PositionTolerance.cxx + StepDimTol_PositionTolerance.hxx + StepDimTol_ProjectedZoneDefinition.cxx + StepDimTol_ProjectedZoneDefinition.hxx + StepDimTol_RoundnessTolerance.cxx + StepDimTol_RoundnessTolerance.hxx + StepDimTol_RunoutZoneDefinition.cxx + StepDimTol_RunoutZoneDefinition.hxx + StepDimTol_RunoutZoneOrientation.cxx + StepDimTol_RunoutZoneOrientation.hxx + StepDimTol_ShapeToleranceSelect.cxx + StepDimTol_ShapeToleranceSelect.hxx + StepDimTol_SimpleDatumReferenceModifier.hxx + StepDimTol_SimpleDatumReferenceModifierMember.cxx + StepDimTol_SimpleDatumReferenceModifierMember.hxx + StepDimTol_StraightnessTolerance.cxx + StepDimTol_StraightnessTolerance.hxx + StepDimTol_SurfaceProfileTolerance.cxx + StepDimTol_SurfaceProfileTolerance.hxx + StepDimTol_SymmetryTolerance.cxx + StepDimTol_SymmetryTolerance.hxx + StepDimTol_ToleranceZone.cxx + StepDimTol_ToleranceZone.hxx + StepDimTol_ToleranceZoneDefinition.cxx + StepDimTol_ToleranceZoneDefinition.hxx + StepDimTol_ToleranceZoneForm.cxx + StepDimTol_ToleranceZoneForm.hxx + StepDimTol_ToleranceZoneTarget.cxx + StepDimTol_ToleranceZoneTarget.hxx + StepDimTol_TotalRunoutTolerance.cxx + StepDimTol_TotalRunoutTolerance.hxx + StepDimTol_UnequallyDisposedGeometricTolerance.cxx + StepDimTol_UnequallyDisposedGeometricTolerance.hxx +) diff --git a/src/StepDimTol/StepDimTol_AngularityTolerance.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_AngularityTolerance.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_AngularityTolerance.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_AngularityTolerance.cxx diff --git a/src/StepDimTol/StepDimTol_AngularityTolerance.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_AngularityTolerance.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_AngularityTolerance.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_AngularityTolerance.hxx diff --git a/src/StepDimTol/StepDimTol_AreaUnitType.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_AreaUnitType.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_AreaUnitType.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_AreaUnitType.hxx diff --git a/src/StepDimTol/StepDimTol_Array1OfDatumReference.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_Array1OfDatumReference.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_Array1OfDatumReference.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_Array1OfDatumReference.hxx diff --git a/src/StepDimTol/StepDimTol_Array1OfDatumReferenceCompartment.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_Array1OfDatumReferenceCompartment.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_Array1OfDatumReferenceCompartment.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_Array1OfDatumReferenceCompartment.hxx diff --git a/src/StepDimTol/StepDimTol_Array1OfDatumReferenceElement.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_Array1OfDatumReferenceElement.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_Array1OfDatumReferenceElement.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_Array1OfDatumReferenceElement.hxx diff --git a/src/StepDimTol/StepDimTol_Array1OfDatumReferenceModifier.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_Array1OfDatumReferenceModifier.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_Array1OfDatumReferenceModifier.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_Array1OfDatumReferenceModifier.hxx diff --git a/src/StepDimTol/StepDimTol_Array1OfDatumSystemOrReference.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_Array1OfDatumSystemOrReference.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_Array1OfDatumSystemOrReference.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_Array1OfDatumSystemOrReference.hxx diff --git a/src/StepDimTol/StepDimTol_Array1OfGeometricToleranceModifier.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_Array1OfGeometricToleranceModifier.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_Array1OfGeometricToleranceModifier.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_Array1OfGeometricToleranceModifier.hxx diff --git a/src/StepDimTol/StepDimTol_Array1OfToleranceZoneTarget.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_Array1OfToleranceZoneTarget.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_Array1OfToleranceZoneTarget.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_Array1OfToleranceZoneTarget.hxx diff --git a/src/StepDimTol/StepDimTol_CircularRunoutTolerance.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_CircularRunoutTolerance.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_CircularRunoutTolerance.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_CircularRunoutTolerance.cxx diff --git a/src/StepDimTol/StepDimTol_CircularRunoutTolerance.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_CircularRunoutTolerance.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_CircularRunoutTolerance.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_CircularRunoutTolerance.hxx diff --git a/src/StepDimTol/StepDimTol_CoaxialityTolerance.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_CoaxialityTolerance.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_CoaxialityTolerance.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_CoaxialityTolerance.cxx diff --git a/src/StepDimTol/StepDimTol_CoaxialityTolerance.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_CoaxialityTolerance.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_CoaxialityTolerance.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_CoaxialityTolerance.hxx diff --git a/src/StepDimTol/StepDimTol_CommonDatum.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_CommonDatum.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_CommonDatum.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_CommonDatum.cxx diff --git a/src/StepDimTol/StepDimTol_CommonDatum.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_CommonDatum.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_CommonDatum.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_CommonDatum.hxx diff --git a/src/StepDimTol/StepDimTol_ConcentricityTolerance.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ConcentricityTolerance.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_ConcentricityTolerance.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ConcentricityTolerance.cxx diff --git a/src/StepDimTol/StepDimTol_ConcentricityTolerance.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ConcentricityTolerance.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_ConcentricityTolerance.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ConcentricityTolerance.hxx diff --git a/src/StepDimTol/StepDimTol_CylindricityTolerance.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_CylindricityTolerance.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_CylindricityTolerance.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_CylindricityTolerance.cxx diff --git a/src/StepDimTol/StepDimTol_CylindricityTolerance.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_CylindricityTolerance.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_CylindricityTolerance.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_CylindricityTolerance.hxx diff --git a/src/StepDimTol/StepDimTol_Datum.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_Datum.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_Datum.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_Datum.cxx diff --git a/src/StepDimTol/StepDimTol_Datum.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_Datum.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_Datum.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_Datum.hxx diff --git a/src/StepDimTol/StepDimTol_DatumFeature.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumFeature.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_DatumFeature.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumFeature.cxx diff --git a/src/StepDimTol/StepDimTol_DatumFeature.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumFeature.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_DatumFeature.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumFeature.hxx diff --git a/src/StepDimTol/StepDimTol_DatumOrCommonDatum.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumOrCommonDatum.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_DatumOrCommonDatum.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumOrCommonDatum.cxx diff --git a/src/StepDimTol/StepDimTol_DatumOrCommonDatum.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumOrCommonDatum.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_DatumOrCommonDatum.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumOrCommonDatum.hxx diff --git a/src/StepDimTol/StepDimTol_DatumReference.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumReference.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_DatumReference.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumReference.cxx diff --git a/src/StepDimTol/StepDimTol_DatumReference.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumReference.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_DatumReference.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumReference.hxx diff --git a/src/StepDimTol/StepDimTol_DatumReferenceCompartment.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumReferenceCompartment.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_DatumReferenceCompartment.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumReferenceCompartment.cxx diff --git a/src/StepDimTol/StepDimTol_DatumReferenceCompartment.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumReferenceCompartment.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_DatumReferenceCompartment.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumReferenceCompartment.hxx diff --git a/src/StepDimTol/StepDimTol_DatumReferenceElement.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumReferenceElement.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_DatumReferenceElement.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumReferenceElement.cxx diff --git a/src/StepDimTol/StepDimTol_DatumReferenceElement.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumReferenceElement.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_DatumReferenceElement.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumReferenceElement.hxx diff --git a/src/StepDimTol/StepDimTol_DatumReferenceModifier.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumReferenceModifier.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_DatumReferenceModifier.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumReferenceModifier.cxx diff --git a/src/StepDimTol/StepDimTol_DatumReferenceModifier.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumReferenceModifier.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_DatumReferenceModifier.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumReferenceModifier.hxx diff --git a/src/StepDimTol/StepDimTol_DatumReferenceModifierType.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumReferenceModifierType.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_DatumReferenceModifierType.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumReferenceModifierType.hxx diff --git a/src/StepDimTol/StepDimTol_DatumReferenceModifierWithValue.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumReferenceModifierWithValue.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_DatumReferenceModifierWithValue.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumReferenceModifierWithValue.cxx diff --git a/src/StepDimTol/StepDimTol_DatumReferenceModifierWithValue.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumReferenceModifierWithValue.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_DatumReferenceModifierWithValue.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumReferenceModifierWithValue.hxx diff --git a/src/StepDimTol/StepDimTol_DatumSystem.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumSystem.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_DatumSystem.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumSystem.cxx diff --git a/src/StepDimTol/StepDimTol_DatumSystem.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumSystem.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_DatumSystem.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumSystem.hxx diff --git a/src/StepDimTol/StepDimTol_DatumSystemOrReference.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumSystemOrReference.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_DatumSystemOrReference.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumSystemOrReference.cxx diff --git a/src/StepDimTol/StepDimTol_DatumSystemOrReference.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumSystemOrReference.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_DatumSystemOrReference.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumSystemOrReference.hxx diff --git a/src/StepDimTol/StepDimTol_DatumTarget.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumTarget.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_DatumTarget.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumTarget.cxx diff --git a/src/StepDimTol/StepDimTol_DatumTarget.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumTarget.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_DatumTarget.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_DatumTarget.hxx diff --git a/src/StepDimTol/StepDimTol_FlatnessTolerance.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_FlatnessTolerance.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_FlatnessTolerance.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_FlatnessTolerance.cxx diff --git a/src/StepDimTol/StepDimTol_FlatnessTolerance.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_FlatnessTolerance.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_FlatnessTolerance.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_FlatnessTolerance.hxx diff --git a/src/StepDimTol/StepDimTol_GeneralDatumReference.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeneralDatumReference.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeneralDatumReference.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeneralDatumReference.cxx diff --git a/src/StepDimTol/StepDimTol_GeneralDatumReference.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeneralDatumReference.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeneralDatumReference.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeneralDatumReference.hxx diff --git a/src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRef.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRef.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRef.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRef.cxx diff --git a/src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRef.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRef.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRef.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRef.hxx diff --git a/src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMaxTol.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMaxTol.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMaxTol.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMaxTol.cxx diff --git a/src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMaxTol.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMaxTol.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMaxTol.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMaxTol.hxx diff --git a/src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMod.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMod.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMod.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMod.cxx diff --git a/src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMod.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMod.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMod.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMod.hxx diff --git a/src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol.cxx diff --git a/src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol.hxx diff --git a/src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndUneqDisGeoTol.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndUneqDisGeoTol.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndUneqDisGeoTol.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndUneqDisGeoTol.cxx diff --git a/src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndUneqDisGeoTol.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndUneqDisGeoTol.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndUneqDisGeoTol.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthDatRefAndUneqDisGeoTol.hxx diff --git a/src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthMaxTol.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthMaxTol.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthMaxTol.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthMaxTol.cxx diff --git a/src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthMaxTol.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthMaxTol.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthMaxTol.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthMaxTol.hxx diff --git a/src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthMod.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthMod.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthMod.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthMod.cxx diff --git a/src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthMod.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthMod.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeoTolAndGeoTolWthMod.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeoTolAndGeoTolWthMod.hxx diff --git a/src/StepDimTol/StepDimTol_GeometricTolerance.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricTolerance.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeometricTolerance.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricTolerance.cxx diff --git a/src/StepDimTol/StepDimTol_GeometricTolerance.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricTolerance.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeometricTolerance.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricTolerance.hxx diff --git a/src/StepDimTol/StepDimTol_GeometricToleranceModifier.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceModifier.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeometricToleranceModifier.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceModifier.hxx diff --git a/src/StepDimTol/StepDimTol_GeometricToleranceRelationship.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceRelationship.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeometricToleranceRelationship.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceRelationship.cxx diff --git a/src/StepDimTol/StepDimTol_GeometricToleranceRelationship.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceRelationship.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeometricToleranceRelationship.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceRelationship.hxx diff --git a/src/StepDimTol/StepDimTol_GeometricToleranceTarget.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceTarget.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeometricToleranceTarget.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceTarget.cxx diff --git a/src/StepDimTol/StepDimTol_GeometricToleranceTarget.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceTarget.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeometricToleranceTarget.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceTarget.hxx diff --git a/src/StepDimTol/StepDimTol_GeometricToleranceType.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceType.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeometricToleranceType.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceType.hxx diff --git a/src/StepDimTol/StepDimTol_GeometricToleranceWithDatumReference.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceWithDatumReference.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeometricToleranceWithDatumReference.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceWithDatumReference.cxx diff --git a/src/StepDimTol/StepDimTol_GeometricToleranceWithDatumReference.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceWithDatumReference.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeometricToleranceWithDatumReference.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceWithDatumReference.hxx diff --git a/src/StepDimTol/StepDimTol_GeometricToleranceWithDefinedAreaUnit.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceWithDefinedAreaUnit.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeometricToleranceWithDefinedAreaUnit.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceWithDefinedAreaUnit.cxx diff --git a/src/StepDimTol/StepDimTol_GeometricToleranceWithDefinedAreaUnit.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceWithDefinedAreaUnit.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeometricToleranceWithDefinedAreaUnit.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceWithDefinedAreaUnit.hxx diff --git a/src/StepDimTol/StepDimTol_GeometricToleranceWithDefinedUnit.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceWithDefinedUnit.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeometricToleranceWithDefinedUnit.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceWithDefinedUnit.cxx diff --git a/src/StepDimTol/StepDimTol_GeometricToleranceWithDefinedUnit.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceWithDefinedUnit.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeometricToleranceWithDefinedUnit.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceWithDefinedUnit.hxx diff --git a/src/StepDimTol/StepDimTol_GeometricToleranceWithMaximumTolerance.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceWithMaximumTolerance.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeometricToleranceWithMaximumTolerance.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceWithMaximumTolerance.cxx diff --git a/src/StepDimTol/StepDimTol_GeometricToleranceWithMaximumTolerance.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceWithMaximumTolerance.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeometricToleranceWithMaximumTolerance.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceWithMaximumTolerance.hxx diff --git a/src/StepDimTol/StepDimTol_GeometricToleranceWithModifiers.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceWithModifiers.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeometricToleranceWithModifiers.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceWithModifiers.cxx diff --git a/src/StepDimTol/StepDimTol_GeometricToleranceWithModifiers.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceWithModifiers.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_GeometricToleranceWithModifiers.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_GeometricToleranceWithModifiers.hxx diff --git a/src/StepDimTol/StepDimTol_HArray1OfDatumReference.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_HArray1OfDatumReference.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_HArray1OfDatumReference.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_HArray1OfDatumReference.hxx diff --git a/src/StepDimTol/StepDimTol_HArray1OfDatumReferenceCompartment.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_HArray1OfDatumReferenceCompartment.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_HArray1OfDatumReferenceCompartment.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_HArray1OfDatumReferenceCompartment.hxx diff --git a/src/StepDimTol/StepDimTol_HArray1OfDatumReferenceElement.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_HArray1OfDatumReferenceElement.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_HArray1OfDatumReferenceElement.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_HArray1OfDatumReferenceElement.hxx diff --git a/src/StepDimTol/StepDimTol_HArray1OfDatumReferenceModifier.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_HArray1OfDatumReferenceModifier.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_HArray1OfDatumReferenceModifier.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_HArray1OfDatumReferenceModifier.hxx diff --git a/src/StepDimTol/StepDimTol_HArray1OfDatumSystemOrReference.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_HArray1OfDatumSystemOrReference.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_HArray1OfDatumSystemOrReference.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_HArray1OfDatumSystemOrReference.hxx diff --git a/src/StepDimTol/StepDimTol_HArray1OfGeometricToleranceModifier.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_HArray1OfGeometricToleranceModifier.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_HArray1OfGeometricToleranceModifier.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_HArray1OfGeometricToleranceModifier.hxx diff --git a/src/StepDimTol/StepDimTol_HArray1OfToleranceZoneTarget.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_HArray1OfToleranceZoneTarget.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_HArray1OfToleranceZoneTarget.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_HArray1OfToleranceZoneTarget.hxx diff --git a/src/StepDimTol/StepDimTol_LimitCondition.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_LimitCondition.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_LimitCondition.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_LimitCondition.hxx diff --git a/src/StepDimTol/StepDimTol_LineProfileTolerance.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_LineProfileTolerance.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_LineProfileTolerance.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_LineProfileTolerance.cxx diff --git a/src/StepDimTol/StepDimTol_LineProfileTolerance.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_LineProfileTolerance.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_LineProfileTolerance.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_LineProfileTolerance.hxx diff --git a/src/StepDimTol/StepDimTol_ModifiedGeometricTolerance.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ModifiedGeometricTolerance.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_ModifiedGeometricTolerance.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ModifiedGeometricTolerance.cxx diff --git a/src/StepDimTol/StepDimTol_ModifiedGeometricTolerance.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ModifiedGeometricTolerance.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_ModifiedGeometricTolerance.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ModifiedGeometricTolerance.hxx diff --git a/src/StepDimTol/StepDimTol_NonUniformZoneDefinition.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_NonUniformZoneDefinition.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_NonUniformZoneDefinition.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_NonUniformZoneDefinition.cxx diff --git a/src/StepDimTol/StepDimTol_NonUniformZoneDefinition.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_NonUniformZoneDefinition.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_NonUniformZoneDefinition.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_NonUniformZoneDefinition.hxx diff --git a/src/StepDimTol/StepDimTol_ParallelismTolerance.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ParallelismTolerance.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_ParallelismTolerance.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ParallelismTolerance.cxx diff --git a/src/StepDimTol/StepDimTol_ParallelismTolerance.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ParallelismTolerance.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_ParallelismTolerance.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ParallelismTolerance.hxx diff --git a/src/StepDimTol/StepDimTol_PerpendicularityTolerance.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_PerpendicularityTolerance.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_PerpendicularityTolerance.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_PerpendicularityTolerance.cxx diff --git a/src/StepDimTol/StepDimTol_PerpendicularityTolerance.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_PerpendicularityTolerance.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_PerpendicularityTolerance.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_PerpendicularityTolerance.hxx diff --git a/src/StepDimTol/StepDimTol_PlacedDatumTargetFeature.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_PlacedDatumTargetFeature.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_PlacedDatumTargetFeature.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_PlacedDatumTargetFeature.cxx diff --git a/src/StepDimTol/StepDimTol_PlacedDatumTargetFeature.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_PlacedDatumTargetFeature.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_PlacedDatumTargetFeature.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_PlacedDatumTargetFeature.hxx diff --git a/src/StepDimTol/StepDimTol_PositionTolerance.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_PositionTolerance.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_PositionTolerance.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_PositionTolerance.cxx diff --git a/src/StepDimTol/StepDimTol_PositionTolerance.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_PositionTolerance.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_PositionTolerance.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_PositionTolerance.hxx diff --git a/src/StepDimTol/StepDimTol_ProjectedZoneDefinition.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ProjectedZoneDefinition.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_ProjectedZoneDefinition.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ProjectedZoneDefinition.cxx diff --git a/src/StepDimTol/StepDimTol_ProjectedZoneDefinition.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ProjectedZoneDefinition.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_ProjectedZoneDefinition.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ProjectedZoneDefinition.hxx diff --git a/src/StepDimTol/StepDimTol_RoundnessTolerance.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_RoundnessTolerance.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_RoundnessTolerance.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_RoundnessTolerance.cxx diff --git a/src/StepDimTol/StepDimTol_RoundnessTolerance.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_RoundnessTolerance.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_RoundnessTolerance.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_RoundnessTolerance.hxx diff --git a/src/StepDimTol/StepDimTol_RunoutZoneDefinition.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_RunoutZoneDefinition.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_RunoutZoneDefinition.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_RunoutZoneDefinition.cxx diff --git a/src/StepDimTol/StepDimTol_RunoutZoneDefinition.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_RunoutZoneDefinition.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_RunoutZoneDefinition.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_RunoutZoneDefinition.hxx diff --git a/src/StepDimTol/StepDimTol_RunoutZoneOrientation.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_RunoutZoneOrientation.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_RunoutZoneOrientation.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_RunoutZoneOrientation.cxx diff --git a/src/StepDimTol/StepDimTol_RunoutZoneOrientation.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_RunoutZoneOrientation.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_RunoutZoneOrientation.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_RunoutZoneOrientation.hxx diff --git a/src/StepDimTol/StepDimTol_ShapeToleranceSelect.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ShapeToleranceSelect.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_ShapeToleranceSelect.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ShapeToleranceSelect.cxx diff --git a/src/StepDimTol/StepDimTol_ShapeToleranceSelect.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ShapeToleranceSelect.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_ShapeToleranceSelect.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ShapeToleranceSelect.hxx diff --git a/src/StepDimTol/StepDimTol_SimpleDatumReferenceModifier.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_SimpleDatumReferenceModifier.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_SimpleDatumReferenceModifier.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_SimpleDatumReferenceModifier.hxx diff --git a/src/StepDimTol/StepDimTol_SimpleDatumReferenceModifierMember.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_SimpleDatumReferenceModifierMember.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_SimpleDatumReferenceModifierMember.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_SimpleDatumReferenceModifierMember.cxx diff --git a/src/StepDimTol/StepDimTol_SimpleDatumReferenceModifierMember.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_SimpleDatumReferenceModifierMember.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_SimpleDatumReferenceModifierMember.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_SimpleDatumReferenceModifierMember.hxx diff --git a/src/StepDimTol/StepDimTol_StraightnessTolerance.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_StraightnessTolerance.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_StraightnessTolerance.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_StraightnessTolerance.cxx diff --git a/src/StepDimTol/StepDimTol_StraightnessTolerance.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_StraightnessTolerance.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_StraightnessTolerance.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_StraightnessTolerance.hxx diff --git a/src/StepDimTol/StepDimTol_SurfaceProfileTolerance.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_SurfaceProfileTolerance.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_SurfaceProfileTolerance.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_SurfaceProfileTolerance.cxx diff --git a/src/StepDimTol/StepDimTol_SurfaceProfileTolerance.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_SurfaceProfileTolerance.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_SurfaceProfileTolerance.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_SurfaceProfileTolerance.hxx diff --git a/src/StepDimTol/StepDimTol_SymmetryTolerance.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_SymmetryTolerance.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_SymmetryTolerance.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_SymmetryTolerance.cxx diff --git a/src/StepDimTol/StepDimTol_SymmetryTolerance.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_SymmetryTolerance.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_SymmetryTolerance.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_SymmetryTolerance.hxx diff --git a/src/StepDimTol/StepDimTol_ToleranceZone.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ToleranceZone.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_ToleranceZone.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ToleranceZone.cxx diff --git a/src/StepDimTol/StepDimTol_ToleranceZone.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ToleranceZone.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_ToleranceZone.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ToleranceZone.hxx diff --git a/src/StepDimTol/StepDimTol_ToleranceZoneDefinition.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ToleranceZoneDefinition.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_ToleranceZoneDefinition.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ToleranceZoneDefinition.cxx diff --git a/src/StepDimTol/StepDimTol_ToleranceZoneDefinition.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ToleranceZoneDefinition.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_ToleranceZoneDefinition.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ToleranceZoneDefinition.hxx diff --git a/src/StepDimTol/StepDimTol_ToleranceZoneForm.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ToleranceZoneForm.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_ToleranceZoneForm.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ToleranceZoneForm.cxx diff --git a/src/StepDimTol/StepDimTol_ToleranceZoneForm.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ToleranceZoneForm.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_ToleranceZoneForm.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ToleranceZoneForm.hxx diff --git a/src/StepDimTol/StepDimTol_ToleranceZoneTarget.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ToleranceZoneTarget.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_ToleranceZoneTarget.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ToleranceZoneTarget.cxx diff --git a/src/StepDimTol/StepDimTol_ToleranceZoneTarget.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ToleranceZoneTarget.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_ToleranceZoneTarget.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_ToleranceZoneTarget.hxx diff --git a/src/StepDimTol/StepDimTol_TotalRunoutTolerance.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_TotalRunoutTolerance.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_TotalRunoutTolerance.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_TotalRunoutTolerance.cxx diff --git a/src/StepDimTol/StepDimTol_TotalRunoutTolerance.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_TotalRunoutTolerance.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_TotalRunoutTolerance.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_TotalRunoutTolerance.hxx diff --git a/src/StepDimTol/StepDimTol_UnequallyDisposedGeometricTolerance.cxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_UnequallyDisposedGeometricTolerance.cxx similarity index 100% rename from src/StepDimTol/StepDimTol_UnequallyDisposedGeometricTolerance.cxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_UnequallyDisposedGeometricTolerance.cxx diff --git a/src/StepDimTol/StepDimTol_UnequallyDisposedGeometricTolerance.hxx b/src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_UnequallyDisposedGeometricTolerance.hxx similarity index 100% rename from src/StepDimTol/StepDimTol_UnequallyDisposedGeometricTolerance.hxx rename to src/DataExchange/TKDESTEP/StepDimTol/StepDimTol_UnequallyDisposedGeometricTolerance.hxx diff --git a/src/DataExchange/TKDESTEP/StepElement/FILES.cmake b/src/DataExchange/TKDESTEP/StepElement/FILES.cmake new file mode 100644 index 0000000000..daceee538b --- /dev/null +++ b/src/DataExchange/TKDESTEP/StepElement/FILES.cmake @@ -0,0 +1,99 @@ +# Source files for StepElement package +set(OCCT_StepElement_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StepElement_FILES + StepElement_AnalysisItemWithinRepresentation.cxx + StepElement_AnalysisItemWithinRepresentation.hxx + StepElement_Array1OfCurveElementEndReleasePacket.hxx + StepElement_Array1OfCurveElementSectionDefinition.hxx + StepElement_Array1OfHSequenceOfCurveElementPurposeMember.hxx + StepElement_Array1OfHSequenceOfSurfaceElementPurposeMember.hxx + StepElement_Array1OfMeasureOrUnspecifiedValue.hxx + StepElement_Array1OfSurfaceSection.hxx + StepElement_Array1OfVolumeElementPurpose.hxx + StepElement_Array1OfVolumeElementPurposeMember.hxx + StepElement_Array2OfCurveElementPurposeMember.hxx + StepElement_Array2OfSurfaceElementPurpose.hxx + StepElement_Array2OfSurfaceElementPurposeMember.hxx + StepElement_Curve3dElementDescriptor.cxx + StepElement_Curve3dElementDescriptor.hxx + StepElement_CurveEdge.hxx + StepElement_CurveElementEndReleasePacket.cxx + StepElement_CurveElementEndReleasePacket.hxx + StepElement_CurveElementFreedom.cxx + StepElement_CurveElementFreedom.hxx + StepElement_CurveElementFreedomMember.cxx + StepElement_CurveElementFreedomMember.hxx + StepElement_CurveElementPurpose.cxx + StepElement_CurveElementPurpose.hxx + StepElement_CurveElementPurposeMember.cxx + StepElement_CurveElementPurposeMember.hxx + StepElement_CurveElementSectionDefinition.cxx + StepElement_CurveElementSectionDefinition.hxx + StepElement_CurveElementSectionDerivedDefinitions.cxx + StepElement_CurveElementSectionDerivedDefinitions.hxx + StepElement_Element2dShape.hxx + StepElement_ElementAspect.cxx + StepElement_ElementAspect.hxx + StepElement_ElementAspectMember.cxx + StepElement_ElementAspectMember.hxx + StepElement_ElementDescriptor.cxx + StepElement_ElementDescriptor.hxx + StepElement_ElementMaterial.cxx + StepElement_ElementMaterial.hxx + StepElement_ElementOrder.hxx + StepElement_ElementVolume.hxx + StepElement_EnumeratedCurveElementFreedom.hxx + StepElement_EnumeratedCurveElementPurpose.hxx + StepElement_EnumeratedSurfaceElementPurpose.hxx + StepElement_EnumeratedVolumeElementPurpose.hxx + StepElement_HArray1OfCurveElementEndReleasePacket.hxx + StepElement_HArray1OfCurveElementSectionDefinition.hxx + StepElement_HArray1OfHSequenceOfCurveElementPurposeMember.hxx + StepElement_HArray1OfHSequenceOfSurfaceElementPurposeMember.hxx + StepElement_HArray1OfMeasureOrUnspecifiedValue.hxx + StepElement_HArray1OfSurfaceSection.hxx + StepElement_HArray1OfVolumeElementPurpose.hxx + StepElement_HArray1OfVolumeElementPurposeMember.hxx + StepElement_HArray2OfCurveElementPurposeMember.hxx + StepElement_HArray2OfSurfaceElementPurpose.hxx + StepElement_HArray2OfSurfaceElementPurposeMember.hxx + StepElement_HSequenceOfCurveElementPurposeMember.hxx + StepElement_HSequenceOfCurveElementSectionDefinition.hxx + StepElement_HSequenceOfElementMaterial.hxx + StepElement_HSequenceOfSurfaceElementPurposeMember.hxx + StepElement_MeasureOrUnspecifiedValue.cxx + StepElement_MeasureOrUnspecifiedValue.hxx + StepElement_MeasureOrUnspecifiedValueMember.cxx + StepElement_MeasureOrUnspecifiedValueMember.hxx + StepElement_SequenceOfCurveElementPurposeMember.hxx + StepElement_SequenceOfCurveElementSectionDefinition.hxx + StepElement_SequenceOfElementMaterial.hxx + StepElement_SequenceOfSurfaceElementPurposeMember.hxx + StepElement_Surface3dElementDescriptor.cxx + StepElement_Surface3dElementDescriptor.hxx + StepElement_SurfaceElementProperty.cxx + StepElement_SurfaceElementProperty.hxx + StepElement_SurfaceElementPurpose.cxx + StepElement_SurfaceElementPurpose.hxx + StepElement_SurfaceElementPurposeMember.cxx + StepElement_SurfaceElementPurposeMember.hxx + StepElement_SurfaceSection.cxx + StepElement_SurfaceSection.hxx + StepElement_SurfaceSectionField.cxx + StepElement_SurfaceSectionField.hxx + StepElement_SurfaceSectionFieldConstant.cxx + StepElement_SurfaceSectionFieldConstant.hxx + StepElement_SurfaceSectionFieldVarying.cxx + StepElement_SurfaceSectionFieldVarying.hxx + StepElement_UniformSurfaceSection.cxx + StepElement_UniformSurfaceSection.hxx + StepElement_UnspecifiedValue.hxx + StepElement_Volume3dElementDescriptor.cxx + StepElement_Volume3dElementDescriptor.hxx + StepElement_Volume3dElementShape.hxx + StepElement_VolumeElementPurpose.cxx + StepElement_VolumeElementPurpose.hxx + StepElement_VolumeElementPurposeMember.cxx + StepElement_VolumeElementPurposeMember.hxx +) diff --git a/src/StepElement/StepElement_AnalysisItemWithinRepresentation.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_AnalysisItemWithinRepresentation.cxx similarity index 100% rename from src/StepElement/StepElement_AnalysisItemWithinRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_AnalysisItemWithinRepresentation.cxx diff --git a/src/StepElement/StepElement_AnalysisItemWithinRepresentation.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_AnalysisItemWithinRepresentation.hxx similarity index 100% rename from src/StepElement/StepElement_AnalysisItemWithinRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_AnalysisItemWithinRepresentation.hxx diff --git a/src/StepElement/StepElement_Array1OfCurveElementEndReleasePacket.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_Array1OfCurveElementEndReleasePacket.hxx similarity index 100% rename from src/StepElement/StepElement_Array1OfCurveElementEndReleasePacket.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_Array1OfCurveElementEndReleasePacket.hxx diff --git a/src/StepElement/StepElement_Array1OfCurveElementSectionDefinition.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_Array1OfCurveElementSectionDefinition.hxx similarity index 100% rename from src/StepElement/StepElement_Array1OfCurveElementSectionDefinition.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_Array1OfCurveElementSectionDefinition.hxx diff --git a/src/StepElement/StepElement_Array1OfHSequenceOfCurveElementPurposeMember.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_Array1OfHSequenceOfCurveElementPurposeMember.hxx similarity index 100% rename from src/StepElement/StepElement_Array1OfHSequenceOfCurveElementPurposeMember.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_Array1OfHSequenceOfCurveElementPurposeMember.hxx diff --git a/src/StepElement/StepElement_Array1OfHSequenceOfSurfaceElementPurposeMember.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_Array1OfHSequenceOfSurfaceElementPurposeMember.hxx similarity index 100% rename from src/StepElement/StepElement_Array1OfHSequenceOfSurfaceElementPurposeMember.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_Array1OfHSequenceOfSurfaceElementPurposeMember.hxx diff --git a/src/StepElement/StepElement_Array1OfMeasureOrUnspecifiedValue.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_Array1OfMeasureOrUnspecifiedValue.hxx similarity index 100% rename from src/StepElement/StepElement_Array1OfMeasureOrUnspecifiedValue.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_Array1OfMeasureOrUnspecifiedValue.hxx diff --git a/src/StepElement/StepElement_Array1OfSurfaceSection.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_Array1OfSurfaceSection.hxx similarity index 100% rename from src/StepElement/StepElement_Array1OfSurfaceSection.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_Array1OfSurfaceSection.hxx diff --git a/src/StepElement/StepElement_Array1OfVolumeElementPurpose.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_Array1OfVolumeElementPurpose.hxx similarity index 100% rename from src/StepElement/StepElement_Array1OfVolumeElementPurpose.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_Array1OfVolumeElementPurpose.hxx diff --git a/src/StepElement/StepElement_Array1OfVolumeElementPurposeMember.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_Array1OfVolumeElementPurposeMember.hxx similarity index 100% rename from src/StepElement/StepElement_Array1OfVolumeElementPurposeMember.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_Array1OfVolumeElementPurposeMember.hxx diff --git a/src/StepElement/StepElement_Array2OfCurveElementPurposeMember.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_Array2OfCurveElementPurposeMember.hxx similarity index 100% rename from src/StepElement/StepElement_Array2OfCurveElementPurposeMember.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_Array2OfCurveElementPurposeMember.hxx diff --git a/src/StepElement/StepElement_Array2OfSurfaceElementPurpose.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_Array2OfSurfaceElementPurpose.hxx similarity index 100% rename from src/StepElement/StepElement_Array2OfSurfaceElementPurpose.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_Array2OfSurfaceElementPurpose.hxx diff --git a/src/StepElement/StepElement_Array2OfSurfaceElementPurposeMember.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_Array2OfSurfaceElementPurposeMember.hxx similarity index 100% rename from src/StepElement/StepElement_Array2OfSurfaceElementPurposeMember.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_Array2OfSurfaceElementPurposeMember.hxx diff --git a/src/StepElement/StepElement_Curve3dElementDescriptor.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_Curve3dElementDescriptor.cxx similarity index 100% rename from src/StepElement/StepElement_Curve3dElementDescriptor.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_Curve3dElementDescriptor.cxx diff --git a/src/StepElement/StepElement_Curve3dElementDescriptor.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_Curve3dElementDescriptor.hxx similarity index 100% rename from src/StepElement/StepElement_Curve3dElementDescriptor.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_Curve3dElementDescriptor.hxx diff --git a/src/StepElement/StepElement_CurveEdge.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_CurveEdge.hxx similarity index 100% rename from src/StepElement/StepElement_CurveEdge.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_CurveEdge.hxx diff --git a/src/StepElement/StepElement_CurveElementEndReleasePacket.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementEndReleasePacket.cxx similarity index 100% rename from src/StepElement/StepElement_CurveElementEndReleasePacket.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementEndReleasePacket.cxx diff --git a/src/StepElement/StepElement_CurveElementEndReleasePacket.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementEndReleasePacket.hxx similarity index 100% rename from src/StepElement/StepElement_CurveElementEndReleasePacket.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementEndReleasePacket.hxx diff --git a/src/StepElement/StepElement_CurveElementFreedom.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementFreedom.cxx similarity index 100% rename from src/StepElement/StepElement_CurveElementFreedom.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementFreedom.cxx diff --git a/src/StepElement/StepElement_CurveElementFreedom.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementFreedom.hxx similarity index 100% rename from src/StepElement/StepElement_CurveElementFreedom.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementFreedom.hxx diff --git a/src/StepElement/StepElement_CurveElementFreedomMember.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementFreedomMember.cxx similarity index 100% rename from src/StepElement/StepElement_CurveElementFreedomMember.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementFreedomMember.cxx diff --git a/src/StepElement/StepElement_CurveElementFreedomMember.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementFreedomMember.hxx similarity index 100% rename from src/StepElement/StepElement_CurveElementFreedomMember.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementFreedomMember.hxx diff --git a/src/StepElement/StepElement_CurveElementPurpose.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementPurpose.cxx similarity index 100% rename from src/StepElement/StepElement_CurveElementPurpose.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementPurpose.cxx diff --git a/src/StepElement/StepElement_CurveElementPurpose.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementPurpose.hxx similarity index 100% rename from src/StepElement/StepElement_CurveElementPurpose.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementPurpose.hxx diff --git a/src/StepElement/StepElement_CurveElementPurposeMember.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementPurposeMember.cxx similarity index 100% rename from src/StepElement/StepElement_CurveElementPurposeMember.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementPurposeMember.cxx diff --git a/src/StepElement/StepElement_CurveElementPurposeMember.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementPurposeMember.hxx similarity index 100% rename from src/StepElement/StepElement_CurveElementPurposeMember.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementPurposeMember.hxx diff --git a/src/StepElement/StepElement_CurveElementSectionDefinition.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementSectionDefinition.cxx similarity index 100% rename from src/StepElement/StepElement_CurveElementSectionDefinition.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementSectionDefinition.cxx diff --git a/src/StepElement/StepElement_CurveElementSectionDefinition.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementSectionDefinition.hxx similarity index 100% rename from src/StepElement/StepElement_CurveElementSectionDefinition.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementSectionDefinition.hxx diff --git a/src/StepElement/StepElement_CurveElementSectionDerivedDefinitions.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementSectionDerivedDefinitions.cxx similarity index 100% rename from src/StepElement/StepElement_CurveElementSectionDerivedDefinitions.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementSectionDerivedDefinitions.cxx diff --git a/src/StepElement/StepElement_CurveElementSectionDerivedDefinitions.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementSectionDerivedDefinitions.hxx similarity index 100% rename from src/StepElement/StepElement_CurveElementSectionDerivedDefinitions.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementSectionDerivedDefinitions.hxx diff --git a/src/StepElement/StepElement_Element2dShape.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_Element2dShape.hxx similarity index 100% rename from src/StepElement/StepElement_Element2dShape.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_Element2dShape.hxx diff --git a/src/StepElement/StepElement_ElementAspect.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_ElementAspect.cxx similarity index 100% rename from src/StepElement/StepElement_ElementAspect.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_ElementAspect.cxx diff --git a/src/StepElement/StepElement_ElementAspect.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_ElementAspect.hxx similarity index 100% rename from src/StepElement/StepElement_ElementAspect.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_ElementAspect.hxx diff --git a/src/StepElement/StepElement_ElementAspectMember.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_ElementAspectMember.cxx similarity index 100% rename from src/StepElement/StepElement_ElementAspectMember.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_ElementAspectMember.cxx diff --git a/src/StepElement/StepElement_ElementAspectMember.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_ElementAspectMember.hxx similarity index 100% rename from src/StepElement/StepElement_ElementAspectMember.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_ElementAspectMember.hxx diff --git a/src/StepElement/StepElement_ElementDescriptor.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_ElementDescriptor.cxx similarity index 100% rename from src/StepElement/StepElement_ElementDescriptor.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_ElementDescriptor.cxx diff --git a/src/StepElement/StepElement_ElementDescriptor.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_ElementDescriptor.hxx similarity index 100% rename from src/StepElement/StepElement_ElementDescriptor.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_ElementDescriptor.hxx diff --git a/src/StepElement/StepElement_ElementMaterial.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_ElementMaterial.cxx similarity index 100% rename from src/StepElement/StepElement_ElementMaterial.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_ElementMaterial.cxx diff --git a/src/StepElement/StepElement_ElementMaterial.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_ElementMaterial.hxx similarity index 100% rename from src/StepElement/StepElement_ElementMaterial.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_ElementMaterial.hxx diff --git a/src/StepElement/StepElement_ElementOrder.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_ElementOrder.hxx similarity index 100% rename from src/StepElement/StepElement_ElementOrder.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_ElementOrder.hxx diff --git a/src/StepElement/StepElement_ElementVolume.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_ElementVolume.hxx similarity index 100% rename from src/StepElement/StepElement_ElementVolume.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_ElementVolume.hxx diff --git a/src/StepElement/StepElement_EnumeratedCurveElementFreedom.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_EnumeratedCurveElementFreedom.hxx similarity index 100% rename from src/StepElement/StepElement_EnumeratedCurveElementFreedom.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_EnumeratedCurveElementFreedom.hxx diff --git a/src/StepElement/StepElement_EnumeratedCurveElementPurpose.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_EnumeratedCurveElementPurpose.hxx similarity index 100% rename from src/StepElement/StepElement_EnumeratedCurveElementPurpose.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_EnumeratedCurveElementPurpose.hxx diff --git a/src/StepElement/StepElement_EnumeratedSurfaceElementPurpose.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_EnumeratedSurfaceElementPurpose.hxx similarity index 100% rename from src/StepElement/StepElement_EnumeratedSurfaceElementPurpose.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_EnumeratedSurfaceElementPurpose.hxx diff --git a/src/StepElement/StepElement_EnumeratedVolumeElementPurpose.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_EnumeratedVolumeElementPurpose.hxx similarity index 100% rename from src/StepElement/StepElement_EnumeratedVolumeElementPurpose.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_EnumeratedVolumeElementPurpose.hxx diff --git a/src/StepElement/StepElement_HArray1OfCurveElementEndReleasePacket.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_HArray1OfCurveElementEndReleasePacket.hxx similarity index 100% rename from src/StepElement/StepElement_HArray1OfCurveElementEndReleasePacket.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_HArray1OfCurveElementEndReleasePacket.hxx diff --git a/src/StepElement/StepElement_HArray1OfCurveElementSectionDefinition.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_HArray1OfCurveElementSectionDefinition.hxx similarity index 100% rename from src/StepElement/StepElement_HArray1OfCurveElementSectionDefinition.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_HArray1OfCurveElementSectionDefinition.hxx diff --git a/src/StepElement/StepElement_HArray1OfHSequenceOfCurveElementPurposeMember.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_HArray1OfHSequenceOfCurveElementPurposeMember.hxx similarity index 100% rename from src/StepElement/StepElement_HArray1OfHSequenceOfCurveElementPurposeMember.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_HArray1OfHSequenceOfCurveElementPurposeMember.hxx diff --git a/src/StepElement/StepElement_HArray1OfHSequenceOfSurfaceElementPurposeMember.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_HArray1OfHSequenceOfSurfaceElementPurposeMember.hxx similarity index 100% rename from src/StepElement/StepElement_HArray1OfHSequenceOfSurfaceElementPurposeMember.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_HArray1OfHSequenceOfSurfaceElementPurposeMember.hxx diff --git a/src/StepElement/StepElement_HArray1OfMeasureOrUnspecifiedValue.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_HArray1OfMeasureOrUnspecifiedValue.hxx similarity index 100% rename from src/StepElement/StepElement_HArray1OfMeasureOrUnspecifiedValue.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_HArray1OfMeasureOrUnspecifiedValue.hxx diff --git a/src/StepElement/StepElement_HArray1OfSurfaceSection.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_HArray1OfSurfaceSection.hxx similarity index 100% rename from src/StepElement/StepElement_HArray1OfSurfaceSection.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_HArray1OfSurfaceSection.hxx diff --git a/src/StepElement/StepElement_HArray1OfVolumeElementPurpose.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_HArray1OfVolumeElementPurpose.hxx similarity index 100% rename from src/StepElement/StepElement_HArray1OfVolumeElementPurpose.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_HArray1OfVolumeElementPurpose.hxx diff --git a/src/StepElement/StepElement_HArray1OfVolumeElementPurposeMember.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_HArray1OfVolumeElementPurposeMember.hxx similarity index 100% rename from src/StepElement/StepElement_HArray1OfVolumeElementPurposeMember.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_HArray1OfVolumeElementPurposeMember.hxx diff --git a/src/StepElement/StepElement_HArray2OfCurveElementPurposeMember.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_HArray2OfCurveElementPurposeMember.hxx similarity index 100% rename from src/StepElement/StepElement_HArray2OfCurveElementPurposeMember.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_HArray2OfCurveElementPurposeMember.hxx diff --git a/src/StepElement/StepElement_HArray2OfSurfaceElementPurpose.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_HArray2OfSurfaceElementPurpose.hxx similarity index 100% rename from src/StepElement/StepElement_HArray2OfSurfaceElementPurpose.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_HArray2OfSurfaceElementPurpose.hxx diff --git a/src/StepElement/StepElement_HArray2OfSurfaceElementPurposeMember.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_HArray2OfSurfaceElementPurposeMember.hxx similarity index 100% rename from src/StepElement/StepElement_HArray2OfSurfaceElementPurposeMember.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_HArray2OfSurfaceElementPurposeMember.hxx diff --git a/src/StepElement/StepElement_HSequenceOfCurveElementPurposeMember.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_HSequenceOfCurveElementPurposeMember.hxx similarity index 100% rename from src/StepElement/StepElement_HSequenceOfCurveElementPurposeMember.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_HSequenceOfCurveElementPurposeMember.hxx diff --git a/src/StepElement/StepElement_HSequenceOfCurveElementSectionDefinition.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_HSequenceOfCurveElementSectionDefinition.hxx similarity index 100% rename from src/StepElement/StepElement_HSequenceOfCurveElementSectionDefinition.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_HSequenceOfCurveElementSectionDefinition.hxx diff --git a/src/StepElement/StepElement_HSequenceOfElementMaterial.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_HSequenceOfElementMaterial.hxx similarity index 100% rename from src/StepElement/StepElement_HSequenceOfElementMaterial.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_HSequenceOfElementMaterial.hxx diff --git a/src/StepElement/StepElement_HSequenceOfSurfaceElementPurposeMember.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_HSequenceOfSurfaceElementPurposeMember.hxx similarity index 100% rename from src/StepElement/StepElement_HSequenceOfSurfaceElementPurposeMember.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_HSequenceOfSurfaceElementPurposeMember.hxx diff --git a/src/StepElement/StepElement_MeasureOrUnspecifiedValue.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_MeasureOrUnspecifiedValue.cxx similarity index 100% rename from src/StepElement/StepElement_MeasureOrUnspecifiedValue.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_MeasureOrUnspecifiedValue.cxx diff --git a/src/StepElement/StepElement_MeasureOrUnspecifiedValue.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_MeasureOrUnspecifiedValue.hxx similarity index 100% rename from src/StepElement/StepElement_MeasureOrUnspecifiedValue.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_MeasureOrUnspecifiedValue.hxx diff --git a/src/StepElement/StepElement_MeasureOrUnspecifiedValueMember.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_MeasureOrUnspecifiedValueMember.cxx similarity index 100% rename from src/StepElement/StepElement_MeasureOrUnspecifiedValueMember.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_MeasureOrUnspecifiedValueMember.cxx diff --git a/src/StepElement/StepElement_MeasureOrUnspecifiedValueMember.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_MeasureOrUnspecifiedValueMember.hxx similarity index 100% rename from src/StepElement/StepElement_MeasureOrUnspecifiedValueMember.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_MeasureOrUnspecifiedValueMember.hxx diff --git a/src/StepElement/StepElement_SequenceOfCurveElementPurposeMember.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_SequenceOfCurveElementPurposeMember.hxx similarity index 100% rename from src/StepElement/StepElement_SequenceOfCurveElementPurposeMember.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_SequenceOfCurveElementPurposeMember.hxx diff --git a/src/StepElement/StepElement_SequenceOfCurveElementSectionDefinition.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_SequenceOfCurveElementSectionDefinition.hxx similarity index 100% rename from src/StepElement/StepElement_SequenceOfCurveElementSectionDefinition.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_SequenceOfCurveElementSectionDefinition.hxx diff --git a/src/StepElement/StepElement_SequenceOfElementMaterial.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_SequenceOfElementMaterial.hxx similarity index 100% rename from src/StepElement/StepElement_SequenceOfElementMaterial.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_SequenceOfElementMaterial.hxx diff --git a/src/StepElement/StepElement_SequenceOfSurfaceElementPurposeMember.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_SequenceOfSurfaceElementPurposeMember.hxx similarity index 100% rename from src/StepElement/StepElement_SequenceOfSurfaceElementPurposeMember.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_SequenceOfSurfaceElementPurposeMember.hxx diff --git a/src/StepElement/StepElement_Surface3dElementDescriptor.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_Surface3dElementDescriptor.cxx similarity index 100% rename from src/StepElement/StepElement_Surface3dElementDescriptor.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_Surface3dElementDescriptor.cxx diff --git a/src/StepElement/StepElement_Surface3dElementDescriptor.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_Surface3dElementDescriptor.hxx similarity index 100% rename from src/StepElement/StepElement_Surface3dElementDescriptor.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_Surface3dElementDescriptor.hxx diff --git a/src/StepElement/StepElement_SurfaceElementProperty.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceElementProperty.cxx similarity index 100% rename from src/StepElement/StepElement_SurfaceElementProperty.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceElementProperty.cxx diff --git a/src/StepElement/StepElement_SurfaceElementProperty.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceElementProperty.hxx similarity index 100% rename from src/StepElement/StepElement_SurfaceElementProperty.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceElementProperty.hxx diff --git a/src/StepElement/StepElement_SurfaceElementPurpose.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceElementPurpose.cxx similarity index 100% rename from src/StepElement/StepElement_SurfaceElementPurpose.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceElementPurpose.cxx diff --git a/src/StepElement/StepElement_SurfaceElementPurpose.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceElementPurpose.hxx similarity index 100% rename from src/StepElement/StepElement_SurfaceElementPurpose.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceElementPurpose.hxx diff --git a/src/StepElement/StepElement_SurfaceElementPurposeMember.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceElementPurposeMember.cxx similarity index 100% rename from src/StepElement/StepElement_SurfaceElementPurposeMember.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceElementPurposeMember.cxx diff --git a/src/StepElement/StepElement_SurfaceElementPurposeMember.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceElementPurposeMember.hxx similarity index 100% rename from src/StepElement/StepElement_SurfaceElementPurposeMember.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceElementPurposeMember.hxx diff --git a/src/StepElement/StepElement_SurfaceSection.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceSection.cxx similarity index 100% rename from src/StepElement/StepElement_SurfaceSection.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceSection.cxx diff --git a/src/StepElement/StepElement_SurfaceSection.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceSection.hxx similarity index 100% rename from src/StepElement/StepElement_SurfaceSection.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceSection.hxx diff --git a/src/StepElement/StepElement_SurfaceSectionField.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceSectionField.cxx similarity index 100% rename from src/StepElement/StepElement_SurfaceSectionField.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceSectionField.cxx diff --git a/src/StepElement/StepElement_SurfaceSectionField.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceSectionField.hxx similarity index 100% rename from src/StepElement/StepElement_SurfaceSectionField.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceSectionField.hxx diff --git a/src/StepElement/StepElement_SurfaceSectionFieldConstant.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceSectionFieldConstant.cxx similarity index 100% rename from src/StepElement/StepElement_SurfaceSectionFieldConstant.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceSectionFieldConstant.cxx diff --git a/src/StepElement/StepElement_SurfaceSectionFieldConstant.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceSectionFieldConstant.hxx similarity index 100% rename from src/StepElement/StepElement_SurfaceSectionFieldConstant.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceSectionFieldConstant.hxx diff --git a/src/StepElement/StepElement_SurfaceSectionFieldVarying.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceSectionFieldVarying.cxx similarity index 100% rename from src/StepElement/StepElement_SurfaceSectionFieldVarying.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceSectionFieldVarying.cxx diff --git a/src/StepElement/StepElement_SurfaceSectionFieldVarying.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceSectionFieldVarying.hxx similarity index 100% rename from src/StepElement/StepElement_SurfaceSectionFieldVarying.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_SurfaceSectionFieldVarying.hxx diff --git a/src/StepElement/StepElement_UniformSurfaceSection.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_UniformSurfaceSection.cxx similarity index 100% rename from src/StepElement/StepElement_UniformSurfaceSection.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_UniformSurfaceSection.cxx diff --git a/src/StepElement/StepElement_UniformSurfaceSection.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_UniformSurfaceSection.hxx similarity index 100% rename from src/StepElement/StepElement_UniformSurfaceSection.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_UniformSurfaceSection.hxx diff --git a/src/StepElement/StepElement_UnspecifiedValue.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_UnspecifiedValue.hxx similarity index 100% rename from src/StepElement/StepElement_UnspecifiedValue.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_UnspecifiedValue.hxx diff --git a/src/StepElement/StepElement_Volume3dElementDescriptor.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_Volume3dElementDescriptor.cxx similarity index 100% rename from src/StepElement/StepElement_Volume3dElementDescriptor.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_Volume3dElementDescriptor.cxx diff --git a/src/StepElement/StepElement_Volume3dElementDescriptor.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_Volume3dElementDescriptor.hxx similarity index 100% rename from src/StepElement/StepElement_Volume3dElementDescriptor.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_Volume3dElementDescriptor.hxx diff --git a/src/StepElement/StepElement_Volume3dElementShape.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_Volume3dElementShape.hxx similarity index 100% rename from src/StepElement/StepElement_Volume3dElementShape.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_Volume3dElementShape.hxx diff --git a/src/StepElement/StepElement_VolumeElementPurpose.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_VolumeElementPurpose.cxx similarity index 100% rename from src/StepElement/StepElement_VolumeElementPurpose.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_VolumeElementPurpose.cxx diff --git a/src/StepElement/StepElement_VolumeElementPurpose.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_VolumeElementPurpose.hxx similarity index 100% rename from src/StepElement/StepElement_VolumeElementPurpose.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_VolumeElementPurpose.hxx diff --git a/src/StepElement/StepElement_VolumeElementPurposeMember.cxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_VolumeElementPurposeMember.cxx similarity index 100% rename from src/StepElement/StepElement_VolumeElementPurposeMember.cxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_VolumeElementPurposeMember.cxx diff --git a/src/StepElement/StepElement_VolumeElementPurposeMember.hxx b/src/DataExchange/TKDESTEP/StepElement/StepElement_VolumeElementPurposeMember.hxx similarity index 100% rename from src/StepElement/StepElement_VolumeElementPurposeMember.hxx rename to src/DataExchange/TKDESTEP/StepElement/StepElement_VolumeElementPurposeMember.hxx diff --git a/src/DataExchange/TKDESTEP/StepFEA/FILES.cmake b/src/DataExchange/TKDESTEP/StepFEA/FILES.cmake new file mode 100644 index 0000000000..51a5b59bca --- /dev/null +++ b/src/DataExchange/TKDESTEP/StepFEA/FILES.cmake @@ -0,0 +1,154 @@ +# Source files for StepFEA package +set(OCCT_StepFEA_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StepFEA_FILES + StepFEA_AlignedCurve3dElementCoordinateSystem.cxx + StepFEA_AlignedCurve3dElementCoordinateSystem.hxx + StepFEA_AlignedSurface3dElementCoordinateSystem.cxx + StepFEA_AlignedSurface3dElementCoordinateSystem.hxx + StepFEA_ArbitraryVolume3dElementCoordinateSystem.cxx + StepFEA_ArbitraryVolume3dElementCoordinateSystem.hxx + StepFEA_Array1OfCurveElementEndOffset.hxx + StepFEA_Array1OfCurveElementEndRelease.hxx + StepFEA_Array1OfCurveElementInterval.hxx + StepFEA_Array1OfDegreeOfFreedom.hxx + StepFEA_Array1OfElementRepresentation.hxx + StepFEA_Array1OfNodeRepresentation.hxx + StepFEA_ConstantSurface3dElementCoordinateSystem.cxx + StepFEA_ConstantSurface3dElementCoordinateSystem.hxx + StepFEA_CoordinateSystemType.hxx + StepFEA_Curve3dElementProperty.cxx + StepFEA_Curve3dElementProperty.hxx + StepFEA_Curve3dElementRepresentation.cxx + StepFEA_Curve3dElementRepresentation.hxx + StepFEA_CurveEdge.hxx + StepFEA_CurveElementEndCoordinateSystem.cxx + StepFEA_CurveElementEndCoordinateSystem.hxx + StepFEA_CurveElementEndOffset.cxx + StepFEA_CurveElementEndOffset.hxx + StepFEA_CurveElementEndRelease.cxx + StepFEA_CurveElementEndRelease.hxx + StepFEA_CurveElementInterval.cxx + StepFEA_CurveElementInterval.hxx + StepFEA_CurveElementIntervalConstant.cxx + StepFEA_CurveElementIntervalConstant.hxx + StepFEA_CurveElementIntervalLinearlyVarying.cxx + StepFEA_CurveElementIntervalLinearlyVarying.hxx + StepFEA_CurveElementLocation.cxx + StepFEA_CurveElementLocation.hxx + StepFEA_DegreeOfFreedom.cxx + StepFEA_DegreeOfFreedom.hxx + StepFEA_DegreeOfFreedomMember.cxx + StepFEA_DegreeOfFreedomMember.hxx + StepFEA_DummyNode.cxx + StepFEA_DummyNode.hxx + StepFEA_ElementGeometricRelationship.cxx + StepFEA_ElementGeometricRelationship.hxx + StepFEA_ElementGroup.cxx + StepFEA_ElementGroup.hxx + StepFEA_ElementOrElementGroup.cxx + StepFEA_ElementOrElementGroup.hxx + StepFEA_ElementRepresentation.cxx + StepFEA_ElementRepresentation.hxx + StepFEA_ElementVolume.hxx + StepFEA_EnumeratedDegreeOfFreedom.hxx + StepFEA_FeaAreaDensity.cxx + StepFEA_FeaAreaDensity.hxx + StepFEA_FeaAxis2Placement3d.cxx + StepFEA_FeaAxis2Placement3d.hxx + StepFEA_FeaCurveSectionGeometricRelationship.cxx + StepFEA_FeaCurveSectionGeometricRelationship.hxx + StepFEA_FeaGroup.cxx + StepFEA_FeaGroup.hxx + StepFEA_FeaLinearElasticity.cxx + StepFEA_FeaLinearElasticity.hxx + StepFEA_FeaMassDensity.cxx + StepFEA_FeaMassDensity.hxx + StepFEA_FeaMaterialPropertyRepresentation.cxx + StepFEA_FeaMaterialPropertyRepresentation.hxx + StepFEA_FeaMaterialPropertyRepresentationItem.cxx + StepFEA_FeaMaterialPropertyRepresentationItem.hxx + StepFEA_FeaModel.cxx + StepFEA_FeaModel.hxx + StepFEA_FeaModel3d.cxx + StepFEA_FeaModel3d.hxx + StepFEA_FeaModelDefinition.cxx + StepFEA_FeaModelDefinition.hxx + StepFEA_FeaMoistureAbsorption.cxx + StepFEA_FeaMoistureAbsorption.hxx + StepFEA_FeaParametricPoint.cxx + StepFEA_FeaParametricPoint.hxx + StepFEA_FeaRepresentationItem.cxx + StepFEA_FeaRepresentationItem.hxx + StepFEA_FeaSecantCoefficientOfLinearThermalExpansion.cxx + StepFEA_FeaSecantCoefficientOfLinearThermalExpansion.hxx + StepFEA_FeaShellBendingStiffness.cxx + StepFEA_FeaShellBendingStiffness.hxx + StepFEA_FeaShellMembraneBendingCouplingStiffness.cxx + StepFEA_FeaShellMembraneBendingCouplingStiffness.hxx + StepFEA_FeaShellMembraneStiffness.cxx + StepFEA_FeaShellMembraneStiffness.hxx + StepFEA_FeaShellShearStiffness.cxx + StepFEA_FeaShellShearStiffness.hxx + StepFEA_FeaSurfaceSectionGeometricRelationship.cxx + StepFEA_FeaSurfaceSectionGeometricRelationship.hxx + StepFEA_FeaTangentialCoefficientOfLinearThermalExpansion.cxx + StepFEA_FeaTangentialCoefficientOfLinearThermalExpansion.hxx + StepFEA_FreedomAndCoefficient.cxx + StepFEA_FreedomAndCoefficient.hxx + StepFEA_FreedomsList.cxx + StepFEA_FreedomsList.hxx + StepFEA_GeometricNode.cxx + StepFEA_GeometricNode.hxx + StepFEA_HArray1OfCurveElementEndOffset.hxx + StepFEA_HArray1OfCurveElementEndRelease.hxx + StepFEA_HArray1OfCurveElementInterval.hxx + StepFEA_HArray1OfDegreeOfFreedom.hxx + StepFEA_HArray1OfElementRepresentation.hxx + StepFEA_HArray1OfNodeRepresentation.hxx + StepFEA_HSequenceOfCurve3dElementProperty.hxx + StepFEA_HSequenceOfElementGeometricRelationship.hxx + StepFEA_HSequenceOfElementRepresentation.hxx + StepFEA_HSequenceOfNodeRepresentation.hxx + StepFEA_Node.cxx + StepFEA_Node.hxx + StepFEA_NodeDefinition.cxx + StepFEA_NodeDefinition.hxx + StepFEA_NodeGroup.cxx + StepFEA_NodeGroup.hxx + StepFEA_NodeRepresentation.cxx + StepFEA_NodeRepresentation.hxx + StepFEA_NodeSet.cxx + StepFEA_NodeSet.hxx + StepFEA_NodeWithSolutionCoordinateSystem.cxx + StepFEA_NodeWithSolutionCoordinateSystem.hxx + StepFEA_NodeWithVector.cxx + StepFEA_NodeWithVector.hxx + StepFEA_ParametricCurve3dElementCoordinateDirection.cxx + StepFEA_ParametricCurve3dElementCoordinateDirection.hxx + StepFEA_ParametricCurve3dElementCoordinateSystem.cxx + StepFEA_ParametricCurve3dElementCoordinateSystem.hxx + StepFEA_ParametricSurface3dElementCoordinateSystem.cxx + StepFEA_ParametricSurface3dElementCoordinateSystem.hxx + StepFEA_SequenceOfCurve3dElementProperty.hxx + StepFEA_SequenceOfElementGeometricRelationship.hxx + StepFEA_SequenceOfElementRepresentation.hxx + StepFEA_SequenceOfNodeRepresentation.hxx + StepFEA_Surface3dElementRepresentation.cxx + StepFEA_Surface3dElementRepresentation.hxx + StepFEA_SymmetricTensor22d.cxx + StepFEA_SymmetricTensor22d.hxx + StepFEA_SymmetricTensor23d.cxx + StepFEA_SymmetricTensor23d.hxx + StepFEA_SymmetricTensor23dMember.cxx + StepFEA_SymmetricTensor23dMember.hxx + StepFEA_SymmetricTensor42d.cxx + StepFEA_SymmetricTensor42d.hxx + StepFEA_SymmetricTensor43d.cxx + StepFEA_SymmetricTensor43d.hxx + StepFEA_SymmetricTensor43dMember.cxx + StepFEA_SymmetricTensor43dMember.hxx + StepFEA_UnspecifiedValue.hxx + StepFEA_Volume3dElementRepresentation.cxx + StepFEA_Volume3dElementRepresentation.hxx +) diff --git a/src/StepFEA/StepFEA_AlignedCurve3dElementCoordinateSystem.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_AlignedCurve3dElementCoordinateSystem.cxx similarity index 100% rename from src/StepFEA/StepFEA_AlignedCurve3dElementCoordinateSystem.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_AlignedCurve3dElementCoordinateSystem.cxx diff --git a/src/StepFEA/StepFEA_AlignedCurve3dElementCoordinateSystem.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_AlignedCurve3dElementCoordinateSystem.hxx similarity index 100% rename from src/StepFEA/StepFEA_AlignedCurve3dElementCoordinateSystem.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_AlignedCurve3dElementCoordinateSystem.hxx diff --git a/src/StepFEA/StepFEA_AlignedSurface3dElementCoordinateSystem.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_AlignedSurface3dElementCoordinateSystem.cxx similarity index 100% rename from src/StepFEA/StepFEA_AlignedSurface3dElementCoordinateSystem.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_AlignedSurface3dElementCoordinateSystem.cxx diff --git a/src/StepFEA/StepFEA_AlignedSurface3dElementCoordinateSystem.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_AlignedSurface3dElementCoordinateSystem.hxx similarity index 100% rename from src/StepFEA/StepFEA_AlignedSurface3dElementCoordinateSystem.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_AlignedSurface3dElementCoordinateSystem.hxx diff --git a/src/StepFEA/StepFEA_ArbitraryVolume3dElementCoordinateSystem.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_ArbitraryVolume3dElementCoordinateSystem.cxx similarity index 100% rename from src/StepFEA/StepFEA_ArbitraryVolume3dElementCoordinateSystem.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_ArbitraryVolume3dElementCoordinateSystem.cxx diff --git a/src/StepFEA/StepFEA_ArbitraryVolume3dElementCoordinateSystem.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_ArbitraryVolume3dElementCoordinateSystem.hxx similarity index 100% rename from src/StepFEA/StepFEA_ArbitraryVolume3dElementCoordinateSystem.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_ArbitraryVolume3dElementCoordinateSystem.hxx diff --git a/src/StepFEA/StepFEA_Array1OfCurveElementEndOffset.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_Array1OfCurveElementEndOffset.hxx similarity index 100% rename from src/StepFEA/StepFEA_Array1OfCurveElementEndOffset.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_Array1OfCurveElementEndOffset.hxx diff --git a/src/StepFEA/StepFEA_Array1OfCurveElementEndRelease.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_Array1OfCurveElementEndRelease.hxx similarity index 100% rename from src/StepFEA/StepFEA_Array1OfCurveElementEndRelease.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_Array1OfCurveElementEndRelease.hxx diff --git a/src/StepFEA/StepFEA_Array1OfCurveElementInterval.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_Array1OfCurveElementInterval.hxx similarity index 100% rename from src/StepFEA/StepFEA_Array1OfCurveElementInterval.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_Array1OfCurveElementInterval.hxx diff --git a/src/StepFEA/StepFEA_Array1OfDegreeOfFreedom.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_Array1OfDegreeOfFreedom.hxx similarity index 100% rename from src/StepFEA/StepFEA_Array1OfDegreeOfFreedom.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_Array1OfDegreeOfFreedom.hxx diff --git a/src/StepFEA/StepFEA_Array1OfElementRepresentation.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_Array1OfElementRepresentation.hxx similarity index 100% rename from src/StepFEA/StepFEA_Array1OfElementRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_Array1OfElementRepresentation.hxx diff --git a/src/StepFEA/StepFEA_Array1OfNodeRepresentation.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_Array1OfNodeRepresentation.hxx similarity index 100% rename from src/StepFEA/StepFEA_Array1OfNodeRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_Array1OfNodeRepresentation.hxx diff --git a/src/StepFEA/StepFEA_ConstantSurface3dElementCoordinateSystem.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_ConstantSurface3dElementCoordinateSystem.cxx similarity index 100% rename from src/StepFEA/StepFEA_ConstantSurface3dElementCoordinateSystem.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_ConstantSurface3dElementCoordinateSystem.cxx diff --git a/src/StepFEA/StepFEA_ConstantSurface3dElementCoordinateSystem.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_ConstantSurface3dElementCoordinateSystem.hxx similarity index 100% rename from src/StepFEA/StepFEA_ConstantSurface3dElementCoordinateSystem.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_ConstantSurface3dElementCoordinateSystem.hxx diff --git a/src/StepFEA/StepFEA_CoordinateSystemType.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_CoordinateSystemType.hxx similarity index 100% rename from src/StepFEA/StepFEA_CoordinateSystemType.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_CoordinateSystemType.hxx diff --git a/src/StepFEA/StepFEA_Curve3dElementProperty.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_Curve3dElementProperty.cxx similarity index 100% rename from src/StepFEA/StepFEA_Curve3dElementProperty.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_Curve3dElementProperty.cxx diff --git a/src/StepFEA/StepFEA_Curve3dElementProperty.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_Curve3dElementProperty.hxx similarity index 100% rename from src/StepFEA/StepFEA_Curve3dElementProperty.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_Curve3dElementProperty.hxx diff --git a/src/StepFEA/StepFEA_Curve3dElementRepresentation.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_Curve3dElementRepresentation.cxx similarity index 100% rename from src/StepFEA/StepFEA_Curve3dElementRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_Curve3dElementRepresentation.cxx diff --git a/src/StepFEA/StepFEA_Curve3dElementRepresentation.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_Curve3dElementRepresentation.hxx similarity index 100% rename from src/StepFEA/StepFEA_Curve3dElementRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_Curve3dElementRepresentation.hxx diff --git a/src/StepFEA/StepFEA_CurveEdge.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveEdge.hxx similarity index 100% rename from src/StepFEA/StepFEA_CurveEdge.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveEdge.hxx diff --git a/src/StepFEA/StepFEA_CurveElementEndCoordinateSystem.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementEndCoordinateSystem.cxx similarity index 100% rename from src/StepFEA/StepFEA_CurveElementEndCoordinateSystem.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementEndCoordinateSystem.cxx diff --git a/src/StepFEA/StepFEA_CurveElementEndCoordinateSystem.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementEndCoordinateSystem.hxx similarity index 100% rename from src/StepFEA/StepFEA_CurveElementEndCoordinateSystem.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementEndCoordinateSystem.hxx diff --git a/src/StepFEA/StepFEA_CurveElementEndOffset.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementEndOffset.cxx similarity index 100% rename from src/StepFEA/StepFEA_CurveElementEndOffset.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementEndOffset.cxx diff --git a/src/StepFEA/StepFEA_CurveElementEndOffset.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementEndOffset.hxx similarity index 100% rename from src/StepFEA/StepFEA_CurveElementEndOffset.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementEndOffset.hxx diff --git a/src/StepFEA/StepFEA_CurveElementEndRelease.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementEndRelease.cxx similarity index 100% rename from src/StepFEA/StepFEA_CurveElementEndRelease.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementEndRelease.cxx diff --git a/src/StepFEA/StepFEA_CurveElementEndRelease.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementEndRelease.hxx similarity index 100% rename from src/StepFEA/StepFEA_CurveElementEndRelease.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementEndRelease.hxx diff --git a/src/StepFEA/StepFEA_CurveElementInterval.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementInterval.cxx similarity index 100% rename from src/StepFEA/StepFEA_CurveElementInterval.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementInterval.cxx diff --git a/src/StepFEA/StepFEA_CurveElementInterval.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementInterval.hxx similarity index 100% rename from src/StepFEA/StepFEA_CurveElementInterval.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementInterval.hxx diff --git a/src/StepFEA/StepFEA_CurveElementIntervalConstant.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementIntervalConstant.cxx similarity index 100% rename from src/StepFEA/StepFEA_CurveElementIntervalConstant.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementIntervalConstant.cxx diff --git a/src/StepFEA/StepFEA_CurveElementIntervalConstant.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementIntervalConstant.hxx similarity index 100% rename from src/StepFEA/StepFEA_CurveElementIntervalConstant.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementIntervalConstant.hxx diff --git a/src/StepFEA/StepFEA_CurveElementIntervalLinearlyVarying.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementIntervalLinearlyVarying.cxx similarity index 100% rename from src/StepFEA/StepFEA_CurveElementIntervalLinearlyVarying.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementIntervalLinearlyVarying.cxx diff --git a/src/StepFEA/StepFEA_CurveElementIntervalLinearlyVarying.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementIntervalLinearlyVarying.hxx similarity index 100% rename from src/StepFEA/StepFEA_CurveElementIntervalLinearlyVarying.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementIntervalLinearlyVarying.hxx diff --git a/src/StepFEA/StepFEA_CurveElementLocation.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementLocation.cxx similarity index 100% rename from src/StepFEA/StepFEA_CurveElementLocation.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementLocation.cxx diff --git a/src/StepFEA/StepFEA_CurveElementLocation.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementLocation.hxx similarity index 100% rename from src/StepFEA/StepFEA_CurveElementLocation.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_CurveElementLocation.hxx diff --git a/src/StepFEA/StepFEA_DegreeOfFreedom.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_DegreeOfFreedom.cxx similarity index 100% rename from src/StepFEA/StepFEA_DegreeOfFreedom.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_DegreeOfFreedom.cxx diff --git a/src/StepFEA/StepFEA_DegreeOfFreedom.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_DegreeOfFreedom.hxx similarity index 100% rename from src/StepFEA/StepFEA_DegreeOfFreedom.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_DegreeOfFreedom.hxx diff --git a/src/StepFEA/StepFEA_DegreeOfFreedomMember.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_DegreeOfFreedomMember.cxx similarity index 100% rename from src/StepFEA/StepFEA_DegreeOfFreedomMember.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_DegreeOfFreedomMember.cxx diff --git a/src/StepFEA/StepFEA_DegreeOfFreedomMember.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_DegreeOfFreedomMember.hxx similarity index 100% rename from src/StepFEA/StepFEA_DegreeOfFreedomMember.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_DegreeOfFreedomMember.hxx diff --git a/src/StepFEA/StepFEA_DummyNode.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_DummyNode.cxx similarity index 100% rename from src/StepFEA/StepFEA_DummyNode.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_DummyNode.cxx diff --git a/src/StepFEA/StepFEA_DummyNode.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_DummyNode.hxx similarity index 100% rename from src/StepFEA/StepFEA_DummyNode.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_DummyNode.hxx diff --git a/src/StepFEA/StepFEA_ElementGeometricRelationship.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_ElementGeometricRelationship.cxx similarity index 100% rename from src/StepFEA/StepFEA_ElementGeometricRelationship.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_ElementGeometricRelationship.cxx diff --git a/src/StepFEA/StepFEA_ElementGeometricRelationship.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_ElementGeometricRelationship.hxx similarity index 100% rename from src/StepFEA/StepFEA_ElementGeometricRelationship.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_ElementGeometricRelationship.hxx diff --git a/src/StepFEA/StepFEA_ElementGroup.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_ElementGroup.cxx similarity index 100% rename from src/StepFEA/StepFEA_ElementGroup.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_ElementGroup.cxx diff --git a/src/StepFEA/StepFEA_ElementGroup.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_ElementGroup.hxx similarity index 100% rename from src/StepFEA/StepFEA_ElementGroup.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_ElementGroup.hxx diff --git a/src/StepFEA/StepFEA_ElementOrElementGroup.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_ElementOrElementGroup.cxx similarity index 100% rename from src/StepFEA/StepFEA_ElementOrElementGroup.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_ElementOrElementGroup.cxx diff --git a/src/StepFEA/StepFEA_ElementOrElementGroup.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_ElementOrElementGroup.hxx similarity index 100% rename from src/StepFEA/StepFEA_ElementOrElementGroup.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_ElementOrElementGroup.hxx diff --git a/src/StepFEA/StepFEA_ElementRepresentation.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_ElementRepresentation.cxx similarity index 100% rename from src/StepFEA/StepFEA_ElementRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_ElementRepresentation.cxx diff --git a/src/StepFEA/StepFEA_ElementRepresentation.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_ElementRepresentation.hxx similarity index 100% rename from src/StepFEA/StepFEA_ElementRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_ElementRepresentation.hxx diff --git a/src/StepFEA/StepFEA_ElementVolume.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_ElementVolume.hxx similarity index 100% rename from src/StepFEA/StepFEA_ElementVolume.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_ElementVolume.hxx diff --git a/src/StepFEA/StepFEA_EnumeratedDegreeOfFreedom.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_EnumeratedDegreeOfFreedom.hxx similarity index 100% rename from src/StepFEA/StepFEA_EnumeratedDegreeOfFreedom.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_EnumeratedDegreeOfFreedom.hxx diff --git a/src/StepFEA/StepFEA_FeaAreaDensity.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaAreaDensity.cxx similarity index 100% rename from src/StepFEA/StepFEA_FeaAreaDensity.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaAreaDensity.cxx diff --git a/src/StepFEA/StepFEA_FeaAreaDensity.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaAreaDensity.hxx similarity index 100% rename from src/StepFEA/StepFEA_FeaAreaDensity.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaAreaDensity.hxx diff --git a/src/StepFEA/StepFEA_FeaAxis2Placement3d.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaAxis2Placement3d.cxx similarity index 100% rename from src/StepFEA/StepFEA_FeaAxis2Placement3d.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaAxis2Placement3d.cxx diff --git a/src/StepFEA/StepFEA_FeaAxis2Placement3d.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaAxis2Placement3d.hxx similarity index 100% rename from src/StepFEA/StepFEA_FeaAxis2Placement3d.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaAxis2Placement3d.hxx diff --git a/src/StepFEA/StepFEA_FeaCurveSectionGeometricRelationship.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaCurveSectionGeometricRelationship.cxx similarity index 100% rename from src/StepFEA/StepFEA_FeaCurveSectionGeometricRelationship.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaCurveSectionGeometricRelationship.cxx diff --git a/src/StepFEA/StepFEA_FeaCurveSectionGeometricRelationship.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaCurveSectionGeometricRelationship.hxx similarity index 100% rename from src/StepFEA/StepFEA_FeaCurveSectionGeometricRelationship.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaCurveSectionGeometricRelationship.hxx diff --git a/src/StepFEA/StepFEA_FeaGroup.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaGroup.cxx similarity index 100% rename from src/StepFEA/StepFEA_FeaGroup.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaGroup.cxx diff --git a/src/StepFEA/StepFEA_FeaGroup.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaGroup.hxx similarity index 100% rename from src/StepFEA/StepFEA_FeaGroup.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaGroup.hxx diff --git a/src/StepFEA/StepFEA_FeaLinearElasticity.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaLinearElasticity.cxx similarity index 100% rename from src/StepFEA/StepFEA_FeaLinearElasticity.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaLinearElasticity.cxx diff --git a/src/StepFEA/StepFEA_FeaLinearElasticity.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaLinearElasticity.hxx similarity index 100% rename from src/StepFEA/StepFEA_FeaLinearElasticity.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaLinearElasticity.hxx diff --git a/src/StepFEA/StepFEA_FeaMassDensity.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaMassDensity.cxx similarity index 100% rename from src/StepFEA/StepFEA_FeaMassDensity.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaMassDensity.cxx diff --git a/src/StepFEA/StepFEA_FeaMassDensity.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaMassDensity.hxx similarity index 100% rename from src/StepFEA/StepFEA_FeaMassDensity.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaMassDensity.hxx diff --git a/src/StepFEA/StepFEA_FeaMaterialPropertyRepresentation.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaMaterialPropertyRepresentation.cxx similarity index 100% rename from src/StepFEA/StepFEA_FeaMaterialPropertyRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaMaterialPropertyRepresentation.cxx diff --git a/src/StepFEA/StepFEA_FeaMaterialPropertyRepresentation.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaMaterialPropertyRepresentation.hxx similarity index 100% rename from src/StepFEA/StepFEA_FeaMaterialPropertyRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaMaterialPropertyRepresentation.hxx diff --git a/src/StepFEA/StepFEA_FeaMaterialPropertyRepresentationItem.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaMaterialPropertyRepresentationItem.cxx similarity index 100% rename from src/StepFEA/StepFEA_FeaMaterialPropertyRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaMaterialPropertyRepresentationItem.cxx diff --git a/src/StepFEA/StepFEA_FeaMaterialPropertyRepresentationItem.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaMaterialPropertyRepresentationItem.hxx similarity index 100% rename from src/StepFEA/StepFEA_FeaMaterialPropertyRepresentationItem.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaMaterialPropertyRepresentationItem.hxx diff --git a/src/StepFEA/StepFEA_FeaModel.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaModel.cxx similarity index 100% rename from src/StepFEA/StepFEA_FeaModel.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaModel.cxx diff --git a/src/StepFEA/StepFEA_FeaModel.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaModel.hxx similarity index 100% rename from src/StepFEA/StepFEA_FeaModel.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaModel.hxx diff --git a/src/StepFEA/StepFEA_FeaModel3d.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaModel3d.cxx similarity index 100% rename from src/StepFEA/StepFEA_FeaModel3d.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaModel3d.cxx diff --git a/src/StepFEA/StepFEA_FeaModel3d.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaModel3d.hxx similarity index 100% rename from src/StepFEA/StepFEA_FeaModel3d.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaModel3d.hxx diff --git a/src/StepFEA/StepFEA_FeaModelDefinition.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaModelDefinition.cxx similarity index 100% rename from src/StepFEA/StepFEA_FeaModelDefinition.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaModelDefinition.cxx diff --git a/src/StepFEA/StepFEA_FeaModelDefinition.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaModelDefinition.hxx similarity index 100% rename from src/StepFEA/StepFEA_FeaModelDefinition.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaModelDefinition.hxx diff --git a/src/StepFEA/StepFEA_FeaMoistureAbsorption.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaMoistureAbsorption.cxx similarity index 100% rename from src/StepFEA/StepFEA_FeaMoistureAbsorption.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaMoistureAbsorption.cxx diff --git a/src/StepFEA/StepFEA_FeaMoistureAbsorption.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaMoistureAbsorption.hxx similarity index 100% rename from src/StepFEA/StepFEA_FeaMoistureAbsorption.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaMoistureAbsorption.hxx diff --git a/src/StepFEA/StepFEA_FeaParametricPoint.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaParametricPoint.cxx similarity index 100% rename from src/StepFEA/StepFEA_FeaParametricPoint.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaParametricPoint.cxx diff --git a/src/StepFEA/StepFEA_FeaParametricPoint.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaParametricPoint.hxx similarity index 100% rename from src/StepFEA/StepFEA_FeaParametricPoint.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaParametricPoint.hxx diff --git a/src/StepFEA/StepFEA_FeaRepresentationItem.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaRepresentationItem.cxx similarity index 100% rename from src/StepFEA/StepFEA_FeaRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaRepresentationItem.cxx diff --git a/src/StepFEA/StepFEA_FeaRepresentationItem.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaRepresentationItem.hxx similarity index 100% rename from src/StepFEA/StepFEA_FeaRepresentationItem.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaRepresentationItem.hxx diff --git a/src/StepFEA/StepFEA_FeaSecantCoefficientOfLinearThermalExpansion.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaSecantCoefficientOfLinearThermalExpansion.cxx similarity index 100% rename from src/StepFEA/StepFEA_FeaSecantCoefficientOfLinearThermalExpansion.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaSecantCoefficientOfLinearThermalExpansion.cxx diff --git a/src/StepFEA/StepFEA_FeaSecantCoefficientOfLinearThermalExpansion.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaSecantCoefficientOfLinearThermalExpansion.hxx similarity index 100% rename from src/StepFEA/StepFEA_FeaSecantCoefficientOfLinearThermalExpansion.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaSecantCoefficientOfLinearThermalExpansion.hxx diff --git a/src/StepFEA/StepFEA_FeaShellBendingStiffness.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaShellBendingStiffness.cxx similarity index 100% rename from src/StepFEA/StepFEA_FeaShellBendingStiffness.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaShellBendingStiffness.cxx diff --git a/src/StepFEA/StepFEA_FeaShellBendingStiffness.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaShellBendingStiffness.hxx similarity index 100% rename from src/StepFEA/StepFEA_FeaShellBendingStiffness.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaShellBendingStiffness.hxx diff --git a/src/StepFEA/StepFEA_FeaShellMembraneBendingCouplingStiffness.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaShellMembraneBendingCouplingStiffness.cxx similarity index 100% rename from src/StepFEA/StepFEA_FeaShellMembraneBendingCouplingStiffness.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaShellMembraneBendingCouplingStiffness.cxx diff --git a/src/StepFEA/StepFEA_FeaShellMembraneBendingCouplingStiffness.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaShellMembraneBendingCouplingStiffness.hxx similarity index 100% rename from src/StepFEA/StepFEA_FeaShellMembraneBendingCouplingStiffness.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaShellMembraneBendingCouplingStiffness.hxx diff --git a/src/StepFEA/StepFEA_FeaShellMembraneStiffness.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaShellMembraneStiffness.cxx similarity index 100% rename from src/StepFEA/StepFEA_FeaShellMembraneStiffness.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaShellMembraneStiffness.cxx diff --git a/src/StepFEA/StepFEA_FeaShellMembraneStiffness.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaShellMembraneStiffness.hxx similarity index 100% rename from src/StepFEA/StepFEA_FeaShellMembraneStiffness.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaShellMembraneStiffness.hxx diff --git a/src/StepFEA/StepFEA_FeaShellShearStiffness.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaShellShearStiffness.cxx similarity index 100% rename from src/StepFEA/StepFEA_FeaShellShearStiffness.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaShellShearStiffness.cxx diff --git a/src/StepFEA/StepFEA_FeaShellShearStiffness.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaShellShearStiffness.hxx similarity index 100% rename from src/StepFEA/StepFEA_FeaShellShearStiffness.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaShellShearStiffness.hxx diff --git a/src/StepFEA/StepFEA_FeaSurfaceSectionGeometricRelationship.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaSurfaceSectionGeometricRelationship.cxx similarity index 100% rename from src/StepFEA/StepFEA_FeaSurfaceSectionGeometricRelationship.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaSurfaceSectionGeometricRelationship.cxx diff --git a/src/StepFEA/StepFEA_FeaSurfaceSectionGeometricRelationship.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaSurfaceSectionGeometricRelationship.hxx similarity index 100% rename from src/StepFEA/StepFEA_FeaSurfaceSectionGeometricRelationship.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaSurfaceSectionGeometricRelationship.hxx diff --git a/src/StepFEA/StepFEA_FeaTangentialCoefficientOfLinearThermalExpansion.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaTangentialCoefficientOfLinearThermalExpansion.cxx similarity index 100% rename from src/StepFEA/StepFEA_FeaTangentialCoefficientOfLinearThermalExpansion.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaTangentialCoefficientOfLinearThermalExpansion.cxx diff --git a/src/StepFEA/StepFEA_FeaTangentialCoefficientOfLinearThermalExpansion.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaTangentialCoefficientOfLinearThermalExpansion.hxx similarity index 100% rename from src/StepFEA/StepFEA_FeaTangentialCoefficientOfLinearThermalExpansion.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FeaTangentialCoefficientOfLinearThermalExpansion.hxx diff --git a/src/StepFEA/StepFEA_FreedomAndCoefficient.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FreedomAndCoefficient.cxx similarity index 100% rename from src/StepFEA/StepFEA_FreedomAndCoefficient.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FreedomAndCoefficient.cxx diff --git a/src/StepFEA/StepFEA_FreedomAndCoefficient.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FreedomAndCoefficient.hxx similarity index 100% rename from src/StepFEA/StepFEA_FreedomAndCoefficient.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FreedomAndCoefficient.hxx diff --git a/src/StepFEA/StepFEA_FreedomsList.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FreedomsList.cxx similarity index 100% rename from src/StepFEA/StepFEA_FreedomsList.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FreedomsList.cxx diff --git a/src/StepFEA/StepFEA_FreedomsList.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_FreedomsList.hxx similarity index 100% rename from src/StepFEA/StepFEA_FreedomsList.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_FreedomsList.hxx diff --git a/src/StepFEA/StepFEA_GeometricNode.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_GeometricNode.cxx similarity index 100% rename from src/StepFEA/StepFEA_GeometricNode.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_GeometricNode.cxx diff --git a/src/StepFEA/StepFEA_GeometricNode.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_GeometricNode.hxx similarity index 100% rename from src/StepFEA/StepFEA_GeometricNode.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_GeometricNode.hxx diff --git a/src/StepFEA/StepFEA_HArray1OfCurveElementEndOffset.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_HArray1OfCurveElementEndOffset.hxx similarity index 100% rename from src/StepFEA/StepFEA_HArray1OfCurveElementEndOffset.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_HArray1OfCurveElementEndOffset.hxx diff --git a/src/StepFEA/StepFEA_HArray1OfCurveElementEndRelease.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_HArray1OfCurveElementEndRelease.hxx similarity index 100% rename from src/StepFEA/StepFEA_HArray1OfCurveElementEndRelease.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_HArray1OfCurveElementEndRelease.hxx diff --git a/src/StepFEA/StepFEA_HArray1OfCurveElementInterval.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_HArray1OfCurveElementInterval.hxx similarity index 100% rename from src/StepFEA/StepFEA_HArray1OfCurveElementInterval.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_HArray1OfCurveElementInterval.hxx diff --git a/src/StepFEA/StepFEA_HArray1OfDegreeOfFreedom.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_HArray1OfDegreeOfFreedom.hxx similarity index 100% rename from src/StepFEA/StepFEA_HArray1OfDegreeOfFreedom.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_HArray1OfDegreeOfFreedom.hxx diff --git a/src/StepFEA/StepFEA_HArray1OfElementRepresentation.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_HArray1OfElementRepresentation.hxx similarity index 100% rename from src/StepFEA/StepFEA_HArray1OfElementRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_HArray1OfElementRepresentation.hxx diff --git a/src/StepFEA/StepFEA_HArray1OfNodeRepresentation.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_HArray1OfNodeRepresentation.hxx similarity index 100% rename from src/StepFEA/StepFEA_HArray1OfNodeRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_HArray1OfNodeRepresentation.hxx diff --git a/src/StepFEA/StepFEA_HSequenceOfCurve3dElementProperty.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_HSequenceOfCurve3dElementProperty.hxx similarity index 100% rename from src/StepFEA/StepFEA_HSequenceOfCurve3dElementProperty.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_HSequenceOfCurve3dElementProperty.hxx diff --git a/src/StepFEA/StepFEA_HSequenceOfElementGeometricRelationship.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_HSequenceOfElementGeometricRelationship.hxx similarity index 100% rename from src/StepFEA/StepFEA_HSequenceOfElementGeometricRelationship.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_HSequenceOfElementGeometricRelationship.hxx diff --git a/src/StepFEA/StepFEA_HSequenceOfElementRepresentation.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_HSequenceOfElementRepresentation.hxx similarity index 100% rename from src/StepFEA/StepFEA_HSequenceOfElementRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_HSequenceOfElementRepresentation.hxx diff --git a/src/StepFEA/StepFEA_HSequenceOfNodeRepresentation.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_HSequenceOfNodeRepresentation.hxx similarity index 100% rename from src/StepFEA/StepFEA_HSequenceOfNodeRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_HSequenceOfNodeRepresentation.hxx diff --git a/src/StepFEA/StepFEA_Node.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_Node.cxx similarity index 100% rename from src/StepFEA/StepFEA_Node.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_Node.cxx diff --git a/src/StepFEA/StepFEA_Node.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_Node.hxx similarity index 100% rename from src/StepFEA/StepFEA_Node.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_Node.hxx diff --git a/src/StepFEA/StepFEA_NodeDefinition.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_NodeDefinition.cxx similarity index 100% rename from src/StepFEA/StepFEA_NodeDefinition.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_NodeDefinition.cxx diff --git a/src/StepFEA/StepFEA_NodeDefinition.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_NodeDefinition.hxx similarity index 100% rename from src/StepFEA/StepFEA_NodeDefinition.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_NodeDefinition.hxx diff --git a/src/StepFEA/StepFEA_NodeGroup.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_NodeGroup.cxx similarity index 100% rename from src/StepFEA/StepFEA_NodeGroup.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_NodeGroup.cxx diff --git a/src/StepFEA/StepFEA_NodeGroup.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_NodeGroup.hxx similarity index 100% rename from src/StepFEA/StepFEA_NodeGroup.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_NodeGroup.hxx diff --git a/src/StepFEA/StepFEA_NodeRepresentation.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_NodeRepresentation.cxx similarity index 100% rename from src/StepFEA/StepFEA_NodeRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_NodeRepresentation.cxx diff --git a/src/StepFEA/StepFEA_NodeRepresentation.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_NodeRepresentation.hxx similarity index 100% rename from src/StepFEA/StepFEA_NodeRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_NodeRepresentation.hxx diff --git a/src/StepFEA/StepFEA_NodeSet.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_NodeSet.cxx similarity index 100% rename from src/StepFEA/StepFEA_NodeSet.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_NodeSet.cxx diff --git a/src/StepFEA/StepFEA_NodeSet.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_NodeSet.hxx similarity index 100% rename from src/StepFEA/StepFEA_NodeSet.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_NodeSet.hxx diff --git a/src/StepFEA/StepFEA_NodeWithSolutionCoordinateSystem.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_NodeWithSolutionCoordinateSystem.cxx similarity index 100% rename from src/StepFEA/StepFEA_NodeWithSolutionCoordinateSystem.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_NodeWithSolutionCoordinateSystem.cxx diff --git a/src/StepFEA/StepFEA_NodeWithSolutionCoordinateSystem.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_NodeWithSolutionCoordinateSystem.hxx similarity index 100% rename from src/StepFEA/StepFEA_NodeWithSolutionCoordinateSystem.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_NodeWithSolutionCoordinateSystem.hxx diff --git a/src/StepFEA/StepFEA_NodeWithVector.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_NodeWithVector.cxx similarity index 100% rename from src/StepFEA/StepFEA_NodeWithVector.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_NodeWithVector.cxx diff --git a/src/StepFEA/StepFEA_NodeWithVector.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_NodeWithVector.hxx similarity index 100% rename from src/StepFEA/StepFEA_NodeWithVector.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_NodeWithVector.hxx diff --git a/src/StepFEA/StepFEA_ParametricCurve3dElementCoordinateDirection.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_ParametricCurve3dElementCoordinateDirection.cxx similarity index 100% rename from src/StepFEA/StepFEA_ParametricCurve3dElementCoordinateDirection.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_ParametricCurve3dElementCoordinateDirection.cxx diff --git a/src/StepFEA/StepFEA_ParametricCurve3dElementCoordinateDirection.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_ParametricCurve3dElementCoordinateDirection.hxx similarity index 100% rename from src/StepFEA/StepFEA_ParametricCurve3dElementCoordinateDirection.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_ParametricCurve3dElementCoordinateDirection.hxx diff --git a/src/StepFEA/StepFEA_ParametricCurve3dElementCoordinateSystem.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_ParametricCurve3dElementCoordinateSystem.cxx similarity index 100% rename from src/StepFEA/StepFEA_ParametricCurve3dElementCoordinateSystem.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_ParametricCurve3dElementCoordinateSystem.cxx diff --git a/src/StepFEA/StepFEA_ParametricCurve3dElementCoordinateSystem.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_ParametricCurve3dElementCoordinateSystem.hxx similarity index 100% rename from src/StepFEA/StepFEA_ParametricCurve3dElementCoordinateSystem.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_ParametricCurve3dElementCoordinateSystem.hxx diff --git a/src/StepFEA/StepFEA_ParametricSurface3dElementCoordinateSystem.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_ParametricSurface3dElementCoordinateSystem.cxx similarity index 100% rename from src/StepFEA/StepFEA_ParametricSurface3dElementCoordinateSystem.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_ParametricSurface3dElementCoordinateSystem.cxx diff --git a/src/StepFEA/StepFEA_ParametricSurface3dElementCoordinateSystem.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_ParametricSurface3dElementCoordinateSystem.hxx similarity index 100% rename from src/StepFEA/StepFEA_ParametricSurface3dElementCoordinateSystem.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_ParametricSurface3dElementCoordinateSystem.hxx diff --git a/src/StepFEA/StepFEA_SequenceOfCurve3dElementProperty.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_SequenceOfCurve3dElementProperty.hxx similarity index 100% rename from src/StepFEA/StepFEA_SequenceOfCurve3dElementProperty.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_SequenceOfCurve3dElementProperty.hxx diff --git a/src/StepFEA/StepFEA_SequenceOfElementGeometricRelationship.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_SequenceOfElementGeometricRelationship.hxx similarity index 100% rename from src/StepFEA/StepFEA_SequenceOfElementGeometricRelationship.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_SequenceOfElementGeometricRelationship.hxx diff --git a/src/StepFEA/StepFEA_SequenceOfElementRepresentation.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_SequenceOfElementRepresentation.hxx similarity index 100% rename from src/StepFEA/StepFEA_SequenceOfElementRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_SequenceOfElementRepresentation.hxx diff --git a/src/StepFEA/StepFEA_SequenceOfNodeRepresentation.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_SequenceOfNodeRepresentation.hxx similarity index 100% rename from src/StepFEA/StepFEA_SequenceOfNodeRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_SequenceOfNodeRepresentation.hxx diff --git a/src/StepFEA/StepFEA_Surface3dElementRepresentation.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_Surface3dElementRepresentation.cxx similarity index 100% rename from src/StepFEA/StepFEA_Surface3dElementRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_Surface3dElementRepresentation.cxx diff --git a/src/StepFEA/StepFEA_Surface3dElementRepresentation.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_Surface3dElementRepresentation.hxx similarity index 100% rename from src/StepFEA/StepFEA_Surface3dElementRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_Surface3dElementRepresentation.hxx diff --git a/src/StepFEA/StepFEA_SymmetricTensor22d.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_SymmetricTensor22d.cxx similarity index 100% rename from src/StepFEA/StepFEA_SymmetricTensor22d.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_SymmetricTensor22d.cxx diff --git a/src/StepFEA/StepFEA_SymmetricTensor22d.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_SymmetricTensor22d.hxx similarity index 100% rename from src/StepFEA/StepFEA_SymmetricTensor22d.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_SymmetricTensor22d.hxx diff --git a/src/StepFEA/StepFEA_SymmetricTensor23d.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_SymmetricTensor23d.cxx similarity index 100% rename from src/StepFEA/StepFEA_SymmetricTensor23d.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_SymmetricTensor23d.cxx diff --git a/src/StepFEA/StepFEA_SymmetricTensor23d.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_SymmetricTensor23d.hxx similarity index 100% rename from src/StepFEA/StepFEA_SymmetricTensor23d.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_SymmetricTensor23d.hxx diff --git a/src/StepFEA/StepFEA_SymmetricTensor23dMember.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_SymmetricTensor23dMember.cxx similarity index 100% rename from src/StepFEA/StepFEA_SymmetricTensor23dMember.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_SymmetricTensor23dMember.cxx diff --git a/src/StepFEA/StepFEA_SymmetricTensor23dMember.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_SymmetricTensor23dMember.hxx similarity index 100% rename from src/StepFEA/StepFEA_SymmetricTensor23dMember.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_SymmetricTensor23dMember.hxx diff --git a/src/StepFEA/StepFEA_SymmetricTensor42d.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_SymmetricTensor42d.cxx similarity index 100% rename from src/StepFEA/StepFEA_SymmetricTensor42d.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_SymmetricTensor42d.cxx diff --git a/src/StepFEA/StepFEA_SymmetricTensor42d.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_SymmetricTensor42d.hxx similarity index 100% rename from src/StepFEA/StepFEA_SymmetricTensor42d.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_SymmetricTensor42d.hxx diff --git a/src/StepFEA/StepFEA_SymmetricTensor43d.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_SymmetricTensor43d.cxx similarity index 100% rename from src/StepFEA/StepFEA_SymmetricTensor43d.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_SymmetricTensor43d.cxx diff --git a/src/StepFEA/StepFEA_SymmetricTensor43d.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_SymmetricTensor43d.hxx similarity index 100% rename from src/StepFEA/StepFEA_SymmetricTensor43d.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_SymmetricTensor43d.hxx diff --git a/src/StepFEA/StepFEA_SymmetricTensor43dMember.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_SymmetricTensor43dMember.cxx similarity index 100% rename from src/StepFEA/StepFEA_SymmetricTensor43dMember.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_SymmetricTensor43dMember.cxx diff --git a/src/StepFEA/StepFEA_SymmetricTensor43dMember.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_SymmetricTensor43dMember.hxx similarity index 100% rename from src/StepFEA/StepFEA_SymmetricTensor43dMember.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_SymmetricTensor43dMember.hxx diff --git a/src/StepFEA/StepFEA_UnspecifiedValue.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_UnspecifiedValue.hxx similarity index 100% rename from src/StepFEA/StepFEA_UnspecifiedValue.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_UnspecifiedValue.hxx diff --git a/src/StepFEA/StepFEA_Volume3dElementRepresentation.cxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_Volume3dElementRepresentation.cxx similarity index 100% rename from src/StepFEA/StepFEA_Volume3dElementRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_Volume3dElementRepresentation.cxx diff --git a/src/StepFEA/StepFEA_Volume3dElementRepresentation.hxx b/src/DataExchange/TKDESTEP/StepFEA/StepFEA_Volume3dElementRepresentation.hxx similarity index 100% rename from src/StepFEA/StepFEA_Volume3dElementRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepFEA/StepFEA_Volume3dElementRepresentation.hxx diff --git a/src/DataExchange/TKDESTEP/StepFile/FILES.cmake b/src/DataExchange/TKDESTEP/StepFile/FILES.cmake new file mode 100644 index 0000000000..caef5afd57 --- /dev/null +++ b/src/DataExchange/TKDESTEP/StepFile/FILES.cmake @@ -0,0 +1,14 @@ +# Source files for StepFile package +set(OCCT_StepFile_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StepFile_FILES + lex.step.cxx + step.tab.cxx + step.tab.hxx + StepFile_ReadData.cxx + StepFile_ReadData.hxx + StepFile_Read.cxx + StepFile_Read.hxx + step.lex + step.yacc +) diff --git a/src/StepFile/StepFile_Read.cxx b/src/DataExchange/TKDESTEP/StepFile/StepFile_Read.cxx similarity index 100% rename from src/StepFile/StepFile_Read.cxx rename to src/DataExchange/TKDESTEP/StepFile/StepFile_Read.cxx diff --git a/src/StepFile/StepFile_Read.hxx b/src/DataExchange/TKDESTEP/StepFile/StepFile_Read.hxx similarity index 100% rename from src/StepFile/StepFile_Read.hxx rename to src/DataExchange/TKDESTEP/StepFile/StepFile_Read.hxx diff --git a/src/StepFile/StepFile_ReadData.cxx b/src/DataExchange/TKDESTEP/StepFile/StepFile_ReadData.cxx similarity index 100% rename from src/StepFile/StepFile_ReadData.cxx rename to src/DataExchange/TKDESTEP/StepFile/StepFile_ReadData.cxx diff --git a/src/StepFile/StepFile_ReadData.hxx b/src/DataExchange/TKDESTEP/StepFile/StepFile_ReadData.hxx similarity index 100% rename from src/StepFile/StepFile_ReadData.hxx rename to src/DataExchange/TKDESTEP/StepFile/StepFile_ReadData.hxx diff --git a/src/StepFile/lex.step.cxx b/src/DataExchange/TKDESTEP/StepFile/lex.step.cxx similarity index 100% rename from src/StepFile/lex.step.cxx rename to src/DataExchange/TKDESTEP/StepFile/lex.step.cxx diff --git a/src/StepFile/step.lex b/src/DataExchange/TKDESTEP/StepFile/step.lex similarity index 100% rename from src/StepFile/step.lex rename to src/DataExchange/TKDESTEP/StepFile/step.lex diff --git a/src/StepFile/step.tab.cxx b/src/DataExchange/TKDESTEP/StepFile/step.tab.cxx similarity index 100% rename from src/StepFile/step.tab.cxx rename to src/DataExchange/TKDESTEP/StepFile/step.tab.cxx diff --git a/src/StepFile/step.tab.hxx b/src/DataExchange/TKDESTEP/StepFile/step.tab.hxx similarity index 100% rename from src/StepFile/step.tab.hxx rename to src/DataExchange/TKDESTEP/StepFile/step.tab.hxx diff --git a/src/StepFile/step.yacc b/src/DataExchange/TKDESTEP/StepFile/step.yacc similarity index 100% rename from src/StepFile/step.yacc rename to src/DataExchange/TKDESTEP/StepFile/step.yacc diff --git a/src/DataExchange/TKDESTEP/StepGeom/FILES.cmake b/src/DataExchange/TKDESTEP/StepGeom/FILES.cmake new file mode 100644 index 0000000000..bd53ff25c7 --- /dev/null +++ b/src/DataExchange/TKDESTEP/StepGeom/FILES.cmake @@ -0,0 +1,211 @@ +# Source files for StepGeom package +set(OCCT_StepGeom_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StepGeom_FILES + StepGeom_Array1OfBoundaryCurve.hxx + StepGeom_Array1OfCartesianPoint.hxx + StepGeom_Array1OfCompositeCurveSegment.hxx + StepGeom_Array1OfCurve.hxx + StepGeom_Array1OfPcurveOrSurface.hxx + StepGeom_Array1OfSurfaceBoundary.hxx + StepGeom_Array1OfTrimmingSelect.hxx + StepGeom_Array2OfCartesianPoint.hxx + StepGeom_Array2OfSurfacePatch.hxx + StepGeom_Axis1Placement.cxx + StepGeom_Axis1Placement.hxx + StepGeom_Axis2Placement.cxx + StepGeom_Axis2Placement.hxx + StepGeom_Axis2Placement2d.cxx + StepGeom_Axis2Placement2d.hxx + StepGeom_Axis2Placement3d.cxx + StepGeom_Axis2Placement3d.hxx + StepGeom_BezierCurve.cxx + StepGeom_BezierCurve.hxx + StepGeom_BezierCurveAndRationalBSplineCurve.cxx + StepGeom_BezierCurveAndRationalBSplineCurve.hxx + StepGeom_BezierSurface.cxx + StepGeom_BezierSurface.hxx + StepGeom_BezierSurfaceAndRationalBSplineSurface.cxx + StepGeom_BezierSurfaceAndRationalBSplineSurface.hxx + StepGeom_BoundaryCurve.cxx + StepGeom_BoundaryCurve.hxx + StepGeom_BoundedCurve.cxx + StepGeom_BoundedCurve.hxx + StepGeom_BoundedSurface.cxx + StepGeom_BoundedSurface.hxx + StepGeom_BSplineCurve.cxx + StepGeom_BSplineCurve.hxx + StepGeom_BSplineCurveForm.hxx + StepGeom_BSplineCurveWithKnots.cxx + StepGeom_BSplineCurveWithKnots.hxx + StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve.cxx + StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve.hxx + StepGeom_BSplineSurface.cxx + StepGeom_BSplineSurface.hxx + StepGeom_BSplineSurfaceForm.hxx + StepGeom_BSplineSurfaceWithKnots.cxx + StepGeom_BSplineSurfaceWithKnots.hxx + StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface.cxx + StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface.hxx + StepGeom_CartesianPoint.cxx + StepGeom_CartesianPoint.hxx + StepGeom_CartesianTransformationOperator.cxx + StepGeom_CartesianTransformationOperator.hxx + StepGeom_CartesianTransformationOperator2d.cxx + StepGeom_CartesianTransformationOperator2d.hxx + StepGeom_CartesianTransformationOperator3d.cxx + StepGeom_CartesianTransformationOperator3d.hxx + StepGeom_Circle.cxx + StepGeom_Circle.hxx + StepGeom_CompositeCurve.cxx + StepGeom_CompositeCurve.hxx + StepGeom_CompositeCurveOnSurface.cxx + StepGeom_CompositeCurveOnSurface.hxx + StepGeom_CompositeCurveSegment.cxx + StepGeom_CompositeCurveSegment.hxx + StepGeom_Conic.cxx + StepGeom_Conic.hxx + StepGeom_ConicalSurface.cxx + StepGeom_ConicalSurface.hxx + StepGeom_Curve.cxx + StepGeom_Curve.hxx + StepGeom_CurveBoundedSurface.cxx + StepGeom_CurveBoundedSurface.hxx + StepGeom_CurveOnSurface.cxx + StepGeom_CurveOnSurface.hxx + StepGeom_CurveReplica.cxx + StepGeom_CurveReplica.hxx + StepGeom_CylindricalSurface.cxx + StepGeom_CylindricalSurface.hxx + StepGeom_DegeneratePcurve.cxx + StepGeom_DegeneratePcurve.hxx + StepGeom_DegenerateToroidalSurface.cxx + StepGeom_DegenerateToroidalSurface.hxx + StepGeom_Direction.cxx + StepGeom_Direction.hxx + StepGeom_ElementarySurface.cxx + StepGeom_ElementarySurface.hxx + StepGeom_Ellipse.cxx + StepGeom_Ellipse.hxx + StepGeom_EvaluatedDegeneratePcurve.cxx + StepGeom_EvaluatedDegeneratePcurve.hxx + StepGeom_GeometricRepresentationContext.cxx + StepGeom_GeometricRepresentationContext.hxx + StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext.cxx + StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext.hxx + StepGeom_GeometricRepresentationContextAndParametricRepresentationContext.cxx + StepGeom_GeometricRepresentationContextAndParametricRepresentationContext.hxx + StepGeom_GeometricRepresentationItem.cxx + StepGeom_GeometricRepresentationItem.hxx + StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.cxx + StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.hxx + StepGeom_HArray1OfBoundaryCurve.hxx + StepGeom_HArray1OfCartesianPoint.hxx + StepGeom_HArray1OfCompositeCurveSegment.hxx + StepGeom_HArray1OfCurve.hxx + StepGeom_HArray1OfPcurveOrSurface.hxx + StepGeom_HArray1OfSurfaceBoundary.hxx + StepGeom_HArray1OfTrimmingSelect.hxx + StepGeom_HArray2OfCartesianPoint.hxx + StepGeom_HArray2OfSurfacePatch.hxx + StepGeom_Hyperbola.cxx + StepGeom_Hyperbola.hxx + StepGeom_IntersectionCurve.cxx + StepGeom_IntersectionCurve.hxx + StepGeom_KnotType.hxx + StepGeom_Line.cxx + StepGeom_Line.hxx + StepGeom_OffsetCurve3d.cxx + StepGeom_OffsetCurve3d.hxx + StepGeom_OffsetSurface.cxx + StepGeom_OffsetSurface.hxx + StepGeom_OrientedSurface.cxx + StepGeom_OrientedSurface.hxx + StepGeom_OuterBoundaryCurve.cxx + StepGeom_OuterBoundaryCurve.hxx + StepGeom_Parabola.cxx + StepGeom_Parabola.hxx + StepGeom_Pcurve.cxx + StepGeom_Pcurve.hxx + StepGeom_PcurveOrSurface.cxx + StepGeom_PcurveOrSurface.hxx + StepGeom_Placement.cxx + StepGeom_Placement.hxx + StepGeom_Plane.cxx + StepGeom_Plane.hxx + StepGeom_Point.cxx + StepGeom_Point.hxx + StepGeom_PointOnCurve.cxx + StepGeom_PointOnCurve.hxx + StepGeom_PointOnSurface.cxx + StepGeom_PointOnSurface.hxx + StepGeom_PointReplica.cxx + StepGeom_PointReplica.hxx + StepGeom_Polyline.cxx + StepGeom_Polyline.hxx + StepGeom_PreferredSurfaceCurveRepresentation.hxx + StepGeom_QuasiUniformCurve.cxx + StepGeom_QuasiUniformCurve.hxx + StepGeom_QuasiUniformCurveAndRationalBSplineCurve.cxx + StepGeom_QuasiUniformCurveAndRationalBSplineCurve.hxx + StepGeom_QuasiUniformSurface.cxx + StepGeom_QuasiUniformSurface.hxx + StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface.cxx + StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface.hxx + StepGeom_RationalBSplineCurve.cxx + StepGeom_RationalBSplineCurve.hxx + StepGeom_RationalBSplineSurface.cxx + StepGeom_RationalBSplineSurface.hxx + StepGeom_RectangularCompositeSurface.cxx + StepGeom_RectangularCompositeSurface.hxx + StepGeom_RectangularTrimmedSurface.cxx + StepGeom_RectangularTrimmedSurface.hxx + StepGeom_ReparametrisedCompositeCurveSegment.cxx + StepGeom_ReparametrisedCompositeCurveSegment.hxx + StepGeom_SeamCurve.cxx + StepGeom_SeamCurve.hxx + StepGeom_SphericalSurface.cxx + StepGeom_SphericalSurface.hxx + StepGeom_SuParameters.cxx + StepGeom_SuParameters.hxx + StepGeom_Surface.cxx + StepGeom_Surface.hxx + StepGeom_SurfaceBoundary.cxx + StepGeom_SurfaceBoundary.hxx + StepGeom_SurfaceCurve.cxx + StepGeom_SurfaceCurve.hxx + StepGeom_SurfaceCurveAndBoundedCurve.cxx + StepGeom_SurfaceCurveAndBoundedCurve.hxx + StepGeom_SurfaceOfLinearExtrusion.cxx + StepGeom_SurfaceOfLinearExtrusion.hxx + StepGeom_SurfaceOfRevolution.cxx + StepGeom_SurfaceOfRevolution.hxx + StepGeom_SurfacePatch.cxx + StepGeom_SurfacePatch.hxx + StepGeom_SurfaceReplica.cxx + StepGeom_SurfaceReplica.hxx + StepGeom_SweptSurface.cxx + StepGeom_SweptSurface.hxx + StepGeom_ToroidalSurface.cxx + StepGeom_ToroidalSurface.hxx + StepGeom_TransitionCode.hxx + StepGeom_TrimmedCurve.cxx + StepGeom_TrimmedCurve.hxx + StepGeom_TrimmingMember.cxx + StepGeom_TrimmingMember.hxx + StepGeom_TrimmingPreference.hxx + StepGeom_TrimmingSelect.cxx + StepGeom_TrimmingSelect.hxx + StepGeom_UniformCurve.cxx + StepGeom_UniformCurve.hxx + StepGeom_UniformCurveAndRationalBSplineCurve.cxx + StepGeom_UniformCurveAndRationalBSplineCurve.hxx + StepGeom_UniformSurface.cxx + StepGeom_UniformSurface.hxx + StepGeom_UniformSurfaceAndRationalBSplineSurface.cxx + StepGeom_UniformSurfaceAndRationalBSplineSurface.hxx + StepGeom_Vector.cxx + StepGeom_Vector.hxx + StepGeom_VectorOrDirection.cxx + StepGeom_VectorOrDirection.hxx +) diff --git a/src/StepGeom/StepGeom_Array1OfBoundaryCurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Array1OfBoundaryCurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_Array1OfBoundaryCurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Array1OfBoundaryCurve.hxx diff --git a/src/StepGeom/StepGeom_Array1OfCartesianPoint.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Array1OfCartesianPoint.hxx similarity index 100% rename from src/StepGeom/StepGeom_Array1OfCartesianPoint.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Array1OfCartesianPoint.hxx diff --git a/src/StepGeom/StepGeom_Array1OfCompositeCurveSegment.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Array1OfCompositeCurveSegment.hxx similarity index 100% rename from src/StepGeom/StepGeom_Array1OfCompositeCurveSegment.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Array1OfCompositeCurveSegment.hxx diff --git a/src/StepGeom/StepGeom_Array1OfCurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Array1OfCurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_Array1OfCurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Array1OfCurve.hxx diff --git a/src/StepGeom/StepGeom_Array1OfPcurveOrSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Array1OfPcurveOrSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_Array1OfPcurveOrSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Array1OfPcurveOrSurface.hxx diff --git a/src/StepGeom/StepGeom_Array1OfSurfaceBoundary.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Array1OfSurfaceBoundary.hxx similarity index 100% rename from src/StepGeom/StepGeom_Array1OfSurfaceBoundary.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Array1OfSurfaceBoundary.hxx diff --git a/src/StepGeom/StepGeom_Array1OfTrimmingSelect.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Array1OfTrimmingSelect.hxx similarity index 100% rename from src/StepGeom/StepGeom_Array1OfTrimmingSelect.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Array1OfTrimmingSelect.hxx diff --git a/src/StepGeom/StepGeom_Array2OfCartesianPoint.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Array2OfCartesianPoint.hxx similarity index 100% rename from src/StepGeom/StepGeom_Array2OfCartesianPoint.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Array2OfCartesianPoint.hxx diff --git a/src/StepGeom/StepGeom_Array2OfSurfacePatch.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Array2OfSurfacePatch.hxx similarity index 100% rename from src/StepGeom/StepGeom_Array2OfSurfacePatch.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Array2OfSurfacePatch.hxx diff --git a/src/StepGeom/StepGeom_Axis1Placement.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Axis1Placement.cxx similarity index 100% rename from src/StepGeom/StepGeom_Axis1Placement.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Axis1Placement.cxx diff --git a/src/StepGeom/StepGeom_Axis1Placement.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Axis1Placement.hxx similarity index 100% rename from src/StepGeom/StepGeom_Axis1Placement.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Axis1Placement.hxx diff --git a/src/StepGeom/StepGeom_Axis2Placement.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Axis2Placement.cxx similarity index 100% rename from src/StepGeom/StepGeom_Axis2Placement.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Axis2Placement.cxx diff --git a/src/StepGeom/StepGeom_Axis2Placement.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Axis2Placement.hxx similarity index 100% rename from src/StepGeom/StepGeom_Axis2Placement.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Axis2Placement.hxx diff --git a/src/StepGeom/StepGeom_Axis2Placement2d.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Axis2Placement2d.cxx similarity index 100% rename from src/StepGeom/StepGeom_Axis2Placement2d.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Axis2Placement2d.cxx diff --git a/src/StepGeom/StepGeom_Axis2Placement2d.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Axis2Placement2d.hxx similarity index 100% rename from src/StepGeom/StepGeom_Axis2Placement2d.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Axis2Placement2d.hxx diff --git a/src/StepGeom/StepGeom_Axis2Placement3d.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Axis2Placement3d.cxx similarity index 100% rename from src/StepGeom/StepGeom_Axis2Placement3d.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Axis2Placement3d.cxx diff --git a/src/StepGeom/StepGeom_Axis2Placement3d.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Axis2Placement3d.hxx similarity index 100% rename from src/StepGeom/StepGeom_Axis2Placement3d.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Axis2Placement3d.hxx diff --git a/src/StepGeom/StepGeom_BSplineCurve.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineCurve.cxx similarity index 100% rename from src/StepGeom/StepGeom_BSplineCurve.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineCurve.cxx diff --git a/src/StepGeom/StepGeom_BSplineCurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineCurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_BSplineCurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineCurve.hxx diff --git a/src/StepGeom/StepGeom_BSplineCurveForm.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineCurveForm.hxx similarity index 100% rename from src/StepGeom/StepGeom_BSplineCurveForm.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineCurveForm.hxx diff --git a/src/StepGeom/StepGeom_BSplineCurveWithKnots.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineCurveWithKnots.cxx similarity index 100% rename from src/StepGeom/StepGeom_BSplineCurveWithKnots.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineCurveWithKnots.cxx diff --git a/src/StepGeom/StepGeom_BSplineCurveWithKnots.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineCurveWithKnots.hxx similarity index 100% rename from src/StepGeom/StepGeom_BSplineCurveWithKnots.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineCurveWithKnots.hxx diff --git a/src/StepGeom/StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve.cxx similarity index 100% rename from src/StepGeom/StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve.cxx diff --git a/src/StepGeom/StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve.hxx diff --git a/src/StepGeom/StepGeom_BSplineSurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineSurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_BSplineSurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineSurface.cxx diff --git a/src/StepGeom/StepGeom_BSplineSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_BSplineSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineSurface.hxx diff --git a/src/StepGeom/StepGeom_BSplineSurfaceForm.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineSurfaceForm.hxx similarity index 100% rename from src/StepGeom/StepGeom_BSplineSurfaceForm.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineSurfaceForm.hxx diff --git a/src/StepGeom/StepGeom_BSplineSurfaceWithKnots.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineSurfaceWithKnots.cxx similarity index 100% rename from src/StepGeom/StepGeom_BSplineSurfaceWithKnots.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineSurfaceWithKnots.cxx diff --git a/src/StepGeom/StepGeom_BSplineSurfaceWithKnots.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineSurfaceWithKnots.hxx similarity index 100% rename from src/StepGeom/StepGeom_BSplineSurfaceWithKnots.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineSurfaceWithKnots.hxx diff --git a/src/StepGeom/StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface.cxx diff --git a/src/StepGeom/StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface.hxx diff --git a/src/StepGeom/StepGeom_BezierCurve.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BezierCurve.cxx similarity index 100% rename from src/StepGeom/StepGeom_BezierCurve.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BezierCurve.cxx diff --git a/src/StepGeom/StepGeom_BezierCurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BezierCurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_BezierCurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BezierCurve.hxx diff --git a/src/StepGeom/StepGeom_BezierCurveAndRationalBSplineCurve.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BezierCurveAndRationalBSplineCurve.cxx similarity index 100% rename from src/StepGeom/StepGeom_BezierCurveAndRationalBSplineCurve.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BezierCurveAndRationalBSplineCurve.cxx diff --git a/src/StepGeom/StepGeom_BezierCurveAndRationalBSplineCurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BezierCurveAndRationalBSplineCurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_BezierCurveAndRationalBSplineCurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BezierCurveAndRationalBSplineCurve.hxx diff --git a/src/StepGeom/StepGeom_BezierSurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BezierSurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_BezierSurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BezierSurface.cxx diff --git a/src/StepGeom/StepGeom_BezierSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BezierSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_BezierSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BezierSurface.hxx diff --git a/src/StepGeom/StepGeom_BezierSurfaceAndRationalBSplineSurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BezierSurfaceAndRationalBSplineSurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_BezierSurfaceAndRationalBSplineSurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BezierSurfaceAndRationalBSplineSurface.cxx diff --git a/src/StepGeom/StepGeom_BezierSurfaceAndRationalBSplineSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BezierSurfaceAndRationalBSplineSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_BezierSurfaceAndRationalBSplineSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BezierSurfaceAndRationalBSplineSurface.hxx diff --git a/src/StepGeom/StepGeom_BoundaryCurve.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BoundaryCurve.cxx similarity index 100% rename from src/StepGeom/StepGeom_BoundaryCurve.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BoundaryCurve.cxx diff --git a/src/StepGeom/StepGeom_BoundaryCurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BoundaryCurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_BoundaryCurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BoundaryCurve.hxx diff --git a/src/StepGeom/StepGeom_BoundedCurve.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BoundedCurve.cxx similarity index 100% rename from src/StepGeom/StepGeom_BoundedCurve.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BoundedCurve.cxx diff --git a/src/StepGeom/StepGeom_BoundedCurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BoundedCurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_BoundedCurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BoundedCurve.hxx diff --git a/src/StepGeom/StepGeom_BoundedSurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BoundedSurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_BoundedSurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BoundedSurface.cxx diff --git a/src/StepGeom/StepGeom_BoundedSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_BoundedSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_BoundedSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_BoundedSurface.hxx diff --git a/src/StepGeom/StepGeom_CartesianPoint.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_CartesianPoint.cxx similarity index 100% rename from src/StepGeom/StepGeom_CartesianPoint.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_CartesianPoint.cxx diff --git a/src/StepGeom/StepGeom_CartesianPoint.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_CartesianPoint.hxx similarity index 100% rename from src/StepGeom/StepGeom_CartesianPoint.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_CartesianPoint.hxx diff --git a/src/StepGeom/StepGeom_CartesianTransformationOperator.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_CartesianTransformationOperator.cxx similarity index 100% rename from src/StepGeom/StepGeom_CartesianTransformationOperator.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_CartesianTransformationOperator.cxx diff --git a/src/StepGeom/StepGeom_CartesianTransformationOperator.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_CartesianTransformationOperator.hxx similarity index 100% rename from src/StepGeom/StepGeom_CartesianTransformationOperator.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_CartesianTransformationOperator.hxx diff --git a/src/StepGeom/StepGeom_CartesianTransformationOperator2d.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_CartesianTransformationOperator2d.cxx similarity index 100% rename from src/StepGeom/StepGeom_CartesianTransformationOperator2d.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_CartesianTransformationOperator2d.cxx diff --git a/src/StepGeom/StepGeom_CartesianTransformationOperator2d.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_CartesianTransformationOperator2d.hxx similarity index 100% rename from src/StepGeom/StepGeom_CartesianTransformationOperator2d.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_CartesianTransformationOperator2d.hxx diff --git a/src/StepGeom/StepGeom_CartesianTransformationOperator3d.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_CartesianTransformationOperator3d.cxx similarity index 100% rename from src/StepGeom/StepGeom_CartesianTransformationOperator3d.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_CartesianTransformationOperator3d.cxx diff --git a/src/StepGeom/StepGeom_CartesianTransformationOperator3d.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_CartesianTransformationOperator3d.hxx similarity index 100% rename from src/StepGeom/StepGeom_CartesianTransformationOperator3d.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_CartesianTransformationOperator3d.hxx diff --git a/src/StepGeom/StepGeom_Circle.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Circle.cxx similarity index 100% rename from src/StepGeom/StepGeom_Circle.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Circle.cxx diff --git a/src/StepGeom/StepGeom_Circle.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Circle.hxx similarity index 100% rename from src/StepGeom/StepGeom_Circle.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Circle.hxx diff --git a/src/StepGeom/StepGeom_CompositeCurve.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_CompositeCurve.cxx similarity index 100% rename from src/StepGeom/StepGeom_CompositeCurve.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_CompositeCurve.cxx diff --git a/src/StepGeom/StepGeom_CompositeCurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_CompositeCurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_CompositeCurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_CompositeCurve.hxx diff --git a/src/StepGeom/StepGeom_CompositeCurveOnSurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_CompositeCurveOnSurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_CompositeCurveOnSurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_CompositeCurveOnSurface.cxx diff --git a/src/StepGeom/StepGeom_CompositeCurveOnSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_CompositeCurveOnSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_CompositeCurveOnSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_CompositeCurveOnSurface.hxx diff --git a/src/StepGeom/StepGeom_CompositeCurveSegment.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_CompositeCurveSegment.cxx similarity index 100% rename from src/StepGeom/StepGeom_CompositeCurveSegment.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_CompositeCurveSegment.cxx diff --git a/src/StepGeom/StepGeom_CompositeCurveSegment.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_CompositeCurveSegment.hxx similarity index 100% rename from src/StepGeom/StepGeom_CompositeCurveSegment.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_CompositeCurveSegment.hxx diff --git a/src/StepGeom/StepGeom_Conic.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Conic.cxx similarity index 100% rename from src/StepGeom/StepGeom_Conic.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Conic.cxx diff --git a/src/StepGeom/StepGeom_Conic.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Conic.hxx similarity index 100% rename from src/StepGeom/StepGeom_Conic.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Conic.hxx diff --git a/src/StepGeom/StepGeom_ConicalSurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_ConicalSurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_ConicalSurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_ConicalSurface.cxx diff --git a/src/StepGeom/StepGeom_ConicalSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_ConicalSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_ConicalSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_ConicalSurface.hxx diff --git a/src/StepGeom/StepGeom_Curve.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Curve.cxx similarity index 100% rename from src/StepGeom/StepGeom_Curve.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Curve.cxx diff --git a/src/StepGeom/StepGeom_Curve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Curve.hxx similarity index 100% rename from src/StepGeom/StepGeom_Curve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Curve.hxx diff --git a/src/StepGeom/StepGeom_CurveBoundedSurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_CurveBoundedSurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_CurveBoundedSurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_CurveBoundedSurface.cxx diff --git a/src/StepGeom/StepGeom_CurveBoundedSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_CurveBoundedSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_CurveBoundedSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_CurveBoundedSurface.hxx diff --git a/src/StepGeom/StepGeom_CurveOnSurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_CurveOnSurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_CurveOnSurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_CurveOnSurface.cxx diff --git a/src/StepGeom/StepGeom_CurveOnSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_CurveOnSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_CurveOnSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_CurveOnSurface.hxx diff --git a/src/StepGeom/StepGeom_CurveReplica.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_CurveReplica.cxx similarity index 100% rename from src/StepGeom/StepGeom_CurveReplica.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_CurveReplica.cxx diff --git a/src/StepGeom/StepGeom_CurveReplica.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_CurveReplica.hxx similarity index 100% rename from src/StepGeom/StepGeom_CurveReplica.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_CurveReplica.hxx diff --git a/src/StepGeom/StepGeom_CylindricalSurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_CylindricalSurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_CylindricalSurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_CylindricalSurface.cxx diff --git a/src/StepGeom/StepGeom_CylindricalSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_CylindricalSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_CylindricalSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_CylindricalSurface.hxx diff --git a/src/StepGeom/StepGeom_DegeneratePcurve.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_DegeneratePcurve.cxx similarity index 100% rename from src/StepGeom/StepGeom_DegeneratePcurve.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_DegeneratePcurve.cxx diff --git a/src/StepGeom/StepGeom_DegeneratePcurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_DegeneratePcurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_DegeneratePcurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_DegeneratePcurve.hxx diff --git a/src/StepGeom/StepGeom_DegenerateToroidalSurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_DegenerateToroidalSurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_DegenerateToroidalSurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_DegenerateToroidalSurface.cxx diff --git a/src/StepGeom/StepGeom_DegenerateToroidalSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_DegenerateToroidalSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_DegenerateToroidalSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_DegenerateToroidalSurface.hxx diff --git a/src/StepGeom/StepGeom_Direction.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Direction.cxx similarity index 100% rename from src/StepGeom/StepGeom_Direction.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Direction.cxx diff --git a/src/StepGeom/StepGeom_Direction.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Direction.hxx similarity index 100% rename from src/StepGeom/StepGeom_Direction.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Direction.hxx diff --git a/src/StepGeom/StepGeom_ElementarySurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_ElementarySurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_ElementarySurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_ElementarySurface.cxx diff --git a/src/StepGeom/StepGeom_ElementarySurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_ElementarySurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_ElementarySurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_ElementarySurface.hxx diff --git a/src/StepGeom/StepGeom_Ellipse.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Ellipse.cxx similarity index 100% rename from src/StepGeom/StepGeom_Ellipse.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Ellipse.cxx diff --git a/src/StepGeom/StepGeom_Ellipse.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Ellipse.hxx similarity index 100% rename from src/StepGeom/StepGeom_Ellipse.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Ellipse.hxx diff --git a/src/StepGeom/StepGeom_EvaluatedDegeneratePcurve.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_EvaluatedDegeneratePcurve.cxx similarity index 100% rename from src/StepGeom/StepGeom_EvaluatedDegeneratePcurve.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_EvaluatedDegeneratePcurve.cxx diff --git a/src/StepGeom/StepGeom_EvaluatedDegeneratePcurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_EvaluatedDegeneratePcurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_EvaluatedDegeneratePcurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_EvaluatedDegeneratePcurve.hxx diff --git a/src/StepGeom/StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.cxx similarity index 100% rename from src/StepGeom/StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.cxx diff --git a/src/StepGeom/StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.hxx similarity index 100% rename from src/StepGeom/StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.hxx diff --git a/src/StepGeom/StepGeom_GeometricRepresentationContext.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_GeometricRepresentationContext.cxx similarity index 100% rename from src/StepGeom/StepGeom_GeometricRepresentationContext.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_GeometricRepresentationContext.cxx diff --git a/src/StepGeom/StepGeom_GeometricRepresentationContext.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_GeometricRepresentationContext.hxx similarity index 100% rename from src/StepGeom/StepGeom_GeometricRepresentationContext.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_GeometricRepresentationContext.hxx diff --git a/src/StepGeom/StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext.cxx similarity index 100% rename from src/StepGeom/StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext.cxx diff --git a/src/StepGeom/StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext.hxx similarity index 100% rename from src/StepGeom/StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext.hxx diff --git a/src/StepGeom/StepGeom_GeometricRepresentationContextAndParametricRepresentationContext.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_GeometricRepresentationContextAndParametricRepresentationContext.cxx similarity index 100% rename from src/StepGeom/StepGeom_GeometricRepresentationContextAndParametricRepresentationContext.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_GeometricRepresentationContextAndParametricRepresentationContext.cxx diff --git a/src/StepGeom/StepGeom_GeometricRepresentationContextAndParametricRepresentationContext.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_GeometricRepresentationContextAndParametricRepresentationContext.hxx similarity index 100% rename from src/StepGeom/StepGeom_GeometricRepresentationContextAndParametricRepresentationContext.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_GeometricRepresentationContextAndParametricRepresentationContext.hxx diff --git a/src/StepGeom/StepGeom_GeometricRepresentationItem.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_GeometricRepresentationItem.cxx similarity index 100% rename from src/StepGeom/StepGeom_GeometricRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_GeometricRepresentationItem.cxx diff --git a/src/StepGeom/StepGeom_GeometricRepresentationItem.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_GeometricRepresentationItem.hxx similarity index 100% rename from src/StepGeom/StepGeom_GeometricRepresentationItem.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_GeometricRepresentationItem.hxx diff --git a/src/StepGeom/StepGeom_HArray1OfBoundaryCurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_HArray1OfBoundaryCurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_HArray1OfBoundaryCurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_HArray1OfBoundaryCurve.hxx diff --git a/src/StepGeom/StepGeom_HArray1OfCartesianPoint.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_HArray1OfCartesianPoint.hxx similarity index 100% rename from src/StepGeom/StepGeom_HArray1OfCartesianPoint.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_HArray1OfCartesianPoint.hxx diff --git a/src/StepGeom/StepGeom_HArray1OfCompositeCurveSegment.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_HArray1OfCompositeCurveSegment.hxx similarity index 100% rename from src/StepGeom/StepGeom_HArray1OfCompositeCurveSegment.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_HArray1OfCompositeCurveSegment.hxx diff --git a/src/StepGeom/StepGeom_HArray1OfCurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_HArray1OfCurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_HArray1OfCurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_HArray1OfCurve.hxx diff --git a/src/StepGeom/StepGeom_HArray1OfPcurveOrSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_HArray1OfPcurveOrSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_HArray1OfPcurveOrSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_HArray1OfPcurveOrSurface.hxx diff --git a/src/StepGeom/StepGeom_HArray1OfSurfaceBoundary.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_HArray1OfSurfaceBoundary.hxx similarity index 100% rename from src/StepGeom/StepGeom_HArray1OfSurfaceBoundary.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_HArray1OfSurfaceBoundary.hxx diff --git a/src/StepGeom/StepGeom_HArray1OfTrimmingSelect.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_HArray1OfTrimmingSelect.hxx similarity index 100% rename from src/StepGeom/StepGeom_HArray1OfTrimmingSelect.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_HArray1OfTrimmingSelect.hxx diff --git a/src/StepGeom/StepGeom_HArray2OfCartesianPoint.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_HArray2OfCartesianPoint.hxx similarity index 100% rename from src/StepGeom/StepGeom_HArray2OfCartesianPoint.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_HArray2OfCartesianPoint.hxx diff --git a/src/StepGeom/StepGeom_HArray2OfSurfacePatch.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_HArray2OfSurfacePatch.hxx similarity index 100% rename from src/StepGeom/StepGeom_HArray2OfSurfacePatch.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_HArray2OfSurfacePatch.hxx diff --git a/src/StepGeom/StepGeom_Hyperbola.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Hyperbola.cxx similarity index 100% rename from src/StepGeom/StepGeom_Hyperbola.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Hyperbola.cxx diff --git a/src/StepGeom/StepGeom_Hyperbola.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Hyperbola.hxx similarity index 100% rename from src/StepGeom/StepGeom_Hyperbola.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Hyperbola.hxx diff --git a/src/StepGeom/StepGeom_IntersectionCurve.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_IntersectionCurve.cxx similarity index 100% rename from src/StepGeom/StepGeom_IntersectionCurve.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_IntersectionCurve.cxx diff --git a/src/StepGeom/StepGeom_IntersectionCurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_IntersectionCurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_IntersectionCurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_IntersectionCurve.hxx diff --git a/src/StepGeom/StepGeom_KnotType.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_KnotType.hxx similarity index 100% rename from src/StepGeom/StepGeom_KnotType.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_KnotType.hxx diff --git a/src/StepGeom/StepGeom_Line.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Line.cxx similarity index 100% rename from src/StepGeom/StepGeom_Line.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Line.cxx diff --git a/src/StepGeom/StepGeom_Line.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Line.hxx similarity index 100% rename from src/StepGeom/StepGeom_Line.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Line.hxx diff --git a/src/StepGeom/StepGeom_OffsetCurve3d.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_OffsetCurve3d.cxx similarity index 100% rename from src/StepGeom/StepGeom_OffsetCurve3d.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_OffsetCurve3d.cxx diff --git a/src/StepGeom/StepGeom_OffsetCurve3d.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_OffsetCurve3d.hxx similarity index 100% rename from src/StepGeom/StepGeom_OffsetCurve3d.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_OffsetCurve3d.hxx diff --git a/src/StepGeom/StepGeom_OffsetSurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_OffsetSurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_OffsetSurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_OffsetSurface.cxx diff --git a/src/StepGeom/StepGeom_OffsetSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_OffsetSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_OffsetSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_OffsetSurface.hxx diff --git a/src/StepGeom/StepGeom_OrientedSurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_OrientedSurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_OrientedSurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_OrientedSurface.cxx diff --git a/src/StepGeom/StepGeom_OrientedSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_OrientedSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_OrientedSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_OrientedSurface.hxx diff --git a/src/StepGeom/StepGeom_OuterBoundaryCurve.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_OuterBoundaryCurve.cxx similarity index 100% rename from src/StepGeom/StepGeom_OuterBoundaryCurve.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_OuterBoundaryCurve.cxx diff --git a/src/StepGeom/StepGeom_OuterBoundaryCurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_OuterBoundaryCurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_OuterBoundaryCurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_OuterBoundaryCurve.hxx diff --git a/src/StepGeom/StepGeom_Parabola.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Parabola.cxx similarity index 100% rename from src/StepGeom/StepGeom_Parabola.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Parabola.cxx diff --git a/src/StepGeom/StepGeom_Parabola.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Parabola.hxx similarity index 100% rename from src/StepGeom/StepGeom_Parabola.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Parabola.hxx diff --git a/src/StepGeom/StepGeom_Pcurve.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Pcurve.cxx similarity index 100% rename from src/StepGeom/StepGeom_Pcurve.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Pcurve.cxx diff --git a/src/StepGeom/StepGeom_Pcurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Pcurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_Pcurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Pcurve.hxx diff --git a/src/StepGeom/StepGeom_PcurveOrSurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_PcurveOrSurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_PcurveOrSurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_PcurveOrSurface.cxx diff --git a/src/StepGeom/StepGeom_PcurveOrSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_PcurveOrSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_PcurveOrSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_PcurveOrSurface.hxx diff --git a/src/StepGeom/StepGeom_Placement.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Placement.cxx similarity index 100% rename from src/StepGeom/StepGeom_Placement.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Placement.cxx diff --git a/src/StepGeom/StepGeom_Placement.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Placement.hxx similarity index 100% rename from src/StepGeom/StepGeom_Placement.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Placement.hxx diff --git a/src/StepGeom/StepGeom_Plane.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Plane.cxx similarity index 100% rename from src/StepGeom/StepGeom_Plane.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Plane.cxx diff --git a/src/StepGeom/StepGeom_Plane.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Plane.hxx similarity index 100% rename from src/StepGeom/StepGeom_Plane.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Plane.hxx diff --git a/src/StepGeom/StepGeom_Point.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Point.cxx similarity index 100% rename from src/StepGeom/StepGeom_Point.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Point.cxx diff --git a/src/StepGeom/StepGeom_Point.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Point.hxx similarity index 100% rename from src/StepGeom/StepGeom_Point.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Point.hxx diff --git a/src/StepGeom/StepGeom_PointOnCurve.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_PointOnCurve.cxx similarity index 100% rename from src/StepGeom/StepGeom_PointOnCurve.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_PointOnCurve.cxx diff --git a/src/StepGeom/StepGeom_PointOnCurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_PointOnCurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_PointOnCurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_PointOnCurve.hxx diff --git a/src/StepGeom/StepGeom_PointOnSurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_PointOnSurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_PointOnSurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_PointOnSurface.cxx diff --git a/src/StepGeom/StepGeom_PointOnSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_PointOnSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_PointOnSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_PointOnSurface.hxx diff --git a/src/StepGeom/StepGeom_PointReplica.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_PointReplica.cxx similarity index 100% rename from src/StepGeom/StepGeom_PointReplica.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_PointReplica.cxx diff --git a/src/StepGeom/StepGeom_PointReplica.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_PointReplica.hxx similarity index 100% rename from src/StepGeom/StepGeom_PointReplica.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_PointReplica.hxx diff --git a/src/StepGeom/StepGeom_Polyline.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Polyline.cxx similarity index 100% rename from src/StepGeom/StepGeom_Polyline.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Polyline.cxx diff --git a/src/StepGeom/StepGeom_Polyline.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Polyline.hxx similarity index 100% rename from src/StepGeom/StepGeom_Polyline.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Polyline.hxx diff --git a/src/StepGeom/StepGeom_PreferredSurfaceCurveRepresentation.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_PreferredSurfaceCurveRepresentation.hxx similarity index 100% rename from src/StepGeom/StepGeom_PreferredSurfaceCurveRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_PreferredSurfaceCurveRepresentation.hxx diff --git a/src/StepGeom/StepGeom_QuasiUniformCurve.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_QuasiUniformCurve.cxx similarity index 100% rename from src/StepGeom/StepGeom_QuasiUniformCurve.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_QuasiUniformCurve.cxx diff --git a/src/StepGeom/StepGeom_QuasiUniformCurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_QuasiUniformCurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_QuasiUniformCurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_QuasiUniformCurve.hxx diff --git a/src/StepGeom/StepGeom_QuasiUniformCurveAndRationalBSplineCurve.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_QuasiUniformCurveAndRationalBSplineCurve.cxx similarity index 100% rename from src/StepGeom/StepGeom_QuasiUniformCurveAndRationalBSplineCurve.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_QuasiUniformCurveAndRationalBSplineCurve.cxx diff --git a/src/StepGeom/StepGeom_QuasiUniformCurveAndRationalBSplineCurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_QuasiUniformCurveAndRationalBSplineCurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_QuasiUniformCurveAndRationalBSplineCurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_QuasiUniformCurveAndRationalBSplineCurve.hxx diff --git a/src/StepGeom/StepGeom_QuasiUniformSurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_QuasiUniformSurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_QuasiUniformSurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_QuasiUniformSurface.cxx diff --git a/src/StepGeom/StepGeom_QuasiUniformSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_QuasiUniformSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_QuasiUniformSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_QuasiUniformSurface.hxx diff --git a/src/StepGeom/StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface.cxx diff --git a/src/StepGeom/StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface.hxx diff --git a/src/StepGeom/StepGeom_RationalBSplineCurve.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_RationalBSplineCurve.cxx similarity index 100% rename from src/StepGeom/StepGeom_RationalBSplineCurve.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_RationalBSplineCurve.cxx diff --git a/src/StepGeom/StepGeom_RationalBSplineCurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_RationalBSplineCurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_RationalBSplineCurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_RationalBSplineCurve.hxx diff --git a/src/StepGeom/StepGeom_RationalBSplineSurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_RationalBSplineSurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_RationalBSplineSurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_RationalBSplineSurface.cxx diff --git a/src/StepGeom/StepGeom_RationalBSplineSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_RationalBSplineSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_RationalBSplineSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_RationalBSplineSurface.hxx diff --git a/src/StepGeom/StepGeom_RectangularCompositeSurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_RectangularCompositeSurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_RectangularCompositeSurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_RectangularCompositeSurface.cxx diff --git a/src/StepGeom/StepGeom_RectangularCompositeSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_RectangularCompositeSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_RectangularCompositeSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_RectangularCompositeSurface.hxx diff --git a/src/StepGeom/StepGeom_RectangularTrimmedSurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_RectangularTrimmedSurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_RectangularTrimmedSurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_RectangularTrimmedSurface.cxx diff --git a/src/StepGeom/StepGeom_RectangularTrimmedSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_RectangularTrimmedSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_RectangularTrimmedSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_RectangularTrimmedSurface.hxx diff --git a/src/StepGeom/StepGeom_ReparametrisedCompositeCurveSegment.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_ReparametrisedCompositeCurveSegment.cxx similarity index 100% rename from src/StepGeom/StepGeom_ReparametrisedCompositeCurveSegment.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_ReparametrisedCompositeCurveSegment.cxx diff --git a/src/StepGeom/StepGeom_ReparametrisedCompositeCurveSegment.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_ReparametrisedCompositeCurveSegment.hxx similarity index 100% rename from src/StepGeom/StepGeom_ReparametrisedCompositeCurveSegment.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_ReparametrisedCompositeCurveSegment.hxx diff --git a/src/StepGeom/StepGeom_SeamCurve.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_SeamCurve.cxx similarity index 100% rename from src/StepGeom/StepGeom_SeamCurve.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_SeamCurve.cxx diff --git a/src/StepGeom/StepGeom_SeamCurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_SeamCurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_SeamCurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_SeamCurve.hxx diff --git a/src/StepGeom/StepGeom_SphericalSurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_SphericalSurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_SphericalSurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_SphericalSurface.cxx diff --git a/src/StepGeom/StepGeom_SphericalSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_SphericalSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_SphericalSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_SphericalSurface.hxx diff --git a/src/StepGeom/StepGeom_SuParameters.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_SuParameters.cxx similarity index 100% rename from src/StepGeom/StepGeom_SuParameters.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_SuParameters.cxx diff --git a/src/StepGeom/StepGeom_SuParameters.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_SuParameters.hxx similarity index 100% rename from src/StepGeom/StepGeom_SuParameters.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_SuParameters.hxx diff --git a/src/StepGeom/StepGeom_Surface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Surface.cxx similarity index 100% rename from src/StepGeom/StepGeom_Surface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Surface.cxx diff --git a/src/StepGeom/StepGeom_Surface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Surface.hxx similarity index 100% rename from src/StepGeom/StepGeom_Surface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Surface.hxx diff --git a/src/StepGeom/StepGeom_SurfaceBoundary.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfaceBoundary.cxx similarity index 100% rename from src/StepGeom/StepGeom_SurfaceBoundary.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfaceBoundary.cxx diff --git a/src/StepGeom/StepGeom_SurfaceBoundary.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfaceBoundary.hxx similarity index 100% rename from src/StepGeom/StepGeom_SurfaceBoundary.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfaceBoundary.hxx diff --git a/src/StepGeom/StepGeom_SurfaceCurve.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfaceCurve.cxx similarity index 100% rename from src/StepGeom/StepGeom_SurfaceCurve.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfaceCurve.cxx diff --git a/src/StepGeom/StepGeom_SurfaceCurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfaceCurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_SurfaceCurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfaceCurve.hxx diff --git a/src/StepGeom/StepGeom_SurfaceCurveAndBoundedCurve.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfaceCurveAndBoundedCurve.cxx similarity index 100% rename from src/StepGeom/StepGeom_SurfaceCurveAndBoundedCurve.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfaceCurveAndBoundedCurve.cxx diff --git a/src/StepGeom/StepGeom_SurfaceCurveAndBoundedCurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfaceCurveAndBoundedCurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_SurfaceCurveAndBoundedCurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfaceCurveAndBoundedCurve.hxx diff --git a/src/StepGeom/StepGeom_SurfaceOfLinearExtrusion.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfaceOfLinearExtrusion.cxx similarity index 100% rename from src/StepGeom/StepGeom_SurfaceOfLinearExtrusion.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfaceOfLinearExtrusion.cxx diff --git a/src/StepGeom/StepGeom_SurfaceOfLinearExtrusion.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfaceOfLinearExtrusion.hxx similarity index 100% rename from src/StepGeom/StepGeom_SurfaceOfLinearExtrusion.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfaceOfLinearExtrusion.hxx diff --git a/src/StepGeom/StepGeom_SurfaceOfRevolution.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfaceOfRevolution.cxx similarity index 100% rename from src/StepGeom/StepGeom_SurfaceOfRevolution.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfaceOfRevolution.cxx diff --git a/src/StepGeom/StepGeom_SurfaceOfRevolution.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfaceOfRevolution.hxx similarity index 100% rename from src/StepGeom/StepGeom_SurfaceOfRevolution.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfaceOfRevolution.hxx diff --git a/src/StepGeom/StepGeom_SurfacePatch.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfacePatch.cxx similarity index 100% rename from src/StepGeom/StepGeom_SurfacePatch.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfacePatch.cxx diff --git a/src/StepGeom/StepGeom_SurfacePatch.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfacePatch.hxx similarity index 100% rename from src/StepGeom/StepGeom_SurfacePatch.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfacePatch.hxx diff --git a/src/StepGeom/StepGeom_SurfaceReplica.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfaceReplica.cxx similarity index 100% rename from src/StepGeom/StepGeom_SurfaceReplica.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfaceReplica.cxx diff --git a/src/StepGeom/StepGeom_SurfaceReplica.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfaceReplica.hxx similarity index 100% rename from src/StepGeom/StepGeom_SurfaceReplica.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_SurfaceReplica.hxx diff --git a/src/StepGeom/StepGeom_SweptSurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_SweptSurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_SweptSurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_SweptSurface.cxx diff --git a/src/StepGeom/StepGeom_SweptSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_SweptSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_SweptSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_SweptSurface.hxx diff --git a/src/StepGeom/StepGeom_ToroidalSurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_ToroidalSurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_ToroidalSurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_ToroidalSurface.cxx diff --git a/src/StepGeom/StepGeom_ToroidalSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_ToroidalSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_ToroidalSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_ToroidalSurface.hxx diff --git a/src/StepGeom/StepGeom_TransitionCode.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_TransitionCode.hxx similarity index 100% rename from src/StepGeom/StepGeom_TransitionCode.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_TransitionCode.hxx diff --git a/src/StepGeom/StepGeom_TrimmedCurve.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_TrimmedCurve.cxx similarity index 100% rename from src/StepGeom/StepGeom_TrimmedCurve.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_TrimmedCurve.cxx diff --git a/src/StepGeom/StepGeom_TrimmedCurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_TrimmedCurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_TrimmedCurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_TrimmedCurve.hxx diff --git a/src/StepGeom/StepGeom_TrimmingMember.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_TrimmingMember.cxx similarity index 100% rename from src/StepGeom/StepGeom_TrimmingMember.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_TrimmingMember.cxx diff --git a/src/StepGeom/StepGeom_TrimmingMember.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_TrimmingMember.hxx similarity index 100% rename from src/StepGeom/StepGeom_TrimmingMember.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_TrimmingMember.hxx diff --git a/src/StepGeom/StepGeom_TrimmingPreference.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_TrimmingPreference.hxx similarity index 100% rename from src/StepGeom/StepGeom_TrimmingPreference.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_TrimmingPreference.hxx diff --git a/src/StepGeom/StepGeom_TrimmingSelect.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_TrimmingSelect.cxx similarity index 100% rename from src/StepGeom/StepGeom_TrimmingSelect.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_TrimmingSelect.cxx diff --git a/src/StepGeom/StepGeom_TrimmingSelect.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_TrimmingSelect.hxx similarity index 100% rename from src/StepGeom/StepGeom_TrimmingSelect.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_TrimmingSelect.hxx diff --git a/src/StepGeom/StepGeom_UniformCurve.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_UniformCurve.cxx similarity index 100% rename from src/StepGeom/StepGeom_UniformCurve.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_UniformCurve.cxx diff --git a/src/StepGeom/StepGeom_UniformCurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_UniformCurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_UniformCurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_UniformCurve.hxx diff --git a/src/StepGeom/StepGeom_UniformCurveAndRationalBSplineCurve.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_UniformCurveAndRationalBSplineCurve.cxx similarity index 100% rename from src/StepGeom/StepGeom_UniformCurveAndRationalBSplineCurve.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_UniformCurveAndRationalBSplineCurve.cxx diff --git a/src/StepGeom/StepGeom_UniformCurveAndRationalBSplineCurve.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_UniformCurveAndRationalBSplineCurve.hxx similarity index 100% rename from src/StepGeom/StepGeom_UniformCurveAndRationalBSplineCurve.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_UniformCurveAndRationalBSplineCurve.hxx diff --git a/src/StepGeom/StepGeom_UniformSurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_UniformSurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_UniformSurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_UniformSurface.cxx diff --git a/src/StepGeom/StepGeom_UniformSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_UniformSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_UniformSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_UniformSurface.hxx diff --git a/src/StepGeom/StepGeom_UniformSurfaceAndRationalBSplineSurface.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_UniformSurfaceAndRationalBSplineSurface.cxx similarity index 100% rename from src/StepGeom/StepGeom_UniformSurfaceAndRationalBSplineSurface.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_UniformSurfaceAndRationalBSplineSurface.cxx diff --git a/src/StepGeom/StepGeom_UniformSurfaceAndRationalBSplineSurface.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_UniformSurfaceAndRationalBSplineSurface.hxx similarity index 100% rename from src/StepGeom/StepGeom_UniformSurfaceAndRationalBSplineSurface.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_UniformSurfaceAndRationalBSplineSurface.hxx diff --git a/src/StepGeom/StepGeom_Vector.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Vector.cxx similarity index 100% rename from src/StepGeom/StepGeom_Vector.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Vector.cxx diff --git a/src/StepGeom/StepGeom_Vector.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_Vector.hxx similarity index 100% rename from src/StepGeom/StepGeom_Vector.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_Vector.hxx diff --git a/src/StepGeom/StepGeom_VectorOrDirection.cxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_VectorOrDirection.cxx similarity index 100% rename from src/StepGeom/StepGeom_VectorOrDirection.cxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_VectorOrDirection.cxx diff --git a/src/StepGeom/StepGeom_VectorOrDirection.hxx b/src/DataExchange/TKDESTEP/StepGeom/StepGeom_VectorOrDirection.hxx similarity index 100% rename from src/StepGeom/StepGeom_VectorOrDirection.hxx rename to src/DataExchange/TKDESTEP/StepGeom/StepGeom_VectorOrDirection.hxx diff --git a/src/DataExchange/TKDESTEP/StepKinematics/FILES.cmake b/src/DataExchange/TKDESTEP/StepKinematics/FILES.cmake new file mode 100644 index 0000000000..f8fbd430bd --- /dev/null +++ b/src/DataExchange/TKDESTEP/StepKinematics/FILES.cmake @@ -0,0 +1,176 @@ +# Source files for StepKinematics package +set(OCCT_StepKinematics_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StepKinematics_FILES + StepKinematics_ActuatedDirection.hxx + StepKinematics_ActuatedKinematicPair.cxx + StepKinematics_ActuatedKinematicPair.hxx + StepKinematics_ContextDependentKinematicLinkRepresentation.cxx + StepKinematics_ContextDependentKinematicLinkRepresentation.hxx + StepKinematics_CylindricalPair.cxx + StepKinematics_CylindricalPair.hxx + StepKinematics_CylindricalPairValue.cxx + StepKinematics_CylindricalPairValue.hxx + StepKinematics_CylindricalPairWithRange.cxx + StepKinematics_CylindricalPairWithRange.hxx + StepKinematics_FullyConstrainedPair.cxx + StepKinematics_FullyConstrainedPair.hxx + StepKinematics_GearPair.cxx + StepKinematics_GearPair.hxx + StepKinematics_GearPairValue.cxx + StepKinematics_GearPairValue.hxx + StepKinematics_GearPairWithRange.cxx + StepKinematics_GearPairWithRange.hxx + StepKinematics_HighOrderKinematicPair.cxx + StepKinematics_HighOrderKinematicPair.hxx + StepKinematics_HomokineticPair.cxx + StepKinematics_HomokineticPair.hxx + StepKinematics_KinematicJoint.cxx + StepKinematics_KinematicJoint.hxx + StepKinematics_KinematicLink.cxx + StepKinematics_KinematicLink.hxx + StepKinematics_KinematicLinkRepresentation.cxx + StepKinematics_KinematicLinkRepresentation.hxx + StepKinematics_KinematicLinkRepresentationAssociation.cxx + StepKinematics_KinematicLinkRepresentationAssociation.hxx + StepKinematics_KinematicPair.cxx + StepKinematics_KinematicPair.hxx + StepKinematics_ActuatedKinPairAndOrderKinPair.cxx + StepKinematics_ActuatedKinPairAndOrderKinPair.hxx + StepKinematics_KinematicPropertyDefinitionRepresentation.cxx + StepKinematics_KinematicPropertyDefinitionRepresentation.hxx + StepKinematics_KinematicPropertyMechanismRepresentation.cxx + StepKinematics_KinematicPropertyMechanismRepresentation.hxx + StepKinematics_KinematicTopologyStructure.cxx + StepKinematics_KinematicTopologyStructure.hxx + StepKinematics_LinearFlexibleAndPinionPair.cxx + StepKinematics_LinearFlexibleAndPinionPair.hxx + StepKinematics_LinearFlexibleAndPlanarCurvePair.cxx + StepKinematics_LinearFlexibleAndPlanarCurvePair.hxx + StepKinematics_LinearFlexibleLinkRepresentation.cxx + StepKinematics_LinearFlexibleLinkRepresentation.hxx + StepKinematics_LowOrderKinematicPair.cxx + StepKinematics_LowOrderKinematicPair.hxx + StepKinematics_LowOrderKinematicPairValue.cxx + StepKinematics_LowOrderKinematicPairValue.hxx + StepKinematics_LowOrderKinematicPairWithMotionCoupling.cxx + StepKinematics_LowOrderKinematicPairWithMotionCoupling.hxx + StepKinematics_LowOrderKinematicPairWithRange.cxx + StepKinematics_LowOrderKinematicPairWithRange.hxx + StepKinematics_MechanismRepresentation.cxx + StepKinematics_MechanismRepresentation.hxx + StepKinematics_MechanismStateRepresentation.cxx + StepKinematics_MechanismStateRepresentation.hxx + StepKinematics_OrientedJoint.cxx + StepKinematics_OrientedJoint.hxx + StepKinematics_PairRepresentationRelationship.cxx + StepKinematics_PairRepresentationRelationship.hxx + StepKinematics_PairValue.cxx + StepKinematics_PairValue.hxx + StepKinematics_PlanarCurvePair.cxx + StepKinematics_PlanarCurvePair.hxx + StepKinematics_PlanarCurvePairRange.cxx + StepKinematics_PlanarCurvePairRange.hxx + StepKinematics_PlanarPair.cxx + StepKinematics_PlanarPair.hxx + StepKinematics_PlanarPairValue.cxx + StepKinematics_PlanarPairValue.hxx + StepKinematics_PlanarPairWithRange.cxx + StepKinematics_PlanarPairWithRange.hxx + StepKinematics_PointOnPlanarCurvePair.cxx + StepKinematics_PointOnPlanarCurvePair.hxx + StepKinematics_PointOnPlanarCurvePairValue.cxx + StepKinematics_PointOnPlanarCurvePairValue.hxx + StepKinematics_PointOnPlanarCurvePairWithRange.cxx + StepKinematics_PointOnPlanarCurvePairWithRange.hxx + StepKinematics_PointOnSurfacePair.cxx + StepKinematics_PointOnSurfacePair.hxx + StepKinematics_PointOnSurfacePairValue.cxx + StepKinematics_PointOnSurfacePairValue.hxx + StepKinematics_PointOnSurfacePairWithRange.cxx + StepKinematics_PointOnSurfacePairWithRange.hxx + StepKinematics_PrismaticPair.cxx + StepKinematics_PrismaticPair.hxx + StepKinematics_PrismaticPairValue.cxx + StepKinematics_PrismaticPairValue.hxx + StepKinematics_PrismaticPairWithRange.cxx + StepKinematics_PrismaticPairWithRange.hxx + StepKinematics_ProductDefinitionKinematics.cxx + StepKinematics_ProductDefinitionKinematics.hxx + StepKinematics_ProductDefinitionRelationshipKinematics.cxx + StepKinematics_ProductDefinitionRelationshipKinematics.hxx + StepKinematics_RackAndPinionPair.cxx + StepKinematics_RackAndPinionPair.hxx + StepKinematics_RackAndPinionPairValue.cxx + StepKinematics_RackAndPinionPairValue.hxx + StepKinematics_RackAndPinionPairWithRange.cxx + StepKinematics_RackAndPinionPairWithRange.hxx + StepKinematics_RevolutePair.cxx + StepKinematics_RevolutePair.hxx + StepKinematics_RevolutePairValue.cxx + StepKinematics_RevolutePairValue.hxx + StepKinematics_RevolutePairWithRange.cxx + StepKinematics_RevolutePairWithRange.hxx + StepKinematics_RigidLinkRepresentation.cxx + StepKinematics_RigidLinkRepresentation.hxx + StepKinematics_RigidPlacement.cxx + StepKinematics_RigidPlacement.hxx + StepKinematics_RollingCurvePair.cxx + StepKinematics_RollingCurvePair.hxx + StepKinematics_RollingCurvePairValue.cxx + StepKinematics_RollingCurvePairValue.hxx + StepKinematics_RollingSurfacePair.cxx + StepKinematics_RollingSurfacePair.hxx + StepKinematics_RollingSurfacePairValue.cxx + StepKinematics_RollingSurfacePairValue.hxx + StepKinematics_RotationAboutDirection.cxx + StepKinematics_RotationAboutDirection.hxx + StepKinematics_ScrewPair.cxx + StepKinematics_ScrewPair.hxx + StepKinematics_ScrewPairValue.cxx + StepKinematics_ScrewPairValue.hxx + StepKinematics_ScrewPairWithRange.cxx + StepKinematics_ScrewPairWithRange.hxx + StepKinematics_SlidingCurvePair.cxx + StepKinematics_SlidingCurvePair.hxx + StepKinematics_SlidingCurvePairValue.cxx + StepKinematics_SlidingCurvePairValue.hxx + StepKinematics_SlidingSurfacePair.cxx + StepKinematics_SlidingSurfacePair.hxx + StepKinematics_SlidingSurfacePairValue.cxx + StepKinematics_SlidingSurfacePairValue.hxx + StepKinematics_SpatialRotation.cxx + StepKinematics_SpatialRotation.hxx + StepKinematics_SphericalPair.cxx + StepKinematics_SphericalPair.hxx + StepKinematics_SphericalPairSelect.cxx + StepKinematics_SphericalPairSelect.hxx + StepKinematics_SphericalPairValue.cxx + StepKinematics_SphericalPairValue.hxx + StepKinematics_SphericalPairWithPin.cxx + StepKinematics_SphericalPairWithPin.hxx + StepKinematics_SphericalPairWithPinAndRange.cxx + StepKinematics_SphericalPairWithPinAndRange.hxx + StepKinematics_SphericalPairWithRange.cxx + StepKinematics_SphericalPairWithRange.hxx + StepKinematics_SurfacePair.cxx + StepKinematics_SurfacePair.hxx + StepKinematics_SurfacePairWithRange.cxx + StepKinematics_SurfacePairWithRange.hxx + StepKinematics_KinematicTopologyDirectedStructure.cxx + StepKinematics_KinematicTopologyDirectedStructure.hxx + StepKinematics_KinematicTopologyNetworkStructure.cxx + StepKinematics_KinematicTopologyNetworkStructure.hxx + StepKinematics_KinematicTopologyRepresentationSelect.cxx + StepKinematics_KinematicTopologyRepresentationSelect.hxx + StepKinematics_UnconstrainedPair.cxx + StepKinematics_UnconstrainedPair.hxx + StepKinematics_UnconstrainedPairValue.cxx + StepKinematics_UnconstrainedPairValue.hxx + StepKinematics_UniversalPair.cxx + StepKinematics_UniversalPair.hxx + StepKinematics_UniversalPairValue.cxx + StepKinematics_UniversalPairValue.hxx + StepKinematics_UniversalPairWithRange.cxx + StepKinematics_UniversalPairWithRange.hxx +) diff --git a/src/StepKinematics/StepKinematics_ActuatedDirection.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ActuatedDirection.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_ActuatedDirection.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ActuatedDirection.hxx diff --git a/src/StepKinematics/StepKinematics_ActuatedKinPairAndOrderKinPair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ActuatedKinPairAndOrderKinPair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_ActuatedKinPairAndOrderKinPair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ActuatedKinPairAndOrderKinPair.cxx diff --git a/src/StepKinematics/StepKinematics_ActuatedKinPairAndOrderKinPair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ActuatedKinPairAndOrderKinPair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_ActuatedKinPairAndOrderKinPair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ActuatedKinPairAndOrderKinPair.hxx diff --git a/src/StepKinematics/StepKinematics_ActuatedKinematicPair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ActuatedKinematicPair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_ActuatedKinematicPair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ActuatedKinematicPair.cxx diff --git a/src/StepKinematics/StepKinematics_ActuatedKinematicPair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ActuatedKinematicPair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_ActuatedKinematicPair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ActuatedKinematicPair.hxx diff --git a/src/StepKinematics/StepKinematics_ContextDependentKinematicLinkRepresentation.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ContextDependentKinematicLinkRepresentation.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_ContextDependentKinematicLinkRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ContextDependentKinematicLinkRepresentation.cxx diff --git a/src/StepKinematics/StepKinematics_ContextDependentKinematicLinkRepresentation.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ContextDependentKinematicLinkRepresentation.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_ContextDependentKinematicLinkRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ContextDependentKinematicLinkRepresentation.hxx diff --git a/src/StepKinematics/StepKinematics_CylindricalPair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_CylindricalPair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_CylindricalPair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_CylindricalPair.cxx diff --git a/src/StepKinematics/StepKinematics_CylindricalPair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_CylindricalPair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_CylindricalPair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_CylindricalPair.hxx diff --git a/src/StepKinematics/StepKinematics_CylindricalPairValue.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_CylindricalPairValue.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_CylindricalPairValue.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_CylindricalPairValue.cxx diff --git a/src/StepKinematics/StepKinematics_CylindricalPairValue.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_CylindricalPairValue.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_CylindricalPairValue.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_CylindricalPairValue.hxx diff --git a/src/StepKinematics/StepKinematics_CylindricalPairWithRange.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_CylindricalPairWithRange.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_CylindricalPairWithRange.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_CylindricalPairWithRange.cxx diff --git a/src/StepKinematics/StepKinematics_CylindricalPairWithRange.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_CylindricalPairWithRange.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_CylindricalPairWithRange.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_CylindricalPairWithRange.hxx diff --git a/src/StepKinematics/StepKinematics_FullyConstrainedPair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_FullyConstrainedPair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_FullyConstrainedPair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_FullyConstrainedPair.cxx diff --git a/src/StepKinematics/StepKinematics_FullyConstrainedPair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_FullyConstrainedPair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_FullyConstrainedPair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_FullyConstrainedPair.hxx diff --git a/src/StepKinematics/StepKinematics_GearPair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_GearPair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_GearPair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_GearPair.cxx diff --git a/src/StepKinematics/StepKinematics_GearPair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_GearPair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_GearPair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_GearPair.hxx diff --git a/src/StepKinematics/StepKinematics_GearPairValue.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_GearPairValue.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_GearPairValue.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_GearPairValue.cxx diff --git a/src/StepKinematics/StepKinematics_GearPairValue.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_GearPairValue.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_GearPairValue.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_GearPairValue.hxx diff --git a/src/StepKinematics/StepKinematics_GearPairWithRange.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_GearPairWithRange.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_GearPairWithRange.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_GearPairWithRange.cxx diff --git a/src/StepKinematics/StepKinematics_GearPairWithRange.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_GearPairWithRange.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_GearPairWithRange.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_GearPairWithRange.hxx diff --git a/src/StepKinematics/StepKinematics_HighOrderKinematicPair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_HighOrderKinematicPair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_HighOrderKinematicPair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_HighOrderKinematicPair.cxx diff --git a/src/StepKinematics/StepKinematics_HighOrderKinematicPair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_HighOrderKinematicPair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_HighOrderKinematicPair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_HighOrderKinematicPair.hxx diff --git a/src/StepKinematics/StepKinematics_HomokineticPair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_HomokineticPair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_HomokineticPair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_HomokineticPair.cxx diff --git a/src/StepKinematics/StepKinematics_HomokineticPair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_HomokineticPair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_HomokineticPair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_HomokineticPair.hxx diff --git a/src/StepKinematics/StepKinematics_KinematicJoint.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicJoint.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_KinematicJoint.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicJoint.cxx diff --git a/src/StepKinematics/StepKinematics_KinematicJoint.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicJoint.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_KinematicJoint.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicJoint.hxx diff --git a/src/StepKinematics/StepKinematics_KinematicLink.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicLink.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_KinematicLink.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicLink.cxx diff --git a/src/StepKinematics/StepKinematics_KinematicLink.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicLink.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_KinematicLink.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicLink.hxx diff --git a/src/StepKinematics/StepKinematics_KinematicLinkRepresentation.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicLinkRepresentation.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_KinematicLinkRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicLinkRepresentation.cxx diff --git a/src/StepKinematics/StepKinematics_KinematicLinkRepresentation.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicLinkRepresentation.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_KinematicLinkRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicLinkRepresentation.hxx diff --git a/src/StepKinematics/StepKinematics_KinematicLinkRepresentationAssociation.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicLinkRepresentationAssociation.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_KinematicLinkRepresentationAssociation.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicLinkRepresentationAssociation.cxx diff --git a/src/StepKinematics/StepKinematics_KinematicLinkRepresentationAssociation.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicLinkRepresentationAssociation.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_KinematicLinkRepresentationAssociation.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicLinkRepresentationAssociation.hxx diff --git a/src/StepKinematics/StepKinematics_KinematicPair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicPair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_KinematicPair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicPair.cxx diff --git a/src/StepKinematics/StepKinematics_KinematicPair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicPair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_KinematicPair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicPair.hxx diff --git a/src/StepKinematics/StepKinematics_KinematicPropertyDefinitionRepresentation.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicPropertyDefinitionRepresentation.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_KinematicPropertyDefinitionRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicPropertyDefinitionRepresentation.cxx diff --git a/src/StepKinematics/StepKinematics_KinematicPropertyDefinitionRepresentation.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicPropertyDefinitionRepresentation.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_KinematicPropertyDefinitionRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicPropertyDefinitionRepresentation.hxx diff --git a/src/StepKinematics/StepKinematics_KinematicPropertyMechanismRepresentation.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicPropertyMechanismRepresentation.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_KinematicPropertyMechanismRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicPropertyMechanismRepresentation.cxx diff --git a/src/StepKinematics/StepKinematics_KinematicPropertyMechanismRepresentation.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicPropertyMechanismRepresentation.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_KinematicPropertyMechanismRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicPropertyMechanismRepresentation.hxx diff --git a/src/StepKinematics/StepKinematics_KinematicTopologyDirectedStructure.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicTopologyDirectedStructure.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_KinematicTopologyDirectedStructure.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicTopologyDirectedStructure.cxx diff --git a/src/StepKinematics/StepKinematics_KinematicTopologyDirectedStructure.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicTopologyDirectedStructure.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_KinematicTopologyDirectedStructure.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicTopologyDirectedStructure.hxx diff --git a/src/StepKinematics/StepKinematics_KinematicTopologyNetworkStructure.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicTopologyNetworkStructure.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_KinematicTopologyNetworkStructure.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicTopologyNetworkStructure.cxx diff --git a/src/StepKinematics/StepKinematics_KinematicTopologyNetworkStructure.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicTopologyNetworkStructure.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_KinematicTopologyNetworkStructure.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicTopologyNetworkStructure.hxx diff --git a/src/StepKinematics/StepKinematics_KinematicTopologyRepresentationSelect.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicTopologyRepresentationSelect.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_KinematicTopologyRepresentationSelect.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicTopologyRepresentationSelect.cxx diff --git a/src/StepKinematics/StepKinematics_KinematicTopologyRepresentationSelect.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicTopologyRepresentationSelect.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_KinematicTopologyRepresentationSelect.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicTopologyRepresentationSelect.hxx diff --git a/src/StepKinematics/StepKinematics_KinematicTopologyStructure.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicTopologyStructure.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_KinematicTopologyStructure.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicTopologyStructure.cxx diff --git a/src/StepKinematics/StepKinematics_KinematicTopologyStructure.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicTopologyStructure.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_KinematicTopologyStructure.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_KinematicTopologyStructure.hxx diff --git a/src/StepKinematics/StepKinematics_LinearFlexibleAndPinionPair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LinearFlexibleAndPinionPair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_LinearFlexibleAndPinionPair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LinearFlexibleAndPinionPair.cxx diff --git a/src/StepKinematics/StepKinematics_LinearFlexibleAndPinionPair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LinearFlexibleAndPinionPair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_LinearFlexibleAndPinionPair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LinearFlexibleAndPinionPair.hxx diff --git a/src/StepKinematics/StepKinematics_LinearFlexibleAndPlanarCurvePair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LinearFlexibleAndPlanarCurvePair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_LinearFlexibleAndPlanarCurvePair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LinearFlexibleAndPlanarCurvePair.cxx diff --git a/src/StepKinematics/StepKinematics_LinearFlexibleAndPlanarCurvePair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LinearFlexibleAndPlanarCurvePair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_LinearFlexibleAndPlanarCurvePair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LinearFlexibleAndPlanarCurvePair.hxx diff --git a/src/StepKinematics/StepKinematics_LinearFlexibleLinkRepresentation.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LinearFlexibleLinkRepresentation.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_LinearFlexibleLinkRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LinearFlexibleLinkRepresentation.cxx diff --git a/src/StepKinematics/StepKinematics_LinearFlexibleLinkRepresentation.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LinearFlexibleLinkRepresentation.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_LinearFlexibleLinkRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LinearFlexibleLinkRepresentation.hxx diff --git a/src/StepKinematics/StepKinematics_LowOrderKinematicPair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LowOrderKinematicPair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_LowOrderKinematicPair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LowOrderKinematicPair.cxx diff --git a/src/StepKinematics/StepKinematics_LowOrderKinematicPair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LowOrderKinematicPair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_LowOrderKinematicPair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LowOrderKinematicPair.hxx diff --git a/src/StepKinematics/StepKinematics_LowOrderKinematicPairValue.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LowOrderKinematicPairValue.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_LowOrderKinematicPairValue.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LowOrderKinematicPairValue.cxx diff --git a/src/StepKinematics/StepKinematics_LowOrderKinematicPairValue.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LowOrderKinematicPairValue.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_LowOrderKinematicPairValue.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LowOrderKinematicPairValue.hxx diff --git a/src/StepKinematics/StepKinematics_LowOrderKinematicPairWithMotionCoupling.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LowOrderKinematicPairWithMotionCoupling.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_LowOrderKinematicPairWithMotionCoupling.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LowOrderKinematicPairWithMotionCoupling.cxx diff --git a/src/StepKinematics/StepKinematics_LowOrderKinematicPairWithMotionCoupling.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LowOrderKinematicPairWithMotionCoupling.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_LowOrderKinematicPairWithMotionCoupling.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LowOrderKinematicPairWithMotionCoupling.hxx diff --git a/src/StepKinematics/StepKinematics_LowOrderKinematicPairWithRange.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LowOrderKinematicPairWithRange.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_LowOrderKinematicPairWithRange.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LowOrderKinematicPairWithRange.cxx diff --git a/src/StepKinematics/StepKinematics_LowOrderKinematicPairWithRange.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LowOrderKinematicPairWithRange.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_LowOrderKinematicPairWithRange.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_LowOrderKinematicPairWithRange.hxx diff --git a/src/StepKinematics/StepKinematics_MechanismRepresentation.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_MechanismRepresentation.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_MechanismRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_MechanismRepresentation.cxx diff --git a/src/StepKinematics/StepKinematics_MechanismRepresentation.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_MechanismRepresentation.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_MechanismRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_MechanismRepresentation.hxx diff --git a/src/StepKinematics/StepKinematics_MechanismStateRepresentation.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_MechanismStateRepresentation.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_MechanismStateRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_MechanismStateRepresentation.cxx diff --git a/src/StepKinematics/StepKinematics_MechanismStateRepresentation.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_MechanismStateRepresentation.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_MechanismStateRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_MechanismStateRepresentation.hxx diff --git a/src/StepKinematics/StepKinematics_OrientedJoint.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_OrientedJoint.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_OrientedJoint.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_OrientedJoint.cxx diff --git a/src/StepKinematics/StepKinematics_OrientedJoint.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_OrientedJoint.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_OrientedJoint.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_OrientedJoint.hxx diff --git a/src/StepKinematics/StepKinematics_PairRepresentationRelationship.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PairRepresentationRelationship.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_PairRepresentationRelationship.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PairRepresentationRelationship.cxx diff --git a/src/StepKinematics/StepKinematics_PairRepresentationRelationship.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PairRepresentationRelationship.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_PairRepresentationRelationship.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PairRepresentationRelationship.hxx diff --git a/src/StepKinematics/StepKinematics_PairValue.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PairValue.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_PairValue.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PairValue.cxx diff --git a/src/StepKinematics/StepKinematics_PairValue.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PairValue.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_PairValue.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PairValue.hxx diff --git a/src/StepKinematics/StepKinematics_PlanarCurvePair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PlanarCurvePair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_PlanarCurvePair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PlanarCurvePair.cxx diff --git a/src/StepKinematics/StepKinematics_PlanarCurvePair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PlanarCurvePair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_PlanarCurvePair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PlanarCurvePair.hxx diff --git a/src/StepKinematics/StepKinematics_PlanarCurvePairRange.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PlanarCurvePairRange.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_PlanarCurvePairRange.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PlanarCurvePairRange.cxx diff --git a/src/StepKinematics/StepKinematics_PlanarCurvePairRange.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PlanarCurvePairRange.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_PlanarCurvePairRange.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PlanarCurvePairRange.hxx diff --git a/src/StepKinematics/StepKinematics_PlanarPair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PlanarPair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_PlanarPair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PlanarPair.cxx diff --git a/src/StepKinematics/StepKinematics_PlanarPair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PlanarPair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_PlanarPair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PlanarPair.hxx diff --git a/src/StepKinematics/StepKinematics_PlanarPairValue.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PlanarPairValue.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_PlanarPairValue.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PlanarPairValue.cxx diff --git a/src/StepKinematics/StepKinematics_PlanarPairValue.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PlanarPairValue.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_PlanarPairValue.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PlanarPairValue.hxx diff --git a/src/StepKinematics/StepKinematics_PlanarPairWithRange.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PlanarPairWithRange.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_PlanarPairWithRange.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PlanarPairWithRange.cxx diff --git a/src/StepKinematics/StepKinematics_PlanarPairWithRange.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PlanarPairWithRange.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_PlanarPairWithRange.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PlanarPairWithRange.hxx diff --git a/src/StepKinematics/StepKinematics_PointOnPlanarCurvePair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PointOnPlanarCurvePair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_PointOnPlanarCurvePair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PointOnPlanarCurvePair.cxx diff --git a/src/StepKinematics/StepKinematics_PointOnPlanarCurvePair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PointOnPlanarCurvePair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_PointOnPlanarCurvePair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PointOnPlanarCurvePair.hxx diff --git a/src/StepKinematics/StepKinematics_PointOnPlanarCurvePairValue.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PointOnPlanarCurvePairValue.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_PointOnPlanarCurvePairValue.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PointOnPlanarCurvePairValue.cxx diff --git a/src/StepKinematics/StepKinematics_PointOnPlanarCurvePairValue.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PointOnPlanarCurvePairValue.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_PointOnPlanarCurvePairValue.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PointOnPlanarCurvePairValue.hxx diff --git a/src/StepKinematics/StepKinematics_PointOnPlanarCurvePairWithRange.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PointOnPlanarCurvePairWithRange.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_PointOnPlanarCurvePairWithRange.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PointOnPlanarCurvePairWithRange.cxx diff --git a/src/StepKinematics/StepKinematics_PointOnPlanarCurvePairWithRange.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PointOnPlanarCurvePairWithRange.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_PointOnPlanarCurvePairWithRange.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PointOnPlanarCurvePairWithRange.hxx diff --git a/src/StepKinematics/StepKinematics_PointOnSurfacePair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PointOnSurfacePair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_PointOnSurfacePair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PointOnSurfacePair.cxx diff --git a/src/StepKinematics/StepKinematics_PointOnSurfacePair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PointOnSurfacePair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_PointOnSurfacePair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PointOnSurfacePair.hxx diff --git a/src/StepKinematics/StepKinematics_PointOnSurfacePairValue.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PointOnSurfacePairValue.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_PointOnSurfacePairValue.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PointOnSurfacePairValue.cxx diff --git a/src/StepKinematics/StepKinematics_PointOnSurfacePairValue.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PointOnSurfacePairValue.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_PointOnSurfacePairValue.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PointOnSurfacePairValue.hxx diff --git a/src/StepKinematics/StepKinematics_PointOnSurfacePairWithRange.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PointOnSurfacePairWithRange.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_PointOnSurfacePairWithRange.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PointOnSurfacePairWithRange.cxx diff --git a/src/StepKinematics/StepKinematics_PointOnSurfacePairWithRange.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PointOnSurfacePairWithRange.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_PointOnSurfacePairWithRange.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PointOnSurfacePairWithRange.hxx diff --git a/src/StepKinematics/StepKinematics_PrismaticPair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PrismaticPair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_PrismaticPair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PrismaticPair.cxx diff --git a/src/StepKinematics/StepKinematics_PrismaticPair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PrismaticPair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_PrismaticPair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PrismaticPair.hxx diff --git a/src/StepKinematics/StepKinematics_PrismaticPairValue.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PrismaticPairValue.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_PrismaticPairValue.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PrismaticPairValue.cxx diff --git a/src/StepKinematics/StepKinematics_PrismaticPairValue.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PrismaticPairValue.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_PrismaticPairValue.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PrismaticPairValue.hxx diff --git a/src/StepKinematics/StepKinematics_PrismaticPairWithRange.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PrismaticPairWithRange.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_PrismaticPairWithRange.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PrismaticPairWithRange.cxx diff --git a/src/StepKinematics/StepKinematics_PrismaticPairWithRange.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PrismaticPairWithRange.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_PrismaticPairWithRange.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_PrismaticPairWithRange.hxx diff --git a/src/StepKinematics/StepKinematics_ProductDefinitionKinematics.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ProductDefinitionKinematics.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_ProductDefinitionKinematics.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ProductDefinitionKinematics.cxx diff --git a/src/StepKinematics/StepKinematics_ProductDefinitionKinematics.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ProductDefinitionKinematics.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_ProductDefinitionKinematics.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ProductDefinitionKinematics.hxx diff --git a/src/StepKinematics/StepKinematics_ProductDefinitionRelationshipKinematics.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ProductDefinitionRelationshipKinematics.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_ProductDefinitionRelationshipKinematics.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ProductDefinitionRelationshipKinematics.cxx diff --git a/src/StepKinematics/StepKinematics_ProductDefinitionRelationshipKinematics.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ProductDefinitionRelationshipKinematics.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_ProductDefinitionRelationshipKinematics.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ProductDefinitionRelationshipKinematics.hxx diff --git a/src/StepKinematics/StepKinematics_RackAndPinionPair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RackAndPinionPair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_RackAndPinionPair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RackAndPinionPair.cxx diff --git a/src/StepKinematics/StepKinematics_RackAndPinionPair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RackAndPinionPair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_RackAndPinionPair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RackAndPinionPair.hxx diff --git a/src/StepKinematics/StepKinematics_RackAndPinionPairValue.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RackAndPinionPairValue.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_RackAndPinionPairValue.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RackAndPinionPairValue.cxx diff --git a/src/StepKinematics/StepKinematics_RackAndPinionPairValue.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RackAndPinionPairValue.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_RackAndPinionPairValue.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RackAndPinionPairValue.hxx diff --git a/src/StepKinematics/StepKinematics_RackAndPinionPairWithRange.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RackAndPinionPairWithRange.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_RackAndPinionPairWithRange.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RackAndPinionPairWithRange.cxx diff --git a/src/StepKinematics/StepKinematics_RackAndPinionPairWithRange.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RackAndPinionPairWithRange.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_RackAndPinionPairWithRange.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RackAndPinionPairWithRange.hxx diff --git a/src/StepKinematics/StepKinematics_RevolutePair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RevolutePair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_RevolutePair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RevolutePair.cxx diff --git a/src/StepKinematics/StepKinematics_RevolutePair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RevolutePair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_RevolutePair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RevolutePair.hxx diff --git a/src/StepKinematics/StepKinematics_RevolutePairValue.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RevolutePairValue.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_RevolutePairValue.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RevolutePairValue.cxx diff --git a/src/StepKinematics/StepKinematics_RevolutePairValue.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RevolutePairValue.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_RevolutePairValue.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RevolutePairValue.hxx diff --git a/src/StepKinematics/StepKinematics_RevolutePairWithRange.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RevolutePairWithRange.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_RevolutePairWithRange.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RevolutePairWithRange.cxx diff --git a/src/StepKinematics/StepKinematics_RevolutePairWithRange.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RevolutePairWithRange.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_RevolutePairWithRange.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RevolutePairWithRange.hxx diff --git a/src/StepKinematics/StepKinematics_RigidLinkRepresentation.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RigidLinkRepresentation.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_RigidLinkRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RigidLinkRepresentation.cxx diff --git a/src/StepKinematics/StepKinematics_RigidLinkRepresentation.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RigidLinkRepresentation.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_RigidLinkRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RigidLinkRepresentation.hxx diff --git a/src/StepKinematics/StepKinematics_RigidPlacement.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RigidPlacement.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_RigidPlacement.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RigidPlacement.cxx diff --git a/src/StepKinematics/StepKinematics_RigidPlacement.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RigidPlacement.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_RigidPlacement.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RigidPlacement.hxx diff --git a/src/StepKinematics/StepKinematics_RollingCurvePair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RollingCurvePair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_RollingCurvePair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RollingCurvePair.cxx diff --git a/src/StepKinematics/StepKinematics_RollingCurvePair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RollingCurvePair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_RollingCurvePair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RollingCurvePair.hxx diff --git a/src/StepKinematics/StepKinematics_RollingCurvePairValue.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RollingCurvePairValue.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_RollingCurvePairValue.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RollingCurvePairValue.cxx diff --git a/src/StepKinematics/StepKinematics_RollingCurvePairValue.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RollingCurvePairValue.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_RollingCurvePairValue.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RollingCurvePairValue.hxx diff --git a/src/StepKinematics/StepKinematics_RollingSurfacePair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RollingSurfacePair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_RollingSurfacePair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RollingSurfacePair.cxx diff --git a/src/StepKinematics/StepKinematics_RollingSurfacePair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RollingSurfacePair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_RollingSurfacePair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RollingSurfacePair.hxx diff --git a/src/StepKinematics/StepKinematics_RollingSurfacePairValue.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RollingSurfacePairValue.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_RollingSurfacePairValue.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RollingSurfacePairValue.cxx diff --git a/src/StepKinematics/StepKinematics_RollingSurfacePairValue.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RollingSurfacePairValue.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_RollingSurfacePairValue.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RollingSurfacePairValue.hxx diff --git a/src/StepKinematics/StepKinematics_RotationAboutDirection.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RotationAboutDirection.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_RotationAboutDirection.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RotationAboutDirection.cxx diff --git a/src/StepKinematics/StepKinematics_RotationAboutDirection.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RotationAboutDirection.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_RotationAboutDirection.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_RotationAboutDirection.hxx diff --git a/src/StepKinematics/StepKinematics_ScrewPair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ScrewPair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_ScrewPair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ScrewPair.cxx diff --git a/src/StepKinematics/StepKinematics_ScrewPair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ScrewPair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_ScrewPair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ScrewPair.hxx diff --git a/src/StepKinematics/StepKinematics_ScrewPairValue.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ScrewPairValue.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_ScrewPairValue.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ScrewPairValue.cxx diff --git a/src/StepKinematics/StepKinematics_ScrewPairValue.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ScrewPairValue.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_ScrewPairValue.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ScrewPairValue.hxx diff --git a/src/StepKinematics/StepKinematics_ScrewPairWithRange.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ScrewPairWithRange.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_ScrewPairWithRange.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ScrewPairWithRange.cxx diff --git a/src/StepKinematics/StepKinematics_ScrewPairWithRange.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ScrewPairWithRange.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_ScrewPairWithRange.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_ScrewPairWithRange.hxx diff --git a/src/StepKinematics/StepKinematics_SlidingCurvePair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SlidingCurvePair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_SlidingCurvePair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SlidingCurvePair.cxx diff --git a/src/StepKinematics/StepKinematics_SlidingCurvePair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SlidingCurvePair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_SlidingCurvePair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SlidingCurvePair.hxx diff --git a/src/StepKinematics/StepKinematics_SlidingCurvePairValue.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SlidingCurvePairValue.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_SlidingCurvePairValue.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SlidingCurvePairValue.cxx diff --git a/src/StepKinematics/StepKinematics_SlidingCurvePairValue.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SlidingCurvePairValue.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_SlidingCurvePairValue.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SlidingCurvePairValue.hxx diff --git a/src/StepKinematics/StepKinematics_SlidingSurfacePair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SlidingSurfacePair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_SlidingSurfacePair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SlidingSurfacePair.cxx diff --git a/src/StepKinematics/StepKinematics_SlidingSurfacePair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SlidingSurfacePair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_SlidingSurfacePair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SlidingSurfacePair.hxx diff --git a/src/StepKinematics/StepKinematics_SlidingSurfacePairValue.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SlidingSurfacePairValue.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_SlidingSurfacePairValue.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SlidingSurfacePairValue.cxx diff --git a/src/StepKinematics/StepKinematics_SlidingSurfacePairValue.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SlidingSurfacePairValue.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_SlidingSurfacePairValue.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SlidingSurfacePairValue.hxx diff --git a/src/StepKinematics/StepKinematics_SpatialRotation.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SpatialRotation.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_SpatialRotation.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SpatialRotation.cxx diff --git a/src/StepKinematics/StepKinematics_SpatialRotation.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SpatialRotation.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_SpatialRotation.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SpatialRotation.hxx diff --git a/src/StepKinematics/StepKinematics_SphericalPair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SphericalPair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_SphericalPair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SphericalPair.cxx diff --git a/src/StepKinematics/StepKinematics_SphericalPair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SphericalPair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_SphericalPair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SphericalPair.hxx diff --git a/src/StepKinematics/StepKinematics_SphericalPairSelect.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SphericalPairSelect.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_SphericalPairSelect.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SphericalPairSelect.cxx diff --git a/src/StepKinematics/StepKinematics_SphericalPairSelect.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SphericalPairSelect.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_SphericalPairSelect.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SphericalPairSelect.hxx diff --git a/src/StepKinematics/StepKinematics_SphericalPairValue.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SphericalPairValue.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_SphericalPairValue.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SphericalPairValue.cxx diff --git a/src/StepKinematics/StepKinematics_SphericalPairValue.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SphericalPairValue.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_SphericalPairValue.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SphericalPairValue.hxx diff --git a/src/StepKinematics/StepKinematics_SphericalPairWithPin.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SphericalPairWithPin.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_SphericalPairWithPin.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SphericalPairWithPin.cxx diff --git a/src/StepKinematics/StepKinematics_SphericalPairWithPin.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SphericalPairWithPin.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_SphericalPairWithPin.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SphericalPairWithPin.hxx diff --git a/src/StepKinematics/StepKinematics_SphericalPairWithPinAndRange.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SphericalPairWithPinAndRange.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_SphericalPairWithPinAndRange.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SphericalPairWithPinAndRange.cxx diff --git a/src/StepKinematics/StepKinematics_SphericalPairWithPinAndRange.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SphericalPairWithPinAndRange.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_SphericalPairWithPinAndRange.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SphericalPairWithPinAndRange.hxx diff --git a/src/StepKinematics/StepKinematics_SphericalPairWithRange.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SphericalPairWithRange.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_SphericalPairWithRange.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SphericalPairWithRange.cxx diff --git a/src/StepKinematics/StepKinematics_SphericalPairWithRange.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SphericalPairWithRange.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_SphericalPairWithRange.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SphericalPairWithRange.hxx diff --git a/src/StepKinematics/StepKinematics_SurfacePair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SurfacePair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_SurfacePair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SurfacePair.cxx diff --git a/src/StepKinematics/StepKinematics_SurfacePair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SurfacePair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_SurfacePair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SurfacePair.hxx diff --git a/src/StepKinematics/StepKinematics_SurfacePairWithRange.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SurfacePairWithRange.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_SurfacePairWithRange.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SurfacePairWithRange.cxx diff --git a/src/StepKinematics/StepKinematics_SurfacePairWithRange.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SurfacePairWithRange.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_SurfacePairWithRange.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_SurfacePairWithRange.hxx diff --git a/src/StepKinematics/StepKinematics_UnconstrainedPair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_UnconstrainedPair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_UnconstrainedPair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_UnconstrainedPair.cxx diff --git a/src/StepKinematics/StepKinematics_UnconstrainedPair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_UnconstrainedPair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_UnconstrainedPair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_UnconstrainedPair.hxx diff --git a/src/StepKinematics/StepKinematics_UnconstrainedPairValue.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_UnconstrainedPairValue.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_UnconstrainedPairValue.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_UnconstrainedPairValue.cxx diff --git a/src/StepKinematics/StepKinematics_UnconstrainedPairValue.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_UnconstrainedPairValue.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_UnconstrainedPairValue.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_UnconstrainedPairValue.hxx diff --git a/src/StepKinematics/StepKinematics_UniversalPair.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_UniversalPair.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_UniversalPair.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_UniversalPair.cxx diff --git a/src/StepKinematics/StepKinematics_UniversalPair.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_UniversalPair.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_UniversalPair.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_UniversalPair.hxx diff --git a/src/StepKinematics/StepKinematics_UniversalPairValue.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_UniversalPairValue.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_UniversalPairValue.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_UniversalPairValue.cxx diff --git a/src/StepKinematics/StepKinematics_UniversalPairValue.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_UniversalPairValue.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_UniversalPairValue.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_UniversalPairValue.hxx diff --git a/src/StepKinematics/StepKinematics_UniversalPairWithRange.cxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_UniversalPairWithRange.cxx similarity index 100% rename from src/StepKinematics/StepKinematics_UniversalPairWithRange.cxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_UniversalPairWithRange.cxx diff --git a/src/StepKinematics/StepKinematics_UniversalPairWithRange.hxx b/src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_UniversalPairWithRange.hxx similarity index 100% rename from src/StepKinematics/StepKinematics_UniversalPairWithRange.hxx rename to src/DataExchange/TKDESTEP/StepKinematics/StepKinematics_UniversalPairWithRange.hxx diff --git a/src/DataExchange/TKDESTEP/StepRepr/FILES.cmake b/src/DataExchange/TKDESTEP/StepRepr/FILES.cmake new file mode 100644 index 0000000000..ee50ec8b18 --- /dev/null +++ b/src/DataExchange/TKDESTEP/StepRepr/FILES.cmake @@ -0,0 +1,187 @@ +# Source files for StepRepr package +set(OCCT_StepRepr_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StepRepr_FILES + StepRepr_AllAroundShapeAspect.cxx + StepRepr_AllAroundShapeAspect.hxx + StepRepr_Apex.cxx + StepRepr_Apex.hxx + StepRepr_Array1OfMaterialPropertyRepresentation.hxx + StepRepr_Array1OfPropertyDefinitionRepresentation.hxx + StepRepr_Array1OfRepresentationItem.hxx + StepRepr_Array1OfShapeAspect.hxx + StepRepr_AssemblyComponentUsage.cxx + StepRepr_AssemblyComponentUsage.hxx + StepRepr_AssemblyComponentUsageSubstitute.cxx + StepRepr_AssemblyComponentUsageSubstitute.hxx + StepRepr_BetweenShapeAspect.cxx + StepRepr_BetweenShapeAspect.hxx + StepRepr_BooleanRepresentationItem.cxx + StepRepr_BooleanRepresentationItem.hxx + StepRepr_CentreOfSymmetry.cxx + StepRepr_CentreOfSymmetry.hxx + StepRepr_CharacterizedDefinition.cxx + StepRepr_CharacterizedDefinition.hxx + StepRepr_CharacterizedRepresentation.cxx + StepRepr_CharacterizedRepresentation.hxx + StepRepr_CompGroupShAspAndCompShAspAndDatumFeatAndShAsp.cxx + StepRepr_CompGroupShAspAndCompShAspAndDatumFeatAndShAsp.hxx + StepRepr_CompositeGroupShapeAspect.cxx + StepRepr_CompositeGroupShapeAspect.hxx + StepRepr_CompositeShapeAspect.cxx + StepRepr_CompositeShapeAspect.hxx + StepRepr_CompoundRepresentationItem.cxx + StepRepr_CompoundRepresentationItem.hxx + StepRepr_CompShAspAndDatumFeatAndShAsp.cxx + StepRepr_CompShAspAndDatumFeatAndShAsp.hxx + StepRepr_ConfigurationDesign.cxx + StepRepr_ConfigurationDesign.hxx + StepRepr_ConfigurationDesignItem.cxx + StepRepr_ConfigurationDesignItem.hxx + StepRepr_ConfigurationEffectivity.cxx + StepRepr_ConfigurationEffectivity.hxx + StepRepr_ConfigurationItem.cxx + StepRepr_ConfigurationItem.hxx + StepRepr_ConstructiveGeometryRepresentation.cxx + StepRepr_ConstructiveGeometryRepresentation.hxx + StepRepr_ConstructiveGeometryRepresentationRelationship.cxx + StepRepr_ConstructiveGeometryRepresentationRelationship.hxx + StepRepr_ContinuosShapeAspect.cxx + StepRepr_ContinuosShapeAspect.hxx + StepRepr_DataEnvironment.cxx + StepRepr_DataEnvironment.hxx + StepRepr_DefinitionalRepresentation.cxx + StepRepr_DefinitionalRepresentation.hxx + StepRepr_DerivedShapeAspect.cxx + StepRepr_DerivedShapeAspect.hxx + StepRepr_DescriptiveRepresentationItem.cxx + StepRepr_DescriptiveRepresentationItem.hxx + StepRepr_Extension.cxx + StepRepr_Extension.hxx + StepRepr_ExternallyDefinedRepresentation.cxx + StepRepr_ExternallyDefinedRepresentation.hxx + StepRepr_FeatureForDatumTargetRelationship.cxx + StepRepr_FeatureForDatumTargetRelationship.hxx + StepRepr_FunctionallyDefinedTransformation.cxx + StepRepr_FunctionallyDefinedTransformation.hxx + StepRepr_GeometricAlignment.cxx + StepRepr_GeometricAlignment.hxx + StepRepr_GlobalUncertaintyAssignedContext.cxx + StepRepr_GlobalUncertaintyAssignedContext.hxx + StepRepr_GlobalUnitAssignedContext.cxx + StepRepr_GlobalUnitAssignedContext.hxx + StepRepr_HArray1OfMaterialPropertyRepresentation.hxx + StepRepr_HArray1OfPropertyDefinitionRepresentation.hxx + StepRepr_HArray1OfRepresentationItem.hxx + StepRepr_HArray1OfShapeAspect.hxx + StepRepr_HSequenceOfMaterialPropertyRepresentation.hxx + StepRepr_HSequenceOfRepresentationItem.hxx + StepRepr_IntegerRepresentationItem.cxx + StepRepr_IntegerRepresentationItem.hxx + StepRepr_ItemDefinedTransformation.cxx + StepRepr_ItemDefinedTransformation.hxx + StepRepr_MakeFromUsageOption.cxx + StepRepr_MakeFromUsageOption.hxx + StepRepr_MappedItem.cxx + StepRepr_MappedItem.hxx + StepRepr_MaterialDesignation.cxx + StepRepr_MaterialDesignation.hxx + StepRepr_MaterialProperty.cxx + StepRepr_MaterialProperty.hxx + StepRepr_MaterialPropertyRepresentation.cxx + StepRepr_MaterialPropertyRepresentation.hxx + StepRepr_MeasureRepresentationItem.cxx + StepRepr_MeasureRepresentationItem.hxx + StepRepr_MechanicalDesignAndDraughtingRelationship.cxx + StepRepr_MechanicalDesignAndDraughtingRelationship.hxx + StepRepr_NextAssemblyUsageOccurrence.cxx + StepRepr_NextAssemblyUsageOccurrence.hxx + StepRepr_ParallelOffset.cxx + StepRepr_ParallelOffset.hxx + StepRepr_ParametricRepresentationContext.cxx + StepRepr_ParametricRepresentationContext.hxx + StepRepr_PerpendicularTo.cxx + StepRepr_PerpendicularTo.hxx + StepRepr_ProductConcept.cxx + StepRepr_ProductConcept.hxx + StepRepr_ProductDefinitionShape.cxx + StepRepr_ProductDefinitionShape.hxx + StepRepr_ProductDefinitionUsage.cxx + StepRepr_ProductDefinitionUsage.hxx + StepRepr_PromissoryUsageOccurrence.cxx + StepRepr_PromissoryUsageOccurrence.hxx + StepRepr_PropertyDefinition.cxx + StepRepr_PropertyDefinition.hxx + StepRepr_PropertyDefinitionRelationship.cxx + StepRepr_PropertyDefinitionRelationship.hxx + StepRepr_PropertyDefinitionRepresentation.cxx + StepRepr_PropertyDefinitionRepresentation.hxx + StepRepr_QuantifiedAssemblyComponentUsage.cxx + StepRepr_QuantifiedAssemblyComponentUsage.hxx + StepRepr_RealRepresentationItem.cxx + StepRepr_RealRepresentationItem.hxx + StepRepr_Representation.cxx + StepRepr_Representation.hxx + StepRepr_RepresentationContext.cxx + StepRepr_RepresentationContext.hxx + StepRepr_RepresentationContextReference.cxx + StepRepr_RepresentationContextReference.hxx + StepRepr_RepresentationItem.cxx + StepRepr_RepresentationItem.hxx + StepRepr_RepresentationMap.cxx + StepRepr_RepresentationMap.hxx + StepRepr_RepresentationOrRepresentationReference.cxx + StepRepr_RepresentationOrRepresentationReference.hxx + StepRepr_RepresentationReference.cxx + StepRepr_RepresentationReference.hxx + StepRepr_RepresentationRelationship.cxx + StepRepr_RepresentationRelationship.hxx + StepRepr_RepresentationRelationshipWithTransformation.cxx + StepRepr_RepresentationRelationshipWithTransformation.hxx + StepRepr_RepresentedDefinition.cxx + StepRepr_RepresentedDefinition.hxx + StepRepr_ReprItemAndLengthMeasureWithUnit.cxx + StepRepr_ReprItemAndLengthMeasureWithUnit.hxx + StepRepr_ReprItemAndLengthMeasureWithUnitAndQRI.cxx + StepRepr_ReprItemAndLengthMeasureWithUnitAndQRI.hxx + StepRepr_ReprItemAndMeasureWithUnit.cxx + StepRepr_ReprItemAndMeasureWithUnit.hxx + StepRepr_ReprItemAndMeasureWithUnitAndQRI.cxx + StepRepr_ReprItemAndMeasureWithUnitAndQRI.hxx + StepRepr_ReprItemAndPlaneAngleMeasureWithUnit.cxx + StepRepr_ReprItemAndPlaneAngleMeasureWithUnit.hxx + StepRepr_ReprItemAndPlaneAngleMeasureWithUnitAndQRI.cxx + StepRepr_ReprItemAndPlaneAngleMeasureWithUnitAndQRI.hxx + StepRepr_SequenceOfMaterialPropertyRepresentation.hxx + StepRepr_SequenceOfRepresentationItem.hxx + StepRepr_ShapeAspect.cxx + StepRepr_ShapeAspect.hxx + StepRepr_ShapeAspectDerivingRelationship.cxx + StepRepr_ShapeAspectDerivingRelationship.hxx + StepRepr_ShapeAspectRelationship.cxx + StepRepr_ShapeAspectRelationship.hxx + StepRepr_ShapeAspectTransition.cxx + StepRepr_ShapeAspectTransition.hxx + StepRepr_ShapeDefinition.cxx + StepRepr_ShapeDefinition.hxx + StepRepr_ShapeRepresentationRelationship.cxx + StepRepr_ShapeRepresentationRelationship.hxx + StepRepr_ShapeRepresentationRelationshipWithTransformation.cxx + StepRepr_ShapeRepresentationRelationshipWithTransformation.hxx + StepRepr_SpecifiedHigherUsageOccurrence.cxx + StepRepr_SpecifiedHigherUsageOccurrence.hxx + StepRepr_StructuralResponseProperty.cxx + StepRepr_StructuralResponseProperty.hxx + StepRepr_StructuralResponsePropertyDefinitionRepresentation.cxx + StepRepr_StructuralResponsePropertyDefinitionRepresentation.hxx + StepRepr_SuppliedPartRelationship.cxx + StepRepr_SuppliedPartRelationship.hxx + StepRepr_Tangent.cxx + StepRepr_Tangent.hxx + StepRepr_Transformation.cxx + StepRepr_Transformation.hxx + StepRepr_ValueRange.cxx + StepRepr_ValueRange.hxx + StepRepr_ValueRepresentationItem.cxx + StepRepr_ValueRepresentationItem.hxx +) diff --git a/src/StepRepr/StepRepr_AllAroundShapeAspect.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_AllAroundShapeAspect.cxx similarity index 100% rename from src/StepRepr/StepRepr_AllAroundShapeAspect.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_AllAroundShapeAspect.cxx diff --git a/src/StepRepr/StepRepr_AllAroundShapeAspect.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_AllAroundShapeAspect.hxx similarity index 100% rename from src/StepRepr/StepRepr_AllAroundShapeAspect.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_AllAroundShapeAspect.hxx diff --git a/src/StepRepr/StepRepr_Apex.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_Apex.cxx similarity index 100% rename from src/StepRepr/StepRepr_Apex.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_Apex.cxx diff --git a/src/StepRepr/StepRepr_Apex.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_Apex.hxx similarity index 100% rename from src/StepRepr/StepRepr_Apex.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_Apex.hxx diff --git a/src/StepRepr/StepRepr_Array1OfMaterialPropertyRepresentation.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_Array1OfMaterialPropertyRepresentation.hxx similarity index 100% rename from src/StepRepr/StepRepr_Array1OfMaterialPropertyRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_Array1OfMaterialPropertyRepresentation.hxx diff --git a/src/StepRepr/StepRepr_Array1OfPropertyDefinitionRepresentation.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_Array1OfPropertyDefinitionRepresentation.hxx similarity index 100% rename from src/StepRepr/StepRepr_Array1OfPropertyDefinitionRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_Array1OfPropertyDefinitionRepresentation.hxx diff --git a/src/StepRepr/StepRepr_Array1OfRepresentationItem.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_Array1OfRepresentationItem.hxx similarity index 100% rename from src/StepRepr/StepRepr_Array1OfRepresentationItem.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_Array1OfRepresentationItem.hxx diff --git a/src/StepRepr/StepRepr_Array1OfShapeAspect.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_Array1OfShapeAspect.hxx similarity index 100% rename from src/StepRepr/StepRepr_Array1OfShapeAspect.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_Array1OfShapeAspect.hxx diff --git a/src/StepRepr/StepRepr_AssemblyComponentUsage.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_AssemblyComponentUsage.cxx similarity index 100% rename from src/StepRepr/StepRepr_AssemblyComponentUsage.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_AssemblyComponentUsage.cxx diff --git a/src/StepRepr/StepRepr_AssemblyComponentUsage.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_AssemblyComponentUsage.hxx similarity index 100% rename from src/StepRepr/StepRepr_AssemblyComponentUsage.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_AssemblyComponentUsage.hxx diff --git a/src/StepRepr/StepRepr_AssemblyComponentUsageSubstitute.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_AssemblyComponentUsageSubstitute.cxx similarity index 100% rename from src/StepRepr/StepRepr_AssemblyComponentUsageSubstitute.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_AssemblyComponentUsageSubstitute.cxx diff --git a/src/StepRepr/StepRepr_AssemblyComponentUsageSubstitute.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_AssemblyComponentUsageSubstitute.hxx similarity index 100% rename from src/StepRepr/StepRepr_AssemblyComponentUsageSubstitute.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_AssemblyComponentUsageSubstitute.hxx diff --git a/src/StepRepr/StepRepr_BetweenShapeAspect.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_BetweenShapeAspect.cxx similarity index 100% rename from src/StepRepr/StepRepr_BetweenShapeAspect.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_BetweenShapeAspect.cxx diff --git a/src/StepRepr/StepRepr_BetweenShapeAspect.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_BetweenShapeAspect.hxx similarity index 100% rename from src/StepRepr/StepRepr_BetweenShapeAspect.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_BetweenShapeAspect.hxx diff --git a/src/StepRepr/StepRepr_BooleanRepresentationItem.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_BooleanRepresentationItem.cxx similarity index 100% rename from src/StepRepr/StepRepr_BooleanRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_BooleanRepresentationItem.cxx diff --git a/src/StepRepr/StepRepr_BooleanRepresentationItem.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_BooleanRepresentationItem.hxx similarity index 100% rename from src/StepRepr/StepRepr_BooleanRepresentationItem.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_BooleanRepresentationItem.hxx diff --git a/src/StepRepr/StepRepr_CentreOfSymmetry.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_CentreOfSymmetry.cxx similarity index 100% rename from src/StepRepr/StepRepr_CentreOfSymmetry.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_CentreOfSymmetry.cxx diff --git a/src/StepRepr/StepRepr_CentreOfSymmetry.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_CentreOfSymmetry.hxx similarity index 100% rename from src/StepRepr/StepRepr_CentreOfSymmetry.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_CentreOfSymmetry.hxx diff --git a/src/StepRepr/StepRepr_CharacterizedDefinition.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_CharacterizedDefinition.cxx similarity index 100% rename from src/StepRepr/StepRepr_CharacterizedDefinition.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_CharacterizedDefinition.cxx diff --git a/src/StepRepr/StepRepr_CharacterizedDefinition.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_CharacterizedDefinition.hxx similarity index 100% rename from src/StepRepr/StepRepr_CharacterizedDefinition.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_CharacterizedDefinition.hxx diff --git a/src/StepRepr/StepRepr_CharacterizedRepresentation.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_CharacterizedRepresentation.cxx similarity index 100% rename from src/StepRepr/StepRepr_CharacterizedRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_CharacterizedRepresentation.cxx diff --git a/src/StepRepr/StepRepr_CharacterizedRepresentation.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_CharacterizedRepresentation.hxx similarity index 100% rename from src/StepRepr/StepRepr_CharacterizedRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_CharacterizedRepresentation.hxx diff --git a/src/StepRepr/StepRepr_CompGroupShAspAndCompShAspAndDatumFeatAndShAsp.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_CompGroupShAspAndCompShAspAndDatumFeatAndShAsp.cxx similarity index 100% rename from src/StepRepr/StepRepr_CompGroupShAspAndCompShAspAndDatumFeatAndShAsp.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_CompGroupShAspAndCompShAspAndDatumFeatAndShAsp.cxx diff --git a/src/StepRepr/StepRepr_CompGroupShAspAndCompShAspAndDatumFeatAndShAsp.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_CompGroupShAspAndCompShAspAndDatumFeatAndShAsp.hxx similarity index 100% rename from src/StepRepr/StepRepr_CompGroupShAspAndCompShAspAndDatumFeatAndShAsp.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_CompGroupShAspAndCompShAspAndDatumFeatAndShAsp.hxx diff --git a/src/StepRepr/StepRepr_CompShAspAndDatumFeatAndShAsp.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_CompShAspAndDatumFeatAndShAsp.cxx similarity index 100% rename from src/StepRepr/StepRepr_CompShAspAndDatumFeatAndShAsp.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_CompShAspAndDatumFeatAndShAsp.cxx diff --git a/src/StepRepr/StepRepr_CompShAspAndDatumFeatAndShAsp.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_CompShAspAndDatumFeatAndShAsp.hxx similarity index 100% rename from src/StepRepr/StepRepr_CompShAspAndDatumFeatAndShAsp.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_CompShAspAndDatumFeatAndShAsp.hxx diff --git a/src/StepRepr/StepRepr_CompositeGroupShapeAspect.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_CompositeGroupShapeAspect.cxx similarity index 100% rename from src/StepRepr/StepRepr_CompositeGroupShapeAspect.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_CompositeGroupShapeAspect.cxx diff --git a/src/StepRepr/StepRepr_CompositeGroupShapeAspect.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_CompositeGroupShapeAspect.hxx similarity index 100% rename from src/StepRepr/StepRepr_CompositeGroupShapeAspect.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_CompositeGroupShapeAspect.hxx diff --git a/src/StepRepr/StepRepr_CompositeShapeAspect.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_CompositeShapeAspect.cxx similarity index 100% rename from src/StepRepr/StepRepr_CompositeShapeAspect.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_CompositeShapeAspect.cxx diff --git a/src/StepRepr/StepRepr_CompositeShapeAspect.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_CompositeShapeAspect.hxx similarity index 100% rename from src/StepRepr/StepRepr_CompositeShapeAspect.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_CompositeShapeAspect.hxx diff --git a/src/StepRepr/StepRepr_CompoundRepresentationItem.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_CompoundRepresentationItem.cxx similarity index 100% rename from src/StepRepr/StepRepr_CompoundRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_CompoundRepresentationItem.cxx diff --git a/src/StepRepr/StepRepr_CompoundRepresentationItem.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_CompoundRepresentationItem.hxx similarity index 100% rename from src/StepRepr/StepRepr_CompoundRepresentationItem.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_CompoundRepresentationItem.hxx diff --git a/src/StepRepr/StepRepr_ConfigurationDesign.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ConfigurationDesign.cxx similarity index 100% rename from src/StepRepr/StepRepr_ConfigurationDesign.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ConfigurationDesign.cxx diff --git a/src/StepRepr/StepRepr_ConfigurationDesign.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ConfigurationDesign.hxx similarity index 100% rename from src/StepRepr/StepRepr_ConfigurationDesign.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ConfigurationDesign.hxx diff --git a/src/StepRepr/StepRepr_ConfigurationDesignItem.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ConfigurationDesignItem.cxx similarity index 100% rename from src/StepRepr/StepRepr_ConfigurationDesignItem.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ConfigurationDesignItem.cxx diff --git a/src/StepRepr/StepRepr_ConfigurationDesignItem.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ConfigurationDesignItem.hxx similarity index 100% rename from src/StepRepr/StepRepr_ConfigurationDesignItem.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ConfigurationDesignItem.hxx diff --git a/src/StepRepr/StepRepr_ConfigurationEffectivity.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ConfigurationEffectivity.cxx similarity index 100% rename from src/StepRepr/StepRepr_ConfigurationEffectivity.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ConfigurationEffectivity.cxx diff --git a/src/StepRepr/StepRepr_ConfigurationEffectivity.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ConfigurationEffectivity.hxx similarity index 100% rename from src/StepRepr/StepRepr_ConfigurationEffectivity.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ConfigurationEffectivity.hxx diff --git a/src/StepRepr/StepRepr_ConfigurationItem.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ConfigurationItem.cxx similarity index 100% rename from src/StepRepr/StepRepr_ConfigurationItem.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ConfigurationItem.cxx diff --git a/src/StepRepr/StepRepr_ConfigurationItem.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ConfigurationItem.hxx similarity index 100% rename from src/StepRepr/StepRepr_ConfigurationItem.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ConfigurationItem.hxx diff --git a/src/StepRepr/StepRepr_ConstructiveGeometryRepresentation.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ConstructiveGeometryRepresentation.cxx similarity index 100% rename from src/StepRepr/StepRepr_ConstructiveGeometryRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ConstructiveGeometryRepresentation.cxx diff --git a/src/StepRepr/StepRepr_ConstructiveGeometryRepresentation.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ConstructiveGeometryRepresentation.hxx similarity index 100% rename from src/StepRepr/StepRepr_ConstructiveGeometryRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ConstructiveGeometryRepresentation.hxx diff --git a/src/StepRepr/StepRepr_ConstructiveGeometryRepresentationRelationship.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ConstructiveGeometryRepresentationRelationship.cxx similarity index 100% rename from src/StepRepr/StepRepr_ConstructiveGeometryRepresentationRelationship.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ConstructiveGeometryRepresentationRelationship.cxx diff --git a/src/StepRepr/StepRepr_ConstructiveGeometryRepresentationRelationship.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ConstructiveGeometryRepresentationRelationship.hxx similarity index 100% rename from src/StepRepr/StepRepr_ConstructiveGeometryRepresentationRelationship.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ConstructiveGeometryRepresentationRelationship.hxx diff --git a/src/StepRepr/StepRepr_ContinuosShapeAspect.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ContinuosShapeAspect.cxx similarity index 100% rename from src/StepRepr/StepRepr_ContinuosShapeAspect.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ContinuosShapeAspect.cxx diff --git a/src/StepRepr/StepRepr_ContinuosShapeAspect.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ContinuosShapeAspect.hxx similarity index 100% rename from src/StepRepr/StepRepr_ContinuosShapeAspect.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ContinuosShapeAspect.hxx diff --git a/src/StepRepr/StepRepr_DataEnvironment.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_DataEnvironment.cxx similarity index 100% rename from src/StepRepr/StepRepr_DataEnvironment.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_DataEnvironment.cxx diff --git a/src/StepRepr/StepRepr_DataEnvironment.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_DataEnvironment.hxx similarity index 100% rename from src/StepRepr/StepRepr_DataEnvironment.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_DataEnvironment.hxx diff --git a/src/StepRepr/StepRepr_DefinitionalRepresentation.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_DefinitionalRepresentation.cxx similarity index 100% rename from src/StepRepr/StepRepr_DefinitionalRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_DefinitionalRepresentation.cxx diff --git a/src/StepRepr/StepRepr_DefinitionalRepresentation.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_DefinitionalRepresentation.hxx similarity index 100% rename from src/StepRepr/StepRepr_DefinitionalRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_DefinitionalRepresentation.hxx diff --git a/src/StepRepr/StepRepr_DerivedShapeAspect.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_DerivedShapeAspect.cxx similarity index 100% rename from src/StepRepr/StepRepr_DerivedShapeAspect.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_DerivedShapeAspect.cxx diff --git a/src/StepRepr/StepRepr_DerivedShapeAspect.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_DerivedShapeAspect.hxx similarity index 100% rename from src/StepRepr/StepRepr_DerivedShapeAspect.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_DerivedShapeAspect.hxx diff --git a/src/StepRepr/StepRepr_DescriptiveRepresentationItem.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_DescriptiveRepresentationItem.cxx similarity index 100% rename from src/StepRepr/StepRepr_DescriptiveRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_DescriptiveRepresentationItem.cxx diff --git a/src/StepRepr/StepRepr_DescriptiveRepresentationItem.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_DescriptiveRepresentationItem.hxx similarity index 100% rename from src/StepRepr/StepRepr_DescriptiveRepresentationItem.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_DescriptiveRepresentationItem.hxx diff --git a/src/StepRepr/StepRepr_Extension.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_Extension.cxx similarity index 100% rename from src/StepRepr/StepRepr_Extension.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_Extension.cxx diff --git a/src/StepRepr/StepRepr_Extension.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_Extension.hxx similarity index 100% rename from src/StepRepr/StepRepr_Extension.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_Extension.hxx diff --git a/src/StepRepr/StepRepr_ExternallyDefinedRepresentation.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ExternallyDefinedRepresentation.cxx similarity index 100% rename from src/StepRepr/StepRepr_ExternallyDefinedRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ExternallyDefinedRepresentation.cxx diff --git a/src/StepRepr/StepRepr_ExternallyDefinedRepresentation.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ExternallyDefinedRepresentation.hxx similarity index 100% rename from src/StepRepr/StepRepr_ExternallyDefinedRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ExternallyDefinedRepresentation.hxx diff --git a/src/StepRepr/StepRepr_FeatureForDatumTargetRelationship.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_FeatureForDatumTargetRelationship.cxx similarity index 100% rename from src/StepRepr/StepRepr_FeatureForDatumTargetRelationship.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_FeatureForDatumTargetRelationship.cxx diff --git a/src/StepRepr/StepRepr_FeatureForDatumTargetRelationship.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_FeatureForDatumTargetRelationship.hxx similarity index 100% rename from src/StepRepr/StepRepr_FeatureForDatumTargetRelationship.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_FeatureForDatumTargetRelationship.hxx diff --git a/src/StepRepr/StepRepr_FunctionallyDefinedTransformation.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_FunctionallyDefinedTransformation.cxx similarity index 100% rename from src/StepRepr/StepRepr_FunctionallyDefinedTransformation.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_FunctionallyDefinedTransformation.cxx diff --git a/src/StepRepr/StepRepr_FunctionallyDefinedTransformation.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_FunctionallyDefinedTransformation.hxx similarity index 100% rename from src/StepRepr/StepRepr_FunctionallyDefinedTransformation.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_FunctionallyDefinedTransformation.hxx diff --git a/src/StepRepr/StepRepr_GeometricAlignment.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_GeometricAlignment.cxx similarity index 100% rename from src/StepRepr/StepRepr_GeometricAlignment.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_GeometricAlignment.cxx diff --git a/src/StepRepr/StepRepr_GeometricAlignment.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_GeometricAlignment.hxx similarity index 100% rename from src/StepRepr/StepRepr_GeometricAlignment.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_GeometricAlignment.hxx diff --git a/src/StepRepr/StepRepr_GlobalUncertaintyAssignedContext.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_GlobalUncertaintyAssignedContext.cxx similarity index 100% rename from src/StepRepr/StepRepr_GlobalUncertaintyAssignedContext.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_GlobalUncertaintyAssignedContext.cxx diff --git a/src/StepRepr/StepRepr_GlobalUncertaintyAssignedContext.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_GlobalUncertaintyAssignedContext.hxx similarity index 100% rename from src/StepRepr/StepRepr_GlobalUncertaintyAssignedContext.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_GlobalUncertaintyAssignedContext.hxx diff --git a/src/StepRepr/StepRepr_GlobalUnitAssignedContext.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_GlobalUnitAssignedContext.cxx similarity index 100% rename from src/StepRepr/StepRepr_GlobalUnitAssignedContext.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_GlobalUnitAssignedContext.cxx diff --git a/src/StepRepr/StepRepr_GlobalUnitAssignedContext.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_GlobalUnitAssignedContext.hxx similarity index 100% rename from src/StepRepr/StepRepr_GlobalUnitAssignedContext.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_GlobalUnitAssignedContext.hxx diff --git a/src/StepRepr/StepRepr_HArray1OfMaterialPropertyRepresentation.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_HArray1OfMaterialPropertyRepresentation.hxx similarity index 100% rename from src/StepRepr/StepRepr_HArray1OfMaterialPropertyRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_HArray1OfMaterialPropertyRepresentation.hxx diff --git a/src/StepRepr/StepRepr_HArray1OfPropertyDefinitionRepresentation.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_HArray1OfPropertyDefinitionRepresentation.hxx similarity index 100% rename from src/StepRepr/StepRepr_HArray1OfPropertyDefinitionRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_HArray1OfPropertyDefinitionRepresentation.hxx diff --git a/src/StepRepr/StepRepr_HArray1OfRepresentationItem.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_HArray1OfRepresentationItem.hxx similarity index 100% rename from src/StepRepr/StepRepr_HArray1OfRepresentationItem.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_HArray1OfRepresentationItem.hxx diff --git a/src/StepRepr/StepRepr_HArray1OfShapeAspect.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_HArray1OfShapeAspect.hxx similarity index 100% rename from src/StepRepr/StepRepr_HArray1OfShapeAspect.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_HArray1OfShapeAspect.hxx diff --git a/src/StepRepr/StepRepr_HSequenceOfMaterialPropertyRepresentation.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_HSequenceOfMaterialPropertyRepresentation.hxx similarity index 100% rename from src/StepRepr/StepRepr_HSequenceOfMaterialPropertyRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_HSequenceOfMaterialPropertyRepresentation.hxx diff --git a/src/StepRepr/StepRepr_HSequenceOfRepresentationItem.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_HSequenceOfRepresentationItem.hxx similarity index 100% rename from src/StepRepr/StepRepr_HSequenceOfRepresentationItem.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_HSequenceOfRepresentationItem.hxx diff --git a/src/StepRepr/StepRepr_IntegerRepresentationItem.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_IntegerRepresentationItem.cxx similarity index 100% rename from src/StepRepr/StepRepr_IntegerRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_IntegerRepresentationItem.cxx diff --git a/src/StepRepr/StepRepr_IntegerRepresentationItem.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_IntegerRepresentationItem.hxx similarity index 100% rename from src/StepRepr/StepRepr_IntegerRepresentationItem.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_IntegerRepresentationItem.hxx diff --git a/src/StepRepr/StepRepr_ItemDefinedTransformation.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ItemDefinedTransformation.cxx similarity index 100% rename from src/StepRepr/StepRepr_ItemDefinedTransformation.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ItemDefinedTransformation.cxx diff --git a/src/StepRepr/StepRepr_ItemDefinedTransformation.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ItemDefinedTransformation.hxx similarity index 100% rename from src/StepRepr/StepRepr_ItemDefinedTransformation.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ItemDefinedTransformation.hxx diff --git a/src/StepRepr/StepRepr_MakeFromUsageOption.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_MakeFromUsageOption.cxx similarity index 100% rename from src/StepRepr/StepRepr_MakeFromUsageOption.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_MakeFromUsageOption.cxx diff --git a/src/StepRepr/StepRepr_MakeFromUsageOption.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_MakeFromUsageOption.hxx similarity index 100% rename from src/StepRepr/StepRepr_MakeFromUsageOption.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_MakeFromUsageOption.hxx diff --git a/src/StepRepr/StepRepr_MappedItem.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_MappedItem.cxx similarity index 100% rename from src/StepRepr/StepRepr_MappedItem.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_MappedItem.cxx diff --git a/src/StepRepr/StepRepr_MappedItem.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_MappedItem.hxx similarity index 100% rename from src/StepRepr/StepRepr_MappedItem.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_MappedItem.hxx diff --git a/src/StepRepr/StepRepr_MaterialDesignation.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_MaterialDesignation.cxx similarity index 100% rename from src/StepRepr/StepRepr_MaterialDesignation.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_MaterialDesignation.cxx diff --git a/src/StepRepr/StepRepr_MaterialDesignation.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_MaterialDesignation.hxx similarity index 100% rename from src/StepRepr/StepRepr_MaterialDesignation.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_MaterialDesignation.hxx diff --git a/src/StepRepr/StepRepr_MaterialProperty.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_MaterialProperty.cxx similarity index 100% rename from src/StepRepr/StepRepr_MaterialProperty.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_MaterialProperty.cxx diff --git a/src/StepRepr/StepRepr_MaterialProperty.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_MaterialProperty.hxx similarity index 100% rename from src/StepRepr/StepRepr_MaterialProperty.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_MaterialProperty.hxx diff --git a/src/StepRepr/StepRepr_MaterialPropertyRepresentation.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_MaterialPropertyRepresentation.cxx similarity index 100% rename from src/StepRepr/StepRepr_MaterialPropertyRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_MaterialPropertyRepresentation.cxx diff --git a/src/StepRepr/StepRepr_MaterialPropertyRepresentation.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_MaterialPropertyRepresentation.hxx similarity index 100% rename from src/StepRepr/StepRepr_MaterialPropertyRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_MaterialPropertyRepresentation.hxx diff --git a/src/StepRepr/StepRepr_MeasureRepresentationItem.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_MeasureRepresentationItem.cxx similarity index 100% rename from src/StepRepr/StepRepr_MeasureRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_MeasureRepresentationItem.cxx diff --git a/src/StepRepr/StepRepr_MeasureRepresentationItem.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_MeasureRepresentationItem.hxx similarity index 100% rename from src/StepRepr/StepRepr_MeasureRepresentationItem.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_MeasureRepresentationItem.hxx diff --git a/src/StepRepr/StepRepr_MechanicalDesignAndDraughtingRelationship.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_MechanicalDesignAndDraughtingRelationship.cxx similarity index 100% rename from src/StepRepr/StepRepr_MechanicalDesignAndDraughtingRelationship.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_MechanicalDesignAndDraughtingRelationship.cxx diff --git a/src/StepRepr/StepRepr_MechanicalDesignAndDraughtingRelationship.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_MechanicalDesignAndDraughtingRelationship.hxx similarity index 100% rename from src/StepRepr/StepRepr_MechanicalDesignAndDraughtingRelationship.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_MechanicalDesignAndDraughtingRelationship.hxx diff --git a/src/StepRepr/StepRepr_NextAssemblyUsageOccurrence.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_NextAssemblyUsageOccurrence.cxx similarity index 100% rename from src/StepRepr/StepRepr_NextAssemblyUsageOccurrence.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_NextAssemblyUsageOccurrence.cxx diff --git a/src/StepRepr/StepRepr_NextAssemblyUsageOccurrence.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_NextAssemblyUsageOccurrence.hxx similarity index 100% rename from src/StepRepr/StepRepr_NextAssemblyUsageOccurrence.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_NextAssemblyUsageOccurrence.hxx diff --git a/src/StepRepr/StepRepr_ParallelOffset.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ParallelOffset.cxx similarity index 100% rename from src/StepRepr/StepRepr_ParallelOffset.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ParallelOffset.cxx diff --git a/src/StepRepr/StepRepr_ParallelOffset.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ParallelOffset.hxx similarity index 100% rename from src/StepRepr/StepRepr_ParallelOffset.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ParallelOffset.hxx diff --git a/src/StepRepr/StepRepr_ParametricRepresentationContext.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ParametricRepresentationContext.cxx similarity index 100% rename from src/StepRepr/StepRepr_ParametricRepresentationContext.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ParametricRepresentationContext.cxx diff --git a/src/StepRepr/StepRepr_ParametricRepresentationContext.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ParametricRepresentationContext.hxx similarity index 100% rename from src/StepRepr/StepRepr_ParametricRepresentationContext.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ParametricRepresentationContext.hxx diff --git a/src/StepRepr/StepRepr_PerpendicularTo.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_PerpendicularTo.cxx similarity index 100% rename from src/StepRepr/StepRepr_PerpendicularTo.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_PerpendicularTo.cxx diff --git a/src/StepRepr/StepRepr_PerpendicularTo.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_PerpendicularTo.hxx similarity index 100% rename from src/StepRepr/StepRepr_PerpendicularTo.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_PerpendicularTo.hxx diff --git a/src/StepRepr/StepRepr_ProductConcept.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ProductConcept.cxx similarity index 100% rename from src/StepRepr/StepRepr_ProductConcept.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ProductConcept.cxx diff --git a/src/StepRepr/StepRepr_ProductConcept.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ProductConcept.hxx similarity index 100% rename from src/StepRepr/StepRepr_ProductConcept.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ProductConcept.hxx diff --git a/src/StepRepr/StepRepr_ProductDefinitionShape.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ProductDefinitionShape.cxx similarity index 100% rename from src/StepRepr/StepRepr_ProductDefinitionShape.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ProductDefinitionShape.cxx diff --git a/src/StepRepr/StepRepr_ProductDefinitionShape.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ProductDefinitionShape.hxx similarity index 100% rename from src/StepRepr/StepRepr_ProductDefinitionShape.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ProductDefinitionShape.hxx diff --git a/src/StepRepr/StepRepr_ProductDefinitionUsage.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ProductDefinitionUsage.cxx similarity index 100% rename from src/StepRepr/StepRepr_ProductDefinitionUsage.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ProductDefinitionUsage.cxx diff --git a/src/StepRepr/StepRepr_ProductDefinitionUsage.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ProductDefinitionUsage.hxx similarity index 100% rename from src/StepRepr/StepRepr_ProductDefinitionUsage.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ProductDefinitionUsage.hxx diff --git a/src/StepRepr/StepRepr_PromissoryUsageOccurrence.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_PromissoryUsageOccurrence.cxx similarity index 100% rename from src/StepRepr/StepRepr_PromissoryUsageOccurrence.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_PromissoryUsageOccurrence.cxx diff --git a/src/StepRepr/StepRepr_PromissoryUsageOccurrence.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_PromissoryUsageOccurrence.hxx similarity index 100% rename from src/StepRepr/StepRepr_PromissoryUsageOccurrence.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_PromissoryUsageOccurrence.hxx diff --git a/src/StepRepr/StepRepr_PropertyDefinition.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_PropertyDefinition.cxx similarity index 100% rename from src/StepRepr/StepRepr_PropertyDefinition.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_PropertyDefinition.cxx diff --git a/src/StepRepr/StepRepr_PropertyDefinition.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_PropertyDefinition.hxx similarity index 100% rename from src/StepRepr/StepRepr_PropertyDefinition.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_PropertyDefinition.hxx diff --git a/src/StepRepr/StepRepr_PropertyDefinitionRelationship.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_PropertyDefinitionRelationship.cxx similarity index 100% rename from src/StepRepr/StepRepr_PropertyDefinitionRelationship.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_PropertyDefinitionRelationship.cxx diff --git a/src/StepRepr/StepRepr_PropertyDefinitionRelationship.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_PropertyDefinitionRelationship.hxx similarity index 100% rename from src/StepRepr/StepRepr_PropertyDefinitionRelationship.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_PropertyDefinitionRelationship.hxx diff --git a/src/StepRepr/StepRepr_PropertyDefinitionRepresentation.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_PropertyDefinitionRepresentation.cxx similarity index 100% rename from src/StepRepr/StepRepr_PropertyDefinitionRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_PropertyDefinitionRepresentation.cxx diff --git a/src/StepRepr/StepRepr_PropertyDefinitionRepresentation.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_PropertyDefinitionRepresentation.hxx similarity index 100% rename from src/StepRepr/StepRepr_PropertyDefinitionRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_PropertyDefinitionRepresentation.hxx diff --git a/src/StepRepr/StepRepr_QuantifiedAssemblyComponentUsage.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_QuantifiedAssemblyComponentUsage.cxx similarity index 100% rename from src/StepRepr/StepRepr_QuantifiedAssemblyComponentUsage.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_QuantifiedAssemblyComponentUsage.cxx diff --git a/src/StepRepr/StepRepr_QuantifiedAssemblyComponentUsage.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_QuantifiedAssemblyComponentUsage.hxx similarity index 100% rename from src/StepRepr/StepRepr_QuantifiedAssemblyComponentUsage.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_QuantifiedAssemblyComponentUsage.hxx diff --git a/src/StepRepr/StepRepr_RealRepresentationItem.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_RealRepresentationItem.cxx similarity index 100% rename from src/StepRepr/StepRepr_RealRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_RealRepresentationItem.cxx diff --git a/src/StepRepr/StepRepr_RealRepresentationItem.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_RealRepresentationItem.hxx similarity index 100% rename from src/StepRepr/StepRepr_RealRepresentationItem.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_RealRepresentationItem.hxx diff --git a/src/StepRepr/StepRepr_ReprItemAndLengthMeasureWithUnit.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ReprItemAndLengthMeasureWithUnit.cxx similarity index 100% rename from src/StepRepr/StepRepr_ReprItemAndLengthMeasureWithUnit.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ReprItemAndLengthMeasureWithUnit.cxx diff --git a/src/StepRepr/StepRepr_ReprItemAndLengthMeasureWithUnit.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ReprItemAndLengthMeasureWithUnit.hxx similarity index 100% rename from src/StepRepr/StepRepr_ReprItemAndLengthMeasureWithUnit.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ReprItemAndLengthMeasureWithUnit.hxx diff --git a/src/StepRepr/StepRepr_ReprItemAndLengthMeasureWithUnitAndQRI.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ReprItemAndLengthMeasureWithUnitAndQRI.cxx similarity index 100% rename from src/StepRepr/StepRepr_ReprItemAndLengthMeasureWithUnitAndQRI.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ReprItemAndLengthMeasureWithUnitAndQRI.cxx diff --git a/src/StepRepr/StepRepr_ReprItemAndLengthMeasureWithUnitAndQRI.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ReprItemAndLengthMeasureWithUnitAndQRI.hxx similarity index 100% rename from src/StepRepr/StepRepr_ReprItemAndLengthMeasureWithUnitAndQRI.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ReprItemAndLengthMeasureWithUnitAndQRI.hxx diff --git a/src/StepRepr/StepRepr_ReprItemAndMeasureWithUnit.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ReprItemAndMeasureWithUnit.cxx similarity index 100% rename from src/StepRepr/StepRepr_ReprItemAndMeasureWithUnit.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ReprItemAndMeasureWithUnit.cxx diff --git a/src/StepRepr/StepRepr_ReprItemAndMeasureWithUnit.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ReprItemAndMeasureWithUnit.hxx similarity index 100% rename from src/StepRepr/StepRepr_ReprItemAndMeasureWithUnit.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ReprItemAndMeasureWithUnit.hxx diff --git a/src/StepRepr/StepRepr_ReprItemAndMeasureWithUnitAndQRI.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ReprItemAndMeasureWithUnitAndQRI.cxx similarity index 100% rename from src/StepRepr/StepRepr_ReprItemAndMeasureWithUnitAndQRI.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ReprItemAndMeasureWithUnitAndQRI.cxx diff --git a/src/StepRepr/StepRepr_ReprItemAndMeasureWithUnitAndQRI.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ReprItemAndMeasureWithUnitAndQRI.hxx similarity index 100% rename from src/StepRepr/StepRepr_ReprItemAndMeasureWithUnitAndQRI.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ReprItemAndMeasureWithUnitAndQRI.hxx diff --git a/src/StepRepr/StepRepr_ReprItemAndPlaneAngleMeasureWithUnit.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ReprItemAndPlaneAngleMeasureWithUnit.cxx similarity index 100% rename from src/StepRepr/StepRepr_ReprItemAndPlaneAngleMeasureWithUnit.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ReprItemAndPlaneAngleMeasureWithUnit.cxx diff --git a/src/StepRepr/StepRepr_ReprItemAndPlaneAngleMeasureWithUnit.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ReprItemAndPlaneAngleMeasureWithUnit.hxx similarity index 100% rename from src/StepRepr/StepRepr_ReprItemAndPlaneAngleMeasureWithUnit.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ReprItemAndPlaneAngleMeasureWithUnit.hxx diff --git a/src/StepRepr/StepRepr_ReprItemAndPlaneAngleMeasureWithUnitAndQRI.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ReprItemAndPlaneAngleMeasureWithUnitAndQRI.cxx similarity index 100% rename from src/StepRepr/StepRepr_ReprItemAndPlaneAngleMeasureWithUnitAndQRI.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ReprItemAndPlaneAngleMeasureWithUnitAndQRI.cxx diff --git a/src/StepRepr/StepRepr_ReprItemAndPlaneAngleMeasureWithUnitAndQRI.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ReprItemAndPlaneAngleMeasureWithUnitAndQRI.hxx similarity index 100% rename from src/StepRepr/StepRepr_ReprItemAndPlaneAngleMeasureWithUnitAndQRI.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ReprItemAndPlaneAngleMeasureWithUnitAndQRI.hxx diff --git a/src/StepRepr/StepRepr_Representation.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_Representation.cxx similarity index 100% rename from src/StepRepr/StepRepr_Representation.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_Representation.cxx diff --git a/src/StepRepr/StepRepr_Representation.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_Representation.hxx similarity index 100% rename from src/StepRepr/StepRepr_Representation.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_Representation.hxx diff --git a/src/StepRepr/StepRepr_RepresentationContext.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationContext.cxx similarity index 100% rename from src/StepRepr/StepRepr_RepresentationContext.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationContext.cxx diff --git a/src/StepRepr/StepRepr_RepresentationContext.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationContext.hxx similarity index 100% rename from src/StepRepr/StepRepr_RepresentationContext.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationContext.hxx diff --git a/src/StepRepr/StepRepr_RepresentationContextReference.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationContextReference.cxx similarity index 100% rename from src/StepRepr/StepRepr_RepresentationContextReference.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationContextReference.cxx diff --git a/src/StepRepr/StepRepr_RepresentationContextReference.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationContextReference.hxx similarity index 100% rename from src/StepRepr/StepRepr_RepresentationContextReference.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationContextReference.hxx diff --git a/src/StepRepr/StepRepr_RepresentationItem.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationItem.cxx similarity index 100% rename from src/StepRepr/StepRepr_RepresentationItem.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationItem.cxx diff --git a/src/StepRepr/StepRepr_RepresentationItem.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationItem.hxx similarity index 100% rename from src/StepRepr/StepRepr_RepresentationItem.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationItem.hxx diff --git a/src/StepRepr/StepRepr_RepresentationMap.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationMap.cxx similarity index 100% rename from src/StepRepr/StepRepr_RepresentationMap.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationMap.cxx diff --git a/src/StepRepr/StepRepr_RepresentationMap.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationMap.hxx similarity index 100% rename from src/StepRepr/StepRepr_RepresentationMap.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationMap.hxx diff --git a/src/StepRepr/StepRepr_RepresentationOrRepresentationReference.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationOrRepresentationReference.cxx similarity index 100% rename from src/StepRepr/StepRepr_RepresentationOrRepresentationReference.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationOrRepresentationReference.cxx diff --git a/src/StepRepr/StepRepr_RepresentationOrRepresentationReference.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationOrRepresentationReference.hxx similarity index 100% rename from src/StepRepr/StepRepr_RepresentationOrRepresentationReference.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationOrRepresentationReference.hxx diff --git a/src/StepRepr/StepRepr_RepresentationReference.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationReference.cxx similarity index 100% rename from src/StepRepr/StepRepr_RepresentationReference.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationReference.cxx diff --git a/src/StepRepr/StepRepr_RepresentationReference.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationReference.hxx similarity index 100% rename from src/StepRepr/StepRepr_RepresentationReference.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationReference.hxx diff --git a/src/StepRepr/StepRepr_RepresentationRelationship.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationRelationship.cxx similarity index 100% rename from src/StepRepr/StepRepr_RepresentationRelationship.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationRelationship.cxx diff --git a/src/StepRepr/StepRepr_RepresentationRelationship.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationRelationship.hxx similarity index 100% rename from src/StepRepr/StepRepr_RepresentationRelationship.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationRelationship.hxx diff --git a/src/StepRepr/StepRepr_RepresentationRelationshipWithTransformation.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationRelationshipWithTransformation.cxx similarity index 100% rename from src/StepRepr/StepRepr_RepresentationRelationshipWithTransformation.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationRelationshipWithTransformation.cxx diff --git a/src/StepRepr/StepRepr_RepresentationRelationshipWithTransformation.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationRelationshipWithTransformation.hxx similarity index 100% rename from src/StepRepr/StepRepr_RepresentationRelationshipWithTransformation.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentationRelationshipWithTransformation.hxx diff --git a/src/StepRepr/StepRepr_RepresentedDefinition.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentedDefinition.cxx similarity index 100% rename from src/StepRepr/StepRepr_RepresentedDefinition.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentedDefinition.cxx diff --git a/src/StepRepr/StepRepr_RepresentedDefinition.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentedDefinition.hxx similarity index 100% rename from src/StepRepr/StepRepr_RepresentedDefinition.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_RepresentedDefinition.hxx diff --git a/src/StepRepr/StepRepr_SequenceOfMaterialPropertyRepresentation.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_SequenceOfMaterialPropertyRepresentation.hxx similarity index 100% rename from src/StepRepr/StepRepr_SequenceOfMaterialPropertyRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_SequenceOfMaterialPropertyRepresentation.hxx diff --git a/src/StepRepr/StepRepr_SequenceOfRepresentationItem.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_SequenceOfRepresentationItem.hxx similarity index 100% rename from src/StepRepr/StepRepr_SequenceOfRepresentationItem.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_SequenceOfRepresentationItem.hxx diff --git a/src/StepRepr/StepRepr_ShapeAspect.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeAspect.cxx similarity index 100% rename from src/StepRepr/StepRepr_ShapeAspect.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeAspect.cxx diff --git a/src/StepRepr/StepRepr_ShapeAspect.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeAspect.hxx similarity index 100% rename from src/StepRepr/StepRepr_ShapeAspect.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeAspect.hxx diff --git a/src/StepRepr/StepRepr_ShapeAspectDerivingRelationship.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeAspectDerivingRelationship.cxx similarity index 100% rename from src/StepRepr/StepRepr_ShapeAspectDerivingRelationship.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeAspectDerivingRelationship.cxx diff --git a/src/StepRepr/StepRepr_ShapeAspectDerivingRelationship.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeAspectDerivingRelationship.hxx similarity index 100% rename from src/StepRepr/StepRepr_ShapeAspectDerivingRelationship.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeAspectDerivingRelationship.hxx diff --git a/src/StepRepr/StepRepr_ShapeAspectRelationship.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeAspectRelationship.cxx similarity index 100% rename from src/StepRepr/StepRepr_ShapeAspectRelationship.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeAspectRelationship.cxx diff --git a/src/StepRepr/StepRepr_ShapeAspectRelationship.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeAspectRelationship.hxx similarity index 100% rename from src/StepRepr/StepRepr_ShapeAspectRelationship.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeAspectRelationship.hxx diff --git a/src/StepRepr/StepRepr_ShapeAspectTransition.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeAspectTransition.cxx similarity index 100% rename from src/StepRepr/StepRepr_ShapeAspectTransition.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeAspectTransition.cxx diff --git a/src/StepRepr/StepRepr_ShapeAspectTransition.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeAspectTransition.hxx similarity index 100% rename from src/StepRepr/StepRepr_ShapeAspectTransition.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeAspectTransition.hxx diff --git a/src/StepRepr/StepRepr_ShapeDefinition.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeDefinition.cxx similarity index 100% rename from src/StepRepr/StepRepr_ShapeDefinition.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeDefinition.cxx diff --git a/src/StepRepr/StepRepr_ShapeDefinition.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeDefinition.hxx similarity index 100% rename from src/StepRepr/StepRepr_ShapeDefinition.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeDefinition.hxx diff --git a/src/StepRepr/StepRepr_ShapeRepresentationRelationship.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeRepresentationRelationship.cxx similarity index 100% rename from src/StepRepr/StepRepr_ShapeRepresentationRelationship.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeRepresentationRelationship.cxx diff --git a/src/StepRepr/StepRepr_ShapeRepresentationRelationship.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeRepresentationRelationship.hxx similarity index 100% rename from src/StepRepr/StepRepr_ShapeRepresentationRelationship.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeRepresentationRelationship.hxx diff --git a/src/StepRepr/StepRepr_ShapeRepresentationRelationshipWithTransformation.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeRepresentationRelationshipWithTransformation.cxx similarity index 100% rename from src/StepRepr/StepRepr_ShapeRepresentationRelationshipWithTransformation.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeRepresentationRelationshipWithTransformation.cxx diff --git a/src/StepRepr/StepRepr_ShapeRepresentationRelationshipWithTransformation.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeRepresentationRelationshipWithTransformation.hxx similarity index 100% rename from src/StepRepr/StepRepr_ShapeRepresentationRelationshipWithTransformation.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ShapeRepresentationRelationshipWithTransformation.hxx diff --git a/src/StepRepr/StepRepr_SpecifiedHigherUsageOccurrence.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_SpecifiedHigherUsageOccurrence.cxx similarity index 100% rename from src/StepRepr/StepRepr_SpecifiedHigherUsageOccurrence.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_SpecifiedHigherUsageOccurrence.cxx diff --git a/src/StepRepr/StepRepr_SpecifiedHigherUsageOccurrence.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_SpecifiedHigherUsageOccurrence.hxx similarity index 100% rename from src/StepRepr/StepRepr_SpecifiedHigherUsageOccurrence.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_SpecifiedHigherUsageOccurrence.hxx diff --git a/src/StepRepr/StepRepr_StructuralResponseProperty.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_StructuralResponseProperty.cxx similarity index 100% rename from src/StepRepr/StepRepr_StructuralResponseProperty.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_StructuralResponseProperty.cxx diff --git a/src/StepRepr/StepRepr_StructuralResponseProperty.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_StructuralResponseProperty.hxx similarity index 100% rename from src/StepRepr/StepRepr_StructuralResponseProperty.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_StructuralResponseProperty.hxx diff --git a/src/StepRepr/StepRepr_StructuralResponsePropertyDefinitionRepresentation.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_StructuralResponsePropertyDefinitionRepresentation.cxx similarity index 100% rename from src/StepRepr/StepRepr_StructuralResponsePropertyDefinitionRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_StructuralResponsePropertyDefinitionRepresentation.cxx diff --git a/src/StepRepr/StepRepr_StructuralResponsePropertyDefinitionRepresentation.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_StructuralResponsePropertyDefinitionRepresentation.hxx similarity index 100% rename from src/StepRepr/StepRepr_StructuralResponsePropertyDefinitionRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_StructuralResponsePropertyDefinitionRepresentation.hxx diff --git a/src/StepRepr/StepRepr_SuppliedPartRelationship.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_SuppliedPartRelationship.cxx similarity index 100% rename from src/StepRepr/StepRepr_SuppliedPartRelationship.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_SuppliedPartRelationship.cxx diff --git a/src/StepRepr/StepRepr_SuppliedPartRelationship.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_SuppliedPartRelationship.hxx similarity index 100% rename from src/StepRepr/StepRepr_SuppliedPartRelationship.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_SuppliedPartRelationship.hxx diff --git a/src/StepRepr/StepRepr_Tangent.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_Tangent.cxx similarity index 100% rename from src/StepRepr/StepRepr_Tangent.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_Tangent.cxx diff --git a/src/StepRepr/StepRepr_Tangent.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_Tangent.hxx similarity index 100% rename from src/StepRepr/StepRepr_Tangent.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_Tangent.hxx diff --git a/src/StepRepr/StepRepr_Transformation.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_Transformation.cxx similarity index 100% rename from src/StepRepr/StepRepr_Transformation.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_Transformation.cxx diff --git a/src/StepRepr/StepRepr_Transformation.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_Transformation.hxx similarity index 100% rename from src/StepRepr/StepRepr_Transformation.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_Transformation.hxx diff --git a/src/StepRepr/StepRepr_ValueRange.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ValueRange.cxx similarity index 100% rename from src/StepRepr/StepRepr_ValueRange.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ValueRange.cxx diff --git a/src/StepRepr/StepRepr_ValueRange.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ValueRange.hxx similarity index 100% rename from src/StepRepr/StepRepr_ValueRange.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ValueRange.hxx diff --git a/src/StepRepr/StepRepr_ValueRepresentationItem.cxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ValueRepresentationItem.cxx similarity index 100% rename from src/StepRepr/StepRepr_ValueRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ValueRepresentationItem.cxx diff --git a/src/StepRepr/StepRepr_ValueRepresentationItem.hxx b/src/DataExchange/TKDESTEP/StepRepr/StepRepr_ValueRepresentationItem.hxx similarity index 100% rename from src/StepRepr/StepRepr_ValueRepresentationItem.hxx rename to src/DataExchange/TKDESTEP/StepRepr/StepRepr_ValueRepresentationItem.hxx diff --git a/src/DataExchange/TKDESTEP/StepSelect/FILES.cmake b/src/DataExchange/TKDESTEP/StepSelect/FILES.cmake new file mode 100644 index 0000000000..9be3098066 --- /dev/null +++ b/src/DataExchange/TKDESTEP/StepSelect/FILES.cmake @@ -0,0 +1,17 @@ +# Source files for StepSelect package +set(OCCT_StepSelect_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StepSelect_FILES + StepSelect_Activator.cxx + StepSelect_Activator.hxx + StepSelect_FileModifier.hxx + StepSelect_FileModifier_0.cxx + StepSelect_FloatFormat.cxx + StepSelect_FloatFormat.hxx + StepSelect_ModelModifier.hxx + StepSelect_ModelModifier_0.cxx + StepSelect_StepType.cxx + StepSelect_StepType.hxx + StepSelect_WorkLibrary.cxx + StepSelect_WorkLibrary.hxx +) diff --git a/src/StepSelect/StepSelect_Activator.cxx b/src/DataExchange/TKDESTEP/StepSelect/StepSelect_Activator.cxx similarity index 100% rename from src/StepSelect/StepSelect_Activator.cxx rename to src/DataExchange/TKDESTEP/StepSelect/StepSelect_Activator.cxx diff --git a/src/StepSelect/StepSelect_Activator.hxx b/src/DataExchange/TKDESTEP/StepSelect/StepSelect_Activator.hxx similarity index 100% rename from src/StepSelect/StepSelect_Activator.hxx rename to src/DataExchange/TKDESTEP/StepSelect/StepSelect_Activator.hxx diff --git a/src/StepSelect/StepSelect_FileModifier.hxx b/src/DataExchange/TKDESTEP/StepSelect/StepSelect_FileModifier.hxx similarity index 100% rename from src/StepSelect/StepSelect_FileModifier.hxx rename to src/DataExchange/TKDESTEP/StepSelect/StepSelect_FileModifier.hxx diff --git a/src/StepSelect/StepSelect_FileModifier_0.cxx b/src/DataExchange/TKDESTEP/StepSelect/StepSelect_FileModifier_0.cxx similarity index 100% rename from src/StepSelect/StepSelect_FileModifier_0.cxx rename to src/DataExchange/TKDESTEP/StepSelect/StepSelect_FileModifier_0.cxx diff --git a/src/StepSelect/StepSelect_FloatFormat.cxx b/src/DataExchange/TKDESTEP/StepSelect/StepSelect_FloatFormat.cxx similarity index 100% rename from src/StepSelect/StepSelect_FloatFormat.cxx rename to src/DataExchange/TKDESTEP/StepSelect/StepSelect_FloatFormat.cxx diff --git a/src/StepSelect/StepSelect_FloatFormat.hxx b/src/DataExchange/TKDESTEP/StepSelect/StepSelect_FloatFormat.hxx similarity index 100% rename from src/StepSelect/StepSelect_FloatFormat.hxx rename to src/DataExchange/TKDESTEP/StepSelect/StepSelect_FloatFormat.hxx diff --git a/src/StepSelect/StepSelect_ModelModifier.hxx b/src/DataExchange/TKDESTEP/StepSelect/StepSelect_ModelModifier.hxx similarity index 100% rename from src/StepSelect/StepSelect_ModelModifier.hxx rename to src/DataExchange/TKDESTEP/StepSelect/StepSelect_ModelModifier.hxx diff --git a/src/StepSelect/StepSelect_ModelModifier_0.cxx b/src/DataExchange/TKDESTEP/StepSelect/StepSelect_ModelModifier_0.cxx similarity index 100% rename from src/StepSelect/StepSelect_ModelModifier_0.cxx rename to src/DataExchange/TKDESTEP/StepSelect/StepSelect_ModelModifier_0.cxx diff --git a/src/StepSelect/StepSelect_StepType.cxx b/src/DataExchange/TKDESTEP/StepSelect/StepSelect_StepType.cxx similarity index 100% rename from src/StepSelect/StepSelect_StepType.cxx rename to src/DataExchange/TKDESTEP/StepSelect/StepSelect_StepType.cxx diff --git a/src/StepSelect/StepSelect_StepType.hxx b/src/DataExchange/TKDESTEP/StepSelect/StepSelect_StepType.hxx similarity index 100% rename from src/StepSelect/StepSelect_StepType.hxx rename to src/DataExchange/TKDESTEP/StepSelect/StepSelect_StepType.hxx diff --git a/src/StepSelect/StepSelect_WorkLibrary.cxx b/src/DataExchange/TKDESTEP/StepSelect/StepSelect_WorkLibrary.cxx similarity index 100% rename from src/StepSelect/StepSelect_WorkLibrary.cxx rename to src/DataExchange/TKDESTEP/StepSelect/StepSelect_WorkLibrary.cxx diff --git a/src/StepSelect/StepSelect_WorkLibrary.hxx b/src/DataExchange/TKDESTEP/StepSelect/StepSelect_WorkLibrary.hxx similarity index 100% rename from src/StepSelect/StepSelect_WorkLibrary.hxx rename to src/DataExchange/TKDESTEP/StepSelect/StepSelect_WorkLibrary.hxx diff --git a/src/DataExchange/TKDESTEP/StepShape/FILES.cmake b/src/DataExchange/TKDESTEP/StepShape/FILES.cmake new file mode 100644 index 0000000000..9edf3a4329 --- /dev/null +++ b/src/DataExchange/TKDESTEP/StepShape/FILES.cmake @@ -0,0 +1,235 @@ +# Source files for StepShape package +set(OCCT_StepShape_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StepShape_FILES + StepShape_AdvancedBrepShapeRepresentation.cxx + StepShape_AdvancedBrepShapeRepresentation.hxx + StepShape_AdvancedFace.cxx + StepShape_AdvancedFace.hxx + StepShape_AngleRelator.hxx + StepShape_AngularLocation.cxx + StepShape_AngularLocation.hxx + StepShape_AngularSize.cxx + StepShape_AngularSize.hxx + StepShape_Array1OfConnectedEdgeSet.hxx + StepShape_Array1OfConnectedFaceSet.hxx + StepShape_Array1OfEdge.hxx + StepShape_Array1OfFace.hxx + StepShape_Array1OfFaceBound.hxx + StepShape_Array1OfGeometricSetSelect.hxx + StepShape_Array1OfOrientedClosedShell.hxx + StepShape_Array1OfOrientedEdge.hxx + StepShape_Array1OfShapeDimensionRepresentationItem.hxx + StepShape_Array1OfShell.hxx + StepShape_Array1OfValueQualifier.hxx + StepShape_Block.cxx + StepShape_Block.hxx + StepShape_BooleanOperand.cxx + StepShape_BooleanOperand.hxx + StepShape_BooleanOperator.hxx + StepShape_BooleanResult.cxx + StepShape_BooleanResult.hxx + StepShape_BoxDomain.cxx + StepShape_BoxDomain.hxx + StepShape_BoxedHalfSpace.cxx + StepShape_BoxedHalfSpace.hxx + StepShape_BrepWithVoids.cxx + StepShape_BrepWithVoids.hxx + StepShape_ClosedShell.cxx + StepShape_ClosedShell.hxx + StepShape_CompoundShapeRepresentation.cxx + StepShape_CompoundShapeRepresentation.hxx + StepShape_ConnectedEdgeSet.cxx + StepShape_ConnectedEdgeSet.hxx + StepShape_ConnectedFaceSet.cxx + StepShape_ConnectedFaceSet.hxx + StepShape_ConnectedFaceShapeRepresentation.cxx + StepShape_ConnectedFaceShapeRepresentation.hxx + StepShape_ConnectedFaceSubSet.cxx + StepShape_ConnectedFaceSubSet.hxx + StepShape_ContextDependentShapeRepresentation.cxx + StepShape_ContextDependentShapeRepresentation.hxx + StepShape_CsgPrimitive.cxx + StepShape_CsgPrimitive.hxx + StepShape_CsgSelect.cxx + StepShape_CsgSelect.hxx + StepShape_CsgShapeRepresentation.cxx + StepShape_CsgShapeRepresentation.hxx + StepShape_CsgSolid.cxx + StepShape_CsgSolid.hxx + StepShape_DefinitionalRepresentationAndShapeRepresentation.cxx + StepShape_DefinitionalRepresentationAndShapeRepresentation.hxx + StepShape_DimensionalCharacteristic.cxx + StepShape_DimensionalCharacteristic.hxx + StepShape_DimensionalCharacteristicRepresentation.cxx + StepShape_DimensionalCharacteristicRepresentation.hxx + StepShape_DimensionalLocation.cxx + StepShape_DimensionalLocation.hxx + StepShape_DimensionalLocationWithPath.cxx + StepShape_DimensionalLocationWithPath.hxx + StepShape_DimensionalSize.cxx + StepShape_DimensionalSize.hxx + StepShape_DimensionalSizeWithPath.cxx + StepShape_DimensionalSizeWithPath.hxx + StepShape_DirectedDimensionalLocation.cxx + StepShape_DirectedDimensionalLocation.hxx + StepShape_Edge.cxx + StepShape_Edge.hxx + StepShape_EdgeBasedWireframeModel.cxx + StepShape_EdgeBasedWireframeModel.hxx + StepShape_EdgeBasedWireframeShapeRepresentation.cxx + StepShape_EdgeBasedWireframeShapeRepresentation.hxx + StepShape_EdgeCurve.cxx + StepShape_EdgeCurve.hxx + StepShape_EdgeLoop.cxx + StepShape_EdgeLoop.hxx + StepShape_ExtrudedAreaSolid.cxx + StepShape_ExtrudedAreaSolid.hxx + StepShape_ExtrudedFaceSolid.cxx + StepShape_ExtrudedFaceSolid.hxx + StepShape_Face.cxx + StepShape_Face.hxx + StepShape_FaceBasedSurfaceModel.cxx + StepShape_FaceBasedSurfaceModel.hxx + StepShape_FaceBound.cxx + StepShape_FaceBound.hxx + StepShape_FaceOuterBound.cxx + StepShape_FaceOuterBound.hxx + StepShape_FaceSurface.cxx + StepShape_FaceSurface.hxx + StepShape_FacetedBrep.cxx + StepShape_FacetedBrep.hxx + StepShape_FacetedBrepAndBrepWithVoids.cxx + StepShape_FacetedBrepAndBrepWithVoids.hxx + StepShape_FacetedBrepShapeRepresentation.cxx + StepShape_FacetedBrepShapeRepresentation.hxx + StepShape_GeometricallyBoundedSurfaceShapeRepresentation.cxx + StepShape_GeometricallyBoundedSurfaceShapeRepresentation.hxx + StepShape_GeometricallyBoundedWireframeShapeRepresentation.cxx + StepShape_GeometricallyBoundedWireframeShapeRepresentation.hxx + StepShape_GeometricCurveSet.cxx + StepShape_GeometricCurveSet.hxx + StepShape_GeometricSet.cxx + StepShape_GeometricSet.hxx + StepShape_GeometricSetSelect.cxx + StepShape_GeometricSetSelect.hxx + StepShape_HalfSpaceSolid.cxx + StepShape_HalfSpaceSolid.hxx + StepShape_HArray1OfConnectedEdgeSet.hxx + StepShape_HArray1OfConnectedFaceSet.hxx + StepShape_HArray1OfEdge.hxx + StepShape_HArray1OfFace.hxx + StepShape_HArray1OfFaceBound.hxx + StepShape_HArray1OfGeometricSetSelect.hxx + StepShape_HArray1OfOrientedClosedShell.hxx + StepShape_HArray1OfOrientedEdge.hxx + StepShape_HArray1OfShapeDimensionRepresentationItem.hxx + StepShape_HArray1OfShell.hxx + StepShape_HArray1OfValueQualifier.hxx + StepShape_LimitsAndFits.cxx + StepShape_LimitsAndFits.hxx + StepShape_Loop.cxx + StepShape_Loop.hxx + StepShape_LoopAndPath.cxx + StepShape_LoopAndPath.hxx + StepShape_ManifoldSolidBrep.cxx + StepShape_ManifoldSolidBrep.hxx + StepShape_ManifoldSurfaceShapeRepresentation.cxx + StepShape_ManifoldSurfaceShapeRepresentation.hxx + StepShape_MeasureQualification.cxx + StepShape_MeasureQualification.hxx + StepShape_MeasureRepresentationItemAndQualifiedRepresentationItem.cxx + StepShape_MeasureRepresentationItemAndQualifiedRepresentationItem.hxx + StepShape_NonManifoldSurfaceShapeRepresentation.cxx + StepShape_NonManifoldSurfaceShapeRepresentation.hxx + StepShape_OpenShell.cxx + StepShape_OpenShell.hxx + StepShape_OrientedClosedShell.cxx + StepShape_OrientedClosedShell.hxx + StepShape_OrientedEdge.cxx + StepShape_OrientedEdge.hxx + StepShape_OrientedFace.cxx + StepShape_OrientedFace.hxx + StepShape_OrientedOpenShell.cxx + StepShape_OrientedOpenShell.hxx + StepShape_OrientedPath.cxx + StepShape_OrientedPath.hxx + StepShape_Path.cxx + StepShape_Path.hxx + StepShape_PlusMinusTolerance.cxx + StepShape_PlusMinusTolerance.hxx + StepShape_PointRepresentation.cxx + StepShape_PointRepresentation.hxx + StepShape_PolyLoop.cxx + StepShape_PolyLoop.hxx + StepShape_PrecisionQualifier.cxx + StepShape_PrecisionQualifier.hxx + StepShape_QualifiedRepresentationItem.cxx + StepShape_QualifiedRepresentationItem.hxx + StepShape_ReversibleTopologyItem.cxx + StepShape_ReversibleTopologyItem.hxx + StepShape_RevolvedAreaSolid.cxx + StepShape_RevolvedAreaSolid.hxx + StepShape_RevolvedFaceSolid.cxx + StepShape_RevolvedFaceSolid.hxx + StepShape_RightAngularWedge.cxx + StepShape_RightAngularWedge.hxx + StepShape_RightCircularCone.cxx + StepShape_RightCircularCone.hxx + StepShape_RightCircularCylinder.cxx + StepShape_RightCircularCylinder.hxx + StepShape_SeamEdge.cxx + StepShape_SeamEdge.hxx + StepShape_ShapeDefinitionRepresentation.cxx + StepShape_ShapeDefinitionRepresentation.hxx + StepShape_ShapeDimensionRepresentation.cxx + StepShape_ShapeDimensionRepresentation.hxx + StepShape_ShapeDimensionRepresentationItem.cxx + StepShape_ShapeDimensionRepresentationItem.hxx + StepShape_ShapeRepresentation.cxx + StepShape_ShapeRepresentation.hxx + StepShape_ShapeRepresentationWithParameters.cxx + StepShape_ShapeRepresentationWithParameters.hxx + StepShape_Shell.cxx + StepShape_Shell.hxx + StepShape_ShellBasedSurfaceModel.cxx + StepShape_ShellBasedSurfaceModel.hxx + StepShape_SolidModel.cxx + StepShape_SolidModel.hxx + StepShape_SolidReplica.cxx + StepShape_SolidReplica.hxx + StepShape_Sphere.cxx + StepShape_Sphere.hxx + StepShape_Subedge.cxx + StepShape_Subedge.hxx + StepShape_Subface.cxx + StepShape_Subface.hxx + StepShape_SurfaceModel.cxx + StepShape_SurfaceModel.hxx + StepShape_SweptAreaSolid.cxx + StepShape_SweptAreaSolid.hxx + StepShape_SweptFaceSolid.cxx + StepShape_SweptFaceSolid.hxx + StepShape_ToleranceMethodDefinition.cxx + StepShape_ToleranceMethodDefinition.hxx + StepShape_ToleranceValue.cxx + StepShape_ToleranceValue.hxx + StepShape_TopologicalRepresentationItem.cxx + StepShape_TopologicalRepresentationItem.hxx + StepShape_Torus.cxx + StepShape_Torus.hxx + StepShape_TransitionalShapeRepresentation.cxx + StepShape_TransitionalShapeRepresentation.hxx + StepShape_TypeQualifier.cxx + StepShape_TypeQualifier.hxx + StepShape_ValueFormatTypeQualifier.cxx + StepShape_ValueFormatTypeQualifier.hxx + StepShape_ValueQualifier.cxx + StepShape_ValueQualifier.hxx + StepShape_Vertex.cxx + StepShape_Vertex.hxx + StepShape_VertexLoop.cxx + StepShape_VertexLoop.hxx + StepShape_VertexPoint.cxx + StepShape_VertexPoint.hxx +) diff --git a/src/StepShape/StepShape_AdvancedBrepShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_AdvancedBrepShapeRepresentation.cxx similarity index 100% rename from src/StepShape/StepShape_AdvancedBrepShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_AdvancedBrepShapeRepresentation.cxx diff --git a/src/StepShape/StepShape_AdvancedBrepShapeRepresentation.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_AdvancedBrepShapeRepresentation.hxx similarity index 100% rename from src/StepShape/StepShape_AdvancedBrepShapeRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_AdvancedBrepShapeRepresentation.hxx diff --git a/src/StepShape/StepShape_AdvancedFace.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_AdvancedFace.cxx similarity index 100% rename from src/StepShape/StepShape_AdvancedFace.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_AdvancedFace.cxx diff --git a/src/StepShape/StepShape_AdvancedFace.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_AdvancedFace.hxx similarity index 100% rename from src/StepShape/StepShape_AdvancedFace.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_AdvancedFace.hxx diff --git a/src/StepShape/StepShape_AngleRelator.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_AngleRelator.hxx similarity index 100% rename from src/StepShape/StepShape_AngleRelator.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_AngleRelator.hxx diff --git a/src/StepShape/StepShape_AngularLocation.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_AngularLocation.cxx similarity index 100% rename from src/StepShape/StepShape_AngularLocation.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_AngularLocation.cxx diff --git a/src/StepShape/StepShape_AngularLocation.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_AngularLocation.hxx similarity index 100% rename from src/StepShape/StepShape_AngularLocation.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_AngularLocation.hxx diff --git a/src/StepShape/StepShape_AngularSize.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_AngularSize.cxx similarity index 100% rename from src/StepShape/StepShape_AngularSize.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_AngularSize.cxx diff --git a/src/StepShape/StepShape_AngularSize.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_AngularSize.hxx similarity index 100% rename from src/StepShape/StepShape_AngularSize.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_AngularSize.hxx diff --git a/src/StepShape/StepShape_Array1OfConnectedEdgeSet.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Array1OfConnectedEdgeSet.hxx similarity index 100% rename from src/StepShape/StepShape_Array1OfConnectedEdgeSet.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Array1OfConnectedEdgeSet.hxx diff --git a/src/StepShape/StepShape_Array1OfConnectedFaceSet.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Array1OfConnectedFaceSet.hxx similarity index 100% rename from src/StepShape/StepShape_Array1OfConnectedFaceSet.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Array1OfConnectedFaceSet.hxx diff --git a/src/StepShape/StepShape_Array1OfEdge.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Array1OfEdge.hxx similarity index 100% rename from src/StepShape/StepShape_Array1OfEdge.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Array1OfEdge.hxx diff --git a/src/StepShape/StepShape_Array1OfFace.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Array1OfFace.hxx similarity index 100% rename from src/StepShape/StepShape_Array1OfFace.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Array1OfFace.hxx diff --git a/src/StepShape/StepShape_Array1OfFaceBound.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Array1OfFaceBound.hxx similarity index 100% rename from src/StepShape/StepShape_Array1OfFaceBound.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Array1OfFaceBound.hxx diff --git a/src/StepShape/StepShape_Array1OfGeometricSetSelect.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Array1OfGeometricSetSelect.hxx similarity index 100% rename from src/StepShape/StepShape_Array1OfGeometricSetSelect.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Array1OfGeometricSetSelect.hxx diff --git a/src/StepShape/StepShape_Array1OfOrientedClosedShell.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Array1OfOrientedClosedShell.hxx similarity index 100% rename from src/StepShape/StepShape_Array1OfOrientedClosedShell.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Array1OfOrientedClosedShell.hxx diff --git a/src/StepShape/StepShape_Array1OfOrientedEdge.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Array1OfOrientedEdge.hxx similarity index 100% rename from src/StepShape/StepShape_Array1OfOrientedEdge.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Array1OfOrientedEdge.hxx diff --git a/src/StepShape/StepShape_Array1OfShapeDimensionRepresentationItem.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Array1OfShapeDimensionRepresentationItem.hxx similarity index 100% rename from src/StepShape/StepShape_Array1OfShapeDimensionRepresentationItem.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Array1OfShapeDimensionRepresentationItem.hxx diff --git a/src/StepShape/StepShape_Array1OfShell.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Array1OfShell.hxx similarity index 100% rename from src/StepShape/StepShape_Array1OfShell.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Array1OfShell.hxx diff --git a/src/StepShape/StepShape_Array1OfValueQualifier.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Array1OfValueQualifier.hxx similarity index 100% rename from src/StepShape/StepShape_Array1OfValueQualifier.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Array1OfValueQualifier.hxx diff --git a/src/StepShape/StepShape_Block.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Block.cxx similarity index 100% rename from src/StepShape/StepShape_Block.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Block.cxx diff --git a/src/StepShape/StepShape_Block.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Block.hxx similarity index 100% rename from src/StepShape/StepShape_Block.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Block.hxx diff --git a/src/StepShape/StepShape_BooleanOperand.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_BooleanOperand.cxx similarity index 100% rename from src/StepShape/StepShape_BooleanOperand.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_BooleanOperand.cxx diff --git a/src/StepShape/StepShape_BooleanOperand.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_BooleanOperand.hxx similarity index 100% rename from src/StepShape/StepShape_BooleanOperand.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_BooleanOperand.hxx diff --git a/src/StepShape/StepShape_BooleanOperator.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_BooleanOperator.hxx similarity index 100% rename from src/StepShape/StepShape_BooleanOperator.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_BooleanOperator.hxx diff --git a/src/StepShape/StepShape_BooleanResult.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_BooleanResult.cxx similarity index 100% rename from src/StepShape/StepShape_BooleanResult.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_BooleanResult.cxx diff --git a/src/StepShape/StepShape_BooleanResult.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_BooleanResult.hxx similarity index 100% rename from src/StepShape/StepShape_BooleanResult.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_BooleanResult.hxx diff --git a/src/StepShape/StepShape_BoxDomain.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_BoxDomain.cxx similarity index 100% rename from src/StepShape/StepShape_BoxDomain.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_BoxDomain.cxx diff --git a/src/StepShape/StepShape_BoxDomain.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_BoxDomain.hxx similarity index 100% rename from src/StepShape/StepShape_BoxDomain.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_BoxDomain.hxx diff --git a/src/StepShape/StepShape_BoxedHalfSpace.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_BoxedHalfSpace.cxx similarity index 100% rename from src/StepShape/StepShape_BoxedHalfSpace.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_BoxedHalfSpace.cxx diff --git a/src/StepShape/StepShape_BoxedHalfSpace.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_BoxedHalfSpace.hxx similarity index 100% rename from src/StepShape/StepShape_BoxedHalfSpace.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_BoxedHalfSpace.hxx diff --git a/src/StepShape/StepShape_BrepWithVoids.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_BrepWithVoids.cxx similarity index 100% rename from src/StepShape/StepShape_BrepWithVoids.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_BrepWithVoids.cxx diff --git a/src/StepShape/StepShape_BrepWithVoids.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_BrepWithVoids.hxx similarity index 100% rename from src/StepShape/StepShape_BrepWithVoids.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_BrepWithVoids.hxx diff --git a/src/StepShape/StepShape_ClosedShell.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ClosedShell.cxx similarity index 100% rename from src/StepShape/StepShape_ClosedShell.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ClosedShell.cxx diff --git a/src/StepShape/StepShape_ClosedShell.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ClosedShell.hxx similarity index 100% rename from src/StepShape/StepShape_ClosedShell.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ClosedShell.hxx diff --git a/src/StepShape/StepShape_CompoundShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_CompoundShapeRepresentation.cxx similarity index 100% rename from src/StepShape/StepShape_CompoundShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_CompoundShapeRepresentation.cxx diff --git a/src/StepShape/StepShape_CompoundShapeRepresentation.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_CompoundShapeRepresentation.hxx similarity index 100% rename from src/StepShape/StepShape_CompoundShapeRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_CompoundShapeRepresentation.hxx diff --git a/src/StepShape/StepShape_ConnectedEdgeSet.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ConnectedEdgeSet.cxx similarity index 100% rename from src/StepShape/StepShape_ConnectedEdgeSet.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ConnectedEdgeSet.cxx diff --git a/src/StepShape/StepShape_ConnectedEdgeSet.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ConnectedEdgeSet.hxx similarity index 100% rename from src/StepShape/StepShape_ConnectedEdgeSet.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ConnectedEdgeSet.hxx diff --git a/src/StepShape/StepShape_ConnectedFaceSet.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ConnectedFaceSet.cxx similarity index 100% rename from src/StepShape/StepShape_ConnectedFaceSet.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ConnectedFaceSet.cxx diff --git a/src/StepShape/StepShape_ConnectedFaceSet.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ConnectedFaceSet.hxx similarity index 100% rename from src/StepShape/StepShape_ConnectedFaceSet.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ConnectedFaceSet.hxx diff --git a/src/StepShape/StepShape_ConnectedFaceShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ConnectedFaceShapeRepresentation.cxx similarity index 100% rename from src/StepShape/StepShape_ConnectedFaceShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ConnectedFaceShapeRepresentation.cxx diff --git a/src/StepShape/StepShape_ConnectedFaceShapeRepresentation.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ConnectedFaceShapeRepresentation.hxx similarity index 100% rename from src/StepShape/StepShape_ConnectedFaceShapeRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ConnectedFaceShapeRepresentation.hxx diff --git a/src/StepShape/StepShape_ConnectedFaceSubSet.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ConnectedFaceSubSet.cxx similarity index 100% rename from src/StepShape/StepShape_ConnectedFaceSubSet.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ConnectedFaceSubSet.cxx diff --git a/src/StepShape/StepShape_ConnectedFaceSubSet.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ConnectedFaceSubSet.hxx similarity index 100% rename from src/StepShape/StepShape_ConnectedFaceSubSet.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ConnectedFaceSubSet.hxx diff --git a/src/StepShape/StepShape_ContextDependentShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ContextDependentShapeRepresentation.cxx similarity index 100% rename from src/StepShape/StepShape_ContextDependentShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ContextDependentShapeRepresentation.cxx diff --git a/src/StepShape/StepShape_ContextDependentShapeRepresentation.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ContextDependentShapeRepresentation.hxx similarity index 100% rename from src/StepShape/StepShape_ContextDependentShapeRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ContextDependentShapeRepresentation.hxx diff --git a/src/StepShape/StepShape_CsgPrimitive.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_CsgPrimitive.cxx similarity index 100% rename from src/StepShape/StepShape_CsgPrimitive.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_CsgPrimitive.cxx diff --git a/src/StepShape/StepShape_CsgPrimitive.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_CsgPrimitive.hxx similarity index 100% rename from src/StepShape/StepShape_CsgPrimitive.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_CsgPrimitive.hxx diff --git a/src/StepShape/StepShape_CsgSelect.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_CsgSelect.cxx similarity index 100% rename from src/StepShape/StepShape_CsgSelect.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_CsgSelect.cxx diff --git a/src/StepShape/StepShape_CsgSelect.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_CsgSelect.hxx similarity index 100% rename from src/StepShape/StepShape_CsgSelect.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_CsgSelect.hxx diff --git a/src/StepShape/StepShape_CsgShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_CsgShapeRepresentation.cxx similarity index 100% rename from src/StepShape/StepShape_CsgShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_CsgShapeRepresentation.cxx diff --git a/src/StepShape/StepShape_CsgShapeRepresentation.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_CsgShapeRepresentation.hxx similarity index 100% rename from src/StepShape/StepShape_CsgShapeRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_CsgShapeRepresentation.hxx diff --git a/src/StepShape/StepShape_CsgSolid.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_CsgSolid.cxx similarity index 100% rename from src/StepShape/StepShape_CsgSolid.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_CsgSolid.cxx diff --git a/src/StepShape/StepShape_CsgSolid.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_CsgSolid.hxx similarity index 100% rename from src/StepShape/StepShape_CsgSolid.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_CsgSolid.hxx diff --git a/src/StepShape/StepShape_DefinitionalRepresentationAndShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_DefinitionalRepresentationAndShapeRepresentation.cxx similarity index 100% rename from src/StepShape/StepShape_DefinitionalRepresentationAndShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_DefinitionalRepresentationAndShapeRepresentation.cxx diff --git a/src/StepShape/StepShape_DefinitionalRepresentationAndShapeRepresentation.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_DefinitionalRepresentationAndShapeRepresentation.hxx similarity index 100% rename from src/StepShape/StepShape_DefinitionalRepresentationAndShapeRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_DefinitionalRepresentationAndShapeRepresentation.hxx diff --git a/src/StepShape/StepShape_DimensionalCharacteristic.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_DimensionalCharacteristic.cxx similarity index 100% rename from src/StepShape/StepShape_DimensionalCharacteristic.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_DimensionalCharacteristic.cxx diff --git a/src/StepShape/StepShape_DimensionalCharacteristic.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_DimensionalCharacteristic.hxx similarity index 100% rename from src/StepShape/StepShape_DimensionalCharacteristic.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_DimensionalCharacteristic.hxx diff --git a/src/StepShape/StepShape_DimensionalCharacteristicRepresentation.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_DimensionalCharacteristicRepresentation.cxx similarity index 100% rename from src/StepShape/StepShape_DimensionalCharacteristicRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_DimensionalCharacteristicRepresentation.cxx diff --git a/src/StepShape/StepShape_DimensionalCharacteristicRepresentation.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_DimensionalCharacteristicRepresentation.hxx similarity index 100% rename from src/StepShape/StepShape_DimensionalCharacteristicRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_DimensionalCharacteristicRepresentation.hxx diff --git a/src/StepShape/StepShape_DimensionalLocation.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_DimensionalLocation.cxx similarity index 100% rename from src/StepShape/StepShape_DimensionalLocation.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_DimensionalLocation.cxx diff --git a/src/StepShape/StepShape_DimensionalLocation.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_DimensionalLocation.hxx similarity index 100% rename from src/StepShape/StepShape_DimensionalLocation.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_DimensionalLocation.hxx diff --git a/src/StepShape/StepShape_DimensionalLocationWithPath.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_DimensionalLocationWithPath.cxx similarity index 100% rename from src/StepShape/StepShape_DimensionalLocationWithPath.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_DimensionalLocationWithPath.cxx diff --git a/src/StepShape/StepShape_DimensionalLocationWithPath.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_DimensionalLocationWithPath.hxx similarity index 100% rename from src/StepShape/StepShape_DimensionalLocationWithPath.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_DimensionalLocationWithPath.hxx diff --git a/src/StepShape/StepShape_DimensionalSize.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_DimensionalSize.cxx similarity index 100% rename from src/StepShape/StepShape_DimensionalSize.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_DimensionalSize.cxx diff --git a/src/StepShape/StepShape_DimensionalSize.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_DimensionalSize.hxx similarity index 100% rename from src/StepShape/StepShape_DimensionalSize.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_DimensionalSize.hxx diff --git a/src/StepShape/StepShape_DimensionalSizeWithPath.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_DimensionalSizeWithPath.cxx similarity index 100% rename from src/StepShape/StepShape_DimensionalSizeWithPath.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_DimensionalSizeWithPath.cxx diff --git a/src/StepShape/StepShape_DimensionalSizeWithPath.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_DimensionalSizeWithPath.hxx similarity index 100% rename from src/StepShape/StepShape_DimensionalSizeWithPath.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_DimensionalSizeWithPath.hxx diff --git a/src/StepShape/StepShape_DirectedDimensionalLocation.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_DirectedDimensionalLocation.cxx similarity index 100% rename from src/StepShape/StepShape_DirectedDimensionalLocation.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_DirectedDimensionalLocation.cxx diff --git a/src/StepShape/StepShape_DirectedDimensionalLocation.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_DirectedDimensionalLocation.hxx similarity index 100% rename from src/StepShape/StepShape_DirectedDimensionalLocation.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_DirectedDimensionalLocation.hxx diff --git a/src/StepShape/StepShape_Edge.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Edge.cxx similarity index 100% rename from src/StepShape/StepShape_Edge.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Edge.cxx diff --git a/src/StepShape/StepShape_Edge.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Edge.hxx similarity index 100% rename from src/StepShape/StepShape_Edge.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Edge.hxx diff --git a/src/StepShape/StepShape_EdgeBasedWireframeModel.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_EdgeBasedWireframeModel.cxx similarity index 100% rename from src/StepShape/StepShape_EdgeBasedWireframeModel.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_EdgeBasedWireframeModel.cxx diff --git a/src/StepShape/StepShape_EdgeBasedWireframeModel.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_EdgeBasedWireframeModel.hxx similarity index 100% rename from src/StepShape/StepShape_EdgeBasedWireframeModel.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_EdgeBasedWireframeModel.hxx diff --git a/src/StepShape/StepShape_EdgeBasedWireframeShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_EdgeBasedWireframeShapeRepresentation.cxx similarity index 100% rename from src/StepShape/StepShape_EdgeBasedWireframeShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_EdgeBasedWireframeShapeRepresentation.cxx diff --git a/src/StepShape/StepShape_EdgeBasedWireframeShapeRepresentation.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_EdgeBasedWireframeShapeRepresentation.hxx similarity index 100% rename from src/StepShape/StepShape_EdgeBasedWireframeShapeRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_EdgeBasedWireframeShapeRepresentation.hxx diff --git a/src/StepShape/StepShape_EdgeCurve.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_EdgeCurve.cxx similarity index 100% rename from src/StepShape/StepShape_EdgeCurve.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_EdgeCurve.cxx diff --git a/src/StepShape/StepShape_EdgeCurve.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_EdgeCurve.hxx similarity index 100% rename from src/StepShape/StepShape_EdgeCurve.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_EdgeCurve.hxx diff --git a/src/StepShape/StepShape_EdgeLoop.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_EdgeLoop.cxx similarity index 100% rename from src/StepShape/StepShape_EdgeLoop.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_EdgeLoop.cxx diff --git a/src/StepShape/StepShape_EdgeLoop.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_EdgeLoop.hxx similarity index 100% rename from src/StepShape/StepShape_EdgeLoop.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_EdgeLoop.hxx diff --git a/src/StepShape/StepShape_ExtrudedAreaSolid.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ExtrudedAreaSolid.cxx similarity index 100% rename from src/StepShape/StepShape_ExtrudedAreaSolid.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ExtrudedAreaSolid.cxx diff --git a/src/StepShape/StepShape_ExtrudedAreaSolid.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ExtrudedAreaSolid.hxx similarity index 100% rename from src/StepShape/StepShape_ExtrudedAreaSolid.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ExtrudedAreaSolid.hxx diff --git a/src/StepShape/StepShape_ExtrudedFaceSolid.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ExtrudedFaceSolid.cxx similarity index 100% rename from src/StepShape/StepShape_ExtrudedFaceSolid.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ExtrudedFaceSolid.cxx diff --git a/src/StepShape/StepShape_ExtrudedFaceSolid.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ExtrudedFaceSolid.hxx similarity index 100% rename from src/StepShape/StepShape_ExtrudedFaceSolid.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ExtrudedFaceSolid.hxx diff --git a/src/StepShape/StepShape_Face.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Face.cxx similarity index 100% rename from src/StepShape/StepShape_Face.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Face.cxx diff --git a/src/StepShape/StepShape_Face.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Face.hxx similarity index 100% rename from src/StepShape/StepShape_Face.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Face.hxx diff --git a/src/StepShape/StepShape_FaceBasedSurfaceModel.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_FaceBasedSurfaceModel.cxx similarity index 100% rename from src/StepShape/StepShape_FaceBasedSurfaceModel.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_FaceBasedSurfaceModel.cxx diff --git a/src/StepShape/StepShape_FaceBasedSurfaceModel.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_FaceBasedSurfaceModel.hxx similarity index 100% rename from src/StepShape/StepShape_FaceBasedSurfaceModel.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_FaceBasedSurfaceModel.hxx diff --git a/src/StepShape/StepShape_FaceBound.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_FaceBound.cxx similarity index 100% rename from src/StepShape/StepShape_FaceBound.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_FaceBound.cxx diff --git a/src/StepShape/StepShape_FaceBound.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_FaceBound.hxx similarity index 100% rename from src/StepShape/StepShape_FaceBound.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_FaceBound.hxx diff --git a/src/StepShape/StepShape_FaceOuterBound.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_FaceOuterBound.cxx similarity index 100% rename from src/StepShape/StepShape_FaceOuterBound.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_FaceOuterBound.cxx diff --git a/src/StepShape/StepShape_FaceOuterBound.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_FaceOuterBound.hxx similarity index 100% rename from src/StepShape/StepShape_FaceOuterBound.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_FaceOuterBound.hxx diff --git a/src/StepShape/StepShape_FaceSurface.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_FaceSurface.cxx similarity index 100% rename from src/StepShape/StepShape_FaceSurface.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_FaceSurface.cxx diff --git a/src/StepShape/StepShape_FaceSurface.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_FaceSurface.hxx similarity index 100% rename from src/StepShape/StepShape_FaceSurface.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_FaceSurface.hxx diff --git a/src/StepShape/StepShape_FacetedBrep.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_FacetedBrep.cxx similarity index 100% rename from src/StepShape/StepShape_FacetedBrep.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_FacetedBrep.cxx diff --git a/src/StepShape/StepShape_FacetedBrep.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_FacetedBrep.hxx similarity index 100% rename from src/StepShape/StepShape_FacetedBrep.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_FacetedBrep.hxx diff --git a/src/StepShape/StepShape_FacetedBrepAndBrepWithVoids.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_FacetedBrepAndBrepWithVoids.cxx similarity index 100% rename from src/StepShape/StepShape_FacetedBrepAndBrepWithVoids.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_FacetedBrepAndBrepWithVoids.cxx diff --git a/src/StepShape/StepShape_FacetedBrepAndBrepWithVoids.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_FacetedBrepAndBrepWithVoids.hxx similarity index 100% rename from src/StepShape/StepShape_FacetedBrepAndBrepWithVoids.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_FacetedBrepAndBrepWithVoids.hxx diff --git a/src/StepShape/StepShape_FacetedBrepShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_FacetedBrepShapeRepresentation.cxx similarity index 100% rename from src/StepShape/StepShape_FacetedBrepShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_FacetedBrepShapeRepresentation.cxx diff --git a/src/StepShape/StepShape_FacetedBrepShapeRepresentation.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_FacetedBrepShapeRepresentation.hxx similarity index 100% rename from src/StepShape/StepShape_FacetedBrepShapeRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_FacetedBrepShapeRepresentation.hxx diff --git a/src/StepShape/StepShape_GeometricCurveSet.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_GeometricCurveSet.cxx similarity index 100% rename from src/StepShape/StepShape_GeometricCurveSet.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_GeometricCurveSet.cxx diff --git a/src/StepShape/StepShape_GeometricCurveSet.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_GeometricCurveSet.hxx similarity index 100% rename from src/StepShape/StepShape_GeometricCurveSet.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_GeometricCurveSet.hxx diff --git a/src/StepShape/StepShape_GeometricSet.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_GeometricSet.cxx similarity index 100% rename from src/StepShape/StepShape_GeometricSet.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_GeometricSet.cxx diff --git a/src/StepShape/StepShape_GeometricSet.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_GeometricSet.hxx similarity index 100% rename from src/StepShape/StepShape_GeometricSet.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_GeometricSet.hxx diff --git a/src/StepShape/StepShape_GeometricSetSelect.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_GeometricSetSelect.cxx similarity index 100% rename from src/StepShape/StepShape_GeometricSetSelect.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_GeometricSetSelect.cxx diff --git a/src/StepShape/StepShape_GeometricSetSelect.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_GeometricSetSelect.hxx similarity index 100% rename from src/StepShape/StepShape_GeometricSetSelect.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_GeometricSetSelect.hxx diff --git a/src/StepShape/StepShape_GeometricallyBoundedSurfaceShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_GeometricallyBoundedSurfaceShapeRepresentation.cxx similarity index 100% rename from src/StepShape/StepShape_GeometricallyBoundedSurfaceShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_GeometricallyBoundedSurfaceShapeRepresentation.cxx diff --git a/src/StepShape/StepShape_GeometricallyBoundedSurfaceShapeRepresentation.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_GeometricallyBoundedSurfaceShapeRepresentation.hxx similarity index 100% rename from src/StepShape/StepShape_GeometricallyBoundedSurfaceShapeRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_GeometricallyBoundedSurfaceShapeRepresentation.hxx diff --git a/src/StepShape/StepShape_GeometricallyBoundedWireframeShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_GeometricallyBoundedWireframeShapeRepresentation.cxx similarity index 100% rename from src/StepShape/StepShape_GeometricallyBoundedWireframeShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_GeometricallyBoundedWireframeShapeRepresentation.cxx diff --git a/src/StepShape/StepShape_GeometricallyBoundedWireframeShapeRepresentation.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_GeometricallyBoundedWireframeShapeRepresentation.hxx similarity index 100% rename from src/StepShape/StepShape_GeometricallyBoundedWireframeShapeRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_GeometricallyBoundedWireframeShapeRepresentation.hxx diff --git a/src/StepShape/StepShape_HArray1OfConnectedEdgeSet.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_HArray1OfConnectedEdgeSet.hxx similarity index 100% rename from src/StepShape/StepShape_HArray1OfConnectedEdgeSet.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_HArray1OfConnectedEdgeSet.hxx diff --git a/src/StepShape/StepShape_HArray1OfConnectedFaceSet.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_HArray1OfConnectedFaceSet.hxx similarity index 100% rename from src/StepShape/StepShape_HArray1OfConnectedFaceSet.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_HArray1OfConnectedFaceSet.hxx diff --git a/src/StepShape/StepShape_HArray1OfEdge.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_HArray1OfEdge.hxx similarity index 100% rename from src/StepShape/StepShape_HArray1OfEdge.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_HArray1OfEdge.hxx diff --git a/src/StepShape/StepShape_HArray1OfFace.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_HArray1OfFace.hxx similarity index 100% rename from src/StepShape/StepShape_HArray1OfFace.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_HArray1OfFace.hxx diff --git a/src/StepShape/StepShape_HArray1OfFaceBound.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_HArray1OfFaceBound.hxx similarity index 100% rename from src/StepShape/StepShape_HArray1OfFaceBound.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_HArray1OfFaceBound.hxx diff --git a/src/StepShape/StepShape_HArray1OfGeometricSetSelect.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_HArray1OfGeometricSetSelect.hxx similarity index 100% rename from src/StepShape/StepShape_HArray1OfGeometricSetSelect.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_HArray1OfGeometricSetSelect.hxx diff --git a/src/StepShape/StepShape_HArray1OfOrientedClosedShell.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_HArray1OfOrientedClosedShell.hxx similarity index 100% rename from src/StepShape/StepShape_HArray1OfOrientedClosedShell.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_HArray1OfOrientedClosedShell.hxx diff --git a/src/StepShape/StepShape_HArray1OfOrientedEdge.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_HArray1OfOrientedEdge.hxx similarity index 100% rename from src/StepShape/StepShape_HArray1OfOrientedEdge.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_HArray1OfOrientedEdge.hxx diff --git a/src/StepShape/StepShape_HArray1OfShapeDimensionRepresentationItem.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_HArray1OfShapeDimensionRepresentationItem.hxx similarity index 100% rename from src/StepShape/StepShape_HArray1OfShapeDimensionRepresentationItem.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_HArray1OfShapeDimensionRepresentationItem.hxx diff --git a/src/StepShape/StepShape_HArray1OfShell.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_HArray1OfShell.hxx similarity index 100% rename from src/StepShape/StepShape_HArray1OfShell.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_HArray1OfShell.hxx diff --git a/src/StepShape/StepShape_HArray1OfValueQualifier.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_HArray1OfValueQualifier.hxx similarity index 100% rename from src/StepShape/StepShape_HArray1OfValueQualifier.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_HArray1OfValueQualifier.hxx diff --git a/src/StepShape/StepShape_HalfSpaceSolid.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_HalfSpaceSolid.cxx similarity index 100% rename from src/StepShape/StepShape_HalfSpaceSolid.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_HalfSpaceSolid.cxx diff --git a/src/StepShape/StepShape_HalfSpaceSolid.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_HalfSpaceSolid.hxx similarity index 100% rename from src/StepShape/StepShape_HalfSpaceSolid.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_HalfSpaceSolid.hxx diff --git a/src/StepShape/StepShape_LimitsAndFits.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_LimitsAndFits.cxx similarity index 100% rename from src/StepShape/StepShape_LimitsAndFits.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_LimitsAndFits.cxx diff --git a/src/StepShape/StepShape_LimitsAndFits.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_LimitsAndFits.hxx similarity index 100% rename from src/StepShape/StepShape_LimitsAndFits.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_LimitsAndFits.hxx diff --git a/src/StepShape/StepShape_Loop.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Loop.cxx similarity index 100% rename from src/StepShape/StepShape_Loop.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Loop.cxx diff --git a/src/StepShape/StepShape_Loop.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Loop.hxx similarity index 100% rename from src/StepShape/StepShape_Loop.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Loop.hxx diff --git a/src/StepShape/StepShape_LoopAndPath.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_LoopAndPath.cxx similarity index 100% rename from src/StepShape/StepShape_LoopAndPath.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_LoopAndPath.cxx diff --git a/src/StepShape/StepShape_LoopAndPath.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_LoopAndPath.hxx similarity index 100% rename from src/StepShape/StepShape_LoopAndPath.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_LoopAndPath.hxx diff --git a/src/StepShape/StepShape_ManifoldSolidBrep.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ManifoldSolidBrep.cxx similarity index 100% rename from src/StepShape/StepShape_ManifoldSolidBrep.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ManifoldSolidBrep.cxx diff --git a/src/StepShape/StepShape_ManifoldSolidBrep.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ManifoldSolidBrep.hxx similarity index 100% rename from src/StepShape/StepShape_ManifoldSolidBrep.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ManifoldSolidBrep.hxx diff --git a/src/StepShape/StepShape_ManifoldSurfaceShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ManifoldSurfaceShapeRepresentation.cxx similarity index 100% rename from src/StepShape/StepShape_ManifoldSurfaceShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ManifoldSurfaceShapeRepresentation.cxx diff --git a/src/StepShape/StepShape_ManifoldSurfaceShapeRepresentation.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ManifoldSurfaceShapeRepresentation.hxx similarity index 100% rename from src/StepShape/StepShape_ManifoldSurfaceShapeRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ManifoldSurfaceShapeRepresentation.hxx diff --git a/src/StepShape/StepShape_MeasureQualification.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_MeasureQualification.cxx similarity index 100% rename from src/StepShape/StepShape_MeasureQualification.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_MeasureQualification.cxx diff --git a/src/StepShape/StepShape_MeasureQualification.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_MeasureQualification.hxx similarity index 100% rename from src/StepShape/StepShape_MeasureQualification.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_MeasureQualification.hxx diff --git a/src/StepShape/StepShape_MeasureRepresentationItemAndQualifiedRepresentationItem.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_MeasureRepresentationItemAndQualifiedRepresentationItem.cxx similarity index 100% rename from src/StepShape/StepShape_MeasureRepresentationItemAndQualifiedRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_MeasureRepresentationItemAndQualifiedRepresentationItem.cxx diff --git a/src/StepShape/StepShape_MeasureRepresentationItemAndQualifiedRepresentationItem.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_MeasureRepresentationItemAndQualifiedRepresentationItem.hxx similarity index 100% rename from src/StepShape/StepShape_MeasureRepresentationItemAndQualifiedRepresentationItem.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_MeasureRepresentationItemAndQualifiedRepresentationItem.hxx diff --git a/src/StepShape/StepShape_NonManifoldSurfaceShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_NonManifoldSurfaceShapeRepresentation.cxx similarity index 100% rename from src/StepShape/StepShape_NonManifoldSurfaceShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_NonManifoldSurfaceShapeRepresentation.cxx diff --git a/src/StepShape/StepShape_NonManifoldSurfaceShapeRepresentation.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_NonManifoldSurfaceShapeRepresentation.hxx similarity index 100% rename from src/StepShape/StepShape_NonManifoldSurfaceShapeRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_NonManifoldSurfaceShapeRepresentation.hxx diff --git a/src/StepShape/StepShape_OpenShell.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_OpenShell.cxx similarity index 100% rename from src/StepShape/StepShape_OpenShell.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_OpenShell.cxx diff --git a/src/StepShape/StepShape_OpenShell.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_OpenShell.hxx similarity index 100% rename from src/StepShape/StepShape_OpenShell.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_OpenShell.hxx diff --git a/src/StepShape/StepShape_OrientedClosedShell.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_OrientedClosedShell.cxx similarity index 100% rename from src/StepShape/StepShape_OrientedClosedShell.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_OrientedClosedShell.cxx diff --git a/src/StepShape/StepShape_OrientedClosedShell.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_OrientedClosedShell.hxx similarity index 100% rename from src/StepShape/StepShape_OrientedClosedShell.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_OrientedClosedShell.hxx diff --git a/src/StepShape/StepShape_OrientedEdge.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_OrientedEdge.cxx similarity index 100% rename from src/StepShape/StepShape_OrientedEdge.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_OrientedEdge.cxx diff --git a/src/StepShape/StepShape_OrientedEdge.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_OrientedEdge.hxx similarity index 100% rename from src/StepShape/StepShape_OrientedEdge.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_OrientedEdge.hxx diff --git a/src/StepShape/StepShape_OrientedFace.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_OrientedFace.cxx similarity index 100% rename from src/StepShape/StepShape_OrientedFace.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_OrientedFace.cxx diff --git a/src/StepShape/StepShape_OrientedFace.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_OrientedFace.hxx similarity index 100% rename from src/StepShape/StepShape_OrientedFace.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_OrientedFace.hxx diff --git a/src/StepShape/StepShape_OrientedOpenShell.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_OrientedOpenShell.cxx similarity index 100% rename from src/StepShape/StepShape_OrientedOpenShell.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_OrientedOpenShell.cxx diff --git a/src/StepShape/StepShape_OrientedOpenShell.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_OrientedOpenShell.hxx similarity index 100% rename from src/StepShape/StepShape_OrientedOpenShell.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_OrientedOpenShell.hxx diff --git a/src/StepShape/StepShape_OrientedPath.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_OrientedPath.cxx similarity index 100% rename from src/StepShape/StepShape_OrientedPath.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_OrientedPath.cxx diff --git a/src/StepShape/StepShape_OrientedPath.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_OrientedPath.hxx similarity index 100% rename from src/StepShape/StepShape_OrientedPath.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_OrientedPath.hxx diff --git a/src/StepShape/StepShape_Path.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Path.cxx similarity index 100% rename from src/StepShape/StepShape_Path.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Path.cxx diff --git a/src/StepShape/StepShape_Path.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Path.hxx similarity index 100% rename from src/StepShape/StepShape_Path.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Path.hxx diff --git a/src/StepShape/StepShape_PlusMinusTolerance.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_PlusMinusTolerance.cxx similarity index 100% rename from src/StepShape/StepShape_PlusMinusTolerance.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_PlusMinusTolerance.cxx diff --git a/src/StepShape/StepShape_PlusMinusTolerance.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_PlusMinusTolerance.hxx similarity index 100% rename from src/StepShape/StepShape_PlusMinusTolerance.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_PlusMinusTolerance.hxx diff --git a/src/StepShape/StepShape_PointRepresentation.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_PointRepresentation.cxx similarity index 100% rename from src/StepShape/StepShape_PointRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_PointRepresentation.cxx diff --git a/src/StepShape/StepShape_PointRepresentation.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_PointRepresentation.hxx similarity index 100% rename from src/StepShape/StepShape_PointRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_PointRepresentation.hxx diff --git a/src/StepShape/StepShape_PolyLoop.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_PolyLoop.cxx similarity index 100% rename from src/StepShape/StepShape_PolyLoop.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_PolyLoop.cxx diff --git a/src/StepShape/StepShape_PolyLoop.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_PolyLoop.hxx similarity index 100% rename from src/StepShape/StepShape_PolyLoop.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_PolyLoop.hxx diff --git a/src/StepShape/StepShape_PrecisionQualifier.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_PrecisionQualifier.cxx similarity index 100% rename from src/StepShape/StepShape_PrecisionQualifier.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_PrecisionQualifier.cxx diff --git a/src/StepShape/StepShape_PrecisionQualifier.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_PrecisionQualifier.hxx similarity index 100% rename from src/StepShape/StepShape_PrecisionQualifier.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_PrecisionQualifier.hxx diff --git a/src/StepShape/StepShape_QualifiedRepresentationItem.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_QualifiedRepresentationItem.cxx similarity index 100% rename from src/StepShape/StepShape_QualifiedRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_QualifiedRepresentationItem.cxx diff --git a/src/StepShape/StepShape_QualifiedRepresentationItem.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_QualifiedRepresentationItem.hxx similarity index 100% rename from src/StepShape/StepShape_QualifiedRepresentationItem.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_QualifiedRepresentationItem.hxx diff --git a/src/StepShape/StepShape_ReversibleTopologyItem.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ReversibleTopologyItem.cxx similarity index 100% rename from src/StepShape/StepShape_ReversibleTopologyItem.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ReversibleTopologyItem.cxx diff --git a/src/StepShape/StepShape_ReversibleTopologyItem.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ReversibleTopologyItem.hxx similarity index 100% rename from src/StepShape/StepShape_ReversibleTopologyItem.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ReversibleTopologyItem.hxx diff --git a/src/StepShape/StepShape_RevolvedAreaSolid.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_RevolvedAreaSolid.cxx similarity index 100% rename from src/StepShape/StepShape_RevolvedAreaSolid.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_RevolvedAreaSolid.cxx diff --git a/src/StepShape/StepShape_RevolvedAreaSolid.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_RevolvedAreaSolid.hxx similarity index 100% rename from src/StepShape/StepShape_RevolvedAreaSolid.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_RevolvedAreaSolid.hxx diff --git a/src/StepShape/StepShape_RevolvedFaceSolid.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_RevolvedFaceSolid.cxx similarity index 100% rename from src/StepShape/StepShape_RevolvedFaceSolid.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_RevolvedFaceSolid.cxx diff --git a/src/StepShape/StepShape_RevolvedFaceSolid.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_RevolvedFaceSolid.hxx similarity index 100% rename from src/StepShape/StepShape_RevolvedFaceSolid.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_RevolvedFaceSolid.hxx diff --git a/src/StepShape/StepShape_RightAngularWedge.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_RightAngularWedge.cxx similarity index 100% rename from src/StepShape/StepShape_RightAngularWedge.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_RightAngularWedge.cxx diff --git a/src/StepShape/StepShape_RightAngularWedge.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_RightAngularWedge.hxx similarity index 100% rename from src/StepShape/StepShape_RightAngularWedge.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_RightAngularWedge.hxx diff --git a/src/StepShape/StepShape_RightCircularCone.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_RightCircularCone.cxx similarity index 100% rename from src/StepShape/StepShape_RightCircularCone.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_RightCircularCone.cxx diff --git a/src/StepShape/StepShape_RightCircularCone.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_RightCircularCone.hxx similarity index 100% rename from src/StepShape/StepShape_RightCircularCone.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_RightCircularCone.hxx diff --git a/src/StepShape/StepShape_RightCircularCylinder.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_RightCircularCylinder.cxx similarity index 100% rename from src/StepShape/StepShape_RightCircularCylinder.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_RightCircularCylinder.cxx diff --git a/src/StepShape/StepShape_RightCircularCylinder.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_RightCircularCylinder.hxx similarity index 100% rename from src/StepShape/StepShape_RightCircularCylinder.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_RightCircularCylinder.hxx diff --git a/src/StepShape/StepShape_SeamEdge.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_SeamEdge.cxx similarity index 100% rename from src/StepShape/StepShape_SeamEdge.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_SeamEdge.cxx diff --git a/src/StepShape/StepShape_SeamEdge.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_SeamEdge.hxx similarity index 100% rename from src/StepShape/StepShape_SeamEdge.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_SeamEdge.hxx diff --git a/src/StepShape/StepShape_ShapeDefinitionRepresentation.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ShapeDefinitionRepresentation.cxx similarity index 100% rename from src/StepShape/StepShape_ShapeDefinitionRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ShapeDefinitionRepresentation.cxx diff --git a/src/StepShape/StepShape_ShapeDefinitionRepresentation.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ShapeDefinitionRepresentation.hxx similarity index 100% rename from src/StepShape/StepShape_ShapeDefinitionRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ShapeDefinitionRepresentation.hxx diff --git a/src/StepShape/StepShape_ShapeDimensionRepresentation.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ShapeDimensionRepresentation.cxx similarity index 100% rename from src/StepShape/StepShape_ShapeDimensionRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ShapeDimensionRepresentation.cxx diff --git a/src/StepShape/StepShape_ShapeDimensionRepresentation.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ShapeDimensionRepresentation.hxx similarity index 100% rename from src/StepShape/StepShape_ShapeDimensionRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ShapeDimensionRepresentation.hxx diff --git a/src/StepShape/StepShape_ShapeDimensionRepresentationItem.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ShapeDimensionRepresentationItem.cxx similarity index 100% rename from src/StepShape/StepShape_ShapeDimensionRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ShapeDimensionRepresentationItem.cxx diff --git a/src/StepShape/StepShape_ShapeDimensionRepresentationItem.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ShapeDimensionRepresentationItem.hxx similarity index 100% rename from src/StepShape/StepShape_ShapeDimensionRepresentationItem.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ShapeDimensionRepresentationItem.hxx diff --git a/src/StepShape/StepShape_ShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ShapeRepresentation.cxx similarity index 100% rename from src/StepShape/StepShape_ShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ShapeRepresentation.cxx diff --git a/src/StepShape/StepShape_ShapeRepresentation.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ShapeRepresentation.hxx similarity index 100% rename from src/StepShape/StepShape_ShapeRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ShapeRepresentation.hxx diff --git a/src/StepShape/StepShape_ShapeRepresentationWithParameters.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ShapeRepresentationWithParameters.cxx similarity index 100% rename from src/StepShape/StepShape_ShapeRepresentationWithParameters.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ShapeRepresentationWithParameters.cxx diff --git a/src/StepShape/StepShape_ShapeRepresentationWithParameters.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ShapeRepresentationWithParameters.hxx similarity index 100% rename from src/StepShape/StepShape_ShapeRepresentationWithParameters.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ShapeRepresentationWithParameters.hxx diff --git a/src/StepShape/StepShape_Shell.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Shell.cxx similarity index 100% rename from src/StepShape/StepShape_Shell.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Shell.cxx diff --git a/src/StepShape/StepShape_Shell.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Shell.hxx similarity index 100% rename from src/StepShape/StepShape_Shell.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Shell.hxx diff --git a/src/StepShape/StepShape_ShellBasedSurfaceModel.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ShellBasedSurfaceModel.cxx similarity index 100% rename from src/StepShape/StepShape_ShellBasedSurfaceModel.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ShellBasedSurfaceModel.cxx diff --git a/src/StepShape/StepShape_ShellBasedSurfaceModel.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ShellBasedSurfaceModel.hxx similarity index 100% rename from src/StepShape/StepShape_ShellBasedSurfaceModel.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ShellBasedSurfaceModel.hxx diff --git a/src/StepShape/StepShape_SolidModel.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_SolidModel.cxx similarity index 100% rename from src/StepShape/StepShape_SolidModel.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_SolidModel.cxx diff --git a/src/StepShape/StepShape_SolidModel.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_SolidModel.hxx similarity index 100% rename from src/StepShape/StepShape_SolidModel.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_SolidModel.hxx diff --git a/src/StepShape/StepShape_SolidReplica.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_SolidReplica.cxx similarity index 100% rename from src/StepShape/StepShape_SolidReplica.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_SolidReplica.cxx diff --git a/src/StepShape/StepShape_SolidReplica.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_SolidReplica.hxx similarity index 100% rename from src/StepShape/StepShape_SolidReplica.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_SolidReplica.hxx diff --git a/src/StepShape/StepShape_Sphere.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Sphere.cxx similarity index 100% rename from src/StepShape/StepShape_Sphere.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Sphere.cxx diff --git a/src/StepShape/StepShape_Sphere.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Sphere.hxx similarity index 100% rename from src/StepShape/StepShape_Sphere.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Sphere.hxx diff --git a/src/StepShape/StepShape_Subedge.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Subedge.cxx similarity index 100% rename from src/StepShape/StepShape_Subedge.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Subedge.cxx diff --git a/src/StepShape/StepShape_Subedge.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Subedge.hxx similarity index 100% rename from src/StepShape/StepShape_Subedge.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Subedge.hxx diff --git a/src/StepShape/StepShape_Subface.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Subface.cxx similarity index 100% rename from src/StepShape/StepShape_Subface.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Subface.cxx diff --git a/src/StepShape/StepShape_Subface.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Subface.hxx similarity index 100% rename from src/StepShape/StepShape_Subface.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Subface.hxx diff --git a/src/StepShape/StepShape_SurfaceModel.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_SurfaceModel.cxx similarity index 100% rename from src/StepShape/StepShape_SurfaceModel.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_SurfaceModel.cxx diff --git a/src/StepShape/StepShape_SurfaceModel.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_SurfaceModel.hxx similarity index 100% rename from src/StepShape/StepShape_SurfaceModel.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_SurfaceModel.hxx diff --git a/src/StepShape/StepShape_SweptAreaSolid.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_SweptAreaSolid.cxx similarity index 100% rename from src/StepShape/StepShape_SweptAreaSolid.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_SweptAreaSolid.cxx diff --git a/src/StepShape/StepShape_SweptAreaSolid.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_SweptAreaSolid.hxx similarity index 100% rename from src/StepShape/StepShape_SweptAreaSolid.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_SweptAreaSolid.hxx diff --git a/src/StepShape/StepShape_SweptFaceSolid.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_SweptFaceSolid.cxx similarity index 100% rename from src/StepShape/StepShape_SweptFaceSolid.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_SweptFaceSolid.cxx diff --git a/src/StepShape/StepShape_SweptFaceSolid.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_SweptFaceSolid.hxx similarity index 100% rename from src/StepShape/StepShape_SweptFaceSolid.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_SweptFaceSolid.hxx diff --git a/src/StepShape/StepShape_ToleranceMethodDefinition.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ToleranceMethodDefinition.cxx similarity index 100% rename from src/StepShape/StepShape_ToleranceMethodDefinition.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ToleranceMethodDefinition.cxx diff --git a/src/StepShape/StepShape_ToleranceMethodDefinition.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ToleranceMethodDefinition.hxx similarity index 100% rename from src/StepShape/StepShape_ToleranceMethodDefinition.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ToleranceMethodDefinition.hxx diff --git a/src/StepShape/StepShape_ToleranceValue.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ToleranceValue.cxx similarity index 100% rename from src/StepShape/StepShape_ToleranceValue.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ToleranceValue.cxx diff --git a/src/StepShape/StepShape_ToleranceValue.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ToleranceValue.hxx similarity index 100% rename from src/StepShape/StepShape_ToleranceValue.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ToleranceValue.hxx diff --git a/src/StepShape/StepShape_TopologicalRepresentationItem.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_TopologicalRepresentationItem.cxx similarity index 100% rename from src/StepShape/StepShape_TopologicalRepresentationItem.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_TopologicalRepresentationItem.cxx diff --git a/src/StepShape/StepShape_TopologicalRepresentationItem.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_TopologicalRepresentationItem.hxx similarity index 100% rename from src/StepShape/StepShape_TopologicalRepresentationItem.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_TopologicalRepresentationItem.hxx diff --git a/src/StepShape/StepShape_Torus.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Torus.cxx similarity index 100% rename from src/StepShape/StepShape_Torus.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Torus.cxx diff --git a/src/StepShape/StepShape_Torus.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Torus.hxx similarity index 100% rename from src/StepShape/StepShape_Torus.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Torus.hxx diff --git a/src/StepShape/StepShape_TransitionalShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_TransitionalShapeRepresentation.cxx similarity index 100% rename from src/StepShape/StepShape_TransitionalShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_TransitionalShapeRepresentation.cxx diff --git a/src/StepShape/StepShape_TransitionalShapeRepresentation.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_TransitionalShapeRepresentation.hxx similarity index 100% rename from src/StepShape/StepShape_TransitionalShapeRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_TransitionalShapeRepresentation.hxx diff --git a/src/StepShape/StepShape_TypeQualifier.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_TypeQualifier.cxx similarity index 100% rename from src/StepShape/StepShape_TypeQualifier.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_TypeQualifier.cxx diff --git a/src/StepShape/StepShape_TypeQualifier.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_TypeQualifier.hxx similarity index 100% rename from src/StepShape/StepShape_TypeQualifier.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_TypeQualifier.hxx diff --git a/src/StepShape/StepShape_ValueFormatTypeQualifier.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ValueFormatTypeQualifier.cxx similarity index 100% rename from src/StepShape/StepShape_ValueFormatTypeQualifier.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ValueFormatTypeQualifier.cxx diff --git a/src/StepShape/StepShape_ValueFormatTypeQualifier.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ValueFormatTypeQualifier.hxx similarity index 100% rename from src/StepShape/StepShape_ValueFormatTypeQualifier.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ValueFormatTypeQualifier.hxx diff --git a/src/StepShape/StepShape_ValueQualifier.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ValueQualifier.cxx similarity index 100% rename from src/StepShape/StepShape_ValueQualifier.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ValueQualifier.cxx diff --git a/src/StepShape/StepShape_ValueQualifier.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_ValueQualifier.hxx similarity index 100% rename from src/StepShape/StepShape_ValueQualifier.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_ValueQualifier.hxx diff --git a/src/StepShape/StepShape_Vertex.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Vertex.cxx similarity index 100% rename from src/StepShape/StepShape_Vertex.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Vertex.cxx diff --git a/src/StepShape/StepShape_Vertex.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_Vertex.hxx similarity index 100% rename from src/StepShape/StepShape_Vertex.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_Vertex.hxx diff --git a/src/StepShape/StepShape_VertexLoop.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_VertexLoop.cxx similarity index 100% rename from src/StepShape/StepShape_VertexLoop.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_VertexLoop.cxx diff --git a/src/StepShape/StepShape_VertexLoop.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_VertexLoop.hxx similarity index 100% rename from src/StepShape/StepShape_VertexLoop.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_VertexLoop.hxx diff --git a/src/StepShape/StepShape_VertexPoint.cxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_VertexPoint.cxx similarity index 100% rename from src/StepShape/StepShape_VertexPoint.cxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_VertexPoint.cxx diff --git a/src/StepShape/StepShape_VertexPoint.hxx b/src/DataExchange/TKDESTEP/StepShape/StepShape_VertexPoint.hxx similarity index 100% rename from src/StepShape/StepShape_VertexPoint.hxx rename to src/DataExchange/TKDESTEP/StepShape/StepShape_VertexPoint.hxx diff --git a/src/DataExchange/TKDESTEP/StepToGeom/FILES.cmake b/src/DataExchange/TKDESTEP/StepToGeom/FILES.cmake new file mode 100644 index 0000000000..d146645c7e --- /dev/null +++ b/src/DataExchange/TKDESTEP/StepToGeom/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for StepToGeom package +set(OCCT_StepToGeom_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StepToGeom_FILES + StepToGeom.cxx + StepToGeom.hxx +) diff --git a/src/StepToGeom/StepToGeom.cxx b/src/DataExchange/TKDESTEP/StepToGeom/StepToGeom.cxx similarity index 100% rename from src/StepToGeom/StepToGeom.cxx rename to src/DataExchange/TKDESTEP/StepToGeom/StepToGeom.cxx diff --git a/src/StepToGeom/StepToGeom.hxx b/src/DataExchange/TKDESTEP/StepToGeom/StepToGeom.hxx similarity index 100% rename from src/StepToGeom/StepToGeom.hxx rename to src/DataExchange/TKDESTEP/StepToGeom/StepToGeom.hxx diff --git a/src/DataExchange/TKDESTEP/StepToTopoDS/FILES.cmake b/src/DataExchange/TKDESTEP/StepToTopoDS/FILES.cmake new file mode 100644 index 0000000000..756e35b4e9 --- /dev/null +++ b/src/DataExchange/TKDESTEP/StepToTopoDS/FILES.cmake @@ -0,0 +1,63 @@ +# Source files for StepToTopoDS package +set(OCCT_StepToTopoDS_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StepToTopoDS_FILES + StepToTopoDS.cxx + StepToTopoDS.hxx + StepToTopoDS_Builder.cxx + StepToTopoDS_Builder.hxx + StepToTopoDS_BuilderError.hxx + StepToTopoDS_DataMapIteratorOfDataMapOfRI.hxx + StepToTopoDS_DataMapIteratorOfDataMapOfRINames.hxx + StepToTopoDS_DataMapIteratorOfDataMapOfTRI.hxx + StepToTopoDS_DataMapIteratorOfPointEdgeMap.hxx + StepToTopoDS_DataMapIteratorOfPointVertexMap.hxx + StepToTopoDS_DataMapOfRI.hxx + StepToTopoDS_DataMapOfRINames.hxx + StepToTopoDS_DataMapOfTRI.hxx + StepToTopoDS_GeometricTool.cxx + StepToTopoDS_GeometricTool.hxx + StepToTopoDS_GeometricToolError.hxx + StepToTopoDS_MakeTransformed.cxx + StepToTopoDS_MakeTransformed.hxx + StepToTopoDS_NMTool.cxx + StepToTopoDS_NMTool.hxx + StepToTopoDS_PointEdgeMap.hxx + StepToTopoDS_PointPair.cxx + StepToTopoDS_PointPair.hxx + StepToTopoDS_PointVertexMap.hxx + StepToTopoDS_Root.cxx + StepToTopoDS_Root.hxx + StepToTopoDS_Root.lxx + StepToTopoDS_Tool.cxx + StepToTopoDS_Tool.hxx + StepToTopoDS_TranslateCompositeCurve.cxx + StepToTopoDS_TranslateCompositeCurve.hxx + StepToTopoDS_TranslateCompositeCurve.lxx + StepToTopoDS_TranslateCurveBoundedSurface.cxx + StepToTopoDS_TranslateCurveBoundedSurface.hxx + StepToTopoDS_TranslateEdge.cxx + StepToTopoDS_TranslateEdge.hxx + StepToTopoDS_TranslateEdgeError.hxx + StepToTopoDS_TranslateEdgeLoop.cxx + StepToTopoDS_TranslateEdgeLoop.hxx + StepToTopoDS_TranslateEdgeLoopError.hxx + StepToTopoDS_TranslateFace.cxx + StepToTopoDS_TranslateFace.hxx + StepToTopoDS_TranslateFaceError.hxx + StepToTopoDS_TranslatePolyLoop.cxx + StepToTopoDS_TranslatePolyLoop.hxx + StepToTopoDS_TranslatePolyLoopError.hxx + StepToTopoDS_TranslateShell.cxx + StepToTopoDS_TranslateShell.hxx + StepToTopoDS_TranslateShellError.hxx + StepToTopoDS_TranslateSolid.cxx + StepToTopoDS_TranslateSolid.hxx + StepToTopoDS_TranslateSolidError.hxx + StepToTopoDS_TranslateVertex.cxx + StepToTopoDS_TranslateVertex.hxx + StepToTopoDS_TranslateVertexError.hxx + StepToTopoDS_TranslateVertexLoop.cxx + StepToTopoDS_TranslateVertexLoop.hxx + StepToTopoDS_TranslateVertexLoopError.hxx +) diff --git a/src/StepToTopoDS/StepToTopoDS.cxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS.cxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS.cxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS.cxx diff --git a/src/StepToTopoDS/StepToTopoDS.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_Builder.cxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_Builder.cxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_Builder.cxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_Builder.cxx diff --git a/src/StepToTopoDS/StepToTopoDS_Builder.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_Builder.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_Builder.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_Builder.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_BuilderError.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_BuilderError.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_BuilderError.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_BuilderError.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_DataMapIteratorOfDataMapOfRI.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_DataMapIteratorOfDataMapOfRI.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_DataMapIteratorOfDataMapOfRI.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_DataMapIteratorOfDataMapOfRI.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_DataMapIteratorOfDataMapOfRINames.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_DataMapIteratorOfDataMapOfRINames.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_DataMapIteratorOfDataMapOfRINames.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_DataMapIteratorOfDataMapOfRINames.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_DataMapIteratorOfDataMapOfTRI.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_DataMapIteratorOfDataMapOfTRI.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_DataMapIteratorOfDataMapOfTRI.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_DataMapIteratorOfDataMapOfTRI.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_DataMapIteratorOfPointEdgeMap.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_DataMapIteratorOfPointEdgeMap.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_DataMapIteratorOfPointEdgeMap.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_DataMapIteratorOfPointEdgeMap.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_DataMapIteratorOfPointVertexMap.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_DataMapIteratorOfPointVertexMap.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_DataMapIteratorOfPointVertexMap.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_DataMapIteratorOfPointVertexMap.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_DataMapOfRI.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_DataMapOfRI.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_DataMapOfRI.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_DataMapOfRI.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_DataMapOfRINames.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_DataMapOfRINames.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_DataMapOfRINames.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_DataMapOfRINames.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_DataMapOfTRI.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_DataMapOfTRI.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_DataMapOfTRI.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_DataMapOfTRI.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_GeometricTool.cxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_GeometricTool.cxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_GeometricTool.cxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_GeometricTool.cxx diff --git a/src/StepToTopoDS/StepToTopoDS_GeometricTool.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_GeometricTool.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_GeometricTool.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_GeometricTool.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_GeometricToolError.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_GeometricToolError.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_GeometricToolError.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_GeometricToolError.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_MakeTransformed.cxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_MakeTransformed.cxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_MakeTransformed.cxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_MakeTransformed.cxx diff --git a/src/StepToTopoDS/StepToTopoDS_MakeTransformed.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_MakeTransformed.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_MakeTransformed.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_MakeTransformed.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_NMTool.cxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_NMTool.cxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_NMTool.cxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_NMTool.cxx diff --git a/src/StepToTopoDS/StepToTopoDS_NMTool.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_NMTool.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_NMTool.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_NMTool.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_PointEdgeMap.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_PointEdgeMap.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_PointEdgeMap.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_PointEdgeMap.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_PointPair.cxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_PointPair.cxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_PointPair.cxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_PointPair.cxx diff --git a/src/StepToTopoDS/StepToTopoDS_PointPair.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_PointPair.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_PointPair.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_PointPair.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_PointVertexMap.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_PointVertexMap.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_PointVertexMap.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_PointVertexMap.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_Root.cxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_Root.cxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_Root.cxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_Root.cxx diff --git a/src/StepToTopoDS/StepToTopoDS_Root.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_Root.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_Root.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_Root.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_Root.lxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_Root.lxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_Root.lxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_Root.lxx diff --git a/src/StepToTopoDS/StepToTopoDS_Tool.cxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_Tool.cxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_Tool.cxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_Tool.cxx diff --git a/src/StepToTopoDS/StepToTopoDS_Tool.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_Tool.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_Tool.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_Tool.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateCompositeCurve.cxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateCompositeCurve.cxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateCompositeCurve.cxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateCompositeCurve.cxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateCompositeCurve.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateCompositeCurve.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateCompositeCurve.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateCompositeCurve.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateCompositeCurve.lxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateCompositeCurve.lxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateCompositeCurve.lxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateCompositeCurve.lxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateCurveBoundedSurface.cxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateCurveBoundedSurface.cxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateCurveBoundedSurface.cxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateCurveBoundedSurface.cxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateCurveBoundedSurface.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateCurveBoundedSurface.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateCurveBoundedSurface.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateCurveBoundedSurface.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateEdge.cxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateEdge.cxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateEdge.cxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateEdge.cxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateEdge.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateEdge.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateEdge.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateEdge.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateEdgeError.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateEdgeError.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateEdgeError.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateEdgeError.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateEdgeLoop.cxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateEdgeLoop.cxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateEdgeLoop.cxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateEdgeLoop.cxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateEdgeLoop.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateEdgeLoop.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateEdgeLoop.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateEdgeLoop.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateEdgeLoopError.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateEdgeLoopError.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateEdgeLoopError.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateEdgeLoopError.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateFace.cxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateFace.cxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateFace.cxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateFace.cxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateFace.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateFace.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateFace.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateFace.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateFaceError.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateFaceError.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateFaceError.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateFaceError.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslatePolyLoop.cxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslatePolyLoop.cxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslatePolyLoop.cxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslatePolyLoop.cxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslatePolyLoop.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslatePolyLoop.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslatePolyLoop.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslatePolyLoop.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslatePolyLoopError.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslatePolyLoopError.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslatePolyLoopError.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslatePolyLoopError.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateShell.cxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateShell.cxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateShell.cxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateShell.cxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateShell.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateShell.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateShell.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateShell.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateShellError.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateShellError.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateShellError.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateShellError.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateSolid.cxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateSolid.cxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateSolid.cxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateSolid.cxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateSolid.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateSolid.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateSolid.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateSolid.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateSolidError.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateSolidError.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateSolidError.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateSolidError.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateVertex.cxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateVertex.cxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateVertex.cxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateVertex.cxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateVertex.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateVertex.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateVertex.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateVertex.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateVertexError.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateVertexError.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateVertexError.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateVertexError.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateVertexLoop.cxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateVertexLoop.cxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateVertexLoop.cxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateVertexLoop.cxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateVertexLoop.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateVertexLoop.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateVertexLoop.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateVertexLoop.hxx diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateVertexLoopError.hxx b/src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateVertexLoopError.hxx similarity index 100% rename from src/StepToTopoDS/StepToTopoDS_TranslateVertexLoopError.hxx rename to src/DataExchange/TKDESTEP/StepToTopoDS/StepToTopoDS_TranslateVertexLoopError.hxx diff --git a/src/DataExchange/TKDESTEP/StepVisual/FILES.cmake b/src/DataExchange/TKDESTEP/StepVisual/FILES.cmake new file mode 100644 index 0000000000..cb66655cca --- /dev/null +++ b/src/DataExchange/TKDESTEP/StepVisual/FILES.cmake @@ -0,0 +1,317 @@ +# Source files for StepVisual package +set(OCCT_StepVisual_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StepVisual_FILES + StepVisual_AnnotationCurveOccurrence.cxx + StepVisual_AnnotationCurveOccurrence.hxx + StepVisual_AnnotationCurveOccurrenceAndGeomReprItem.cxx + StepVisual_AnnotationCurveOccurrenceAndGeomReprItem.hxx + StepVisual_AnnotationFillArea.cxx + StepVisual_AnnotationFillArea.hxx + StepVisual_AnnotationFillAreaOccurrence.cxx + StepVisual_AnnotationFillAreaOccurrence.hxx + StepVisual_AnnotationOccurrence.cxx + StepVisual_AnnotationOccurrence.hxx + StepVisual_AnnotationPlane.cxx + StepVisual_AnnotationPlane.hxx + StepVisual_AnnotationPlaneElement.cxx + StepVisual_AnnotationPlaneElement.hxx + StepVisual_AnnotationText.cxx + StepVisual_AnnotationText.hxx + StepVisual_AnnotationTextOccurrence.cxx + StepVisual_AnnotationTextOccurrence.hxx + StepVisual_AreaInSet.cxx + StepVisual_AreaInSet.hxx + StepVisual_AreaOrView.cxx + StepVisual_AreaOrView.hxx + StepVisual_Array1OfAnnotationPlaneElement.hxx + StepVisual_Array1OfBoxCharacteristicSelect.hxx + StepVisual_Array1OfCameraModelD3MultiClippingInterectionSelect.hxx + StepVisual_Array1OfCameraModelD3MultiClippingUnionSelect.hxx + StepVisual_Array1OfCurveStyleFontPattern.hxx + StepVisual_Array1OfDirectionCountSelect.hxx + StepVisual_Array1OfDraughtingCalloutElement.hxx + StepVisual_Array1OfFillStyleSelect.hxx + StepVisual_Array1OfInvisibleItem.hxx + StepVisual_Array1OfLayeredItem.hxx + StepVisual_Array1OfPresentationStyleAssignment.hxx + StepVisual_Array1OfPresentationStyleSelect.hxx + StepVisual_Array1OfRenderingPropertiesSelect.hxx + StepVisual_Array1OfStyleContextSelect.hxx + StepVisual_Array1OfSurfaceStyleElementSelect.hxx + StepVisual_Array1OfTextOrCharacter.hxx + StepVisual_BackgroundColour.cxx + StepVisual_BackgroundColour.hxx + StepVisual_BoxCharacteristicSelect.cxx + StepVisual_BoxCharacteristicSelect.hxx + StepVisual_CameraImage.cxx + StepVisual_CameraImage.hxx + StepVisual_CameraImage2dWithScale.cxx + StepVisual_CameraImage2dWithScale.hxx + StepVisual_CameraImage3dWithScale.cxx + StepVisual_CameraImage3dWithScale.hxx + StepVisual_CameraModel.cxx + StepVisual_CameraModel.hxx + StepVisual_CameraModelD2.cxx + StepVisual_CameraModelD2.hxx + StepVisual_CameraModelD3.cxx + StepVisual_CameraModelD3.hxx + StepVisual_CameraModelD3MultiClipping.cxx + StepVisual_CameraModelD3MultiClipping.hxx + StepVisual_CameraModelD3MultiClippingInterectionSelect.cxx + StepVisual_CameraModelD3MultiClippingInterectionSelect.hxx + StepVisual_CameraModelD3MultiClippingIntersection.cxx + StepVisual_CameraModelD3MultiClippingIntersection.hxx + StepVisual_CameraModelD3MultiClippingUnion.cxx + StepVisual_CameraModelD3MultiClippingUnion.hxx + StepVisual_CameraModelD3MultiClippingUnionSelect.cxx + StepVisual_CameraModelD3MultiClippingUnionSelect.hxx + StepVisual_CameraUsage.cxx + StepVisual_CameraUsage.hxx + StepVisual_CentralOrParallel.hxx + StepVisual_CharacterizedObjAndRepresentationAndDraughtingModel.cxx + StepVisual_CharacterizedObjAndRepresentationAndDraughtingModel.hxx + StepVisual_Colour.cxx + StepVisual_Colour.hxx + StepVisual_ColourRgb.cxx + StepVisual_ColourRgb.hxx + StepVisual_ColourSpecification.cxx + StepVisual_ColourSpecification.hxx + StepVisual_CompositeText.cxx + StepVisual_CompositeText.hxx + StepVisual_CompositeTextWithExtent.cxx + StepVisual_CompositeTextWithExtent.hxx + StepVisual_ContextDependentInvisibility.cxx + StepVisual_ContextDependentInvisibility.hxx + StepVisual_ContextDependentOverRidingStyledItem.cxx + StepVisual_ContextDependentOverRidingStyledItem.hxx + StepVisual_CurveStyle.cxx + StepVisual_CurveStyle.hxx + StepVisual_CurveStyleFont.cxx + StepVisual_CurveStyleFont.hxx + StepVisual_CurveStyleFontPattern.cxx + StepVisual_CurveStyleFontPattern.hxx + StepVisual_CurveStyleFontSelect.cxx + StepVisual_CurveStyleFontSelect.hxx + StepVisual_DirectionCountSelect.cxx + StepVisual_DirectionCountSelect.hxx + StepVisual_DraughtingAnnotationOccurrence.cxx + StepVisual_DraughtingAnnotationOccurrence.hxx + StepVisual_DraughtingCallout.cxx + StepVisual_DraughtingCallout.hxx + StepVisual_DraughtingCalloutElement.cxx + StepVisual_DraughtingCalloutElement.hxx + StepVisual_DraughtingModel.cxx + StepVisual_DraughtingModel.hxx + StepVisual_DraughtingPreDefinedColour.cxx + StepVisual_DraughtingPreDefinedColour.hxx + StepVisual_DraughtingPreDefinedCurveFont.cxx + StepVisual_DraughtingPreDefinedCurveFont.hxx + StepVisual_ExternallyDefinedCurveFont.cxx + StepVisual_ExternallyDefinedCurveFont.hxx + StepVisual_ExternallyDefinedTextFont.cxx + StepVisual_ExternallyDefinedTextFont.hxx + StepVisual_FillAreaStyle.cxx + StepVisual_FillAreaStyle.hxx + StepVisual_FillAreaStyleColour.cxx + StepVisual_FillAreaStyleColour.hxx + StepVisual_FillStyleSelect.cxx + StepVisual_FillStyleSelect.hxx + StepVisual_FontSelect.cxx + StepVisual_FontSelect.hxx + StepVisual_HArray1OfAnnotationPlaneElement.hxx + StepVisual_HArray1OfBoxCharacteristicSelect.hxx + StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect.hxx + StepVisual_HArray1OfCameraModelD3MultiClippingUnionSelect.hxx + StepVisual_HArray1OfCurveStyleFontPattern.hxx + StepVisual_HArray1OfDirectionCountSelect.hxx + StepVisual_HArray1OfDraughtingCalloutElement.hxx + StepVisual_HArray1OfFillStyleSelect.hxx + StepVisual_HArray1OfInvisibleItem.hxx + StepVisual_HArray1OfLayeredItem.hxx + StepVisual_HArray1OfPresentationStyleAssignment.hxx + StepVisual_HArray1OfPresentationStyleSelect.hxx + StepVisual_HArray1OfRenderingPropertiesSelect.hxx + StepVisual_HArray1OfStyleContextSelect.hxx + StepVisual_HArray1OfSurfaceStyleElementSelect.hxx + StepVisual_HArray1OfTextOrCharacter.hxx + StepVisual_Invisibility.cxx + StepVisual_Invisibility.hxx + StepVisual_InvisibilityContext.cxx + StepVisual_InvisibilityContext.hxx + StepVisual_InvisibleItem.cxx + StepVisual_InvisibleItem.hxx + StepVisual_LayeredItem.cxx + StepVisual_LayeredItem.hxx + StepVisual_MarkerMember.cxx + StepVisual_MarkerMember.hxx + StepVisual_MarkerSelect.cxx + StepVisual_MarkerSelect.hxx + StepVisual_MarkerType.hxx + StepVisual_MechanicalDesignGeometricPresentationArea.cxx + StepVisual_MechanicalDesignGeometricPresentationArea.hxx + StepVisual_MechanicalDesignGeometricPresentationRepresentation.cxx + StepVisual_MechanicalDesignGeometricPresentationRepresentation.hxx + StepVisual_NullStyle.hxx + StepVisual_NullStyleMember.cxx + StepVisual_NullStyleMember.hxx + StepVisual_OverRidingStyledItem.cxx + StepVisual_OverRidingStyledItem.hxx + StepVisual_PlanarBox.cxx + StepVisual_PlanarBox.hxx + StepVisual_PlanarExtent.cxx + StepVisual_PlanarExtent.hxx + StepVisual_PointStyle.cxx + StepVisual_PointStyle.hxx + StepVisual_PreDefinedColour.cxx + StepVisual_PreDefinedColour.hxx + StepVisual_PreDefinedCurveFont.cxx + StepVisual_PreDefinedCurveFont.hxx + StepVisual_PreDefinedItem.cxx + StepVisual_PreDefinedItem.hxx + StepVisual_PreDefinedTextFont.cxx + StepVisual_PreDefinedTextFont.hxx + StepVisual_PresentationArea.cxx + StepVisual_PresentationArea.hxx + StepVisual_PresentationLayerAssignment.cxx + StepVisual_PresentationLayerAssignment.hxx + StepVisual_PresentationLayerUsage.cxx + StepVisual_PresentationLayerUsage.hxx + StepVisual_PresentationRepresentation.cxx + StepVisual_PresentationRepresentation.hxx + StepVisual_PresentationRepresentationSelect.cxx + StepVisual_PresentationRepresentationSelect.hxx + StepVisual_PresentationSet.cxx + StepVisual_PresentationSet.hxx + StepVisual_PresentationSize.cxx + StepVisual_PresentationSize.hxx + StepVisual_PresentationSizeAssignmentSelect.cxx + StepVisual_PresentationSizeAssignmentSelect.hxx + StepVisual_PresentationStyleAssignment.cxx + StepVisual_PresentationStyleAssignment.hxx + StepVisual_PresentationStyleByContext.cxx + StepVisual_PresentationStyleByContext.hxx + StepVisual_PresentationStyleSelect.cxx + StepVisual_PresentationStyleSelect.hxx + StepVisual_PresentationView.cxx + StepVisual_PresentationView.hxx + StepVisual_PresentedItem.cxx + StepVisual_PresentedItem.hxx + StepVisual_PresentedItemRepresentation.cxx + StepVisual_PresentedItemRepresentation.hxx + StepVisual_RenderingPropertiesSelect.cxx + StepVisual_RenderingPropertiesSelect.hxx + StepVisual_RepositionedTessellatedGeometricSet.hxx + StepVisual_RepositionedTessellatedGeometricSet.cxx + StepVisual_RepositionedTessellatedItem.hxx + StepVisual_RepositionedTessellatedItem.cxx + StepVisual_ShadingSurfaceMethod.hxx + StepVisual_StyleContextSelect.cxx + StepVisual_StyleContextSelect.hxx + StepVisual_StyledItem.cxx + StepVisual_StyledItem.hxx + StepVisual_StyledItemTarget.cxx + StepVisual_StyledItemTarget.hxx + StepVisual_SurfaceSide.hxx + StepVisual_SurfaceSideStyle.cxx + StepVisual_SurfaceSideStyle.hxx + StepVisual_SurfaceStyleBoundary.cxx + StepVisual_SurfaceStyleBoundary.hxx + StepVisual_SurfaceStyleControlGrid.cxx + StepVisual_SurfaceStyleControlGrid.hxx + StepVisual_SurfaceStyleElementSelect.cxx + StepVisual_SurfaceStyleElementSelect.hxx + StepVisual_SurfaceStyleFillArea.cxx + StepVisual_SurfaceStyleFillArea.hxx + StepVisual_SurfaceStyleParameterLine.cxx + StepVisual_SurfaceStyleParameterLine.hxx + StepVisual_SurfaceStyleReflectanceAmbient.cxx + StepVisual_SurfaceStyleReflectanceAmbient.hxx + StepVisual_SurfaceStyleRendering.cxx + StepVisual_SurfaceStyleRendering.hxx + StepVisual_SurfaceStyleRenderingWithProperties.cxx + StepVisual_SurfaceStyleRenderingWithProperties.hxx + StepVisual_SurfaceStyleSegmentationCurve.cxx + StepVisual_SurfaceStyleSegmentationCurve.hxx + StepVisual_SurfaceStyleSilhouette.cxx + StepVisual_SurfaceStyleSilhouette.hxx + StepVisual_SurfaceStyleTransparent.cxx + StepVisual_SurfaceStyleTransparent.hxx + StepVisual_SurfaceStyleUsage.cxx + StepVisual_SurfaceStyleUsage.hxx + StepVisual_Template.cxx + StepVisual_Template.hxx + StepVisual_TemplateInstance.cxx + StepVisual_TemplateInstance.hxx + StepVisual_TextLiteral.cxx + StepVisual_TextLiteral.hxx + StepVisual_TextOrCharacter.cxx + StepVisual_TextOrCharacter.hxx + StepVisual_TextPath.hxx + StepVisual_TextStyle.cxx + StepVisual_TextStyle.hxx + StepVisual_TextStyleForDefinedFont.cxx + StepVisual_TextStyleForDefinedFont.hxx + StepVisual_TextStyleWithBoxCharacteristics.cxx + StepVisual_TextStyleWithBoxCharacteristics.hxx + StepVisual_ViewVolume.cxx + StepVisual_ViewVolume.hxx + StepVisual_TessellatedAnnotationOccurrence.hxx + StepVisual_TessellatedAnnotationOccurrence.cxx + StepVisual_TessellatedItem.hxx + StepVisual_TessellatedItem.cxx + StepVisual_TessellatedGeometricSet.hxx + StepVisual_TessellatedGeometricSet.cxx + StepVisual_TessellatedCurveSet.hxx + StepVisual_TessellatedCurveSet.cxx + StepVisual_CoordinatesList.hxx + StepVisual_CoordinatesList.cxx + StepVisual_Array1OfTessellatedEdgeOrVertex.hxx + StepVisual_Array1OfTessellatedStructuredItem.hxx + StepVisual_ComplexTriangulatedFace.cxx + StepVisual_ComplexTriangulatedFace.hxx + StepVisual_ComplexTriangulatedSurfaceSet.cxx + StepVisual_ComplexTriangulatedSurfaceSet.hxx + StepVisual_CubicBezierTessellatedEdge.cxx + StepVisual_CubicBezierTessellatedEdge.hxx + StepVisual_CubicBezierTriangulatedFace.cxx + StepVisual_CubicBezierTriangulatedFace.hxx + StepVisual_EdgeOrCurve.cxx + StepVisual_EdgeOrCurve.hxx + StepVisual_FaceOrSurface.cxx + StepVisual_FaceOrSurface.hxx + StepVisual_HArray1OfTessellatedEdgeOrVertex.hxx + StepVisual_HArray1OfTessellatedStructuredItem.hxx + StepVisual_PathOrCompositeCurve.cxx + StepVisual_PathOrCompositeCurve.hxx + StepVisual_TessellatedConnectingEdge.cxx + StepVisual_TessellatedConnectingEdge.hxx + StepVisual_TessellatedEdge.cxx + StepVisual_TessellatedEdge.hxx + StepVisual_TessellatedEdgeOrVertex.cxx + StepVisual_TessellatedEdgeOrVertex.hxx + StepVisual_TessellatedFace.cxx + StepVisual_TessellatedFace.hxx + StepVisual_TessellatedPointSet.cxx + StepVisual_TessellatedPointSet.hxx + StepVisual_TessellatedShapeRepresentation.cxx + StepVisual_TessellatedShapeRepresentation.hxx + StepVisual_TessellatedShapeRepresentationWithAccuracyParameters.cxx + StepVisual_TessellatedShapeRepresentationWithAccuracyParameters.hxx + StepVisual_TessellatedShell.cxx + StepVisual_TessellatedShell.hxx + StepVisual_TessellatedSolid.cxx + StepVisual_TessellatedSolid.hxx + StepVisual_TessellatedStructuredItem.cxx + StepVisual_TessellatedStructuredItem.hxx + StepVisual_TessellatedSurfaceSet.cxx + StepVisual_TessellatedSurfaceSet.hxx + StepVisual_TessellatedVertex.cxx + StepVisual_TessellatedVertex.hxx + StepVisual_TessellatedWire.cxx + StepVisual_TessellatedWire.hxx + StepVisual_TriangulatedFace.cxx + StepVisual_TriangulatedFace.hxx + StepVisual_TriangulatedSurfaceSet.cxx + StepVisual_TriangulatedSurfaceSet.hxx +) diff --git a/src/StepVisual/StepVisual_AnnotationCurveOccurrence.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationCurveOccurrence.cxx similarity index 100% rename from src/StepVisual/StepVisual_AnnotationCurveOccurrence.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationCurveOccurrence.cxx diff --git a/src/StepVisual/StepVisual_AnnotationCurveOccurrence.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationCurveOccurrence.hxx similarity index 100% rename from src/StepVisual/StepVisual_AnnotationCurveOccurrence.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationCurveOccurrence.hxx diff --git a/src/StepVisual/StepVisual_AnnotationCurveOccurrenceAndGeomReprItem.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationCurveOccurrenceAndGeomReprItem.cxx similarity index 100% rename from src/StepVisual/StepVisual_AnnotationCurveOccurrenceAndGeomReprItem.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationCurveOccurrenceAndGeomReprItem.cxx diff --git a/src/StepVisual/StepVisual_AnnotationCurveOccurrenceAndGeomReprItem.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationCurveOccurrenceAndGeomReprItem.hxx similarity index 100% rename from src/StepVisual/StepVisual_AnnotationCurveOccurrenceAndGeomReprItem.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationCurveOccurrenceAndGeomReprItem.hxx diff --git a/src/StepVisual/StepVisual_AnnotationFillArea.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationFillArea.cxx similarity index 100% rename from src/StepVisual/StepVisual_AnnotationFillArea.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationFillArea.cxx diff --git a/src/StepVisual/StepVisual_AnnotationFillArea.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationFillArea.hxx similarity index 100% rename from src/StepVisual/StepVisual_AnnotationFillArea.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationFillArea.hxx diff --git a/src/StepVisual/StepVisual_AnnotationFillAreaOccurrence.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationFillAreaOccurrence.cxx similarity index 100% rename from src/StepVisual/StepVisual_AnnotationFillAreaOccurrence.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationFillAreaOccurrence.cxx diff --git a/src/StepVisual/StepVisual_AnnotationFillAreaOccurrence.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationFillAreaOccurrence.hxx similarity index 100% rename from src/StepVisual/StepVisual_AnnotationFillAreaOccurrence.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationFillAreaOccurrence.hxx diff --git a/src/StepVisual/StepVisual_AnnotationOccurrence.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationOccurrence.cxx similarity index 100% rename from src/StepVisual/StepVisual_AnnotationOccurrence.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationOccurrence.cxx diff --git a/src/StepVisual/StepVisual_AnnotationOccurrence.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationOccurrence.hxx similarity index 100% rename from src/StepVisual/StepVisual_AnnotationOccurrence.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationOccurrence.hxx diff --git a/src/StepVisual/StepVisual_AnnotationPlane.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationPlane.cxx similarity index 100% rename from src/StepVisual/StepVisual_AnnotationPlane.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationPlane.cxx diff --git a/src/StepVisual/StepVisual_AnnotationPlane.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationPlane.hxx similarity index 100% rename from src/StepVisual/StepVisual_AnnotationPlane.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationPlane.hxx diff --git a/src/StepVisual/StepVisual_AnnotationPlaneElement.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationPlaneElement.cxx similarity index 100% rename from src/StepVisual/StepVisual_AnnotationPlaneElement.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationPlaneElement.cxx diff --git a/src/StepVisual/StepVisual_AnnotationPlaneElement.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationPlaneElement.hxx similarity index 100% rename from src/StepVisual/StepVisual_AnnotationPlaneElement.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationPlaneElement.hxx diff --git a/src/StepVisual/StepVisual_AnnotationText.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationText.cxx similarity index 100% rename from src/StepVisual/StepVisual_AnnotationText.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationText.cxx diff --git a/src/StepVisual/StepVisual_AnnotationText.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationText.hxx similarity index 100% rename from src/StepVisual/StepVisual_AnnotationText.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationText.hxx diff --git a/src/StepVisual/StepVisual_AnnotationTextOccurrence.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationTextOccurrence.cxx similarity index 100% rename from src/StepVisual/StepVisual_AnnotationTextOccurrence.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationTextOccurrence.cxx diff --git a/src/StepVisual/StepVisual_AnnotationTextOccurrence.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationTextOccurrence.hxx similarity index 100% rename from src/StepVisual/StepVisual_AnnotationTextOccurrence.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_AnnotationTextOccurrence.hxx diff --git a/src/StepVisual/StepVisual_AreaInSet.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_AreaInSet.cxx similarity index 100% rename from src/StepVisual/StepVisual_AreaInSet.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_AreaInSet.cxx diff --git a/src/StepVisual/StepVisual_AreaInSet.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_AreaInSet.hxx similarity index 100% rename from src/StepVisual/StepVisual_AreaInSet.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_AreaInSet.hxx diff --git a/src/StepVisual/StepVisual_AreaOrView.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_AreaOrView.cxx similarity index 100% rename from src/StepVisual/StepVisual_AreaOrView.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_AreaOrView.cxx diff --git a/src/StepVisual/StepVisual_AreaOrView.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_AreaOrView.hxx similarity index 100% rename from src/StepVisual/StepVisual_AreaOrView.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_AreaOrView.hxx diff --git a/src/StepVisual/StepVisual_Array1OfAnnotationPlaneElement.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfAnnotationPlaneElement.hxx similarity index 100% rename from src/StepVisual/StepVisual_Array1OfAnnotationPlaneElement.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfAnnotationPlaneElement.hxx diff --git a/src/StepVisual/StepVisual_Array1OfBoxCharacteristicSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfBoxCharacteristicSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_Array1OfBoxCharacteristicSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfBoxCharacteristicSelect.hxx diff --git a/src/StepVisual/StepVisual_Array1OfCameraModelD3MultiClippingInterectionSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfCameraModelD3MultiClippingInterectionSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_Array1OfCameraModelD3MultiClippingInterectionSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfCameraModelD3MultiClippingInterectionSelect.hxx diff --git a/src/StepVisual/StepVisual_Array1OfCameraModelD3MultiClippingUnionSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfCameraModelD3MultiClippingUnionSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_Array1OfCameraModelD3MultiClippingUnionSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfCameraModelD3MultiClippingUnionSelect.hxx diff --git a/src/StepVisual/StepVisual_Array1OfCurveStyleFontPattern.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfCurveStyleFontPattern.hxx similarity index 100% rename from src/StepVisual/StepVisual_Array1OfCurveStyleFontPattern.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfCurveStyleFontPattern.hxx diff --git a/src/StepVisual/StepVisual_Array1OfDirectionCountSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfDirectionCountSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_Array1OfDirectionCountSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfDirectionCountSelect.hxx diff --git a/src/StepVisual/StepVisual_Array1OfDraughtingCalloutElement.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfDraughtingCalloutElement.hxx similarity index 100% rename from src/StepVisual/StepVisual_Array1OfDraughtingCalloutElement.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfDraughtingCalloutElement.hxx diff --git a/src/StepVisual/StepVisual_Array1OfFillStyleSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfFillStyleSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_Array1OfFillStyleSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfFillStyleSelect.hxx diff --git a/src/StepVisual/StepVisual_Array1OfInvisibleItem.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfInvisibleItem.hxx similarity index 100% rename from src/StepVisual/StepVisual_Array1OfInvisibleItem.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfInvisibleItem.hxx diff --git a/src/StepVisual/StepVisual_Array1OfLayeredItem.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfLayeredItem.hxx similarity index 100% rename from src/StepVisual/StepVisual_Array1OfLayeredItem.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfLayeredItem.hxx diff --git a/src/StepVisual/StepVisual_Array1OfPresentationStyleAssignment.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfPresentationStyleAssignment.hxx similarity index 100% rename from src/StepVisual/StepVisual_Array1OfPresentationStyleAssignment.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfPresentationStyleAssignment.hxx diff --git a/src/StepVisual/StepVisual_Array1OfPresentationStyleSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfPresentationStyleSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_Array1OfPresentationStyleSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfPresentationStyleSelect.hxx diff --git a/src/StepVisual/StepVisual_Array1OfRenderingPropertiesSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfRenderingPropertiesSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_Array1OfRenderingPropertiesSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfRenderingPropertiesSelect.hxx diff --git a/src/StepVisual/StepVisual_Array1OfStyleContextSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfStyleContextSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_Array1OfStyleContextSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfStyleContextSelect.hxx diff --git a/src/StepVisual/StepVisual_Array1OfSurfaceStyleElementSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfSurfaceStyleElementSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_Array1OfSurfaceStyleElementSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfSurfaceStyleElementSelect.hxx diff --git a/src/StepVisual/StepVisual_Array1OfTessellatedEdgeOrVertex.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfTessellatedEdgeOrVertex.hxx similarity index 100% rename from src/StepVisual/StepVisual_Array1OfTessellatedEdgeOrVertex.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfTessellatedEdgeOrVertex.hxx diff --git a/src/StepVisual/StepVisual_Array1OfTessellatedStructuredItem.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfTessellatedStructuredItem.hxx similarity index 100% rename from src/StepVisual/StepVisual_Array1OfTessellatedStructuredItem.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfTessellatedStructuredItem.hxx diff --git a/src/StepVisual/StepVisual_Array1OfTextOrCharacter.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfTextOrCharacter.hxx similarity index 100% rename from src/StepVisual/StepVisual_Array1OfTextOrCharacter.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_Array1OfTextOrCharacter.hxx diff --git a/src/StepVisual/StepVisual_BackgroundColour.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_BackgroundColour.cxx similarity index 100% rename from src/StepVisual/StepVisual_BackgroundColour.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_BackgroundColour.cxx diff --git a/src/StepVisual/StepVisual_BackgroundColour.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_BackgroundColour.hxx similarity index 100% rename from src/StepVisual/StepVisual_BackgroundColour.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_BackgroundColour.hxx diff --git a/src/StepVisual/StepVisual_BoxCharacteristicSelect.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_BoxCharacteristicSelect.cxx similarity index 100% rename from src/StepVisual/StepVisual_BoxCharacteristicSelect.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_BoxCharacteristicSelect.cxx diff --git a/src/StepVisual/StepVisual_BoxCharacteristicSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_BoxCharacteristicSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_BoxCharacteristicSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_BoxCharacteristicSelect.hxx diff --git a/src/StepVisual/StepVisual_CameraImage.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraImage.cxx similarity index 100% rename from src/StepVisual/StepVisual_CameraImage.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraImage.cxx diff --git a/src/StepVisual/StepVisual_CameraImage.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraImage.hxx similarity index 100% rename from src/StepVisual/StepVisual_CameraImage.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraImage.hxx diff --git a/src/StepVisual/StepVisual_CameraImage2dWithScale.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraImage2dWithScale.cxx similarity index 100% rename from src/StepVisual/StepVisual_CameraImage2dWithScale.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraImage2dWithScale.cxx diff --git a/src/StepVisual/StepVisual_CameraImage2dWithScale.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraImage2dWithScale.hxx similarity index 100% rename from src/StepVisual/StepVisual_CameraImage2dWithScale.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraImage2dWithScale.hxx diff --git a/src/StepVisual/StepVisual_CameraImage3dWithScale.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraImage3dWithScale.cxx similarity index 100% rename from src/StepVisual/StepVisual_CameraImage3dWithScale.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraImage3dWithScale.cxx diff --git a/src/StepVisual/StepVisual_CameraImage3dWithScale.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraImage3dWithScale.hxx similarity index 100% rename from src/StepVisual/StepVisual_CameraImage3dWithScale.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraImage3dWithScale.hxx diff --git a/src/StepVisual/StepVisual_CameraModel.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModel.cxx similarity index 100% rename from src/StepVisual/StepVisual_CameraModel.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModel.cxx diff --git a/src/StepVisual/StepVisual_CameraModel.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModel.hxx similarity index 100% rename from src/StepVisual/StepVisual_CameraModel.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModel.hxx diff --git a/src/StepVisual/StepVisual_CameraModelD2.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD2.cxx similarity index 100% rename from src/StepVisual/StepVisual_CameraModelD2.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD2.cxx diff --git a/src/StepVisual/StepVisual_CameraModelD2.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD2.hxx similarity index 100% rename from src/StepVisual/StepVisual_CameraModelD2.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD2.hxx diff --git a/src/StepVisual/StepVisual_CameraModelD3.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD3.cxx similarity index 100% rename from src/StepVisual/StepVisual_CameraModelD3.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD3.cxx diff --git a/src/StepVisual/StepVisual_CameraModelD3.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD3.hxx similarity index 100% rename from src/StepVisual/StepVisual_CameraModelD3.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD3.hxx diff --git a/src/StepVisual/StepVisual_CameraModelD3MultiClipping.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD3MultiClipping.cxx similarity index 100% rename from src/StepVisual/StepVisual_CameraModelD3MultiClipping.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD3MultiClipping.cxx diff --git a/src/StepVisual/StepVisual_CameraModelD3MultiClipping.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD3MultiClipping.hxx similarity index 100% rename from src/StepVisual/StepVisual_CameraModelD3MultiClipping.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD3MultiClipping.hxx diff --git a/src/StepVisual/StepVisual_CameraModelD3MultiClippingInterectionSelect.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD3MultiClippingInterectionSelect.cxx similarity index 100% rename from src/StepVisual/StepVisual_CameraModelD3MultiClippingInterectionSelect.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD3MultiClippingInterectionSelect.cxx diff --git a/src/StepVisual/StepVisual_CameraModelD3MultiClippingInterectionSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD3MultiClippingInterectionSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_CameraModelD3MultiClippingInterectionSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD3MultiClippingInterectionSelect.hxx diff --git a/src/StepVisual/StepVisual_CameraModelD3MultiClippingIntersection.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD3MultiClippingIntersection.cxx similarity index 100% rename from src/StepVisual/StepVisual_CameraModelD3MultiClippingIntersection.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD3MultiClippingIntersection.cxx diff --git a/src/StepVisual/StepVisual_CameraModelD3MultiClippingIntersection.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD3MultiClippingIntersection.hxx similarity index 100% rename from src/StepVisual/StepVisual_CameraModelD3MultiClippingIntersection.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD3MultiClippingIntersection.hxx diff --git a/src/StepVisual/StepVisual_CameraModelD3MultiClippingUnion.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD3MultiClippingUnion.cxx similarity index 100% rename from src/StepVisual/StepVisual_CameraModelD3MultiClippingUnion.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD3MultiClippingUnion.cxx diff --git a/src/StepVisual/StepVisual_CameraModelD3MultiClippingUnion.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD3MultiClippingUnion.hxx similarity index 100% rename from src/StepVisual/StepVisual_CameraModelD3MultiClippingUnion.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD3MultiClippingUnion.hxx diff --git a/src/StepVisual/StepVisual_CameraModelD3MultiClippingUnionSelect.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD3MultiClippingUnionSelect.cxx similarity index 100% rename from src/StepVisual/StepVisual_CameraModelD3MultiClippingUnionSelect.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD3MultiClippingUnionSelect.cxx diff --git a/src/StepVisual/StepVisual_CameraModelD3MultiClippingUnionSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD3MultiClippingUnionSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_CameraModelD3MultiClippingUnionSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraModelD3MultiClippingUnionSelect.hxx diff --git a/src/StepVisual/StepVisual_CameraUsage.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraUsage.cxx similarity index 100% rename from src/StepVisual/StepVisual_CameraUsage.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraUsage.cxx diff --git a/src/StepVisual/StepVisual_CameraUsage.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraUsage.hxx similarity index 100% rename from src/StepVisual/StepVisual_CameraUsage.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CameraUsage.hxx diff --git a/src/StepVisual/StepVisual_CentralOrParallel.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CentralOrParallel.hxx similarity index 100% rename from src/StepVisual/StepVisual_CentralOrParallel.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CentralOrParallel.hxx diff --git a/src/StepVisual/StepVisual_CharacterizedObjAndRepresentationAndDraughtingModel.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CharacterizedObjAndRepresentationAndDraughtingModel.cxx similarity index 100% rename from src/StepVisual/StepVisual_CharacterizedObjAndRepresentationAndDraughtingModel.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CharacterizedObjAndRepresentationAndDraughtingModel.cxx diff --git a/src/StepVisual/StepVisual_CharacterizedObjAndRepresentationAndDraughtingModel.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CharacterizedObjAndRepresentationAndDraughtingModel.hxx similarity index 100% rename from src/StepVisual/StepVisual_CharacterizedObjAndRepresentationAndDraughtingModel.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CharacterizedObjAndRepresentationAndDraughtingModel.hxx diff --git a/src/StepVisual/StepVisual_Colour.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_Colour.cxx similarity index 100% rename from src/StepVisual/StepVisual_Colour.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_Colour.cxx diff --git a/src/StepVisual/StepVisual_Colour.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_Colour.hxx similarity index 100% rename from src/StepVisual/StepVisual_Colour.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_Colour.hxx diff --git a/src/StepVisual/StepVisual_ColourRgb.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_ColourRgb.cxx similarity index 100% rename from src/StepVisual/StepVisual_ColourRgb.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_ColourRgb.cxx diff --git a/src/StepVisual/StepVisual_ColourRgb.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_ColourRgb.hxx similarity index 100% rename from src/StepVisual/StepVisual_ColourRgb.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_ColourRgb.hxx diff --git a/src/StepVisual/StepVisual_ColourSpecification.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_ColourSpecification.cxx similarity index 100% rename from src/StepVisual/StepVisual_ColourSpecification.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_ColourSpecification.cxx diff --git a/src/StepVisual/StepVisual_ColourSpecification.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_ColourSpecification.hxx similarity index 100% rename from src/StepVisual/StepVisual_ColourSpecification.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_ColourSpecification.hxx diff --git a/src/StepVisual/StepVisual_ComplexTriangulatedFace.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_ComplexTriangulatedFace.cxx similarity index 100% rename from src/StepVisual/StepVisual_ComplexTriangulatedFace.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_ComplexTriangulatedFace.cxx diff --git a/src/StepVisual/StepVisual_ComplexTriangulatedFace.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_ComplexTriangulatedFace.hxx similarity index 100% rename from src/StepVisual/StepVisual_ComplexTriangulatedFace.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_ComplexTriangulatedFace.hxx diff --git a/src/StepVisual/StepVisual_ComplexTriangulatedSurfaceSet.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_ComplexTriangulatedSurfaceSet.cxx similarity index 100% rename from src/StepVisual/StepVisual_ComplexTriangulatedSurfaceSet.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_ComplexTriangulatedSurfaceSet.cxx diff --git a/src/StepVisual/StepVisual_ComplexTriangulatedSurfaceSet.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_ComplexTriangulatedSurfaceSet.hxx similarity index 100% rename from src/StepVisual/StepVisual_ComplexTriangulatedSurfaceSet.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_ComplexTriangulatedSurfaceSet.hxx diff --git a/src/StepVisual/StepVisual_CompositeText.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CompositeText.cxx similarity index 100% rename from src/StepVisual/StepVisual_CompositeText.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CompositeText.cxx diff --git a/src/StepVisual/StepVisual_CompositeText.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CompositeText.hxx similarity index 100% rename from src/StepVisual/StepVisual_CompositeText.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CompositeText.hxx diff --git a/src/StepVisual/StepVisual_CompositeTextWithExtent.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CompositeTextWithExtent.cxx similarity index 100% rename from src/StepVisual/StepVisual_CompositeTextWithExtent.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CompositeTextWithExtent.cxx diff --git a/src/StepVisual/StepVisual_CompositeTextWithExtent.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CompositeTextWithExtent.hxx similarity index 100% rename from src/StepVisual/StepVisual_CompositeTextWithExtent.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CompositeTextWithExtent.hxx diff --git a/src/StepVisual/StepVisual_ContextDependentInvisibility.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_ContextDependentInvisibility.cxx similarity index 100% rename from src/StepVisual/StepVisual_ContextDependentInvisibility.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_ContextDependentInvisibility.cxx diff --git a/src/StepVisual/StepVisual_ContextDependentInvisibility.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_ContextDependentInvisibility.hxx similarity index 100% rename from src/StepVisual/StepVisual_ContextDependentInvisibility.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_ContextDependentInvisibility.hxx diff --git a/src/StepVisual/StepVisual_ContextDependentOverRidingStyledItem.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_ContextDependentOverRidingStyledItem.cxx similarity index 100% rename from src/StepVisual/StepVisual_ContextDependentOverRidingStyledItem.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_ContextDependentOverRidingStyledItem.cxx diff --git a/src/StepVisual/StepVisual_ContextDependentOverRidingStyledItem.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_ContextDependentOverRidingStyledItem.hxx similarity index 100% rename from src/StepVisual/StepVisual_ContextDependentOverRidingStyledItem.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_ContextDependentOverRidingStyledItem.hxx diff --git a/src/StepVisual/StepVisual_CoordinatesList.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CoordinatesList.cxx similarity index 100% rename from src/StepVisual/StepVisual_CoordinatesList.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CoordinatesList.cxx diff --git a/src/StepVisual/StepVisual_CoordinatesList.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CoordinatesList.hxx similarity index 100% rename from src/StepVisual/StepVisual_CoordinatesList.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CoordinatesList.hxx diff --git a/src/StepVisual/StepVisual_CubicBezierTessellatedEdge.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CubicBezierTessellatedEdge.cxx similarity index 100% rename from src/StepVisual/StepVisual_CubicBezierTessellatedEdge.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CubicBezierTessellatedEdge.cxx diff --git a/src/StepVisual/StepVisual_CubicBezierTessellatedEdge.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CubicBezierTessellatedEdge.hxx similarity index 100% rename from src/StepVisual/StepVisual_CubicBezierTessellatedEdge.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CubicBezierTessellatedEdge.hxx diff --git a/src/StepVisual/StepVisual_CubicBezierTriangulatedFace.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CubicBezierTriangulatedFace.cxx similarity index 100% rename from src/StepVisual/StepVisual_CubicBezierTriangulatedFace.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CubicBezierTriangulatedFace.cxx diff --git a/src/StepVisual/StepVisual_CubicBezierTriangulatedFace.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CubicBezierTriangulatedFace.hxx similarity index 100% rename from src/StepVisual/StepVisual_CubicBezierTriangulatedFace.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CubicBezierTriangulatedFace.hxx diff --git a/src/StepVisual/StepVisual_CurveStyle.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CurveStyle.cxx similarity index 100% rename from src/StepVisual/StepVisual_CurveStyle.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CurveStyle.cxx diff --git a/src/StepVisual/StepVisual_CurveStyle.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CurveStyle.hxx similarity index 100% rename from src/StepVisual/StepVisual_CurveStyle.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CurveStyle.hxx diff --git a/src/StepVisual/StepVisual_CurveStyleFont.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CurveStyleFont.cxx similarity index 100% rename from src/StepVisual/StepVisual_CurveStyleFont.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CurveStyleFont.cxx diff --git a/src/StepVisual/StepVisual_CurveStyleFont.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CurveStyleFont.hxx similarity index 100% rename from src/StepVisual/StepVisual_CurveStyleFont.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CurveStyleFont.hxx diff --git a/src/StepVisual/StepVisual_CurveStyleFontPattern.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CurveStyleFontPattern.cxx similarity index 100% rename from src/StepVisual/StepVisual_CurveStyleFontPattern.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CurveStyleFontPattern.cxx diff --git a/src/StepVisual/StepVisual_CurveStyleFontPattern.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CurveStyleFontPattern.hxx similarity index 100% rename from src/StepVisual/StepVisual_CurveStyleFontPattern.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CurveStyleFontPattern.hxx diff --git a/src/StepVisual/StepVisual_CurveStyleFontSelect.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CurveStyleFontSelect.cxx similarity index 100% rename from src/StepVisual/StepVisual_CurveStyleFontSelect.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CurveStyleFontSelect.cxx diff --git a/src/StepVisual/StepVisual_CurveStyleFontSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_CurveStyleFontSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_CurveStyleFontSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_CurveStyleFontSelect.hxx diff --git a/src/StepVisual/StepVisual_DirectionCountSelect.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_DirectionCountSelect.cxx similarity index 100% rename from src/StepVisual/StepVisual_DirectionCountSelect.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_DirectionCountSelect.cxx diff --git a/src/StepVisual/StepVisual_DirectionCountSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_DirectionCountSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_DirectionCountSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_DirectionCountSelect.hxx diff --git a/src/StepVisual/StepVisual_DraughtingAnnotationOccurrence.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_DraughtingAnnotationOccurrence.cxx similarity index 100% rename from src/StepVisual/StepVisual_DraughtingAnnotationOccurrence.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_DraughtingAnnotationOccurrence.cxx diff --git a/src/StepVisual/StepVisual_DraughtingAnnotationOccurrence.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_DraughtingAnnotationOccurrence.hxx similarity index 100% rename from src/StepVisual/StepVisual_DraughtingAnnotationOccurrence.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_DraughtingAnnotationOccurrence.hxx diff --git a/src/StepVisual/StepVisual_DraughtingCallout.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_DraughtingCallout.cxx similarity index 100% rename from src/StepVisual/StepVisual_DraughtingCallout.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_DraughtingCallout.cxx diff --git a/src/StepVisual/StepVisual_DraughtingCallout.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_DraughtingCallout.hxx similarity index 100% rename from src/StepVisual/StepVisual_DraughtingCallout.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_DraughtingCallout.hxx diff --git a/src/StepVisual/StepVisual_DraughtingCalloutElement.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_DraughtingCalloutElement.cxx similarity index 100% rename from src/StepVisual/StepVisual_DraughtingCalloutElement.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_DraughtingCalloutElement.cxx diff --git a/src/StepVisual/StepVisual_DraughtingCalloutElement.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_DraughtingCalloutElement.hxx similarity index 100% rename from src/StepVisual/StepVisual_DraughtingCalloutElement.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_DraughtingCalloutElement.hxx diff --git a/src/StepVisual/StepVisual_DraughtingModel.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_DraughtingModel.cxx similarity index 100% rename from src/StepVisual/StepVisual_DraughtingModel.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_DraughtingModel.cxx diff --git a/src/StepVisual/StepVisual_DraughtingModel.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_DraughtingModel.hxx similarity index 100% rename from src/StepVisual/StepVisual_DraughtingModel.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_DraughtingModel.hxx diff --git a/src/StepVisual/StepVisual_DraughtingPreDefinedColour.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_DraughtingPreDefinedColour.cxx similarity index 100% rename from src/StepVisual/StepVisual_DraughtingPreDefinedColour.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_DraughtingPreDefinedColour.cxx diff --git a/src/StepVisual/StepVisual_DraughtingPreDefinedColour.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_DraughtingPreDefinedColour.hxx similarity index 100% rename from src/StepVisual/StepVisual_DraughtingPreDefinedColour.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_DraughtingPreDefinedColour.hxx diff --git a/src/StepVisual/StepVisual_DraughtingPreDefinedCurveFont.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_DraughtingPreDefinedCurveFont.cxx similarity index 100% rename from src/StepVisual/StepVisual_DraughtingPreDefinedCurveFont.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_DraughtingPreDefinedCurveFont.cxx diff --git a/src/StepVisual/StepVisual_DraughtingPreDefinedCurveFont.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_DraughtingPreDefinedCurveFont.hxx similarity index 100% rename from src/StepVisual/StepVisual_DraughtingPreDefinedCurveFont.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_DraughtingPreDefinedCurveFont.hxx diff --git a/src/StepVisual/StepVisual_EdgeOrCurve.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_EdgeOrCurve.cxx similarity index 100% rename from src/StepVisual/StepVisual_EdgeOrCurve.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_EdgeOrCurve.cxx diff --git a/src/StepVisual/StepVisual_EdgeOrCurve.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_EdgeOrCurve.hxx similarity index 100% rename from src/StepVisual/StepVisual_EdgeOrCurve.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_EdgeOrCurve.hxx diff --git a/src/StepVisual/StepVisual_ExternallyDefinedCurveFont.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_ExternallyDefinedCurveFont.cxx similarity index 100% rename from src/StepVisual/StepVisual_ExternallyDefinedCurveFont.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_ExternallyDefinedCurveFont.cxx diff --git a/src/StepVisual/StepVisual_ExternallyDefinedCurveFont.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_ExternallyDefinedCurveFont.hxx similarity index 100% rename from src/StepVisual/StepVisual_ExternallyDefinedCurveFont.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_ExternallyDefinedCurveFont.hxx diff --git a/src/StepVisual/StepVisual_ExternallyDefinedTextFont.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_ExternallyDefinedTextFont.cxx similarity index 100% rename from src/StepVisual/StepVisual_ExternallyDefinedTextFont.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_ExternallyDefinedTextFont.cxx diff --git a/src/StepVisual/StepVisual_ExternallyDefinedTextFont.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_ExternallyDefinedTextFont.hxx similarity index 100% rename from src/StepVisual/StepVisual_ExternallyDefinedTextFont.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_ExternallyDefinedTextFont.hxx diff --git a/src/StepVisual/StepVisual_FaceOrSurface.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_FaceOrSurface.cxx similarity index 100% rename from src/StepVisual/StepVisual_FaceOrSurface.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_FaceOrSurface.cxx diff --git a/src/StepVisual/StepVisual_FaceOrSurface.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_FaceOrSurface.hxx similarity index 100% rename from src/StepVisual/StepVisual_FaceOrSurface.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_FaceOrSurface.hxx diff --git a/src/StepVisual/StepVisual_FillAreaStyle.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_FillAreaStyle.cxx similarity index 100% rename from src/StepVisual/StepVisual_FillAreaStyle.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_FillAreaStyle.cxx diff --git a/src/StepVisual/StepVisual_FillAreaStyle.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_FillAreaStyle.hxx similarity index 100% rename from src/StepVisual/StepVisual_FillAreaStyle.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_FillAreaStyle.hxx diff --git a/src/StepVisual/StepVisual_FillAreaStyleColour.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_FillAreaStyleColour.cxx similarity index 100% rename from src/StepVisual/StepVisual_FillAreaStyleColour.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_FillAreaStyleColour.cxx diff --git a/src/StepVisual/StepVisual_FillAreaStyleColour.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_FillAreaStyleColour.hxx similarity index 100% rename from src/StepVisual/StepVisual_FillAreaStyleColour.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_FillAreaStyleColour.hxx diff --git a/src/StepVisual/StepVisual_FillStyleSelect.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_FillStyleSelect.cxx similarity index 100% rename from src/StepVisual/StepVisual_FillStyleSelect.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_FillStyleSelect.cxx diff --git a/src/StepVisual/StepVisual_FillStyleSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_FillStyleSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_FillStyleSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_FillStyleSelect.hxx diff --git a/src/StepVisual/StepVisual_FontSelect.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_FontSelect.cxx similarity index 100% rename from src/StepVisual/StepVisual_FontSelect.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_FontSelect.cxx diff --git a/src/StepVisual/StepVisual_FontSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_FontSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_FontSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_FontSelect.hxx diff --git a/src/StepVisual/StepVisual_HArray1OfAnnotationPlaneElement.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfAnnotationPlaneElement.hxx similarity index 100% rename from src/StepVisual/StepVisual_HArray1OfAnnotationPlaneElement.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfAnnotationPlaneElement.hxx diff --git a/src/StepVisual/StepVisual_HArray1OfBoxCharacteristicSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfBoxCharacteristicSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_HArray1OfBoxCharacteristicSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfBoxCharacteristicSelect.hxx diff --git a/src/StepVisual/StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect.hxx diff --git a/src/StepVisual/StepVisual_HArray1OfCameraModelD3MultiClippingUnionSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfCameraModelD3MultiClippingUnionSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_HArray1OfCameraModelD3MultiClippingUnionSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfCameraModelD3MultiClippingUnionSelect.hxx diff --git a/src/StepVisual/StepVisual_HArray1OfCurveStyleFontPattern.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfCurveStyleFontPattern.hxx similarity index 100% rename from src/StepVisual/StepVisual_HArray1OfCurveStyleFontPattern.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfCurveStyleFontPattern.hxx diff --git a/src/StepVisual/StepVisual_HArray1OfDirectionCountSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfDirectionCountSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_HArray1OfDirectionCountSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfDirectionCountSelect.hxx diff --git a/src/StepVisual/StepVisual_HArray1OfDraughtingCalloutElement.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfDraughtingCalloutElement.hxx similarity index 100% rename from src/StepVisual/StepVisual_HArray1OfDraughtingCalloutElement.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfDraughtingCalloutElement.hxx diff --git a/src/StepVisual/StepVisual_HArray1OfFillStyleSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfFillStyleSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_HArray1OfFillStyleSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfFillStyleSelect.hxx diff --git a/src/StepVisual/StepVisual_HArray1OfInvisibleItem.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfInvisibleItem.hxx similarity index 100% rename from src/StepVisual/StepVisual_HArray1OfInvisibleItem.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfInvisibleItem.hxx diff --git a/src/StepVisual/StepVisual_HArray1OfLayeredItem.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfLayeredItem.hxx similarity index 100% rename from src/StepVisual/StepVisual_HArray1OfLayeredItem.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfLayeredItem.hxx diff --git a/src/StepVisual/StepVisual_HArray1OfPresentationStyleAssignment.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfPresentationStyleAssignment.hxx similarity index 100% rename from src/StepVisual/StepVisual_HArray1OfPresentationStyleAssignment.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfPresentationStyleAssignment.hxx diff --git a/src/StepVisual/StepVisual_HArray1OfPresentationStyleSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfPresentationStyleSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_HArray1OfPresentationStyleSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfPresentationStyleSelect.hxx diff --git a/src/StepVisual/StepVisual_HArray1OfRenderingPropertiesSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfRenderingPropertiesSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_HArray1OfRenderingPropertiesSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfRenderingPropertiesSelect.hxx diff --git a/src/StepVisual/StepVisual_HArray1OfStyleContextSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfStyleContextSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_HArray1OfStyleContextSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfStyleContextSelect.hxx diff --git a/src/StepVisual/StepVisual_HArray1OfSurfaceStyleElementSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfSurfaceStyleElementSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_HArray1OfSurfaceStyleElementSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfSurfaceStyleElementSelect.hxx diff --git a/src/StepVisual/StepVisual_HArray1OfTessellatedEdgeOrVertex.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfTessellatedEdgeOrVertex.hxx similarity index 100% rename from src/StepVisual/StepVisual_HArray1OfTessellatedEdgeOrVertex.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfTessellatedEdgeOrVertex.hxx diff --git a/src/StepVisual/StepVisual_HArray1OfTessellatedStructuredItem.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfTessellatedStructuredItem.hxx similarity index 100% rename from src/StepVisual/StepVisual_HArray1OfTessellatedStructuredItem.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfTessellatedStructuredItem.hxx diff --git a/src/StepVisual/StepVisual_HArray1OfTextOrCharacter.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfTextOrCharacter.hxx similarity index 100% rename from src/StepVisual/StepVisual_HArray1OfTextOrCharacter.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_HArray1OfTextOrCharacter.hxx diff --git a/src/StepVisual/StepVisual_Invisibility.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_Invisibility.cxx similarity index 100% rename from src/StepVisual/StepVisual_Invisibility.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_Invisibility.cxx diff --git a/src/StepVisual/StepVisual_Invisibility.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_Invisibility.hxx similarity index 100% rename from src/StepVisual/StepVisual_Invisibility.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_Invisibility.hxx diff --git a/src/StepVisual/StepVisual_InvisibilityContext.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_InvisibilityContext.cxx similarity index 100% rename from src/StepVisual/StepVisual_InvisibilityContext.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_InvisibilityContext.cxx diff --git a/src/StepVisual/StepVisual_InvisibilityContext.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_InvisibilityContext.hxx similarity index 100% rename from src/StepVisual/StepVisual_InvisibilityContext.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_InvisibilityContext.hxx diff --git a/src/StepVisual/StepVisual_InvisibleItem.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_InvisibleItem.cxx similarity index 100% rename from src/StepVisual/StepVisual_InvisibleItem.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_InvisibleItem.cxx diff --git a/src/StepVisual/StepVisual_InvisibleItem.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_InvisibleItem.hxx similarity index 100% rename from src/StepVisual/StepVisual_InvisibleItem.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_InvisibleItem.hxx diff --git a/src/StepVisual/StepVisual_LayeredItem.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_LayeredItem.cxx similarity index 100% rename from src/StepVisual/StepVisual_LayeredItem.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_LayeredItem.cxx diff --git a/src/StepVisual/StepVisual_LayeredItem.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_LayeredItem.hxx similarity index 100% rename from src/StepVisual/StepVisual_LayeredItem.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_LayeredItem.hxx diff --git a/src/StepVisual/StepVisual_MarkerMember.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_MarkerMember.cxx similarity index 100% rename from src/StepVisual/StepVisual_MarkerMember.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_MarkerMember.cxx diff --git a/src/StepVisual/StepVisual_MarkerMember.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_MarkerMember.hxx similarity index 100% rename from src/StepVisual/StepVisual_MarkerMember.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_MarkerMember.hxx diff --git a/src/StepVisual/StepVisual_MarkerSelect.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_MarkerSelect.cxx similarity index 100% rename from src/StepVisual/StepVisual_MarkerSelect.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_MarkerSelect.cxx diff --git a/src/StepVisual/StepVisual_MarkerSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_MarkerSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_MarkerSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_MarkerSelect.hxx diff --git a/src/StepVisual/StepVisual_MarkerType.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_MarkerType.hxx similarity index 100% rename from src/StepVisual/StepVisual_MarkerType.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_MarkerType.hxx diff --git a/src/StepVisual/StepVisual_MechanicalDesignGeometricPresentationArea.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_MechanicalDesignGeometricPresentationArea.cxx similarity index 100% rename from src/StepVisual/StepVisual_MechanicalDesignGeometricPresentationArea.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_MechanicalDesignGeometricPresentationArea.cxx diff --git a/src/StepVisual/StepVisual_MechanicalDesignGeometricPresentationArea.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_MechanicalDesignGeometricPresentationArea.hxx similarity index 100% rename from src/StepVisual/StepVisual_MechanicalDesignGeometricPresentationArea.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_MechanicalDesignGeometricPresentationArea.hxx diff --git a/src/StepVisual/StepVisual_MechanicalDesignGeometricPresentationRepresentation.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_MechanicalDesignGeometricPresentationRepresentation.cxx similarity index 100% rename from src/StepVisual/StepVisual_MechanicalDesignGeometricPresentationRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_MechanicalDesignGeometricPresentationRepresentation.cxx diff --git a/src/StepVisual/StepVisual_MechanicalDesignGeometricPresentationRepresentation.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_MechanicalDesignGeometricPresentationRepresentation.hxx similarity index 100% rename from src/StepVisual/StepVisual_MechanicalDesignGeometricPresentationRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_MechanicalDesignGeometricPresentationRepresentation.hxx diff --git a/src/StepVisual/StepVisual_NullStyle.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_NullStyle.hxx similarity index 100% rename from src/StepVisual/StepVisual_NullStyle.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_NullStyle.hxx diff --git a/src/StepVisual/StepVisual_NullStyleMember.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_NullStyleMember.cxx similarity index 100% rename from src/StepVisual/StepVisual_NullStyleMember.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_NullStyleMember.cxx diff --git a/src/StepVisual/StepVisual_NullStyleMember.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_NullStyleMember.hxx similarity index 100% rename from src/StepVisual/StepVisual_NullStyleMember.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_NullStyleMember.hxx diff --git a/src/StepVisual/StepVisual_OverRidingStyledItem.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_OverRidingStyledItem.cxx similarity index 100% rename from src/StepVisual/StepVisual_OverRidingStyledItem.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_OverRidingStyledItem.cxx diff --git a/src/StepVisual/StepVisual_OverRidingStyledItem.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_OverRidingStyledItem.hxx similarity index 100% rename from src/StepVisual/StepVisual_OverRidingStyledItem.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_OverRidingStyledItem.hxx diff --git a/src/StepVisual/StepVisual_PathOrCompositeCurve.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PathOrCompositeCurve.cxx similarity index 100% rename from src/StepVisual/StepVisual_PathOrCompositeCurve.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PathOrCompositeCurve.cxx diff --git a/src/StepVisual/StepVisual_PathOrCompositeCurve.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PathOrCompositeCurve.hxx similarity index 100% rename from src/StepVisual/StepVisual_PathOrCompositeCurve.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PathOrCompositeCurve.hxx diff --git a/src/StepVisual/StepVisual_PlanarBox.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PlanarBox.cxx similarity index 100% rename from src/StepVisual/StepVisual_PlanarBox.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PlanarBox.cxx diff --git a/src/StepVisual/StepVisual_PlanarBox.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PlanarBox.hxx similarity index 100% rename from src/StepVisual/StepVisual_PlanarBox.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PlanarBox.hxx diff --git a/src/StepVisual/StepVisual_PlanarExtent.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PlanarExtent.cxx similarity index 100% rename from src/StepVisual/StepVisual_PlanarExtent.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PlanarExtent.cxx diff --git a/src/StepVisual/StepVisual_PlanarExtent.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PlanarExtent.hxx similarity index 100% rename from src/StepVisual/StepVisual_PlanarExtent.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PlanarExtent.hxx diff --git a/src/StepVisual/StepVisual_PointStyle.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PointStyle.cxx similarity index 100% rename from src/StepVisual/StepVisual_PointStyle.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PointStyle.cxx diff --git a/src/StepVisual/StepVisual_PointStyle.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PointStyle.hxx similarity index 100% rename from src/StepVisual/StepVisual_PointStyle.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PointStyle.hxx diff --git a/src/StepVisual/StepVisual_PreDefinedColour.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PreDefinedColour.cxx similarity index 100% rename from src/StepVisual/StepVisual_PreDefinedColour.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PreDefinedColour.cxx diff --git a/src/StepVisual/StepVisual_PreDefinedColour.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PreDefinedColour.hxx similarity index 100% rename from src/StepVisual/StepVisual_PreDefinedColour.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PreDefinedColour.hxx diff --git a/src/StepVisual/StepVisual_PreDefinedCurveFont.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PreDefinedCurveFont.cxx similarity index 100% rename from src/StepVisual/StepVisual_PreDefinedCurveFont.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PreDefinedCurveFont.cxx diff --git a/src/StepVisual/StepVisual_PreDefinedCurveFont.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PreDefinedCurveFont.hxx similarity index 100% rename from src/StepVisual/StepVisual_PreDefinedCurveFont.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PreDefinedCurveFont.hxx diff --git a/src/StepVisual/StepVisual_PreDefinedItem.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PreDefinedItem.cxx similarity index 100% rename from src/StepVisual/StepVisual_PreDefinedItem.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PreDefinedItem.cxx diff --git a/src/StepVisual/StepVisual_PreDefinedItem.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PreDefinedItem.hxx similarity index 100% rename from src/StepVisual/StepVisual_PreDefinedItem.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PreDefinedItem.hxx diff --git a/src/StepVisual/StepVisual_PreDefinedTextFont.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PreDefinedTextFont.cxx similarity index 100% rename from src/StepVisual/StepVisual_PreDefinedTextFont.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PreDefinedTextFont.cxx diff --git a/src/StepVisual/StepVisual_PreDefinedTextFont.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PreDefinedTextFont.hxx similarity index 100% rename from src/StepVisual/StepVisual_PreDefinedTextFont.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PreDefinedTextFont.hxx diff --git a/src/StepVisual/StepVisual_PresentationArea.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationArea.cxx similarity index 100% rename from src/StepVisual/StepVisual_PresentationArea.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationArea.cxx diff --git a/src/StepVisual/StepVisual_PresentationArea.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationArea.hxx similarity index 100% rename from src/StepVisual/StepVisual_PresentationArea.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationArea.hxx diff --git a/src/StepVisual/StepVisual_PresentationLayerAssignment.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationLayerAssignment.cxx similarity index 100% rename from src/StepVisual/StepVisual_PresentationLayerAssignment.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationLayerAssignment.cxx diff --git a/src/StepVisual/StepVisual_PresentationLayerAssignment.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationLayerAssignment.hxx similarity index 100% rename from src/StepVisual/StepVisual_PresentationLayerAssignment.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationLayerAssignment.hxx diff --git a/src/StepVisual/StepVisual_PresentationLayerUsage.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationLayerUsage.cxx similarity index 100% rename from src/StepVisual/StepVisual_PresentationLayerUsage.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationLayerUsage.cxx diff --git a/src/StepVisual/StepVisual_PresentationLayerUsage.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationLayerUsage.hxx similarity index 100% rename from src/StepVisual/StepVisual_PresentationLayerUsage.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationLayerUsage.hxx diff --git a/src/StepVisual/StepVisual_PresentationRepresentation.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationRepresentation.cxx similarity index 100% rename from src/StepVisual/StepVisual_PresentationRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationRepresentation.cxx diff --git a/src/StepVisual/StepVisual_PresentationRepresentation.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationRepresentation.hxx similarity index 100% rename from src/StepVisual/StepVisual_PresentationRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationRepresentation.hxx diff --git a/src/StepVisual/StepVisual_PresentationRepresentationSelect.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationRepresentationSelect.cxx similarity index 100% rename from src/StepVisual/StepVisual_PresentationRepresentationSelect.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationRepresentationSelect.cxx diff --git a/src/StepVisual/StepVisual_PresentationRepresentationSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationRepresentationSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_PresentationRepresentationSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationRepresentationSelect.hxx diff --git a/src/StepVisual/StepVisual_PresentationSet.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationSet.cxx similarity index 100% rename from src/StepVisual/StepVisual_PresentationSet.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationSet.cxx diff --git a/src/StepVisual/StepVisual_PresentationSet.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationSet.hxx similarity index 100% rename from src/StepVisual/StepVisual_PresentationSet.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationSet.hxx diff --git a/src/StepVisual/StepVisual_PresentationSize.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationSize.cxx similarity index 100% rename from src/StepVisual/StepVisual_PresentationSize.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationSize.cxx diff --git a/src/StepVisual/StepVisual_PresentationSize.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationSize.hxx similarity index 100% rename from src/StepVisual/StepVisual_PresentationSize.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationSize.hxx diff --git a/src/StepVisual/StepVisual_PresentationSizeAssignmentSelect.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationSizeAssignmentSelect.cxx similarity index 100% rename from src/StepVisual/StepVisual_PresentationSizeAssignmentSelect.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationSizeAssignmentSelect.cxx diff --git a/src/StepVisual/StepVisual_PresentationSizeAssignmentSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationSizeAssignmentSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_PresentationSizeAssignmentSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationSizeAssignmentSelect.hxx diff --git a/src/StepVisual/StepVisual_PresentationStyleAssignment.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationStyleAssignment.cxx similarity index 100% rename from src/StepVisual/StepVisual_PresentationStyleAssignment.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationStyleAssignment.cxx diff --git a/src/StepVisual/StepVisual_PresentationStyleAssignment.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationStyleAssignment.hxx similarity index 100% rename from src/StepVisual/StepVisual_PresentationStyleAssignment.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationStyleAssignment.hxx diff --git a/src/StepVisual/StepVisual_PresentationStyleByContext.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationStyleByContext.cxx similarity index 100% rename from src/StepVisual/StepVisual_PresentationStyleByContext.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationStyleByContext.cxx diff --git a/src/StepVisual/StepVisual_PresentationStyleByContext.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationStyleByContext.hxx similarity index 100% rename from src/StepVisual/StepVisual_PresentationStyleByContext.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationStyleByContext.hxx diff --git a/src/StepVisual/StepVisual_PresentationStyleSelect.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationStyleSelect.cxx similarity index 100% rename from src/StepVisual/StepVisual_PresentationStyleSelect.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationStyleSelect.cxx diff --git a/src/StepVisual/StepVisual_PresentationStyleSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationStyleSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_PresentationStyleSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationStyleSelect.hxx diff --git a/src/StepVisual/StepVisual_PresentationView.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationView.cxx similarity index 100% rename from src/StepVisual/StepVisual_PresentationView.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationView.cxx diff --git a/src/StepVisual/StepVisual_PresentationView.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationView.hxx similarity index 100% rename from src/StepVisual/StepVisual_PresentationView.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentationView.hxx diff --git a/src/StepVisual/StepVisual_PresentedItem.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentedItem.cxx similarity index 100% rename from src/StepVisual/StepVisual_PresentedItem.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentedItem.cxx diff --git a/src/StepVisual/StepVisual_PresentedItem.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentedItem.hxx similarity index 100% rename from src/StepVisual/StepVisual_PresentedItem.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentedItem.hxx diff --git a/src/StepVisual/StepVisual_PresentedItemRepresentation.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentedItemRepresentation.cxx similarity index 100% rename from src/StepVisual/StepVisual_PresentedItemRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentedItemRepresentation.cxx diff --git a/src/StepVisual/StepVisual_PresentedItemRepresentation.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentedItemRepresentation.hxx similarity index 100% rename from src/StepVisual/StepVisual_PresentedItemRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_PresentedItemRepresentation.hxx diff --git a/src/StepVisual/StepVisual_RenderingPropertiesSelect.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_RenderingPropertiesSelect.cxx similarity index 100% rename from src/StepVisual/StepVisual_RenderingPropertiesSelect.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_RenderingPropertiesSelect.cxx diff --git a/src/StepVisual/StepVisual_RenderingPropertiesSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_RenderingPropertiesSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_RenderingPropertiesSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_RenderingPropertiesSelect.hxx diff --git a/src/StepVisual/StepVisual_RepositionedTessellatedGeometricSet.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_RepositionedTessellatedGeometricSet.cxx similarity index 100% rename from src/StepVisual/StepVisual_RepositionedTessellatedGeometricSet.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_RepositionedTessellatedGeometricSet.cxx diff --git a/src/StepVisual/StepVisual_RepositionedTessellatedGeometricSet.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_RepositionedTessellatedGeometricSet.hxx similarity index 100% rename from src/StepVisual/StepVisual_RepositionedTessellatedGeometricSet.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_RepositionedTessellatedGeometricSet.hxx diff --git a/src/StepVisual/StepVisual_RepositionedTessellatedItem.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_RepositionedTessellatedItem.cxx similarity index 100% rename from src/StepVisual/StepVisual_RepositionedTessellatedItem.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_RepositionedTessellatedItem.cxx diff --git a/src/StepVisual/StepVisual_RepositionedTessellatedItem.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_RepositionedTessellatedItem.hxx similarity index 100% rename from src/StepVisual/StepVisual_RepositionedTessellatedItem.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_RepositionedTessellatedItem.hxx diff --git a/src/StepVisual/StepVisual_ShadingSurfaceMethod.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_ShadingSurfaceMethod.hxx similarity index 100% rename from src/StepVisual/StepVisual_ShadingSurfaceMethod.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_ShadingSurfaceMethod.hxx diff --git a/src/StepVisual/StepVisual_StyleContextSelect.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_StyleContextSelect.cxx similarity index 100% rename from src/StepVisual/StepVisual_StyleContextSelect.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_StyleContextSelect.cxx diff --git a/src/StepVisual/StepVisual_StyleContextSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_StyleContextSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_StyleContextSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_StyleContextSelect.hxx diff --git a/src/StepVisual/StepVisual_StyledItem.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_StyledItem.cxx similarity index 100% rename from src/StepVisual/StepVisual_StyledItem.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_StyledItem.cxx diff --git a/src/StepVisual/StepVisual_StyledItem.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_StyledItem.hxx similarity index 100% rename from src/StepVisual/StepVisual_StyledItem.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_StyledItem.hxx diff --git a/src/StepVisual/StepVisual_StyledItemTarget.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_StyledItemTarget.cxx similarity index 100% rename from src/StepVisual/StepVisual_StyledItemTarget.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_StyledItemTarget.cxx diff --git a/src/StepVisual/StepVisual_StyledItemTarget.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_StyledItemTarget.hxx similarity index 100% rename from src/StepVisual/StepVisual_StyledItemTarget.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_StyledItemTarget.hxx diff --git a/src/StepVisual/StepVisual_SurfaceSide.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceSide.hxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceSide.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceSide.hxx diff --git a/src/StepVisual/StepVisual_SurfaceSideStyle.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceSideStyle.cxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceSideStyle.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceSideStyle.cxx diff --git a/src/StepVisual/StepVisual_SurfaceSideStyle.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceSideStyle.hxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceSideStyle.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceSideStyle.hxx diff --git a/src/StepVisual/StepVisual_SurfaceStyleBoundary.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleBoundary.cxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceStyleBoundary.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleBoundary.cxx diff --git a/src/StepVisual/StepVisual_SurfaceStyleBoundary.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleBoundary.hxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceStyleBoundary.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleBoundary.hxx diff --git a/src/StepVisual/StepVisual_SurfaceStyleControlGrid.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleControlGrid.cxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceStyleControlGrid.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleControlGrid.cxx diff --git a/src/StepVisual/StepVisual_SurfaceStyleControlGrid.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleControlGrid.hxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceStyleControlGrid.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleControlGrid.hxx diff --git a/src/StepVisual/StepVisual_SurfaceStyleElementSelect.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleElementSelect.cxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceStyleElementSelect.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleElementSelect.cxx diff --git a/src/StepVisual/StepVisual_SurfaceStyleElementSelect.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleElementSelect.hxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceStyleElementSelect.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleElementSelect.hxx diff --git a/src/StepVisual/StepVisual_SurfaceStyleFillArea.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleFillArea.cxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceStyleFillArea.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleFillArea.cxx diff --git a/src/StepVisual/StepVisual_SurfaceStyleFillArea.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleFillArea.hxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceStyleFillArea.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleFillArea.hxx diff --git a/src/StepVisual/StepVisual_SurfaceStyleParameterLine.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleParameterLine.cxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceStyleParameterLine.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleParameterLine.cxx diff --git a/src/StepVisual/StepVisual_SurfaceStyleParameterLine.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleParameterLine.hxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceStyleParameterLine.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleParameterLine.hxx diff --git a/src/StepVisual/StepVisual_SurfaceStyleReflectanceAmbient.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleReflectanceAmbient.cxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceStyleReflectanceAmbient.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleReflectanceAmbient.cxx diff --git a/src/StepVisual/StepVisual_SurfaceStyleReflectanceAmbient.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleReflectanceAmbient.hxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceStyleReflectanceAmbient.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleReflectanceAmbient.hxx diff --git a/src/StepVisual/StepVisual_SurfaceStyleRendering.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleRendering.cxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceStyleRendering.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleRendering.cxx diff --git a/src/StepVisual/StepVisual_SurfaceStyleRendering.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleRendering.hxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceStyleRendering.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleRendering.hxx diff --git a/src/StepVisual/StepVisual_SurfaceStyleRenderingWithProperties.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleRenderingWithProperties.cxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceStyleRenderingWithProperties.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleRenderingWithProperties.cxx diff --git a/src/StepVisual/StepVisual_SurfaceStyleRenderingWithProperties.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleRenderingWithProperties.hxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceStyleRenderingWithProperties.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleRenderingWithProperties.hxx diff --git a/src/StepVisual/StepVisual_SurfaceStyleSegmentationCurve.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleSegmentationCurve.cxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceStyleSegmentationCurve.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleSegmentationCurve.cxx diff --git a/src/StepVisual/StepVisual_SurfaceStyleSegmentationCurve.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleSegmentationCurve.hxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceStyleSegmentationCurve.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleSegmentationCurve.hxx diff --git a/src/StepVisual/StepVisual_SurfaceStyleSilhouette.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleSilhouette.cxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceStyleSilhouette.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleSilhouette.cxx diff --git a/src/StepVisual/StepVisual_SurfaceStyleSilhouette.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleSilhouette.hxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceStyleSilhouette.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleSilhouette.hxx diff --git a/src/StepVisual/StepVisual_SurfaceStyleTransparent.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleTransparent.cxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceStyleTransparent.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleTransparent.cxx diff --git a/src/StepVisual/StepVisual_SurfaceStyleTransparent.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleTransparent.hxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceStyleTransparent.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleTransparent.hxx diff --git a/src/StepVisual/StepVisual_SurfaceStyleUsage.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleUsage.cxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceStyleUsage.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleUsage.cxx diff --git a/src/StepVisual/StepVisual_SurfaceStyleUsage.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleUsage.hxx similarity index 100% rename from src/StepVisual/StepVisual_SurfaceStyleUsage.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_SurfaceStyleUsage.hxx diff --git a/src/StepVisual/StepVisual_Template.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_Template.cxx similarity index 100% rename from src/StepVisual/StepVisual_Template.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_Template.cxx diff --git a/src/StepVisual/StepVisual_Template.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_Template.hxx similarity index 100% rename from src/StepVisual/StepVisual_Template.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_Template.hxx diff --git a/src/StepVisual/StepVisual_TemplateInstance.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TemplateInstance.cxx similarity index 100% rename from src/StepVisual/StepVisual_TemplateInstance.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TemplateInstance.cxx diff --git a/src/StepVisual/StepVisual_TemplateInstance.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TemplateInstance.hxx similarity index 100% rename from src/StepVisual/StepVisual_TemplateInstance.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TemplateInstance.hxx diff --git a/src/StepVisual/StepVisual_TessellatedAnnotationOccurrence.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedAnnotationOccurrence.cxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedAnnotationOccurrence.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedAnnotationOccurrence.cxx diff --git a/src/StepVisual/StepVisual_TessellatedAnnotationOccurrence.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedAnnotationOccurrence.hxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedAnnotationOccurrence.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedAnnotationOccurrence.hxx diff --git a/src/StepVisual/StepVisual_TessellatedConnectingEdge.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedConnectingEdge.cxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedConnectingEdge.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedConnectingEdge.cxx diff --git a/src/StepVisual/StepVisual_TessellatedConnectingEdge.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedConnectingEdge.hxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedConnectingEdge.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedConnectingEdge.hxx diff --git a/src/StepVisual/StepVisual_TessellatedCurveSet.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedCurveSet.cxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedCurveSet.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedCurveSet.cxx diff --git a/src/StepVisual/StepVisual_TessellatedCurveSet.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedCurveSet.hxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedCurveSet.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedCurveSet.hxx diff --git a/src/StepVisual/StepVisual_TessellatedEdge.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedEdge.cxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedEdge.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedEdge.cxx diff --git a/src/StepVisual/StepVisual_TessellatedEdge.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedEdge.hxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedEdge.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedEdge.hxx diff --git a/src/StepVisual/StepVisual_TessellatedEdgeOrVertex.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedEdgeOrVertex.cxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedEdgeOrVertex.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedEdgeOrVertex.cxx diff --git a/src/StepVisual/StepVisual_TessellatedEdgeOrVertex.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedEdgeOrVertex.hxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedEdgeOrVertex.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedEdgeOrVertex.hxx diff --git a/src/StepVisual/StepVisual_TessellatedFace.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedFace.cxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedFace.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedFace.cxx diff --git a/src/StepVisual/StepVisual_TessellatedFace.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedFace.hxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedFace.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedFace.hxx diff --git a/src/StepVisual/StepVisual_TessellatedGeometricSet.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedGeometricSet.cxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedGeometricSet.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedGeometricSet.cxx diff --git a/src/StepVisual/StepVisual_TessellatedGeometricSet.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedGeometricSet.hxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedGeometricSet.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedGeometricSet.hxx diff --git a/src/StepVisual/StepVisual_TessellatedItem.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedItem.cxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedItem.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedItem.cxx diff --git a/src/StepVisual/StepVisual_TessellatedItem.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedItem.hxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedItem.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedItem.hxx diff --git a/src/StepVisual/StepVisual_TessellatedPointSet.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedPointSet.cxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedPointSet.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedPointSet.cxx diff --git a/src/StepVisual/StepVisual_TessellatedPointSet.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedPointSet.hxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedPointSet.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedPointSet.hxx diff --git a/src/StepVisual/StepVisual_TessellatedShapeRepresentation.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedShapeRepresentation.cxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedShapeRepresentation.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedShapeRepresentation.cxx diff --git a/src/StepVisual/StepVisual_TessellatedShapeRepresentation.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedShapeRepresentation.hxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedShapeRepresentation.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedShapeRepresentation.hxx diff --git a/src/StepVisual/StepVisual_TessellatedShapeRepresentationWithAccuracyParameters.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedShapeRepresentationWithAccuracyParameters.cxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedShapeRepresentationWithAccuracyParameters.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedShapeRepresentationWithAccuracyParameters.cxx diff --git a/src/StepVisual/StepVisual_TessellatedShapeRepresentationWithAccuracyParameters.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedShapeRepresentationWithAccuracyParameters.hxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedShapeRepresentationWithAccuracyParameters.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedShapeRepresentationWithAccuracyParameters.hxx diff --git a/src/StepVisual/StepVisual_TessellatedShell.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedShell.cxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedShell.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedShell.cxx diff --git a/src/StepVisual/StepVisual_TessellatedShell.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedShell.hxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedShell.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedShell.hxx diff --git a/src/StepVisual/StepVisual_TessellatedSolid.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedSolid.cxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedSolid.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedSolid.cxx diff --git a/src/StepVisual/StepVisual_TessellatedSolid.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedSolid.hxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedSolid.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedSolid.hxx diff --git a/src/StepVisual/StepVisual_TessellatedStructuredItem.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedStructuredItem.cxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedStructuredItem.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedStructuredItem.cxx diff --git a/src/StepVisual/StepVisual_TessellatedStructuredItem.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedStructuredItem.hxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedStructuredItem.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedStructuredItem.hxx diff --git a/src/StepVisual/StepVisual_TessellatedSurfaceSet.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedSurfaceSet.cxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedSurfaceSet.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedSurfaceSet.cxx diff --git a/src/StepVisual/StepVisual_TessellatedSurfaceSet.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedSurfaceSet.hxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedSurfaceSet.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedSurfaceSet.hxx diff --git a/src/StepVisual/StepVisual_TessellatedVertex.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedVertex.cxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedVertex.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedVertex.cxx diff --git a/src/StepVisual/StepVisual_TessellatedVertex.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedVertex.hxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedVertex.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedVertex.hxx diff --git a/src/StepVisual/StepVisual_TessellatedWire.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedWire.cxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedWire.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedWire.cxx diff --git a/src/StepVisual/StepVisual_TessellatedWire.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedWire.hxx similarity index 100% rename from src/StepVisual/StepVisual_TessellatedWire.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TessellatedWire.hxx diff --git a/src/StepVisual/StepVisual_TextLiteral.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TextLiteral.cxx similarity index 100% rename from src/StepVisual/StepVisual_TextLiteral.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TextLiteral.cxx diff --git a/src/StepVisual/StepVisual_TextLiteral.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TextLiteral.hxx similarity index 100% rename from src/StepVisual/StepVisual_TextLiteral.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TextLiteral.hxx diff --git a/src/StepVisual/StepVisual_TextOrCharacter.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TextOrCharacter.cxx similarity index 100% rename from src/StepVisual/StepVisual_TextOrCharacter.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TextOrCharacter.cxx diff --git a/src/StepVisual/StepVisual_TextOrCharacter.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TextOrCharacter.hxx similarity index 100% rename from src/StepVisual/StepVisual_TextOrCharacter.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TextOrCharacter.hxx diff --git a/src/StepVisual/StepVisual_TextPath.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TextPath.hxx similarity index 100% rename from src/StepVisual/StepVisual_TextPath.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TextPath.hxx diff --git a/src/StepVisual/StepVisual_TextStyle.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TextStyle.cxx similarity index 100% rename from src/StepVisual/StepVisual_TextStyle.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TextStyle.cxx diff --git a/src/StepVisual/StepVisual_TextStyle.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TextStyle.hxx similarity index 100% rename from src/StepVisual/StepVisual_TextStyle.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TextStyle.hxx diff --git a/src/StepVisual/StepVisual_TextStyleForDefinedFont.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TextStyleForDefinedFont.cxx similarity index 100% rename from src/StepVisual/StepVisual_TextStyleForDefinedFont.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TextStyleForDefinedFont.cxx diff --git a/src/StepVisual/StepVisual_TextStyleForDefinedFont.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TextStyleForDefinedFont.hxx similarity index 100% rename from src/StepVisual/StepVisual_TextStyleForDefinedFont.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TextStyleForDefinedFont.hxx diff --git a/src/StepVisual/StepVisual_TextStyleWithBoxCharacteristics.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TextStyleWithBoxCharacteristics.cxx similarity index 100% rename from src/StepVisual/StepVisual_TextStyleWithBoxCharacteristics.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TextStyleWithBoxCharacteristics.cxx diff --git a/src/StepVisual/StepVisual_TextStyleWithBoxCharacteristics.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TextStyleWithBoxCharacteristics.hxx similarity index 100% rename from src/StepVisual/StepVisual_TextStyleWithBoxCharacteristics.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TextStyleWithBoxCharacteristics.hxx diff --git a/src/StepVisual/StepVisual_TriangulatedFace.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TriangulatedFace.cxx similarity index 100% rename from src/StepVisual/StepVisual_TriangulatedFace.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TriangulatedFace.cxx diff --git a/src/StepVisual/StepVisual_TriangulatedFace.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TriangulatedFace.hxx similarity index 100% rename from src/StepVisual/StepVisual_TriangulatedFace.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TriangulatedFace.hxx diff --git a/src/StepVisual/StepVisual_TriangulatedSurfaceSet.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TriangulatedSurfaceSet.cxx similarity index 100% rename from src/StepVisual/StepVisual_TriangulatedSurfaceSet.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TriangulatedSurfaceSet.cxx diff --git a/src/StepVisual/StepVisual_TriangulatedSurfaceSet.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_TriangulatedSurfaceSet.hxx similarity index 100% rename from src/StepVisual/StepVisual_TriangulatedSurfaceSet.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_TriangulatedSurfaceSet.hxx diff --git a/src/StepVisual/StepVisual_ViewVolume.cxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_ViewVolume.cxx similarity index 100% rename from src/StepVisual/StepVisual_ViewVolume.cxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_ViewVolume.cxx diff --git a/src/StepVisual/StepVisual_ViewVolume.hxx b/src/DataExchange/TKDESTEP/StepVisual/StepVisual_ViewVolume.hxx similarity index 100% rename from src/StepVisual/StepVisual_ViewVolume.hxx rename to src/DataExchange/TKDESTEP/StepVisual/StepVisual_ViewVolume.hxx diff --git a/src/TKDESTEP/TKDESTEP_pch.hxx b/src/DataExchange/TKDESTEP/TKDESTEP_pch.hxx similarity index 100% rename from src/TKDESTEP/TKDESTEP_pch.hxx rename to src/DataExchange/TKDESTEP/TKDESTEP_pch.hxx diff --git a/src/DataExchange/TKDESTEP/TopoDSToStep/FILES.cmake b/src/DataExchange/TKDESTEP/TopoDSToStep/FILES.cmake new file mode 100644 index 0000000000..3b431aa499 --- /dev/null +++ b/src/DataExchange/TKDESTEP/TopoDSToStep/FILES.cmake @@ -0,0 +1,45 @@ +# Source files for TopoDSToStep package +set(OCCT_TopoDSToStep_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TopoDSToStep_FILES + TopoDSToStep.cxx + TopoDSToStep.hxx + TopoDSToStep_Builder.cxx + TopoDSToStep_Builder.hxx + TopoDSToStep_BuilderError.hxx + TopoDSToStep_FacetedError.hxx + TopoDSToStep_FacetedTool.cxx + TopoDSToStep_FacetedTool.hxx + TopoDSToStep_MakeBrepWithVoids.cxx + TopoDSToStep_MakeBrepWithVoids.hxx + TopoDSToStep_MakeEdgeError.hxx + TopoDSToStep_MakeFaceError.hxx + TopoDSToStep_MakeFacetedBrep.cxx + TopoDSToStep_MakeFacetedBrep.hxx + TopoDSToStep_MakeFacetedBrepAndBrepWithVoids.cxx + TopoDSToStep_MakeFacetedBrepAndBrepWithVoids.hxx + TopoDSToStep_MakeGeometricCurveSet.cxx + TopoDSToStep_MakeGeometricCurveSet.hxx + TopoDSToStep_MakeManifoldSolidBrep.cxx + TopoDSToStep_MakeManifoldSolidBrep.hxx + TopoDSToStep_MakeShellBasedSurfaceModel.cxx + TopoDSToStep_MakeShellBasedSurfaceModel.hxx + TopoDSToStep_MakeStepEdge.cxx + TopoDSToStep_MakeStepEdge.hxx + TopoDSToStep_MakeStepFace.cxx + TopoDSToStep_MakeStepFace.hxx + TopoDSToStep_MakeStepVertex.cxx + TopoDSToStep_MakeStepVertex.hxx + TopoDSToStep_MakeStepWire.cxx + TopoDSToStep_MakeStepWire.hxx + TopoDSToStep_MakeVertexError.hxx + TopoDSToStep_MakeWireError.hxx + TopoDSToStep_Root.cxx + TopoDSToStep_Root.hxx + TopoDSToStep_Tool.cxx + TopoDSToStep_Tool.hxx + TopoDSToStep_WireframeBuilder.cxx + TopoDSToStep_WireframeBuilder.hxx + TopoDSToStep_MakeTessellatedItem.cxx + TopoDSToStep_MakeTessellatedItem.hxx +) diff --git a/src/TopoDSToStep/TopoDSToStep.cxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep.cxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep.cxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep.cxx diff --git a/src/TopoDSToStep/TopoDSToStep.hxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep.hxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep.hxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep.hxx diff --git a/src/TopoDSToStep/TopoDSToStep_Builder.cxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_Builder.cxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_Builder.cxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_Builder.cxx diff --git a/src/TopoDSToStep/TopoDSToStep_Builder.hxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_Builder.hxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_Builder.hxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_Builder.hxx diff --git a/src/TopoDSToStep/TopoDSToStep_BuilderError.hxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_BuilderError.hxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_BuilderError.hxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_BuilderError.hxx diff --git a/src/TopoDSToStep/TopoDSToStep_FacetedError.hxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_FacetedError.hxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_FacetedError.hxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_FacetedError.hxx diff --git a/src/TopoDSToStep/TopoDSToStep_FacetedTool.cxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_FacetedTool.cxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_FacetedTool.cxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_FacetedTool.cxx diff --git a/src/TopoDSToStep/TopoDSToStep_FacetedTool.hxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_FacetedTool.hxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_FacetedTool.hxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_FacetedTool.hxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeBrepWithVoids.cxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeBrepWithVoids.cxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeBrepWithVoids.cxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeBrepWithVoids.cxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeBrepWithVoids.hxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeBrepWithVoids.hxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeBrepWithVoids.hxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeBrepWithVoids.hxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeEdgeError.hxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeEdgeError.hxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeEdgeError.hxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeEdgeError.hxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeFaceError.hxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeFaceError.hxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeFaceError.hxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeFaceError.hxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeFacetedBrep.cxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeFacetedBrep.cxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeFacetedBrep.cxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeFacetedBrep.cxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeFacetedBrep.hxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeFacetedBrep.hxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeFacetedBrep.hxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeFacetedBrep.hxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeFacetedBrepAndBrepWithVoids.cxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeFacetedBrepAndBrepWithVoids.cxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeFacetedBrepAndBrepWithVoids.cxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeFacetedBrepAndBrepWithVoids.cxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeFacetedBrepAndBrepWithVoids.hxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeFacetedBrepAndBrepWithVoids.hxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeFacetedBrepAndBrepWithVoids.hxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeFacetedBrepAndBrepWithVoids.hxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeGeometricCurveSet.cxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeGeometricCurveSet.cxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeGeometricCurveSet.cxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeGeometricCurveSet.cxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeGeometricCurveSet.hxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeGeometricCurveSet.hxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeGeometricCurveSet.hxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeGeometricCurveSet.hxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeManifoldSolidBrep.cxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeManifoldSolidBrep.cxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeManifoldSolidBrep.cxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeManifoldSolidBrep.cxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeManifoldSolidBrep.hxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeManifoldSolidBrep.hxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeManifoldSolidBrep.hxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeManifoldSolidBrep.hxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeShellBasedSurfaceModel.cxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeShellBasedSurfaceModel.cxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeShellBasedSurfaceModel.cxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeShellBasedSurfaceModel.cxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeShellBasedSurfaceModel.hxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeShellBasedSurfaceModel.hxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeShellBasedSurfaceModel.hxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeShellBasedSurfaceModel.hxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeStepEdge.cxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeStepEdge.cxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeStepEdge.cxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeStepEdge.cxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeStepEdge.hxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeStepEdge.hxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeStepEdge.hxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeStepEdge.hxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeStepFace.cxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeStepFace.cxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeStepFace.cxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeStepFace.cxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeStepFace.hxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeStepFace.hxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeStepFace.hxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeStepFace.hxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeStepVertex.cxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeStepVertex.cxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeStepVertex.cxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeStepVertex.cxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeStepVertex.hxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeStepVertex.hxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeStepVertex.hxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeStepVertex.hxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeStepWire.cxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeStepWire.cxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeStepWire.cxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeStepWire.cxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeStepWire.hxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeStepWire.hxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeStepWire.hxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeStepWire.hxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeTessellatedItem.cxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeTessellatedItem.cxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeTessellatedItem.cxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeTessellatedItem.cxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeTessellatedItem.hxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeTessellatedItem.hxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeTessellatedItem.hxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeTessellatedItem.hxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeVertexError.hxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeVertexError.hxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeVertexError.hxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeVertexError.hxx diff --git a/src/TopoDSToStep/TopoDSToStep_MakeWireError.hxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeWireError.hxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_MakeWireError.hxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_MakeWireError.hxx diff --git a/src/TopoDSToStep/TopoDSToStep_Root.cxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_Root.cxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_Root.cxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_Root.cxx diff --git a/src/TopoDSToStep/TopoDSToStep_Root.hxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_Root.hxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_Root.hxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_Root.hxx diff --git a/src/TopoDSToStep/TopoDSToStep_Tool.cxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_Tool.cxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_Tool.cxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_Tool.cxx diff --git a/src/TopoDSToStep/TopoDSToStep_Tool.hxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_Tool.hxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_Tool.hxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_Tool.hxx diff --git a/src/TopoDSToStep/TopoDSToStep_WireframeBuilder.cxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_WireframeBuilder.cxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_WireframeBuilder.cxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_WireframeBuilder.cxx diff --git a/src/TopoDSToStep/TopoDSToStep_WireframeBuilder.hxx b/src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_WireframeBuilder.hxx similarity index 100% rename from src/TopoDSToStep/TopoDSToStep_WireframeBuilder.hxx rename to src/DataExchange/TKDESTEP/TopoDSToStep/TopoDSToStep_WireframeBuilder.hxx diff --git a/src/TKDESTL/CMakeLists.txt b/src/DataExchange/TKDESTL/CMakeLists.txt similarity index 100% rename from src/TKDESTL/CMakeLists.txt rename to src/DataExchange/TKDESTL/CMakeLists.txt diff --git a/src/DESTL/DESTL_ConfigurationNode.cxx b/src/DataExchange/TKDESTL/DESTL/DESTL_ConfigurationNode.cxx similarity index 100% rename from src/DESTL/DESTL_ConfigurationNode.cxx rename to src/DataExchange/TKDESTL/DESTL/DESTL_ConfigurationNode.cxx diff --git a/src/DESTL/DESTL_ConfigurationNode.hxx b/src/DataExchange/TKDESTL/DESTL/DESTL_ConfigurationNode.hxx similarity index 100% rename from src/DESTL/DESTL_ConfigurationNode.hxx rename to src/DataExchange/TKDESTL/DESTL/DESTL_ConfigurationNode.hxx diff --git a/src/DESTL/DESTL_Provider.cxx b/src/DataExchange/TKDESTL/DESTL/DESTL_Provider.cxx similarity index 100% rename from src/DESTL/DESTL_Provider.cxx rename to src/DataExchange/TKDESTL/DESTL/DESTL_Provider.cxx diff --git a/src/DESTL/DESTL_Provider.hxx b/src/DataExchange/TKDESTL/DESTL/DESTL_Provider.hxx similarity index 100% rename from src/DESTL/DESTL_Provider.hxx rename to src/DataExchange/TKDESTL/DESTL/DESTL_Provider.hxx diff --git a/src/DataExchange/TKDESTL/DESTL/FILES.cmake b/src/DataExchange/TKDESTL/DESTL/FILES.cmake new file mode 100644 index 0000000000..365ee41123 --- /dev/null +++ b/src/DataExchange/TKDESTL/DESTL/FILES.cmake @@ -0,0 +1,9 @@ +# Source files for DESTL package +set(OCCT_DESTL_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_DESTL_FILES + DESTL_ConfigurationNode.cxx + DESTL_ConfigurationNode.hxx + DESTL_Provider.cxx + DESTL_Provider.hxx +) diff --git a/src/DataExchange/TKDESTL/EXTERNLIB.cmake b/src/DataExchange/TKDESTL/EXTERNLIB.cmake new file mode 100644 index 0000000000..9bb38b34e4 --- /dev/null +++ b/src/DataExchange/TKDESTL/EXTERNLIB.cmake @@ -0,0 +1,12 @@ +# External dependencies for TKDESTL +set(OCCT_TKDESTL_EXTERNAL_LIBS + TKDE + TKernel + TKMath + TKBRep + TKG2d + TKG3d + TKTopAlgo + TKLCAF + TKXCAF +) diff --git a/src/DataExchange/TKDESTL/FILES.cmake b/src/DataExchange/TKDESTL/FILES.cmake new file mode 100644 index 0000000000..93e35cccfd --- /dev/null +++ b/src/DataExchange/TKDESTL/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKDESTL +set(OCCT_TKDESTL_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKDESTL_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/DataExchange/TKDESTL/PACKAGES.cmake b/src/DataExchange/TKDESTL/PACKAGES.cmake new file mode 100644 index 0000000000..c5fdb43039 --- /dev/null +++ b/src/DataExchange/TKDESTL/PACKAGES.cmake @@ -0,0 +1,6 @@ +# Auto-generated list of packages for TKDESTL toolkit +set(OCCT_TKDESTL_LIST_OF_PACKAGES + StlAPI + RWStl + DESTL +) diff --git a/src/DataExchange/TKDESTL/RWStl/FILES.cmake b/src/DataExchange/TKDESTL/RWStl/FILES.cmake new file mode 100644 index 0000000000..4e2036b5d1 --- /dev/null +++ b/src/DataExchange/TKDESTL/RWStl/FILES.cmake @@ -0,0 +1,11 @@ +# Source files for RWStl package +set(OCCT_RWStl_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_RWStl_FILES + RWStl.cxx + RWStl.hxx + RWStl_Reader.cxx + RWStl_Reader.hxx + RWStl_ConfigurationNode.hxx + RWStl_Provider.hxx +) diff --git a/src/RWStl/RWStl.cxx b/src/DataExchange/TKDESTL/RWStl/RWStl.cxx similarity index 100% rename from src/RWStl/RWStl.cxx rename to src/DataExchange/TKDESTL/RWStl/RWStl.cxx diff --git a/src/RWStl/RWStl.hxx b/src/DataExchange/TKDESTL/RWStl/RWStl.hxx similarity index 100% rename from src/RWStl/RWStl.hxx rename to src/DataExchange/TKDESTL/RWStl/RWStl.hxx diff --git a/src/RWStl/RWStl_ConfigurationNode.hxx b/src/DataExchange/TKDESTL/RWStl/RWStl_ConfigurationNode.hxx similarity index 100% rename from src/RWStl/RWStl_ConfigurationNode.hxx rename to src/DataExchange/TKDESTL/RWStl/RWStl_ConfigurationNode.hxx diff --git a/src/RWStl/RWStl_Provider.hxx b/src/DataExchange/TKDESTL/RWStl/RWStl_Provider.hxx similarity index 100% rename from src/RWStl/RWStl_Provider.hxx rename to src/DataExchange/TKDESTL/RWStl/RWStl_Provider.hxx diff --git a/src/RWStl/RWStl_Reader.cxx b/src/DataExchange/TKDESTL/RWStl/RWStl_Reader.cxx similarity index 100% rename from src/RWStl/RWStl_Reader.cxx rename to src/DataExchange/TKDESTL/RWStl/RWStl_Reader.cxx diff --git a/src/RWStl/RWStl_Reader.hxx b/src/DataExchange/TKDESTL/RWStl/RWStl_Reader.hxx similarity index 100% rename from src/RWStl/RWStl_Reader.hxx rename to src/DataExchange/TKDESTL/RWStl/RWStl_Reader.hxx diff --git a/src/DataExchange/TKDESTL/StlAPI/FILES.cmake b/src/DataExchange/TKDESTL/StlAPI/FILES.cmake new file mode 100644 index 0000000000..737e7274e0 --- /dev/null +++ b/src/DataExchange/TKDESTL/StlAPI/FILES.cmake @@ -0,0 +1,11 @@ +# Source files for StlAPI package +set(OCCT_StlAPI_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StlAPI_FILES + StlAPI.cxx + StlAPI.hxx + StlAPI_Reader.cxx + StlAPI_Reader.hxx + StlAPI_Writer.cxx + StlAPI_Writer.hxx +) diff --git a/src/StlAPI/StlAPI.cxx b/src/DataExchange/TKDESTL/StlAPI/StlAPI.cxx similarity index 100% rename from src/StlAPI/StlAPI.cxx rename to src/DataExchange/TKDESTL/StlAPI/StlAPI.cxx diff --git a/src/StlAPI/StlAPI.hxx b/src/DataExchange/TKDESTL/StlAPI/StlAPI.hxx similarity index 100% rename from src/StlAPI/StlAPI.hxx rename to src/DataExchange/TKDESTL/StlAPI/StlAPI.hxx diff --git a/src/StlAPI/StlAPI_Reader.cxx b/src/DataExchange/TKDESTL/StlAPI/StlAPI_Reader.cxx similarity index 100% rename from src/StlAPI/StlAPI_Reader.cxx rename to src/DataExchange/TKDESTL/StlAPI/StlAPI_Reader.cxx diff --git a/src/StlAPI/StlAPI_Reader.hxx b/src/DataExchange/TKDESTL/StlAPI/StlAPI_Reader.hxx similarity index 100% rename from src/StlAPI/StlAPI_Reader.hxx rename to src/DataExchange/TKDESTL/StlAPI/StlAPI_Reader.hxx diff --git a/src/StlAPI/StlAPI_Writer.cxx b/src/DataExchange/TKDESTL/StlAPI/StlAPI_Writer.cxx similarity index 100% rename from src/StlAPI/StlAPI_Writer.cxx rename to src/DataExchange/TKDESTL/StlAPI/StlAPI_Writer.cxx diff --git a/src/StlAPI/StlAPI_Writer.hxx b/src/DataExchange/TKDESTL/StlAPI/StlAPI_Writer.hxx similarity index 100% rename from src/StlAPI/StlAPI_Writer.hxx rename to src/DataExchange/TKDESTL/StlAPI/StlAPI_Writer.hxx diff --git a/src/TKDEVRML/CMakeLists.txt b/src/DataExchange/TKDEVRML/CMakeLists.txt similarity index 100% rename from src/TKDEVRML/CMakeLists.txt rename to src/DataExchange/TKDEVRML/CMakeLists.txt diff --git a/src/DEVRML/DEVRML_ConfigurationNode.cxx b/src/DataExchange/TKDEVRML/DEVRML/DEVRML_ConfigurationNode.cxx similarity index 100% rename from src/DEVRML/DEVRML_ConfigurationNode.cxx rename to src/DataExchange/TKDEVRML/DEVRML/DEVRML_ConfigurationNode.cxx diff --git a/src/DEVRML/DEVRML_ConfigurationNode.hxx b/src/DataExchange/TKDEVRML/DEVRML/DEVRML_ConfigurationNode.hxx similarity index 100% rename from src/DEVRML/DEVRML_ConfigurationNode.hxx rename to src/DataExchange/TKDEVRML/DEVRML/DEVRML_ConfigurationNode.hxx diff --git a/src/DEVRML/DEVRML_Provider.cxx b/src/DataExchange/TKDEVRML/DEVRML/DEVRML_Provider.cxx similarity index 100% rename from src/DEVRML/DEVRML_Provider.cxx rename to src/DataExchange/TKDEVRML/DEVRML/DEVRML_Provider.cxx diff --git a/src/DEVRML/DEVRML_Provider.hxx b/src/DataExchange/TKDEVRML/DEVRML/DEVRML_Provider.hxx similarity index 100% rename from src/DEVRML/DEVRML_Provider.hxx rename to src/DataExchange/TKDEVRML/DEVRML/DEVRML_Provider.hxx diff --git a/src/DataExchange/TKDEVRML/DEVRML/FILES.cmake b/src/DataExchange/TKDEVRML/DEVRML/FILES.cmake new file mode 100644 index 0000000000..7a42fb2095 --- /dev/null +++ b/src/DataExchange/TKDEVRML/DEVRML/FILES.cmake @@ -0,0 +1,9 @@ +# Source files for DEVRML package +set(OCCT_DEVRML_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_DEVRML_FILES + DEVRML_ConfigurationNode.cxx + DEVRML_ConfigurationNode.hxx + DEVRML_Provider.cxx + DEVRML_Provider.hxx +) diff --git a/src/DataExchange/TKDEVRML/EXTERNLIB.cmake b/src/DataExchange/TKDEVRML/EXTERNLIB.cmake new file mode 100644 index 0000000000..bad04c8b03 --- /dev/null +++ b/src/DataExchange/TKDEVRML/EXTERNLIB.cmake @@ -0,0 +1,21 @@ +# External dependencies for TKDEVRML +set(OCCT_TKDEVRML_EXTERNAL_LIBS + TKBRep + TKDE + TKTopAlgo + TKMath + TKGeomBase + TKernel + TKPrim + TKG2d + TKG3d + TKMesh + TKHLR + TKRWMesh + TKService + TKGeomAlgo + TKV3d + TKLCAF + TKXCAF + TKXSBase +) diff --git a/src/DataExchange/TKDEVRML/FILES.cmake b/src/DataExchange/TKDEVRML/FILES.cmake new file mode 100644 index 0000000000..42e6cd4c1d --- /dev/null +++ b/src/DataExchange/TKDEVRML/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKDEVRML +set(OCCT_TKDEVRML_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKDEVRML_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/DataExchange/TKDEVRML/PACKAGES.cmake b/src/DataExchange/TKDEVRML/PACKAGES.cmake new file mode 100644 index 0000000000..048f8c639a --- /dev/null +++ b/src/DataExchange/TKDEVRML/PACKAGES.cmake @@ -0,0 +1,8 @@ +# Auto-generated list of packages for TKDEVRML toolkit +set(OCCT_TKDEVRML_LIST_OF_PACKAGES + VrmlConverter + VrmlAPI + Vrml + VrmlData + DEVRML +) diff --git a/src/DataExchange/TKDEVRML/Vrml/FILES.cmake b/src/DataExchange/TKDEVRML/Vrml/FILES.cmake new file mode 100644 index 0000000000..30a3bf8925 --- /dev/null +++ b/src/DataExchange/TKDEVRML/Vrml/FILES.cmake @@ -0,0 +1,100 @@ +# Source files for Vrml package +set(OCCT_Vrml_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Vrml_FILES + Vrml.cxx + Vrml.hxx + Vrml_AsciiText.cxx + Vrml_AsciiText.hxx + Vrml_AsciiTextJustification.hxx + Vrml_Cone.cxx + Vrml_Cone.hxx + Vrml_ConeParts.hxx + Vrml_ConfigurationNode.hxx + Vrml_Coordinate3.cxx + Vrml_Coordinate3.hxx + Vrml_Cube.cxx + Vrml_Cube.hxx + Vrml_Cylinder.cxx + Vrml_Cylinder.hxx + Vrml_CylinderParts.hxx + Vrml_DirectionalLight.cxx + Vrml_DirectionalLight.hxx + Vrml_FaceType.hxx + Vrml_FontStyle.cxx + Vrml_FontStyle.hxx + Vrml_FontStyleFamily.hxx + Vrml_FontStyleStyle.hxx + Vrml_Group.cxx + Vrml_Group.hxx + Vrml_IndexedFaceSet.cxx + Vrml_IndexedFaceSet.hxx + Vrml_IndexedLineSet.cxx + Vrml_IndexedLineSet.hxx + Vrml_Info.cxx + Vrml_Info.hxx + Vrml_Instancing.cxx + Vrml_Instancing.hxx + Vrml_LOD.cxx + Vrml_LOD.hxx + Vrml_Material.cxx + Vrml_Material.hxx + Vrml_MaterialBinding.cxx + Vrml_MaterialBinding.hxx + Vrml_MaterialBindingAndNormalBinding.hxx + Vrml_MatrixTransform.cxx + Vrml_MatrixTransform.hxx + Vrml_Normal.cxx + Vrml_Normal.hxx + Vrml_NormalBinding.cxx + Vrml_NormalBinding.hxx + Vrml_OrthographicCamera.cxx + Vrml_OrthographicCamera.hxx + Vrml_PerspectiveCamera.cxx + Vrml_PerspectiveCamera.hxx + Vrml_PointLight.cxx + Vrml_PointLight.hxx + Vrml_PointSet.cxx + Vrml_PointSet.hxx + Vrml_Provider.hxx + Vrml_Rotation.cxx + Vrml_Rotation.hxx + Vrml_Scale.cxx + Vrml_Scale.hxx + Vrml_Separator.cxx + Vrml_Separator.hxx + Vrml_SeparatorRenderCulling.hxx + Vrml_SFImage.cxx + Vrml_SFImage.hxx + Vrml_SFImageNumber.hxx + Vrml_SFRotation.cxx + Vrml_SFRotation.hxx + Vrml_ShapeHints.cxx + Vrml_ShapeHints.hxx + Vrml_ShapeType.hxx + Vrml_Sphere.cxx + Vrml_Sphere.hxx + Vrml_SpotLight.cxx + Vrml_SpotLight.hxx + Vrml_Switch.cxx + Vrml_Switch.hxx + Vrml_Texture2.cxx + Vrml_Texture2.hxx + Vrml_Texture2Transform.cxx + Vrml_Texture2Transform.hxx + Vrml_Texture2Wrap.hxx + Vrml_TextureCoordinate2.cxx + Vrml_TextureCoordinate2.hxx + Vrml_Transform.cxx + Vrml_Transform.hxx + Vrml_TransformSeparator.cxx + Vrml_TransformSeparator.hxx + Vrml_Translation.cxx + Vrml_Translation.hxx + Vrml_VertexOrdering.hxx + Vrml_WWWAnchor.cxx + Vrml_WWWAnchor.hxx + Vrml_WWWAnchorMap.hxx + Vrml_WWWInline.cxx + Vrml_WWWInline.hxx +) diff --git a/src/Vrml/Vrml.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml.cxx similarity index 100% rename from src/Vrml/Vrml.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml.cxx diff --git a/src/Vrml/Vrml.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml.hxx similarity index 100% rename from src/Vrml/Vrml.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml.hxx diff --git a/src/Vrml/Vrml_AsciiText.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_AsciiText.cxx similarity index 100% rename from src/Vrml/Vrml_AsciiText.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_AsciiText.cxx diff --git a/src/Vrml/Vrml_AsciiText.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_AsciiText.hxx similarity index 100% rename from src/Vrml/Vrml_AsciiText.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_AsciiText.hxx diff --git a/src/Vrml/Vrml_AsciiTextJustification.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_AsciiTextJustification.hxx similarity index 100% rename from src/Vrml/Vrml_AsciiTextJustification.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_AsciiTextJustification.hxx diff --git a/src/Vrml/Vrml_Cone.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Cone.cxx similarity index 100% rename from src/Vrml/Vrml_Cone.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Cone.cxx diff --git a/src/Vrml/Vrml_Cone.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Cone.hxx similarity index 100% rename from src/Vrml/Vrml_Cone.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Cone.hxx diff --git a/src/Vrml/Vrml_ConeParts.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_ConeParts.hxx similarity index 100% rename from src/Vrml/Vrml_ConeParts.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_ConeParts.hxx diff --git a/src/Vrml/Vrml_ConfigurationNode.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_ConfigurationNode.hxx similarity index 100% rename from src/Vrml/Vrml_ConfigurationNode.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_ConfigurationNode.hxx diff --git a/src/Vrml/Vrml_Coordinate3.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Coordinate3.cxx similarity index 100% rename from src/Vrml/Vrml_Coordinate3.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Coordinate3.cxx diff --git a/src/Vrml/Vrml_Coordinate3.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Coordinate3.hxx similarity index 100% rename from src/Vrml/Vrml_Coordinate3.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Coordinate3.hxx diff --git a/src/Vrml/Vrml_Cube.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Cube.cxx similarity index 100% rename from src/Vrml/Vrml_Cube.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Cube.cxx diff --git a/src/Vrml/Vrml_Cube.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Cube.hxx similarity index 100% rename from src/Vrml/Vrml_Cube.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Cube.hxx diff --git a/src/Vrml/Vrml_Cylinder.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Cylinder.cxx similarity index 100% rename from src/Vrml/Vrml_Cylinder.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Cylinder.cxx diff --git a/src/Vrml/Vrml_Cylinder.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Cylinder.hxx similarity index 100% rename from src/Vrml/Vrml_Cylinder.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Cylinder.hxx diff --git a/src/Vrml/Vrml_CylinderParts.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_CylinderParts.hxx similarity index 100% rename from src/Vrml/Vrml_CylinderParts.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_CylinderParts.hxx diff --git a/src/Vrml/Vrml_DirectionalLight.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_DirectionalLight.cxx similarity index 100% rename from src/Vrml/Vrml_DirectionalLight.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_DirectionalLight.cxx diff --git a/src/Vrml/Vrml_DirectionalLight.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_DirectionalLight.hxx similarity index 100% rename from src/Vrml/Vrml_DirectionalLight.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_DirectionalLight.hxx diff --git a/src/Vrml/Vrml_FaceType.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_FaceType.hxx similarity index 100% rename from src/Vrml/Vrml_FaceType.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_FaceType.hxx diff --git a/src/Vrml/Vrml_FontStyle.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_FontStyle.cxx similarity index 100% rename from src/Vrml/Vrml_FontStyle.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_FontStyle.cxx diff --git a/src/Vrml/Vrml_FontStyle.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_FontStyle.hxx similarity index 100% rename from src/Vrml/Vrml_FontStyle.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_FontStyle.hxx diff --git a/src/Vrml/Vrml_FontStyleFamily.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_FontStyleFamily.hxx similarity index 100% rename from src/Vrml/Vrml_FontStyleFamily.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_FontStyleFamily.hxx diff --git a/src/Vrml/Vrml_FontStyleStyle.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_FontStyleStyle.hxx similarity index 100% rename from src/Vrml/Vrml_FontStyleStyle.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_FontStyleStyle.hxx diff --git a/src/Vrml/Vrml_Group.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Group.cxx similarity index 100% rename from src/Vrml/Vrml_Group.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Group.cxx diff --git a/src/Vrml/Vrml_Group.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Group.hxx similarity index 100% rename from src/Vrml/Vrml_Group.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Group.hxx diff --git a/src/Vrml/Vrml_IndexedFaceSet.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_IndexedFaceSet.cxx similarity index 100% rename from src/Vrml/Vrml_IndexedFaceSet.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_IndexedFaceSet.cxx diff --git a/src/Vrml/Vrml_IndexedFaceSet.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_IndexedFaceSet.hxx similarity index 100% rename from src/Vrml/Vrml_IndexedFaceSet.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_IndexedFaceSet.hxx diff --git a/src/Vrml/Vrml_IndexedLineSet.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_IndexedLineSet.cxx similarity index 100% rename from src/Vrml/Vrml_IndexedLineSet.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_IndexedLineSet.cxx diff --git a/src/Vrml/Vrml_IndexedLineSet.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_IndexedLineSet.hxx similarity index 100% rename from src/Vrml/Vrml_IndexedLineSet.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_IndexedLineSet.hxx diff --git a/src/Vrml/Vrml_Info.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Info.cxx similarity index 100% rename from src/Vrml/Vrml_Info.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Info.cxx diff --git a/src/Vrml/Vrml_Info.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Info.hxx similarity index 100% rename from src/Vrml/Vrml_Info.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Info.hxx diff --git a/src/Vrml/Vrml_Instancing.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Instancing.cxx similarity index 100% rename from src/Vrml/Vrml_Instancing.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Instancing.cxx diff --git a/src/Vrml/Vrml_Instancing.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Instancing.hxx similarity index 100% rename from src/Vrml/Vrml_Instancing.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Instancing.hxx diff --git a/src/Vrml/Vrml_LOD.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_LOD.cxx similarity index 100% rename from src/Vrml/Vrml_LOD.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_LOD.cxx diff --git a/src/Vrml/Vrml_LOD.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_LOD.hxx similarity index 100% rename from src/Vrml/Vrml_LOD.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_LOD.hxx diff --git a/src/Vrml/Vrml_Material.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Material.cxx similarity index 100% rename from src/Vrml/Vrml_Material.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Material.cxx diff --git a/src/Vrml/Vrml_Material.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Material.hxx similarity index 100% rename from src/Vrml/Vrml_Material.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Material.hxx diff --git a/src/Vrml/Vrml_MaterialBinding.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_MaterialBinding.cxx similarity index 100% rename from src/Vrml/Vrml_MaterialBinding.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_MaterialBinding.cxx diff --git a/src/Vrml/Vrml_MaterialBinding.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_MaterialBinding.hxx similarity index 100% rename from src/Vrml/Vrml_MaterialBinding.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_MaterialBinding.hxx diff --git a/src/Vrml/Vrml_MaterialBindingAndNormalBinding.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_MaterialBindingAndNormalBinding.hxx similarity index 100% rename from src/Vrml/Vrml_MaterialBindingAndNormalBinding.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_MaterialBindingAndNormalBinding.hxx diff --git a/src/Vrml/Vrml_MatrixTransform.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_MatrixTransform.cxx similarity index 100% rename from src/Vrml/Vrml_MatrixTransform.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_MatrixTransform.cxx diff --git a/src/Vrml/Vrml_MatrixTransform.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_MatrixTransform.hxx similarity index 100% rename from src/Vrml/Vrml_MatrixTransform.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_MatrixTransform.hxx diff --git a/src/Vrml/Vrml_Normal.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Normal.cxx similarity index 100% rename from src/Vrml/Vrml_Normal.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Normal.cxx diff --git a/src/Vrml/Vrml_Normal.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Normal.hxx similarity index 100% rename from src/Vrml/Vrml_Normal.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Normal.hxx diff --git a/src/Vrml/Vrml_NormalBinding.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_NormalBinding.cxx similarity index 100% rename from src/Vrml/Vrml_NormalBinding.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_NormalBinding.cxx diff --git a/src/Vrml/Vrml_NormalBinding.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_NormalBinding.hxx similarity index 100% rename from src/Vrml/Vrml_NormalBinding.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_NormalBinding.hxx diff --git a/src/Vrml/Vrml_OrthographicCamera.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_OrthographicCamera.cxx similarity index 100% rename from src/Vrml/Vrml_OrthographicCamera.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_OrthographicCamera.cxx diff --git a/src/Vrml/Vrml_OrthographicCamera.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_OrthographicCamera.hxx similarity index 100% rename from src/Vrml/Vrml_OrthographicCamera.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_OrthographicCamera.hxx diff --git a/src/Vrml/Vrml_PerspectiveCamera.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_PerspectiveCamera.cxx similarity index 100% rename from src/Vrml/Vrml_PerspectiveCamera.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_PerspectiveCamera.cxx diff --git a/src/Vrml/Vrml_PerspectiveCamera.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_PerspectiveCamera.hxx similarity index 100% rename from src/Vrml/Vrml_PerspectiveCamera.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_PerspectiveCamera.hxx diff --git a/src/Vrml/Vrml_PointLight.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_PointLight.cxx similarity index 100% rename from src/Vrml/Vrml_PointLight.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_PointLight.cxx diff --git a/src/Vrml/Vrml_PointLight.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_PointLight.hxx similarity index 100% rename from src/Vrml/Vrml_PointLight.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_PointLight.hxx diff --git a/src/Vrml/Vrml_PointSet.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_PointSet.cxx similarity index 100% rename from src/Vrml/Vrml_PointSet.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_PointSet.cxx diff --git a/src/Vrml/Vrml_PointSet.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_PointSet.hxx similarity index 100% rename from src/Vrml/Vrml_PointSet.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_PointSet.hxx diff --git a/src/Vrml/Vrml_Provider.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Provider.hxx similarity index 100% rename from src/Vrml/Vrml_Provider.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Provider.hxx diff --git a/src/Vrml/Vrml_Rotation.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Rotation.cxx similarity index 100% rename from src/Vrml/Vrml_Rotation.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Rotation.cxx diff --git a/src/Vrml/Vrml_Rotation.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Rotation.hxx similarity index 100% rename from src/Vrml/Vrml_Rotation.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Rotation.hxx diff --git a/src/Vrml/Vrml_SFImage.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_SFImage.cxx similarity index 100% rename from src/Vrml/Vrml_SFImage.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_SFImage.cxx diff --git a/src/Vrml/Vrml_SFImage.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_SFImage.hxx similarity index 100% rename from src/Vrml/Vrml_SFImage.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_SFImage.hxx diff --git a/src/Vrml/Vrml_SFImageNumber.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_SFImageNumber.hxx similarity index 100% rename from src/Vrml/Vrml_SFImageNumber.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_SFImageNumber.hxx diff --git a/src/Vrml/Vrml_SFRotation.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_SFRotation.cxx similarity index 100% rename from src/Vrml/Vrml_SFRotation.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_SFRotation.cxx diff --git a/src/Vrml/Vrml_SFRotation.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_SFRotation.hxx similarity index 100% rename from src/Vrml/Vrml_SFRotation.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_SFRotation.hxx diff --git a/src/Vrml/Vrml_Scale.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Scale.cxx similarity index 100% rename from src/Vrml/Vrml_Scale.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Scale.cxx diff --git a/src/Vrml/Vrml_Scale.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Scale.hxx similarity index 100% rename from src/Vrml/Vrml_Scale.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Scale.hxx diff --git a/src/Vrml/Vrml_Separator.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Separator.cxx similarity index 100% rename from src/Vrml/Vrml_Separator.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Separator.cxx diff --git a/src/Vrml/Vrml_Separator.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Separator.hxx similarity index 100% rename from src/Vrml/Vrml_Separator.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Separator.hxx diff --git a/src/Vrml/Vrml_SeparatorRenderCulling.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_SeparatorRenderCulling.hxx similarity index 100% rename from src/Vrml/Vrml_SeparatorRenderCulling.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_SeparatorRenderCulling.hxx diff --git a/src/Vrml/Vrml_ShapeHints.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_ShapeHints.cxx similarity index 100% rename from src/Vrml/Vrml_ShapeHints.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_ShapeHints.cxx diff --git a/src/Vrml/Vrml_ShapeHints.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_ShapeHints.hxx similarity index 100% rename from src/Vrml/Vrml_ShapeHints.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_ShapeHints.hxx diff --git a/src/Vrml/Vrml_ShapeType.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_ShapeType.hxx similarity index 100% rename from src/Vrml/Vrml_ShapeType.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_ShapeType.hxx diff --git a/src/Vrml/Vrml_Sphere.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Sphere.cxx similarity index 100% rename from src/Vrml/Vrml_Sphere.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Sphere.cxx diff --git a/src/Vrml/Vrml_Sphere.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Sphere.hxx similarity index 100% rename from src/Vrml/Vrml_Sphere.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Sphere.hxx diff --git a/src/Vrml/Vrml_SpotLight.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_SpotLight.cxx similarity index 100% rename from src/Vrml/Vrml_SpotLight.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_SpotLight.cxx diff --git a/src/Vrml/Vrml_SpotLight.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_SpotLight.hxx similarity index 100% rename from src/Vrml/Vrml_SpotLight.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_SpotLight.hxx diff --git a/src/Vrml/Vrml_Switch.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Switch.cxx similarity index 100% rename from src/Vrml/Vrml_Switch.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Switch.cxx diff --git a/src/Vrml/Vrml_Switch.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Switch.hxx similarity index 100% rename from src/Vrml/Vrml_Switch.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Switch.hxx diff --git a/src/Vrml/Vrml_Texture2.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Texture2.cxx similarity index 100% rename from src/Vrml/Vrml_Texture2.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Texture2.cxx diff --git a/src/Vrml/Vrml_Texture2.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Texture2.hxx similarity index 100% rename from src/Vrml/Vrml_Texture2.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Texture2.hxx diff --git a/src/Vrml/Vrml_Texture2Transform.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Texture2Transform.cxx similarity index 100% rename from src/Vrml/Vrml_Texture2Transform.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Texture2Transform.cxx diff --git a/src/Vrml/Vrml_Texture2Transform.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Texture2Transform.hxx similarity index 100% rename from src/Vrml/Vrml_Texture2Transform.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Texture2Transform.hxx diff --git a/src/Vrml/Vrml_Texture2Wrap.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Texture2Wrap.hxx similarity index 100% rename from src/Vrml/Vrml_Texture2Wrap.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Texture2Wrap.hxx diff --git a/src/Vrml/Vrml_TextureCoordinate2.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_TextureCoordinate2.cxx similarity index 100% rename from src/Vrml/Vrml_TextureCoordinate2.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_TextureCoordinate2.cxx diff --git a/src/Vrml/Vrml_TextureCoordinate2.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_TextureCoordinate2.hxx similarity index 100% rename from src/Vrml/Vrml_TextureCoordinate2.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_TextureCoordinate2.hxx diff --git a/src/Vrml/Vrml_Transform.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Transform.cxx similarity index 100% rename from src/Vrml/Vrml_Transform.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Transform.cxx diff --git a/src/Vrml/Vrml_Transform.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Transform.hxx similarity index 100% rename from src/Vrml/Vrml_Transform.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Transform.hxx diff --git a/src/Vrml/Vrml_TransformSeparator.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_TransformSeparator.cxx similarity index 100% rename from src/Vrml/Vrml_TransformSeparator.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_TransformSeparator.cxx diff --git a/src/Vrml/Vrml_TransformSeparator.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_TransformSeparator.hxx similarity index 100% rename from src/Vrml/Vrml_TransformSeparator.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_TransformSeparator.hxx diff --git a/src/Vrml/Vrml_Translation.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Translation.cxx similarity index 100% rename from src/Vrml/Vrml_Translation.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Translation.cxx diff --git a/src/Vrml/Vrml_Translation.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_Translation.hxx similarity index 100% rename from src/Vrml/Vrml_Translation.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_Translation.hxx diff --git a/src/Vrml/Vrml_VertexOrdering.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_VertexOrdering.hxx similarity index 100% rename from src/Vrml/Vrml_VertexOrdering.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_VertexOrdering.hxx diff --git a/src/Vrml/Vrml_WWWAnchor.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_WWWAnchor.cxx similarity index 100% rename from src/Vrml/Vrml_WWWAnchor.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_WWWAnchor.cxx diff --git a/src/Vrml/Vrml_WWWAnchor.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_WWWAnchor.hxx similarity index 100% rename from src/Vrml/Vrml_WWWAnchor.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_WWWAnchor.hxx diff --git a/src/Vrml/Vrml_WWWAnchorMap.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_WWWAnchorMap.hxx similarity index 100% rename from src/Vrml/Vrml_WWWAnchorMap.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_WWWAnchorMap.hxx diff --git a/src/Vrml/Vrml_WWWInline.cxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_WWWInline.cxx similarity index 100% rename from src/Vrml/Vrml_WWWInline.cxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_WWWInline.cxx diff --git a/src/Vrml/Vrml_WWWInline.hxx b/src/DataExchange/TKDEVRML/Vrml/Vrml_WWWInline.hxx similarity index 100% rename from src/Vrml/Vrml_WWWInline.hxx rename to src/DataExchange/TKDEVRML/Vrml/Vrml_WWWInline.hxx diff --git a/src/DataExchange/TKDEVRML/VrmlAPI/FILES.cmake b/src/DataExchange/TKDEVRML/VrmlAPI/FILES.cmake new file mode 100644 index 0000000000..70be1b7c7f --- /dev/null +++ b/src/DataExchange/TKDEVRML/VrmlAPI/FILES.cmake @@ -0,0 +1,12 @@ +# Source files for VrmlAPI package +set(OCCT_VrmlAPI_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_VrmlAPI_FILES + VrmlAPI.cxx + VrmlAPI.hxx + VrmlAPI_CafReader.cxx + VrmlAPI_CafReader.hxx + VrmlAPI_RepresentationOfShape.hxx + VrmlAPI_Writer.cxx + VrmlAPI_Writer.hxx +) diff --git a/src/VrmlAPI/VrmlAPI.cxx b/src/DataExchange/TKDEVRML/VrmlAPI/VrmlAPI.cxx similarity index 100% rename from src/VrmlAPI/VrmlAPI.cxx rename to src/DataExchange/TKDEVRML/VrmlAPI/VrmlAPI.cxx diff --git a/src/VrmlAPI/VrmlAPI.hxx b/src/DataExchange/TKDEVRML/VrmlAPI/VrmlAPI.hxx similarity index 100% rename from src/VrmlAPI/VrmlAPI.hxx rename to src/DataExchange/TKDEVRML/VrmlAPI/VrmlAPI.hxx diff --git a/src/VrmlAPI/VrmlAPI_CafReader.cxx b/src/DataExchange/TKDEVRML/VrmlAPI/VrmlAPI_CafReader.cxx similarity index 100% rename from src/VrmlAPI/VrmlAPI_CafReader.cxx rename to src/DataExchange/TKDEVRML/VrmlAPI/VrmlAPI_CafReader.cxx diff --git a/src/VrmlAPI/VrmlAPI_CafReader.hxx b/src/DataExchange/TKDEVRML/VrmlAPI/VrmlAPI_CafReader.hxx similarity index 100% rename from src/VrmlAPI/VrmlAPI_CafReader.hxx rename to src/DataExchange/TKDEVRML/VrmlAPI/VrmlAPI_CafReader.hxx diff --git a/src/VrmlAPI/VrmlAPI_RepresentationOfShape.hxx b/src/DataExchange/TKDEVRML/VrmlAPI/VrmlAPI_RepresentationOfShape.hxx similarity index 100% rename from src/VrmlAPI/VrmlAPI_RepresentationOfShape.hxx rename to src/DataExchange/TKDEVRML/VrmlAPI/VrmlAPI_RepresentationOfShape.hxx diff --git a/src/VrmlAPI/VrmlAPI_Writer.cxx b/src/DataExchange/TKDEVRML/VrmlAPI/VrmlAPI_Writer.cxx similarity index 100% rename from src/VrmlAPI/VrmlAPI_Writer.cxx rename to src/DataExchange/TKDEVRML/VrmlAPI/VrmlAPI_Writer.cxx diff --git a/src/VrmlAPI/VrmlAPI_Writer.hxx b/src/DataExchange/TKDEVRML/VrmlAPI/VrmlAPI_Writer.hxx similarity index 100% rename from src/VrmlAPI/VrmlAPI_Writer.hxx rename to src/DataExchange/TKDEVRML/VrmlAPI/VrmlAPI_Writer.hxx diff --git a/src/DataExchange/TKDEVRML/VrmlConverter/FILES.cmake b/src/DataExchange/TKDEVRML/VrmlConverter/FILES.cmake new file mode 100644 index 0000000000..38e3bc4a76 --- /dev/null +++ b/src/DataExchange/TKDEVRML/VrmlConverter/FILES.cmake @@ -0,0 +1,35 @@ +# Source files for VrmlConverter package +set(OCCT_VrmlConverter_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_VrmlConverter_FILES + VrmlConverter_Curve.cxx + VrmlConverter_Curve.hxx + VrmlConverter_DeflectionCurve.cxx + VrmlConverter_DeflectionCurve.hxx + VrmlConverter_Drawer.cxx + VrmlConverter_Drawer.hxx + VrmlConverter_HLRShape.cxx + VrmlConverter_HLRShape.hxx + VrmlConverter_IsoAspect.cxx + VrmlConverter_IsoAspect.hxx + VrmlConverter_LineAspect.cxx + VrmlConverter_LineAspect.hxx + VrmlConverter_PointAspect.cxx + VrmlConverter_PointAspect.hxx + VrmlConverter_Projector.cxx + VrmlConverter_Projector.hxx + VrmlConverter_ShadedShape.cxx + VrmlConverter_ShadedShape.hxx + VrmlConverter_ShadingAspect.cxx + VrmlConverter_ShadingAspect.hxx + VrmlConverter_TypeOfCamera.hxx + VrmlConverter_TypeOfLight.hxx + VrmlConverter_WFDeflectionRestrictedFace.cxx + VrmlConverter_WFDeflectionRestrictedFace.hxx + VrmlConverter_WFDeflectionShape.cxx + VrmlConverter_WFDeflectionShape.hxx + VrmlConverter_WFRestrictedFace.cxx + VrmlConverter_WFRestrictedFace.hxx + VrmlConverter_WFShape.cxx + VrmlConverter_WFShape.hxx +) diff --git a/src/VrmlConverter/VrmlConverter_Curve.cxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_Curve.cxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_Curve.cxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_Curve.cxx diff --git a/src/VrmlConverter/VrmlConverter_Curve.hxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_Curve.hxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_Curve.hxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_Curve.hxx diff --git a/src/VrmlConverter/VrmlConverter_DeflectionCurve.cxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_DeflectionCurve.cxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_DeflectionCurve.cxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_DeflectionCurve.cxx diff --git a/src/VrmlConverter/VrmlConverter_DeflectionCurve.hxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_DeflectionCurve.hxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_DeflectionCurve.hxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_DeflectionCurve.hxx diff --git a/src/VrmlConverter/VrmlConverter_Drawer.cxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_Drawer.cxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_Drawer.cxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_Drawer.cxx diff --git a/src/VrmlConverter/VrmlConverter_Drawer.hxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_Drawer.hxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_Drawer.hxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_Drawer.hxx diff --git a/src/VrmlConverter/VrmlConverter_HLRShape.cxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_HLRShape.cxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_HLRShape.cxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_HLRShape.cxx diff --git a/src/VrmlConverter/VrmlConverter_HLRShape.hxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_HLRShape.hxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_HLRShape.hxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_HLRShape.hxx diff --git a/src/VrmlConverter/VrmlConverter_IsoAspect.cxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_IsoAspect.cxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_IsoAspect.cxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_IsoAspect.cxx diff --git a/src/VrmlConverter/VrmlConverter_IsoAspect.hxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_IsoAspect.hxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_IsoAspect.hxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_IsoAspect.hxx diff --git a/src/VrmlConverter/VrmlConverter_LineAspect.cxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_LineAspect.cxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_LineAspect.cxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_LineAspect.cxx diff --git a/src/VrmlConverter/VrmlConverter_LineAspect.hxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_LineAspect.hxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_LineAspect.hxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_LineAspect.hxx diff --git a/src/VrmlConverter/VrmlConverter_PointAspect.cxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_PointAspect.cxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_PointAspect.cxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_PointAspect.cxx diff --git a/src/VrmlConverter/VrmlConverter_PointAspect.hxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_PointAspect.hxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_PointAspect.hxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_PointAspect.hxx diff --git a/src/VrmlConverter/VrmlConverter_Projector.cxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_Projector.cxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_Projector.cxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_Projector.cxx diff --git a/src/VrmlConverter/VrmlConverter_Projector.hxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_Projector.hxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_Projector.hxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_Projector.hxx diff --git a/src/VrmlConverter/VrmlConverter_ShadedShape.cxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_ShadedShape.cxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_ShadedShape.cxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_ShadedShape.cxx diff --git a/src/VrmlConverter/VrmlConverter_ShadedShape.hxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_ShadedShape.hxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_ShadedShape.hxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_ShadedShape.hxx diff --git a/src/VrmlConverter/VrmlConverter_ShadingAspect.cxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_ShadingAspect.cxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_ShadingAspect.cxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_ShadingAspect.cxx diff --git a/src/VrmlConverter/VrmlConverter_ShadingAspect.hxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_ShadingAspect.hxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_ShadingAspect.hxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_ShadingAspect.hxx diff --git a/src/VrmlConverter/VrmlConverter_TypeOfCamera.hxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_TypeOfCamera.hxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_TypeOfCamera.hxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_TypeOfCamera.hxx diff --git a/src/VrmlConverter/VrmlConverter_TypeOfLight.hxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_TypeOfLight.hxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_TypeOfLight.hxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_TypeOfLight.hxx diff --git a/src/VrmlConverter/VrmlConverter_WFDeflectionRestrictedFace.cxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_WFDeflectionRestrictedFace.cxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_WFDeflectionRestrictedFace.cxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_WFDeflectionRestrictedFace.cxx diff --git a/src/VrmlConverter/VrmlConverter_WFDeflectionRestrictedFace.hxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_WFDeflectionRestrictedFace.hxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_WFDeflectionRestrictedFace.hxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_WFDeflectionRestrictedFace.hxx diff --git a/src/VrmlConverter/VrmlConverter_WFDeflectionShape.cxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_WFDeflectionShape.cxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_WFDeflectionShape.cxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_WFDeflectionShape.cxx diff --git a/src/VrmlConverter/VrmlConverter_WFDeflectionShape.hxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_WFDeflectionShape.hxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_WFDeflectionShape.hxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_WFDeflectionShape.hxx diff --git a/src/VrmlConverter/VrmlConverter_WFRestrictedFace.cxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_WFRestrictedFace.cxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_WFRestrictedFace.cxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_WFRestrictedFace.cxx diff --git a/src/VrmlConverter/VrmlConverter_WFRestrictedFace.hxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_WFRestrictedFace.hxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_WFRestrictedFace.hxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_WFRestrictedFace.hxx diff --git a/src/VrmlConverter/VrmlConverter_WFShape.cxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_WFShape.cxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_WFShape.cxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_WFShape.cxx diff --git a/src/VrmlConverter/VrmlConverter_WFShape.hxx b/src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_WFShape.hxx similarity index 100% rename from src/VrmlConverter/VrmlConverter_WFShape.hxx rename to src/DataExchange/TKDEVRML/VrmlConverter/VrmlConverter_WFShape.hxx diff --git a/src/DataExchange/TKDEVRML/VrmlData/FILES.cmake b/src/DataExchange/TKDEVRML/VrmlData/FILES.cmake new file mode 100644 index 0000000000..b00d51f77a --- /dev/null +++ b/src/DataExchange/TKDEVRML/VrmlData/FILES.cmake @@ -0,0 +1,44 @@ +# Source files for VrmlData package +set(OCCT_VrmlData_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_VrmlData_FILES + VrmlData_Appearance.hxx + VrmlData_ArrayVec3d.hxx + VrmlData_Box.hxx + VrmlData_Color.hxx + VrmlData_Cone.hxx + VrmlData_Coordinate.hxx + VrmlData_Cylinder.hxx + VrmlData_DataMapOfShapeAppearance.hxx + VrmlData_ErrorStatus.hxx + VrmlData_Faceted.hxx + VrmlData_Geometry.cxx + VrmlData_Geometry.hxx + VrmlData_Group.cxx + VrmlData_Group.hxx + VrmlData_ImageTexture.hxx + VrmlData_InBuffer.hxx + VrmlData_IndexedFaceSet.cxx + VrmlData_IndexedFaceSet.hxx + VrmlData_IndexedLineSet.cxx + VrmlData_IndexedLineSet.hxx + VrmlData_ListOfNode.hxx + VrmlData_MapOfNode.hxx + VrmlData_Material.cxx + VrmlData_Material.hxx + VrmlData_Node.cxx + VrmlData_Node.hxx + VrmlData_Normal.hxx + VrmlData_Scene.cxx + VrmlData_Scene.hxx + VrmlData_ShapeConvert.cxx + VrmlData_ShapeConvert.hxx + VrmlData_ShapeNode.hxx + VrmlData_Sphere.hxx + VrmlData_Texture.hxx + VrmlData_TextureCoordinate.hxx + VrmlData_TextureTransform.hxx + VrmlData_UnknownNode.hxx + VrmlData_WorldInfo.cxx + VrmlData_WorldInfo.hxx +) diff --git a/src/VrmlData/VrmlData_Appearance.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_Appearance.hxx similarity index 100% rename from src/VrmlData/VrmlData_Appearance.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_Appearance.hxx diff --git a/src/VrmlData/VrmlData_ArrayVec3d.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_ArrayVec3d.hxx similarity index 100% rename from src/VrmlData/VrmlData_ArrayVec3d.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_ArrayVec3d.hxx diff --git a/src/VrmlData/VrmlData_Box.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_Box.hxx similarity index 100% rename from src/VrmlData/VrmlData_Box.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_Box.hxx diff --git a/src/VrmlData/VrmlData_Color.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_Color.hxx similarity index 100% rename from src/VrmlData/VrmlData_Color.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_Color.hxx diff --git a/src/VrmlData/VrmlData_Cone.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_Cone.hxx similarity index 100% rename from src/VrmlData/VrmlData_Cone.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_Cone.hxx diff --git a/src/VrmlData/VrmlData_Coordinate.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_Coordinate.hxx similarity index 100% rename from src/VrmlData/VrmlData_Coordinate.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_Coordinate.hxx diff --git a/src/VrmlData/VrmlData_Cylinder.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_Cylinder.hxx similarity index 100% rename from src/VrmlData/VrmlData_Cylinder.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_Cylinder.hxx diff --git a/src/VrmlData/VrmlData_DataMapOfShapeAppearance.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_DataMapOfShapeAppearance.hxx similarity index 100% rename from src/VrmlData/VrmlData_DataMapOfShapeAppearance.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_DataMapOfShapeAppearance.hxx diff --git a/src/VrmlData/VrmlData_ErrorStatus.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_ErrorStatus.hxx similarity index 100% rename from src/VrmlData/VrmlData_ErrorStatus.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_ErrorStatus.hxx diff --git a/src/VrmlData/VrmlData_Faceted.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_Faceted.hxx similarity index 100% rename from src/VrmlData/VrmlData_Faceted.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_Faceted.hxx diff --git a/src/VrmlData/VrmlData_Geometry.cxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_Geometry.cxx similarity index 100% rename from src/VrmlData/VrmlData_Geometry.cxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_Geometry.cxx diff --git a/src/VrmlData/VrmlData_Geometry.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_Geometry.hxx similarity index 100% rename from src/VrmlData/VrmlData_Geometry.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_Geometry.hxx diff --git a/src/VrmlData/VrmlData_Group.cxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_Group.cxx similarity index 100% rename from src/VrmlData/VrmlData_Group.cxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_Group.cxx diff --git a/src/VrmlData/VrmlData_Group.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_Group.hxx similarity index 100% rename from src/VrmlData/VrmlData_Group.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_Group.hxx diff --git a/src/VrmlData/VrmlData_ImageTexture.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_ImageTexture.hxx similarity index 100% rename from src/VrmlData/VrmlData_ImageTexture.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_ImageTexture.hxx diff --git a/src/VrmlData/VrmlData_InBuffer.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_InBuffer.hxx similarity index 100% rename from src/VrmlData/VrmlData_InBuffer.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_InBuffer.hxx diff --git a/src/VrmlData/VrmlData_IndexedFaceSet.cxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_IndexedFaceSet.cxx similarity index 100% rename from src/VrmlData/VrmlData_IndexedFaceSet.cxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_IndexedFaceSet.cxx diff --git a/src/VrmlData/VrmlData_IndexedFaceSet.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_IndexedFaceSet.hxx similarity index 100% rename from src/VrmlData/VrmlData_IndexedFaceSet.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_IndexedFaceSet.hxx diff --git a/src/VrmlData/VrmlData_IndexedLineSet.cxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_IndexedLineSet.cxx similarity index 100% rename from src/VrmlData/VrmlData_IndexedLineSet.cxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_IndexedLineSet.cxx diff --git a/src/VrmlData/VrmlData_IndexedLineSet.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_IndexedLineSet.hxx similarity index 100% rename from src/VrmlData/VrmlData_IndexedLineSet.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_IndexedLineSet.hxx diff --git a/src/VrmlData/VrmlData_ListOfNode.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_ListOfNode.hxx similarity index 100% rename from src/VrmlData/VrmlData_ListOfNode.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_ListOfNode.hxx diff --git a/src/VrmlData/VrmlData_MapOfNode.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_MapOfNode.hxx similarity index 100% rename from src/VrmlData/VrmlData_MapOfNode.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_MapOfNode.hxx diff --git a/src/VrmlData/VrmlData_Material.cxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_Material.cxx similarity index 100% rename from src/VrmlData/VrmlData_Material.cxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_Material.cxx diff --git a/src/VrmlData/VrmlData_Material.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_Material.hxx similarity index 100% rename from src/VrmlData/VrmlData_Material.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_Material.hxx diff --git a/src/VrmlData/VrmlData_Node.cxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_Node.cxx similarity index 100% rename from src/VrmlData/VrmlData_Node.cxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_Node.cxx diff --git a/src/VrmlData/VrmlData_Node.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_Node.hxx similarity index 100% rename from src/VrmlData/VrmlData_Node.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_Node.hxx diff --git a/src/VrmlData/VrmlData_Normal.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_Normal.hxx similarity index 100% rename from src/VrmlData/VrmlData_Normal.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_Normal.hxx diff --git a/src/VrmlData/VrmlData_Scene.cxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_Scene.cxx similarity index 100% rename from src/VrmlData/VrmlData_Scene.cxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_Scene.cxx diff --git a/src/VrmlData/VrmlData_Scene.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_Scene.hxx similarity index 100% rename from src/VrmlData/VrmlData_Scene.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_Scene.hxx diff --git a/src/VrmlData/VrmlData_ShapeConvert.cxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_ShapeConvert.cxx similarity index 100% rename from src/VrmlData/VrmlData_ShapeConvert.cxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_ShapeConvert.cxx diff --git a/src/VrmlData/VrmlData_ShapeConvert.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_ShapeConvert.hxx similarity index 100% rename from src/VrmlData/VrmlData_ShapeConvert.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_ShapeConvert.hxx diff --git a/src/VrmlData/VrmlData_ShapeNode.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_ShapeNode.hxx similarity index 100% rename from src/VrmlData/VrmlData_ShapeNode.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_ShapeNode.hxx diff --git a/src/VrmlData/VrmlData_Sphere.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_Sphere.hxx similarity index 100% rename from src/VrmlData/VrmlData_Sphere.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_Sphere.hxx diff --git a/src/VrmlData/VrmlData_Texture.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_Texture.hxx similarity index 100% rename from src/VrmlData/VrmlData_Texture.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_Texture.hxx diff --git a/src/VrmlData/VrmlData_TextureCoordinate.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_TextureCoordinate.hxx similarity index 100% rename from src/VrmlData/VrmlData_TextureCoordinate.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_TextureCoordinate.hxx diff --git a/src/VrmlData/VrmlData_TextureTransform.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_TextureTransform.hxx similarity index 100% rename from src/VrmlData/VrmlData_TextureTransform.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_TextureTransform.hxx diff --git a/src/VrmlData/VrmlData_UnknownNode.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_UnknownNode.hxx similarity index 100% rename from src/VrmlData/VrmlData_UnknownNode.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_UnknownNode.hxx diff --git a/src/VrmlData/VrmlData_WorldInfo.cxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_WorldInfo.cxx similarity index 100% rename from src/VrmlData/VrmlData_WorldInfo.cxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_WorldInfo.cxx diff --git a/src/VrmlData/VrmlData_WorldInfo.hxx b/src/DataExchange/TKDEVRML/VrmlData/VrmlData_WorldInfo.hxx similarity index 100% rename from src/VrmlData/VrmlData_WorldInfo.hxx rename to src/DataExchange/TKDEVRML/VrmlData/VrmlData_WorldInfo.hxx diff --git a/src/TKRWMesh/CMakeLists.txt b/src/DataExchange/TKRWMesh/CMakeLists.txt similarity index 100% rename from src/TKRWMesh/CMakeLists.txt rename to src/DataExchange/TKRWMesh/CMakeLists.txt diff --git a/src/DataExchange/TKRWMesh/EXTERNLIB.cmake b/src/DataExchange/TKRWMesh/EXTERNLIB.cmake new file mode 100644 index 0000000000..d35e3c4612 --- /dev/null +++ b/src/DataExchange/TKRWMesh/EXTERNLIB.cmake @@ -0,0 +1,15 @@ +# External dependencies for TKRWMesh +set(OCCT_TKRWMesh_EXTERNAL_LIBS + TKernel + TKMath + TKMesh + TKXCAF + TKLCAF + TKV3d + TKBRep + TKG3d + TKDE + TKService + CSF_RapidJSON + CSF_Draco +) diff --git a/src/DataExchange/TKRWMesh/FILES.cmake b/src/DataExchange/TKRWMesh/FILES.cmake new file mode 100644 index 0000000000..662fbb111f --- /dev/null +++ b/src/DataExchange/TKRWMesh/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKRWMesh +set(OCCT_TKRWMesh_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKRWMesh_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/DataExchange/TKRWMesh/PACKAGES.cmake b/src/DataExchange/TKRWMesh/PACKAGES.cmake new file mode 100644 index 0000000000..5ac6dca9a2 --- /dev/null +++ b/src/DataExchange/TKRWMesh/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKRWMesh toolkit +set(OCCT_TKRWMesh_LIST_OF_PACKAGES + RWMesh +) diff --git a/src/DataExchange/TKRWMesh/RWMesh/FILES.cmake b/src/DataExchange/TKRWMesh/RWMesh/FILES.cmake new file mode 100644 index 0000000000..12e2f7ff95 --- /dev/null +++ b/src/DataExchange/TKRWMesh/RWMesh/FILES.cmake @@ -0,0 +1,28 @@ +# Source files for RWMesh package +set(OCCT_RWMesh_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_RWMesh_FILES + RWMesh.cxx + RWMesh.hxx + RWMesh_CafReader.cxx + RWMesh_CafReader.hxx + RWMesh_CoordinateSystem.hxx + RWMesh_CoordinateSystemConverter.cxx + RWMesh_CoordinateSystemConverter.hxx + RWMesh_EdgeIterator.cxx + RWMesh_EdgeIterator.hxx + RWMesh_FaceIterator.cxx + RWMesh_FaceIterator.hxx + RWMesh_MaterialMap.cxx + RWMesh_MaterialMap.hxx + RWMesh_NameFormat.hxx + RWMesh_NodeAttributes.hxx + RWMesh_ShapeIterator.cxx + RWMesh_ShapeIterator.hxx + RWMesh_TriangulationReader.cxx + RWMesh_TriangulationReader.hxx + RWMesh_TriangulationSource.cxx + RWMesh_TriangulationSource.hxx + RWMesh_VertexIterator.cxx + RWMesh_VertexIterator.hxx +) diff --git a/src/RWMesh/RWMesh.cxx b/src/DataExchange/TKRWMesh/RWMesh/RWMesh.cxx similarity index 100% rename from src/RWMesh/RWMesh.cxx rename to src/DataExchange/TKRWMesh/RWMesh/RWMesh.cxx diff --git a/src/RWMesh/RWMesh.hxx b/src/DataExchange/TKRWMesh/RWMesh/RWMesh.hxx similarity index 100% rename from src/RWMesh/RWMesh.hxx rename to src/DataExchange/TKRWMesh/RWMesh/RWMesh.hxx diff --git a/src/RWMesh/RWMesh_CafReader.cxx b/src/DataExchange/TKRWMesh/RWMesh/RWMesh_CafReader.cxx similarity index 100% rename from src/RWMesh/RWMesh_CafReader.cxx rename to src/DataExchange/TKRWMesh/RWMesh/RWMesh_CafReader.cxx diff --git a/src/RWMesh/RWMesh_CafReader.hxx b/src/DataExchange/TKRWMesh/RWMesh/RWMesh_CafReader.hxx similarity index 100% rename from src/RWMesh/RWMesh_CafReader.hxx rename to src/DataExchange/TKRWMesh/RWMesh/RWMesh_CafReader.hxx diff --git a/src/RWMesh/RWMesh_CoordinateSystem.hxx b/src/DataExchange/TKRWMesh/RWMesh/RWMesh_CoordinateSystem.hxx similarity index 100% rename from src/RWMesh/RWMesh_CoordinateSystem.hxx rename to src/DataExchange/TKRWMesh/RWMesh/RWMesh_CoordinateSystem.hxx diff --git a/src/RWMesh/RWMesh_CoordinateSystemConverter.cxx b/src/DataExchange/TKRWMesh/RWMesh/RWMesh_CoordinateSystemConverter.cxx similarity index 100% rename from src/RWMesh/RWMesh_CoordinateSystemConverter.cxx rename to src/DataExchange/TKRWMesh/RWMesh/RWMesh_CoordinateSystemConverter.cxx diff --git a/src/RWMesh/RWMesh_CoordinateSystemConverter.hxx b/src/DataExchange/TKRWMesh/RWMesh/RWMesh_CoordinateSystemConverter.hxx similarity index 100% rename from src/RWMesh/RWMesh_CoordinateSystemConverter.hxx rename to src/DataExchange/TKRWMesh/RWMesh/RWMesh_CoordinateSystemConverter.hxx diff --git a/src/RWMesh/RWMesh_EdgeIterator.cxx b/src/DataExchange/TKRWMesh/RWMesh/RWMesh_EdgeIterator.cxx similarity index 100% rename from src/RWMesh/RWMesh_EdgeIterator.cxx rename to src/DataExchange/TKRWMesh/RWMesh/RWMesh_EdgeIterator.cxx diff --git a/src/RWMesh/RWMesh_EdgeIterator.hxx b/src/DataExchange/TKRWMesh/RWMesh/RWMesh_EdgeIterator.hxx similarity index 100% rename from src/RWMesh/RWMesh_EdgeIterator.hxx rename to src/DataExchange/TKRWMesh/RWMesh/RWMesh_EdgeIterator.hxx diff --git a/src/RWMesh/RWMesh_FaceIterator.cxx b/src/DataExchange/TKRWMesh/RWMesh/RWMesh_FaceIterator.cxx similarity index 100% rename from src/RWMesh/RWMesh_FaceIterator.cxx rename to src/DataExchange/TKRWMesh/RWMesh/RWMesh_FaceIterator.cxx diff --git a/src/RWMesh/RWMesh_FaceIterator.hxx b/src/DataExchange/TKRWMesh/RWMesh/RWMesh_FaceIterator.hxx similarity index 100% rename from src/RWMesh/RWMesh_FaceIterator.hxx rename to src/DataExchange/TKRWMesh/RWMesh/RWMesh_FaceIterator.hxx diff --git a/src/RWMesh/RWMesh_MaterialMap.cxx b/src/DataExchange/TKRWMesh/RWMesh/RWMesh_MaterialMap.cxx similarity index 100% rename from src/RWMesh/RWMesh_MaterialMap.cxx rename to src/DataExchange/TKRWMesh/RWMesh/RWMesh_MaterialMap.cxx diff --git a/src/RWMesh/RWMesh_MaterialMap.hxx b/src/DataExchange/TKRWMesh/RWMesh/RWMesh_MaterialMap.hxx similarity index 100% rename from src/RWMesh/RWMesh_MaterialMap.hxx rename to src/DataExchange/TKRWMesh/RWMesh/RWMesh_MaterialMap.hxx diff --git a/src/RWMesh/RWMesh_NameFormat.hxx b/src/DataExchange/TKRWMesh/RWMesh/RWMesh_NameFormat.hxx similarity index 100% rename from src/RWMesh/RWMesh_NameFormat.hxx rename to src/DataExchange/TKRWMesh/RWMesh/RWMesh_NameFormat.hxx diff --git a/src/RWMesh/RWMesh_NodeAttributes.hxx b/src/DataExchange/TKRWMesh/RWMesh/RWMesh_NodeAttributes.hxx similarity index 100% rename from src/RWMesh/RWMesh_NodeAttributes.hxx rename to src/DataExchange/TKRWMesh/RWMesh/RWMesh_NodeAttributes.hxx diff --git a/src/RWMesh/RWMesh_ShapeIterator.cxx b/src/DataExchange/TKRWMesh/RWMesh/RWMesh_ShapeIterator.cxx similarity index 100% rename from src/RWMesh/RWMesh_ShapeIterator.cxx rename to src/DataExchange/TKRWMesh/RWMesh/RWMesh_ShapeIterator.cxx diff --git a/src/RWMesh/RWMesh_ShapeIterator.hxx b/src/DataExchange/TKRWMesh/RWMesh/RWMesh_ShapeIterator.hxx similarity index 100% rename from src/RWMesh/RWMesh_ShapeIterator.hxx rename to src/DataExchange/TKRWMesh/RWMesh/RWMesh_ShapeIterator.hxx diff --git a/src/RWMesh/RWMesh_TriangulationReader.cxx b/src/DataExchange/TKRWMesh/RWMesh/RWMesh_TriangulationReader.cxx similarity index 100% rename from src/RWMesh/RWMesh_TriangulationReader.cxx rename to src/DataExchange/TKRWMesh/RWMesh/RWMesh_TriangulationReader.cxx diff --git a/src/RWMesh/RWMesh_TriangulationReader.hxx b/src/DataExchange/TKRWMesh/RWMesh/RWMesh_TriangulationReader.hxx similarity index 100% rename from src/RWMesh/RWMesh_TriangulationReader.hxx rename to src/DataExchange/TKRWMesh/RWMesh/RWMesh_TriangulationReader.hxx diff --git a/src/RWMesh/RWMesh_TriangulationSource.cxx b/src/DataExchange/TKRWMesh/RWMesh/RWMesh_TriangulationSource.cxx similarity index 100% rename from src/RWMesh/RWMesh_TriangulationSource.cxx rename to src/DataExchange/TKRWMesh/RWMesh/RWMesh_TriangulationSource.cxx diff --git a/src/RWMesh/RWMesh_TriangulationSource.hxx b/src/DataExchange/TKRWMesh/RWMesh/RWMesh_TriangulationSource.hxx similarity index 100% rename from src/RWMesh/RWMesh_TriangulationSource.hxx rename to src/DataExchange/TKRWMesh/RWMesh/RWMesh_TriangulationSource.hxx diff --git a/src/RWMesh/RWMesh_VertexIterator.cxx b/src/DataExchange/TKRWMesh/RWMesh/RWMesh_VertexIterator.cxx similarity index 100% rename from src/RWMesh/RWMesh_VertexIterator.cxx rename to src/DataExchange/TKRWMesh/RWMesh/RWMesh_VertexIterator.cxx diff --git a/src/RWMesh/RWMesh_VertexIterator.hxx b/src/DataExchange/TKRWMesh/RWMesh/RWMesh_VertexIterator.hxx similarity index 100% rename from src/RWMesh/RWMesh_VertexIterator.hxx rename to src/DataExchange/TKRWMesh/RWMesh/RWMesh_VertexIterator.hxx diff --git a/src/TKXCAF/CMakeLists.txt b/src/DataExchange/TKXCAF/CMakeLists.txt similarity index 100% rename from src/TKXCAF/CMakeLists.txt rename to src/DataExchange/TKXCAF/CMakeLists.txt diff --git a/src/DataExchange/TKXCAF/EXTERNLIB.cmake b/src/DataExchange/TKXCAF/EXTERNLIB.cmake new file mode 100644 index 0000000000..a1222e564d --- /dev/null +++ b/src/DataExchange/TKXCAF/EXTERNLIB.cmake @@ -0,0 +1,15 @@ +# External dependencies for TKXCAF +set(OCCT_TKXCAF_EXTERNAL_LIBS + TKBRep + TKernel + TKMath + TKService + TKG2d + TKTopAlgo + TKV3d + TKCDF + TKLCAF + TKG3d + TKCAF + TKVCAF +) diff --git a/src/DataExchange/TKXCAF/FILES.cmake b/src/DataExchange/TKXCAF/FILES.cmake new file mode 100644 index 0000000000..97037326ee --- /dev/null +++ b/src/DataExchange/TKXCAF/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKXCAF +set(OCCT_TKXCAF_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKXCAF_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/DataExchange/TKXCAF/PACKAGES.cmake b/src/DataExchange/TKXCAF/PACKAGES.cmake new file mode 100644 index 0000000000..98d082e78e --- /dev/null +++ b/src/DataExchange/TKXCAF/PACKAGES.cmake @@ -0,0 +1,9 @@ +# Auto-generated list of packages for TKXCAF toolkit +set(OCCT_TKXCAF_LIST_OF_PACKAGES + XCAFApp + XCAFDimTolObjects + XCAFNoteObjects + XCAFDoc + XCAFPrs + XCAFView +) diff --git a/src/DataExchange/TKXCAF/XCAFApp/FILES.cmake b/src/DataExchange/TKXCAF/XCAFApp/FILES.cmake new file mode 100644 index 0000000000..a995847d77 --- /dev/null +++ b/src/DataExchange/TKXCAF/XCAFApp/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for XCAFApp package +set(OCCT_XCAFApp_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XCAFApp_FILES + XCAFApp_Application.cxx + XCAFApp_Application.hxx +) diff --git a/src/XCAFApp/XCAFApp_Application.cxx b/src/DataExchange/TKXCAF/XCAFApp/XCAFApp_Application.cxx similarity index 100% rename from src/XCAFApp/XCAFApp_Application.cxx rename to src/DataExchange/TKXCAF/XCAFApp/XCAFApp_Application.cxx diff --git a/src/XCAFApp/XCAFApp_Application.hxx b/src/DataExchange/TKXCAF/XCAFApp/XCAFApp_Application.hxx similarity index 100% rename from src/XCAFApp/XCAFApp_Application.hxx rename to src/DataExchange/TKXCAF/XCAFApp/XCAFApp_Application.hxx diff --git a/src/DataExchange/TKXCAF/XCAFDimTolObjects/FILES.cmake b/src/DataExchange/TKXCAF/XCAFDimTolObjects/FILES.cmake new file mode 100644 index 0000000000..a7113ec7f7 --- /dev/null +++ b/src/DataExchange/TKXCAF/XCAFDimTolObjects/FILES.cmake @@ -0,0 +1,36 @@ +# Source files for XCAFDimTolObjects package +set(OCCT_XCAFDimTolObjects_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XCAFDimTolObjects_FILES + FILES + XCAFDimTolObjects_DatumObject.cxx + XCAFDimTolObjects_DatumObject.hxx + XCAFDimTolObjects_DimensionObject.cxx + XCAFDimTolObjects_DimensionObject.hxx + XCAFDimTolObjects_GeomToleranceObject.cxx + XCAFDimTolObjects_GeomToleranceObject.hxx + XCAFDimTolObjects_Tool.cxx + XCAFDimTolObjects_Tool.hxx + XCAFDimTolObjects_DatumModifWithValue.hxx + XCAFDimTolObjects_DatumSingleModif.hxx + XCAFDimTolObjects_DatumTargetType.hxx + XCAFDimTolObjects_DimensionModif.hxx + XCAFDimTolObjects_DimensionFormVariance.hxx + XCAFDimTolObjects_DimensionGrade.hxx + XCAFDimTolObjects_DimensionQualifier.hxx + XCAFDimTolObjects_DimensionType.hxx + XCAFDimTolObjects_GeomToleranceModif.hxx + XCAFDimTolObjects_GeomToleranceType.hxx + XCAFDimTolObjects_GeomToleranceTypeValue.hxx + XCAFDimTolObjects_GeomToleranceMatReqModif.hxx + XCAFDimTolObjects_GeomToleranceZoneModif.hxx + XCAFDimTolObjects_DimensionModifiersSequence.hxx + XCAFDimTolObjects_GeomToleranceModifiersSequence.hxx + XCAFDimTolObjects_DatumModifiersSequence.hxx + XCAFDimTolObjects_DatumObjectSequence.hxx + XCAFDimTolObjects_DimensionObjectSequence.hxx + XCAFDimTolObjects_GeomToleranceObjectSequence.hxx + XCAFDimTolObjects_DataMapOfToleranceDatum.hxx + XCAFDimTolObjects_ToleranceZoneAffectedPlane.hxx + XCAFDimTolObjects_AngularQualifier.hxx +) diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_AngularQualifier.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_AngularQualifier.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_AngularQualifier.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_AngularQualifier.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_DataMapOfToleranceDatum.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DataMapOfToleranceDatum.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_DataMapOfToleranceDatum.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DataMapOfToleranceDatum.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_DatumModifWithValue.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DatumModifWithValue.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_DatumModifWithValue.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DatumModifWithValue.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_DatumModifiersSequence.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DatumModifiersSequence.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_DatumModifiersSequence.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DatumModifiersSequence.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_DatumObject.cxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DatumObject.cxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_DatumObject.cxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DatumObject.cxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_DatumObject.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DatumObject.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_DatumObject.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DatumObject.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_DatumObjectSequence.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DatumObjectSequence.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_DatumObjectSequence.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DatumObjectSequence.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_DatumSingleModif.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DatumSingleModif.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_DatumSingleModif.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DatumSingleModif.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_DatumTargetType.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DatumTargetType.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_DatumTargetType.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DatumTargetType.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionFormVariance.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DimensionFormVariance.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionFormVariance.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DimensionFormVariance.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionGrade.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DimensionGrade.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionGrade.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DimensionGrade.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionModif.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DimensionModif.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionModif.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DimensionModif.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionModifiersSequence.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DimensionModifiersSequence.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionModifiersSequence.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DimensionModifiersSequence.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionObject.cxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DimensionObject.cxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionObject.cxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DimensionObject.cxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionObject.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DimensionObject.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionObject.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DimensionObject.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionObjectSequence.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DimensionObjectSequence.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionObjectSequence.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DimensionObjectSequence.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionQualifier.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DimensionQualifier.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionQualifier.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DimensionQualifier.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionType.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DimensionType.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_DimensionType.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_DimensionType.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceMatReqModif.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceMatReqModif.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceMatReqModif.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceMatReqModif.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceModif.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceModif.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceModif.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceModif.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceModifiersSequence.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceModifiersSequence.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceModifiersSequence.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceModifiersSequence.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObject.cxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObject.cxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObject.cxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObject.cxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObject.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObject.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObject.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObject.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObjectSequence.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObjectSequence.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObjectSequence.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceObjectSequence.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceType.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceType.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceType.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceType.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceTypeValue.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceTypeValue.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceTypeValue.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceTypeValue.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceZoneModif.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceZoneModif.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceZoneModif.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_GeomToleranceZoneModif.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_ToleranceZoneAffectedPlane.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_ToleranceZoneAffectedPlane.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_ToleranceZoneAffectedPlane.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_ToleranceZoneAffectedPlane.hxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_Tool.cxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_Tool.cxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_Tool.cxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_Tool.cxx diff --git a/src/XCAFDimTolObjects/XCAFDimTolObjects_Tool.hxx b/src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_Tool.hxx similarity index 100% rename from src/XCAFDimTolObjects/XCAFDimTolObjects_Tool.hxx rename to src/DataExchange/TKXCAF/XCAFDimTolObjects/XCAFDimTolObjects_Tool.hxx diff --git a/src/DataExchange/TKXCAF/XCAFDoc/FILES.cmake b/src/DataExchange/TKXCAF/XCAFDoc/FILES.cmake new file mode 100644 index 0000000000..cbedaf447f --- /dev/null +++ b/src/DataExchange/TKXCAF/XCAFDoc/FILES.cmake @@ -0,0 +1,85 @@ +# Source files for XCAFDoc package +set(OCCT_XCAFDoc_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XCAFDoc_FILES + FILES + GUID.txt + XCAFDoc.cxx + XCAFDoc.hxx + XCAFDoc_AssemblyItemId.cxx + XCAFDoc_AssemblyItemId.hxx + XCAFDoc_AssemblyItemRef.cxx + XCAFDoc_AssemblyItemRef.hxx + XCAFDoc_AssemblyIterator.hxx + XCAFDoc_AssemblyIterator.cxx + XCAFDoc_AssemblyGraph.hxx + XCAFDoc_AssemblyGraph.cxx + XCAFDoc_AssemblyTool.hxx + XCAFDoc_PartId.hxx + XCAFDoc_Area.cxx + XCAFDoc_Area.hxx + XCAFDoc_Centroid.cxx + XCAFDoc_Centroid.hxx + XCAFDoc_ClippingPlaneTool.cxx + XCAFDoc_ClippingPlaneTool.hxx + XCAFDoc_Color.cxx + XCAFDoc_Color.hxx + XCAFDoc_ColorTool.cxx + XCAFDoc_ColorTool.hxx + XCAFDoc_ColorType.hxx + XCAFDoc_DataMapIteratorOfDataMapOfShapeLabel.hxx + XCAFDoc_DataMapOfShapeLabel.hxx + XCAFDoc_Datum.cxx + XCAFDoc_Datum.hxx + XCAFDoc_Dimension.cxx + XCAFDoc_Dimension.hxx + XCAFDoc_GeomTolerance.cxx + XCAFDoc_GeomTolerance.hxx + XCAFDoc_DimTol.cxx + XCAFDoc_DimTol.hxx + XCAFDoc_DimTolTool.cxx + XCAFDoc_DimTolTool.hxx + XCAFDoc_DocumentTool.cxx + XCAFDoc_DocumentTool.hxx + XCAFDoc_Editor.cxx + XCAFDoc_Editor.hxx + XCAFDoc_GraphNode.cxx + XCAFDoc_GraphNode.hxx + XCAFDoc_GraphNodeSequence.hxx + XCAFDoc_LayerTool.cxx + XCAFDoc_LayerTool.hxx + XCAFDoc_LengthUnit.cxx + XCAFDoc_LengthUnit.hxx + XCAFDoc_Location.cxx + XCAFDoc_Location.hxx + XCAFDoc_Material.cxx + XCAFDoc_Material.hxx + XCAFDoc_MaterialTool.cxx + XCAFDoc_MaterialTool.hxx + XCAFDoc_Note.cxx + XCAFDoc_Note.hxx + XCAFDoc_NoteBalloon.cxx + XCAFDoc_NoteBalloon.hxx + XCAFDoc_NoteComment.cxx + XCAFDoc_NoteComment.hxx + XCAFDoc_NoteBinData.cxx + XCAFDoc_NoteBinData.hxx + XCAFDoc_NotesTool.cxx + XCAFDoc_NotesTool.hxx + XCAFDoc_ShapeMapTool.cxx + XCAFDoc_ShapeMapTool.hxx + XCAFDoc_ShapeTool.cxx + XCAFDoc_ShapeTool.hxx + XCAFDoc_View.cxx + XCAFDoc_View.hxx + XCAFDoc_ViewTool.cxx + XCAFDoc_ViewTool.hxx + XCAFDoc_VisMaterial.cxx + XCAFDoc_VisMaterial.hxx + XCAFDoc_VisMaterialCommon.hxx + XCAFDoc_VisMaterialPBR.hxx + XCAFDoc_VisMaterialTool.cxx + XCAFDoc_VisMaterialTool.hxx + XCAFDoc_Volume.cxx + XCAFDoc_Volume.hxx +) diff --git a/src/XCAFDoc/GUID.txt b/src/DataExchange/TKXCAF/XCAFDoc/GUID.txt similarity index 100% rename from src/XCAFDoc/GUID.txt rename to src/DataExchange/TKXCAF/XCAFDoc/GUID.txt diff --git a/src/XCAFDoc/XCAFDoc.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc.cxx diff --git a/src/XCAFDoc/XCAFDoc.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc.hxx diff --git a/src/XCAFDoc/XCAFDoc_Area.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Area.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_Area.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Area.cxx diff --git a/src/XCAFDoc/XCAFDoc_Area.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Area.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_Area.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Area.hxx diff --git a/src/XCAFDoc/XCAFDoc_AssemblyGraph.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_AssemblyGraph.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_AssemblyGraph.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_AssemblyGraph.cxx diff --git a/src/XCAFDoc/XCAFDoc_AssemblyGraph.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_AssemblyGraph.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_AssemblyGraph.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_AssemblyGraph.hxx diff --git a/src/XCAFDoc/XCAFDoc_AssemblyItemId.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_AssemblyItemId.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_AssemblyItemId.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_AssemblyItemId.cxx diff --git a/src/XCAFDoc/XCAFDoc_AssemblyItemId.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_AssemblyItemId.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_AssemblyItemId.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_AssemblyItemId.hxx diff --git a/src/XCAFDoc/XCAFDoc_AssemblyItemRef.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_AssemblyItemRef.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_AssemblyItemRef.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_AssemblyItemRef.cxx diff --git a/src/XCAFDoc/XCAFDoc_AssemblyItemRef.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_AssemblyItemRef.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_AssemblyItemRef.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_AssemblyItemRef.hxx diff --git a/src/XCAFDoc/XCAFDoc_AssemblyIterator.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_AssemblyIterator.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_AssemblyIterator.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_AssemblyIterator.cxx diff --git a/src/XCAFDoc/XCAFDoc_AssemblyIterator.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_AssemblyIterator.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_AssemblyIterator.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_AssemblyIterator.hxx diff --git a/src/XCAFDoc/XCAFDoc_AssemblyTool.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_AssemblyTool.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_AssemblyTool.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_AssemblyTool.hxx diff --git a/src/XCAFDoc/XCAFDoc_Centroid.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Centroid.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_Centroid.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Centroid.cxx diff --git a/src/XCAFDoc/XCAFDoc_Centroid.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Centroid.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_Centroid.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Centroid.hxx diff --git a/src/XCAFDoc/XCAFDoc_ClippingPlaneTool.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_ClippingPlaneTool.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_ClippingPlaneTool.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_ClippingPlaneTool.cxx diff --git a/src/XCAFDoc/XCAFDoc_ClippingPlaneTool.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_ClippingPlaneTool.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_ClippingPlaneTool.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_ClippingPlaneTool.hxx diff --git a/src/XCAFDoc/XCAFDoc_Color.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Color.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_Color.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Color.cxx diff --git a/src/XCAFDoc/XCAFDoc_Color.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Color.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_Color.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Color.hxx diff --git a/src/XCAFDoc/XCAFDoc_ColorTool.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_ColorTool.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_ColorTool.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_ColorTool.cxx diff --git a/src/XCAFDoc/XCAFDoc_ColorTool.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_ColorTool.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_ColorTool.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_ColorTool.hxx diff --git a/src/XCAFDoc/XCAFDoc_ColorType.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_ColorType.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_ColorType.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_ColorType.hxx diff --git a/src/XCAFDoc/XCAFDoc_DataMapIteratorOfDataMapOfShapeLabel.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_DataMapIteratorOfDataMapOfShapeLabel.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_DataMapIteratorOfDataMapOfShapeLabel.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_DataMapIteratorOfDataMapOfShapeLabel.hxx diff --git a/src/XCAFDoc/XCAFDoc_DataMapOfShapeLabel.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_DataMapOfShapeLabel.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_DataMapOfShapeLabel.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_DataMapOfShapeLabel.hxx diff --git a/src/XCAFDoc/XCAFDoc_Datum.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Datum.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_Datum.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Datum.cxx diff --git a/src/XCAFDoc/XCAFDoc_Datum.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Datum.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_Datum.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Datum.hxx diff --git a/src/XCAFDoc/XCAFDoc_DimTol.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_DimTol.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_DimTol.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_DimTol.cxx diff --git a/src/XCAFDoc/XCAFDoc_DimTol.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_DimTol.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_DimTol.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_DimTol.hxx diff --git a/src/XCAFDoc/XCAFDoc_DimTolTool.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_DimTolTool.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_DimTolTool.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_DimTolTool.cxx diff --git a/src/XCAFDoc/XCAFDoc_DimTolTool.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_DimTolTool.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_DimTolTool.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_DimTolTool.hxx diff --git a/src/XCAFDoc/XCAFDoc_Dimension.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Dimension.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_Dimension.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Dimension.cxx diff --git a/src/XCAFDoc/XCAFDoc_Dimension.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Dimension.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_Dimension.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Dimension.hxx diff --git a/src/XCAFDoc/XCAFDoc_DocumentTool.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_DocumentTool.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_DocumentTool.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_DocumentTool.cxx diff --git a/src/XCAFDoc/XCAFDoc_DocumentTool.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_DocumentTool.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_DocumentTool.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_DocumentTool.hxx diff --git a/src/XCAFDoc/XCAFDoc_Editor.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Editor.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_Editor.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Editor.cxx diff --git a/src/XCAFDoc/XCAFDoc_Editor.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Editor.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_Editor.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Editor.hxx diff --git a/src/XCAFDoc/XCAFDoc_GeomTolerance.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_GeomTolerance.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_GeomTolerance.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_GeomTolerance.cxx diff --git a/src/XCAFDoc/XCAFDoc_GeomTolerance.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_GeomTolerance.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_GeomTolerance.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_GeomTolerance.hxx diff --git a/src/XCAFDoc/XCAFDoc_GraphNode.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_GraphNode.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_GraphNode.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_GraphNode.cxx diff --git a/src/XCAFDoc/XCAFDoc_GraphNode.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_GraphNode.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_GraphNode.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_GraphNode.hxx diff --git a/src/XCAFDoc/XCAFDoc_GraphNodeSequence.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_GraphNodeSequence.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_GraphNodeSequence.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_GraphNodeSequence.hxx diff --git a/src/XCAFDoc/XCAFDoc_LayerTool.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_LayerTool.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_LayerTool.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_LayerTool.cxx diff --git a/src/XCAFDoc/XCAFDoc_LayerTool.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_LayerTool.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_LayerTool.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_LayerTool.hxx diff --git a/src/XCAFDoc/XCAFDoc_LengthUnit.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_LengthUnit.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_LengthUnit.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_LengthUnit.cxx diff --git a/src/XCAFDoc/XCAFDoc_LengthUnit.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_LengthUnit.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_LengthUnit.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_LengthUnit.hxx diff --git a/src/XCAFDoc/XCAFDoc_Location.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Location.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_Location.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Location.cxx diff --git a/src/XCAFDoc/XCAFDoc_Location.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Location.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_Location.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Location.hxx diff --git a/src/XCAFDoc/XCAFDoc_Material.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Material.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_Material.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Material.cxx diff --git a/src/XCAFDoc/XCAFDoc_Material.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Material.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_Material.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Material.hxx diff --git a/src/XCAFDoc/XCAFDoc_MaterialTool.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_MaterialTool.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_MaterialTool.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_MaterialTool.cxx diff --git a/src/XCAFDoc/XCAFDoc_MaterialTool.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_MaterialTool.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_MaterialTool.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_MaterialTool.hxx diff --git a/src/XCAFDoc/XCAFDoc_Note.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Note.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_Note.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Note.cxx diff --git a/src/XCAFDoc/XCAFDoc_Note.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Note.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_Note.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Note.hxx diff --git a/src/XCAFDoc/XCAFDoc_NoteBalloon.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_NoteBalloon.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_NoteBalloon.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_NoteBalloon.cxx diff --git a/src/XCAFDoc/XCAFDoc_NoteBalloon.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_NoteBalloon.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_NoteBalloon.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_NoteBalloon.hxx diff --git a/src/XCAFDoc/XCAFDoc_NoteBinData.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_NoteBinData.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_NoteBinData.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_NoteBinData.cxx diff --git a/src/XCAFDoc/XCAFDoc_NoteBinData.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_NoteBinData.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_NoteBinData.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_NoteBinData.hxx diff --git a/src/XCAFDoc/XCAFDoc_NoteComment.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_NoteComment.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_NoteComment.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_NoteComment.cxx diff --git a/src/XCAFDoc/XCAFDoc_NoteComment.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_NoteComment.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_NoteComment.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_NoteComment.hxx diff --git a/src/XCAFDoc/XCAFDoc_NotesTool.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_NotesTool.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_NotesTool.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_NotesTool.cxx diff --git a/src/XCAFDoc/XCAFDoc_NotesTool.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_NotesTool.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_NotesTool.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_NotesTool.hxx diff --git a/src/XCAFDoc/XCAFDoc_PartId.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_PartId.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_PartId.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_PartId.hxx diff --git a/src/XCAFDoc/XCAFDoc_ShapeMapTool.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_ShapeMapTool.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_ShapeMapTool.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_ShapeMapTool.cxx diff --git a/src/XCAFDoc/XCAFDoc_ShapeMapTool.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_ShapeMapTool.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_ShapeMapTool.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_ShapeMapTool.hxx diff --git a/src/XCAFDoc/XCAFDoc_ShapeTool.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_ShapeTool.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_ShapeTool.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_ShapeTool.cxx diff --git a/src/XCAFDoc/XCAFDoc_ShapeTool.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_ShapeTool.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_ShapeTool.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_ShapeTool.hxx diff --git a/src/XCAFDoc/XCAFDoc_View.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_View.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_View.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_View.cxx diff --git a/src/XCAFDoc/XCAFDoc_View.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_View.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_View.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_View.hxx diff --git a/src/XCAFDoc/XCAFDoc_ViewTool.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_ViewTool.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_ViewTool.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_ViewTool.cxx diff --git a/src/XCAFDoc/XCAFDoc_ViewTool.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_ViewTool.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_ViewTool.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_ViewTool.hxx diff --git a/src/XCAFDoc/XCAFDoc_VisMaterial.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_VisMaterial.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_VisMaterial.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_VisMaterial.cxx diff --git a/src/XCAFDoc/XCAFDoc_VisMaterial.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_VisMaterial.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_VisMaterial.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_VisMaterial.hxx diff --git a/src/XCAFDoc/XCAFDoc_VisMaterialCommon.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_VisMaterialCommon.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_VisMaterialCommon.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_VisMaterialCommon.hxx diff --git a/src/XCAFDoc/XCAFDoc_VisMaterialPBR.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_VisMaterialPBR.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_VisMaterialPBR.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_VisMaterialPBR.hxx diff --git a/src/XCAFDoc/XCAFDoc_VisMaterialTool.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_VisMaterialTool.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_VisMaterialTool.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_VisMaterialTool.cxx diff --git a/src/XCAFDoc/XCAFDoc_VisMaterialTool.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_VisMaterialTool.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_VisMaterialTool.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_VisMaterialTool.hxx diff --git a/src/XCAFDoc/XCAFDoc_Volume.cxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Volume.cxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_Volume.cxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Volume.cxx diff --git a/src/XCAFDoc/XCAFDoc_Volume.hxx b/src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Volume.hxx similarity index 100% rename from src/XCAFDoc/XCAFDoc_Volume.hxx rename to src/DataExchange/TKXCAF/XCAFDoc/XCAFDoc_Volume.hxx diff --git a/src/DataExchange/TKXCAF/XCAFNoteObjects/FILES.cmake b/src/DataExchange/TKXCAF/XCAFNoteObjects/FILES.cmake new file mode 100644 index 0000000000..6f105a3934 --- /dev/null +++ b/src/DataExchange/TKXCAF/XCAFNoteObjects/FILES.cmake @@ -0,0 +1,8 @@ +# Source files for XCAFNoteObjects package +set(OCCT_XCAFNoteObjects_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XCAFNoteObjects_FILES + FILES + XCAFNoteObjects_NoteObject.cxx + XCAFNoteObjects_NoteObject.hxx +) diff --git a/src/XCAFNoteObjects/XCAFNoteObjects_NoteObject.cxx b/src/DataExchange/TKXCAF/XCAFNoteObjects/XCAFNoteObjects_NoteObject.cxx similarity index 100% rename from src/XCAFNoteObjects/XCAFNoteObjects_NoteObject.cxx rename to src/DataExchange/TKXCAF/XCAFNoteObjects/XCAFNoteObjects_NoteObject.cxx diff --git a/src/XCAFNoteObjects/XCAFNoteObjects_NoteObject.hxx b/src/DataExchange/TKXCAF/XCAFNoteObjects/XCAFNoteObjects_NoteObject.hxx similarity index 100% rename from src/XCAFNoteObjects/XCAFNoteObjects_NoteObject.hxx rename to src/DataExchange/TKXCAF/XCAFNoteObjects/XCAFNoteObjects_NoteObject.hxx diff --git a/src/DataExchange/TKXCAF/XCAFPrs/FILES.cmake b/src/DataExchange/TKXCAF/XCAFPrs/FILES.cmake new file mode 100644 index 0000000000..b0169d28dd --- /dev/null +++ b/src/DataExchange/TKXCAF/XCAFPrs/FILES.cmake @@ -0,0 +1,25 @@ +# Source files for XCAFPrs package +set(OCCT_XCAFPrs_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XCAFPrs_FILES + XCAFPrs.cxx + XCAFPrs.hxx + XCAFPrs_AISObject.cxx + XCAFPrs_AISObject.hxx + XCAFPrs_DataMapIteratorOfIndexedDataMapOfShapeStyle.hxx + XCAFPrs_DataMapIteratorOfDataMapOfStyleShape.hxx + XCAFPrs_DataMapIteratorOfDataMapOfStyleTransient.hxx + XCAFPrs_IndexedDataMapOfShapeStyle.hxx + XCAFPrs_DataMapOfStyleShape.hxx + XCAFPrs_DataMapOfStyleTransient.hxx + XCAFPrs_DocumentExplorer.cxx + XCAFPrs_DocumentExplorer.hxx + XCAFPrs_DocumentIdIterator.hxx + XCAFPrs_DocumentNode.hxx + XCAFPrs_Driver.cxx + XCAFPrs_Driver.hxx + XCAFPrs_Style.cxx + XCAFPrs_Style.hxx + XCAFPrs_Texture.cxx + XCAFPrs_Texture.hxx +) diff --git a/src/XCAFPrs/XCAFPrs.cxx b/src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs.cxx similarity index 100% rename from src/XCAFPrs/XCAFPrs.cxx rename to src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs.cxx diff --git a/src/XCAFPrs/XCAFPrs.hxx b/src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs.hxx similarity index 100% rename from src/XCAFPrs/XCAFPrs.hxx rename to src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs.hxx diff --git a/src/XCAFPrs/XCAFPrs_AISObject.cxx b/src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_AISObject.cxx similarity index 100% rename from src/XCAFPrs/XCAFPrs_AISObject.cxx rename to src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_AISObject.cxx diff --git a/src/XCAFPrs/XCAFPrs_AISObject.hxx b/src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_AISObject.hxx similarity index 100% rename from src/XCAFPrs/XCAFPrs_AISObject.hxx rename to src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_AISObject.hxx diff --git a/src/XCAFPrs/XCAFPrs_DataMapIteratorOfDataMapOfStyleShape.hxx b/src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_DataMapIteratorOfDataMapOfStyleShape.hxx similarity index 100% rename from src/XCAFPrs/XCAFPrs_DataMapIteratorOfDataMapOfStyleShape.hxx rename to src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_DataMapIteratorOfDataMapOfStyleShape.hxx diff --git a/src/XCAFPrs/XCAFPrs_DataMapIteratorOfDataMapOfStyleTransient.hxx b/src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_DataMapIteratorOfDataMapOfStyleTransient.hxx similarity index 100% rename from src/XCAFPrs/XCAFPrs_DataMapIteratorOfDataMapOfStyleTransient.hxx rename to src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_DataMapIteratorOfDataMapOfStyleTransient.hxx diff --git a/src/XCAFPrs/XCAFPrs_DataMapIteratorOfIndexedDataMapOfShapeStyle.hxx b/src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_DataMapIteratorOfIndexedDataMapOfShapeStyle.hxx similarity index 100% rename from src/XCAFPrs/XCAFPrs_DataMapIteratorOfIndexedDataMapOfShapeStyle.hxx rename to src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_DataMapIteratorOfIndexedDataMapOfShapeStyle.hxx diff --git a/src/XCAFPrs/XCAFPrs_DataMapOfStyleShape.hxx b/src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_DataMapOfStyleShape.hxx similarity index 100% rename from src/XCAFPrs/XCAFPrs_DataMapOfStyleShape.hxx rename to src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_DataMapOfStyleShape.hxx diff --git a/src/XCAFPrs/XCAFPrs_DataMapOfStyleTransient.hxx b/src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_DataMapOfStyleTransient.hxx similarity index 100% rename from src/XCAFPrs/XCAFPrs_DataMapOfStyleTransient.hxx rename to src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_DataMapOfStyleTransient.hxx diff --git a/src/XCAFPrs/XCAFPrs_DocumentExplorer.cxx b/src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_DocumentExplorer.cxx similarity index 100% rename from src/XCAFPrs/XCAFPrs_DocumentExplorer.cxx rename to src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_DocumentExplorer.cxx diff --git a/src/XCAFPrs/XCAFPrs_DocumentExplorer.hxx b/src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_DocumentExplorer.hxx similarity index 100% rename from src/XCAFPrs/XCAFPrs_DocumentExplorer.hxx rename to src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_DocumentExplorer.hxx diff --git a/src/XCAFPrs/XCAFPrs_DocumentIdIterator.hxx b/src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_DocumentIdIterator.hxx similarity index 100% rename from src/XCAFPrs/XCAFPrs_DocumentIdIterator.hxx rename to src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_DocumentIdIterator.hxx diff --git a/src/XCAFPrs/XCAFPrs_DocumentNode.hxx b/src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_DocumentNode.hxx similarity index 100% rename from src/XCAFPrs/XCAFPrs_DocumentNode.hxx rename to src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_DocumentNode.hxx diff --git a/src/XCAFPrs/XCAFPrs_Driver.cxx b/src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_Driver.cxx similarity index 100% rename from src/XCAFPrs/XCAFPrs_Driver.cxx rename to src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_Driver.cxx diff --git a/src/XCAFPrs/XCAFPrs_Driver.hxx b/src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_Driver.hxx similarity index 100% rename from src/XCAFPrs/XCAFPrs_Driver.hxx rename to src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_Driver.hxx diff --git a/src/XCAFPrs/XCAFPrs_IndexedDataMapOfShapeStyle.hxx b/src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_IndexedDataMapOfShapeStyle.hxx similarity index 100% rename from src/XCAFPrs/XCAFPrs_IndexedDataMapOfShapeStyle.hxx rename to src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_IndexedDataMapOfShapeStyle.hxx diff --git a/src/XCAFPrs/XCAFPrs_Style.cxx b/src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_Style.cxx similarity index 100% rename from src/XCAFPrs/XCAFPrs_Style.cxx rename to src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_Style.cxx diff --git a/src/XCAFPrs/XCAFPrs_Style.hxx b/src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_Style.hxx similarity index 100% rename from src/XCAFPrs/XCAFPrs_Style.hxx rename to src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_Style.hxx diff --git a/src/XCAFPrs/XCAFPrs_Texture.cxx b/src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_Texture.cxx similarity index 100% rename from src/XCAFPrs/XCAFPrs_Texture.cxx rename to src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_Texture.cxx diff --git a/src/XCAFPrs/XCAFPrs_Texture.hxx b/src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_Texture.hxx similarity index 100% rename from src/XCAFPrs/XCAFPrs_Texture.hxx rename to src/DataExchange/TKXCAF/XCAFPrs/XCAFPrs_Texture.hxx diff --git a/src/DataExchange/TKXCAF/XCAFView/FILES.cmake b/src/DataExchange/TKXCAF/XCAFView/FILES.cmake new file mode 100644 index 0000000000..a392bfcb19 --- /dev/null +++ b/src/DataExchange/TKXCAF/XCAFView/FILES.cmake @@ -0,0 +1,8 @@ +# Source files for XCAFView package +set(OCCT_XCAFView_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XCAFView_FILES + XCAFView_Object.cxx + XCAFView_Object.hxx + XCAFView_ProjectionType.hxx +) diff --git a/src/XCAFView/XCAFView_Object.cxx b/src/DataExchange/TKXCAF/XCAFView/XCAFView_Object.cxx similarity index 100% rename from src/XCAFView/XCAFView_Object.cxx rename to src/DataExchange/TKXCAF/XCAFView/XCAFView_Object.cxx diff --git a/src/XCAFView/XCAFView_Object.hxx b/src/DataExchange/TKXCAF/XCAFView/XCAFView_Object.hxx similarity index 100% rename from src/XCAFView/XCAFView_Object.hxx rename to src/DataExchange/TKXCAF/XCAFView/XCAFView_Object.hxx diff --git a/src/XCAFView/XCAFView_ProjectionType.hxx b/src/DataExchange/TKXCAF/XCAFView/XCAFView_ProjectionType.hxx similarity index 100% rename from src/XCAFView/XCAFView_ProjectionType.hxx rename to src/DataExchange/TKXCAF/XCAFView/XCAFView_ProjectionType.hxx diff --git a/src/TKXSBase/CMakeLists.txt b/src/DataExchange/TKXSBase/CMakeLists.txt similarity index 100% rename from src/TKXSBase/CMakeLists.txt rename to src/DataExchange/TKXSBase/CMakeLists.txt diff --git a/src/DataExchange/TKXSBase/EXTERNLIB.cmake b/src/DataExchange/TKXSBase/EXTERNLIB.cmake new file mode 100644 index 0000000000..24d5ec8cda --- /dev/null +++ b/src/DataExchange/TKXSBase/EXTERNLIB.cmake @@ -0,0 +1,11 @@ +# External dependencies for TKXSBase +set(OCCT_TKXSBase_EXTERNAL_LIBS + TKBRep + TKernel + TKMath + TKG2d + TKG3d + TKTopAlgo + TKGeomBase + TKShHealing +) diff --git a/src/DataExchange/TKXSBase/FILES.cmake b/src/DataExchange/TKXSBase/FILES.cmake new file mode 100644 index 0000000000..ced62d23aa --- /dev/null +++ b/src/DataExchange/TKXSBase/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKXSBase +set(OCCT_TKXSBase_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKXSBase_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/DataExchange/TKXSBase/IFGraph/FILES.cmake b/src/DataExchange/TKXSBase/IFGraph/FILES.cmake new file mode 100644 index 0000000000..4724b922ca --- /dev/null +++ b/src/DataExchange/TKXSBase/IFGraph/FILES.cmake @@ -0,0 +1,27 @@ +# Source files for IFGraph package +set(OCCT_IFGraph_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IFGraph_FILES + IFGraph_AllConnected.cxx + IFGraph_AllConnected.hxx + IFGraph_AllShared.cxx + IFGraph_AllShared.hxx + IFGraph_Articulations.cxx + IFGraph_Articulations.hxx + IFGraph_Compare.cxx + IFGraph_Compare.hxx + IFGraph_ConnectedComponants.cxx + IFGraph_ConnectedComponants.hxx + IFGraph_Cumulate.cxx + IFGraph_Cumulate.hxx + IFGraph_Cycles.cxx + IFGraph_Cycles.hxx + IFGraph_ExternalSources.cxx + IFGraph_ExternalSources.hxx + IFGraph_SCRoots.cxx + IFGraph_SCRoots.hxx + IFGraph_StrongComponants.cxx + IFGraph_StrongComponants.hxx + IFGraph_SubPartsIterator.cxx + IFGraph_SubPartsIterator.hxx +) diff --git a/src/IFGraph/IFGraph_AllConnected.cxx b/src/DataExchange/TKXSBase/IFGraph/IFGraph_AllConnected.cxx similarity index 100% rename from src/IFGraph/IFGraph_AllConnected.cxx rename to src/DataExchange/TKXSBase/IFGraph/IFGraph_AllConnected.cxx diff --git a/src/IFGraph/IFGraph_AllConnected.hxx b/src/DataExchange/TKXSBase/IFGraph/IFGraph_AllConnected.hxx similarity index 100% rename from src/IFGraph/IFGraph_AllConnected.hxx rename to src/DataExchange/TKXSBase/IFGraph/IFGraph_AllConnected.hxx diff --git a/src/IFGraph/IFGraph_AllShared.cxx b/src/DataExchange/TKXSBase/IFGraph/IFGraph_AllShared.cxx similarity index 100% rename from src/IFGraph/IFGraph_AllShared.cxx rename to src/DataExchange/TKXSBase/IFGraph/IFGraph_AllShared.cxx diff --git a/src/IFGraph/IFGraph_AllShared.hxx b/src/DataExchange/TKXSBase/IFGraph/IFGraph_AllShared.hxx similarity index 100% rename from src/IFGraph/IFGraph_AllShared.hxx rename to src/DataExchange/TKXSBase/IFGraph/IFGraph_AllShared.hxx diff --git a/src/IFGraph/IFGraph_Articulations.cxx b/src/DataExchange/TKXSBase/IFGraph/IFGraph_Articulations.cxx similarity index 100% rename from src/IFGraph/IFGraph_Articulations.cxx rename to src/DataExchange/TKXSBase/IFGraph/IFGraph_Articulations.cxx diff --git a/src/IFGraph/IFGraph_Articulations.hxx b/src/DataExchange/TKXSBase/IFGraph/IFGraph_Articulations.hxx similarity index 100% rename from src/IFGraph/IFGraph_Articulations.hxx rename to src/DataExchange/TKXSBase/IFGraph/IFGraph_Articulations.hxx diff --git a/src/IFGraph/IFGraph_Compare.cxx b/src/DataExchange/TKXSBase/IFGraph/IFGraph_Compare.cxx similarity index 100% rename from src/IFGraph/IFGraph_Compare.cxx rename to src/DataExchange/TKXSBase/IFGraph/IFGraph_Compare.cxx diff --git a/src/IFGraph/IFGraph_Compare.hxx b/src/DataExchange/TKXSBase/IFGraph/IFGraph_Compare.hxx similarity index 100% rename from src/IFGraph/IFGraph_Compare.hxx rename to src/DataExchange/TKXSBase/IFGraph/IFGraph_Compare.hxx diff --git a/src/IFGraph/IFGraph_ConnectedComponants.cxx b/src/DataExchange/TKXSBase/IFGraph/IFGraph_ConnectedComponants.cxx similarity index 100% rename from src/IFGraph/IFGraph_ConnectedComponants.cxx rename to src/DataExchange/TKXSBase/IFGraph/IFGraph_ConnectedComponants.cxx diff --git a/src/IFGraph/IFGraph_ConnectedComponants.hxx b/src/DataExchange/TKXSBase/IFGraph/IFGraph_ConnectedComponants.hxx similarity index 100% rename from src/IFGraph/IFGraph_ConnectedComponants.hxx rename to src/DataExchange/TKXSBase/IFGraph/IFGraph_ConnectedComponants.hxx diff --git a/src/IFGraph/IFGraph_Cumulate.cxx b/src/DataExchange/TKXSBase/IFGraph/IFGraph_Cumulate.cxx similarity index 100% rename from src/IFGraph/IFGraph_Cumulate.cxx rename to src/DataExchange/TKXSBase/IFGraph/IFGraph_Cumulate.cxx diff --git a/src/IFGraph/IFGraph_Cumulate.hxx b/src/DataExchange/TKXSBase/IFGraph/IFGraph_Cumulate.hxx similarity index 100% rename from src/IFGraph/IFGraph_Cumulate.hxx rename to src/DataExchange/TKXSBase/IFGraph/IFGraph_Cumulate.hxx diff --git a/src/IFGraph/IFGraph_Cycles.cxx b/src/DataExchange/TKXSBase/IFGraph/IFGraph_Cycles.cxx similarity index 100% rename from src/IFGraph/IFGraph_Cycles.cxx rename to src/DataExchange/TKXSBase/IFGraph/IFGraph_Cycles.cxx diff --git a/src/IFGraph/IFGraph_Cycles.hxx b/src/DataExchange/TKXSBase/IFGraph/IFGraph_Cycles.hxx similarity index 100% rename from src/IFGraph/IFGraph_Cycles.hxx rename to src/DataExchange/TKXSBase/IFGraph/IFGraph_Cycles.hxx diff --git a/src/IFGraph/IFGraph_ExternalSources.cxx b/src/DataExchange/TKXSBase/IFGraph/IFGraph_ExternalSources.cxx similarity index 100% rename from src/IFGraph/IFGraph_ExternalSources.cxx rename to src/DataExchange/TKXSBase/IFGraph/IFGraph_ExternalSources.cxx diff --git a/src/IFGraph/IFGraph_ExternalSources.hxx b/src/DataExchange/TKXSBase/IFGraph/IFGraph_ExternalSources.hxx similarity index 100% rename from src/IFGraph/IFGraph_ExternalSources.hxx rename to src/DataExchange/TKXSBase/IFGraph/IFGraph_ExternalSources.hxx diff --git a/src/IFGraph/IFGraph_SCRoots.cxx b/src/DataExchange/TKXSBase/IFGraph/IFGraph_SCRoots.cxx similarity index 100% rename from src/IFGraph/IFGraph_SCRoots.cxx rename to src/DataExchange/TKXSBase/IFGraph/IFGraph_SCRoots.cxx diff --git a/src/IFGraph/IFGraph_SCRoots.hxx b/src/DataExchange/TKXSBase/IFGraph/IFGraph_SCRoots.hxx similarity index 100% rename from src/IFGraph/IFGraph_SCRoots.hxx rename to src/DataExchange/TKXSBase/IFGraph/IFGraph_SCRoots.hxx diff --git a/src/IFGraph/IFGraph_StrongComponants.cxx b/src/DataExchange/TKXSBase/IFGraph/IFGraph_StrongComponants.cxx similarity index 100% rename from src/IFGraph/IFGraph_StrongComponants.cxx rename to src/DataExchange/TKXSBase/IFGraph/IFGraph_StrongComponants.cxx diff --git a/src/IFGraph/IFGraph_StrongComponants.hxx b/src/DataExchange/TKXSBase/IFGraph/IFGraph_StrongComponants.hxx similarity index 100% rename from src/IFGraph/IFGraph_StrongComponants.hxx rename to src/DataExchange/TKXSBase/IFGraph/IFGraph_StrongComponants.hxx diff --git a/src/IFGraph/IFGraph_SubPartsIterator.cxx b/src/DataExchange/TKXSBase/IFGraph/IFGraph_SubPartsIterator.cxx similarity index 100% rename from src/IFGraph/IFGraph_SubPartsIterator.cxx rename to src/DataExchange/TKXSBase/IFGraph/IFGraph_SubPartsIterator.cxx diff --git a/src/IFGraph/IFGraph_SubPartsIterator.hxx b/src/DataExchange/TKXSBase/IFGraph/IFGraph_SubPartsIterator.hxx similarity index 100% rename from src/IFGraph/IFGraph_SubPartsIterator.hxx rename to src/DataExchange/TKXSBase/IFGraph/IFGraph_SubPartsIterator.hxx diff --git a/src/DataExchange/TKXSBase/IFSelect/FILES.cmake b/src/DataExchange/TKXSBase/IFSelect/FILES.cmake new file mode 100644 index 0000000000..2b276cf1e8 --- /dev/null +++ b/src/DataExchange/TKXSBase/IFSelect/FILES.cmake @@ -0,0 +1,173 @@ +# Source files for IFSelect package +set(OCCT_IFSelect_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IFSelect_FILES + IFSelect.cxx + IFSelect.hxx + IFSelect_Act.cxx + IFSelect_Act.hxx + IFSelect_ActFunc.hxx + IFSelect_Activator.cxx + IFSelect_Activator.hxx + IFSelect_AppliedModifiers.cxx + IFSelect_AppliedModifiers.hxx + IFSelect_BasicDumper.cxx + IFSelect_BasicDumper.hxx + IFSelect_CheckCounter.cxx + IFSelect_CheckCounter.hxx + IFSelect_ContextModif.cxx + IFSelect_ContextModif.hxx + IFSelect_ContextWrite.cxx + IFSelect_ContextWrite.hxx + IFSelect_Dispatch.cxx + IFSelect_Dispatch.hxx + IFSelect_DispGlobal.cxx + IFSelect_DispGlobal.hxx + IFSelect_DispPerCount.cxx + IFSelect_DispPerCount.hxx + IFSelect_DispPerFiles.cxx + IFSelect_DispPerFiles.hxx + IFSelect_DispPerOne.cxx + IFSelect_DispPerOne.hxx + IFSelect_DispPerSignature.cxx + IFSelect_DispPerSignature.hxx + IFSelect_EditForm.cxx + IFSelect_EditForm.hxx + IFSelect_Editor.cxx + IFSelect_Editor.hxx + IFSelect_EditValue.hxx + IFSelect_FileModifier.gxx + IFSelect_Functions.cxx + IFSelect_Functions.hxx + IFSelect_GeneralModifier.cxx + IFSelect_GeneralModifier.hxx + IFSelect_GraphCounter.cxx + IFSelect_GraphCounter.hxx + IFSelect_HSeqOfSelection.hxx + IFSelect_IntParam.cxx + IFSelect_IntParam.hxx + IFSelect_ListEditor.cxx + IFSelect_ListEditor.hxx + IFSelect_ModelCopier.cxx + IFSelect_ModelCopier.hxx + IFSelect_ModelModifier.gxx + IFSelect_ModifEditForm.cxx + IFSelect_ModifEditForm.hxx + IFSelect_Modifier.cxx + IFSelect_Modifier.hxx + IFSelect_ModifReorder.cxx + IFSelect_ModifReorder.hxx + IFSelect_PacketList.cxx + IFSelect_PacketList.hxx + IFSelect_ParamEditor.cxx + IFSelect_ParamEditor.hxx + IFSelect_PrintCount.hxx + IFSelect_PrintFail.hxx + IFSelect_RemainMode.hxx + IFSelect_ReturnStatus.hxx + IFSelect_SelectAnyList.cxx + IFSelect_SelectAnyList.hxx + IFSelect_SelectAnyType.cxx + IFSelect_SelectAnyType.hxx + IFSelect_SelectBase.cxx + IFSelect_SelectBase.hxx + IFSelect_SelectCombine.cxx + IFSelect_SelectCombine.hxx + IFSelect_SelectControl.cxx + IFSelect_SelectControl.hxx + IFSelect_SelectDeduct.cxx + IFSelect_SelectDeduct.hxx + IFSelect_SelectDiff.cxx + IFSelect_SelectDiff.hxx + IFSelect_SelectEntityNumber.cxx + IFSelect_SelectEntityNumber.hxx + IFSelect_SelectErrorEntities.cxx + IFSelect_SelectErrorEntities.hxx + IFSelect_SelectExplore.cxx + IFSelect_SelectExplore.hxx + IFSelect_SelectExtract.cxx + IFSelect_SelectExtract.hxx + IFSelect_SelectFlag.cxx + IFSelect_SelectFlag.hxx + IFSelect_SelectIncorrectEntities.cxx + IFSelect_SelectIncorrectEntities.hxx + IFSelect_SelectInList.cxx + IFSelect_SelectInList.hxx + IFSelect_SelectIntersection.cxx + IFSelect_SelectIntersection.hxx + IFSelect_Selection.cxx + IFSelect_Selection.hxx + IFSelect_SelectionIterator.cxx + IFSelect_SelectionIterator.hxx + IFSelect_SelectModelEntities.cxx + IFSelect_SelectModelEntities.hxx + IFSelect_SelectModelRoots.cxx + IFSelect_SelectModelRoots.hxx + IFSelect_SelectPointed.cxx + IFSelect_SelectPointed.hxx + IFSelect_SelectRange.cxx + IFSelect_SelectRange.hxx + IFSelect_SelectRootComps.cxx + IFSelect_SelectRootComps.hxx + IFSelect_SelectRoots.cxx + IFSelect_SelectRoots.hxx + IFSelect_SelectSent.cxx + IFSelect_SelectSent.hxx + IFSelect_SelectShared.cxx + IFSelect_SelectShared.hxx + IFSelect_SelectSharing.cxx + IFSelect_SelectSharing.hxx + IFSelect_SelectSignature.cxx + IFSelect_SelectSignature.hxx + IFSelect_SelectSignedShared.cxx + IFSelect_SelectSignedShared.hxx + IFSelect_SelectSignedSharing.cxx + IFSelect_SelectSignedSharing.hxx + IFSelect_SelectSuite.cxx + IFSelect_SelectSuite.hxx + IFSelect_SelectType.cxx + IFSelect_SelectType.hxx + IFSelect_SelectUnion.cxx + IFSelect_SelectUnion.hxx + IFSelect_SelectUnknownEntities.cxx + IFSelect_SelectUnknownEntities.hxx + IFSelect_SequenceOfAppliedModifiers.hxx + IFSelect_SequenceOfGeneralModifier.hxx + IFSelect_SequenceOfInterfaceModel.hxx + IFSelect_SessionDumper.cxx + IFSelect_SessionDumper.hxx + IFSelect_SessionFile.cxx + IFSelect_SessionFile.hxx + IFSelect_SessionPilot.cxx + IFSelect_SessionPilot.hxx + IFSelect_ShareOut.cxx + IFSelect_ShareOut.hxx + IFSelect_ShareOutResult.cxx + IFSelect_ShareOutResult.hxx + IFSelect_SignAncestor.cxx + IFSelect_SignAncestor.hxx + IFSelect_Signature.cxx + IFSelect_Signature.hxx + IFSelect_SignatureList.cxx + IFSelect_SignatureList.hxx + IFSelect_SignCategory.cxx + IFSelect_SignCategory.hxx + IFSelect_SignCounter.cxx + IFSelect_SignCounter.hxx + IFSelect_SignMultiple.cxx + IFSelect_SignMultiple.hxx + IFSelect_SignType.cxx + IFSelect_SignType.hxx + IFSelect_SignValidity.cxx + IFSelect_SignValidity.hxx + IFSelect_Transformer.cxx + IFSelect_Transformer.hxx + IFSelect_TransformStandard.cxx + IFSelect_TransformStandard.hxx + IFSelect_TSeqOfDispatch.hxx + IFSelect_TSeqOfSelection.hxx + IFSelect_WorkLibrary.cxx + IFSelect_WorkLibrary.hxx + IFSelect_WorkSession.cxx + IFSelect_WorkSession.hxx +) diff --git a/src/IFSelect/IFSelect.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect.cxx similarity index 100% rename from src/IFSelect/IFSelect.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect.cxx diff --git a/src/IFSelect/IFSelect.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect.hxx similarity index 100% rename from src/IFSelect/IFSelect.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect.hxx diff --git a/src/IFSelect/IFSelect_Act.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_Act.cxx similarity index 100% rename from src/IFSelect/IFSelect_Act.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_Act.cxx diff --git a/src/IFSelect/IFSelect_Act.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_Act.hxx similarity index 100% rename from src/IFSelect/IFSelect_Act.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_Act.hxx diff --git a/src/IFSelect/IFSelect_ActFunc.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_ActFunc.hxx similarity index 100% rename from src/IFSelect/IFSelect_ActFunc.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_ActFunc.hxx diff --git a/src/IFSelect/IFSelect_Activator.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_Activator.cxx similarity index 100% rename from src/IFSelect/IFSelect_Activator.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_Activator.cxx diff --git a/src/IFSelect/IFSelect_Activator.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_Activator.hxx similarity index 100% rename from src/IFSelect/IFSelect_Activator.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_Activator.hxx diff --git a/src/IFSelect/IFSelect_AppliedModifiers.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_AppliedModifiers.cxx similarity index 100% rename from src/IFSelect/IFSelect_AppliedModifiers.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_AppliedModifiers.cxx diff --git a/src/IFSelect/IFSelect_AppliedModifiers.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_AppliedModifiers.hxx similarity index 100% rename from src/IFSelect/IFSelect_AppliedModifiers.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_AppliedModifiers.hxx diff --git a/src/IFSelect/IFSelect_BasicDumper.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_BasicDumper.cxx similarity index 100% rename from src/IFSelect/IFSelect_BasicDumper.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_BasicDumper.cxx diff --git a/src/IFSelect/IFSelect_BasicDumper.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_BasicDumper.hxx similarity index 100% rename from src/IFSelect/IFSelect_BasicDumper.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_BasicDumper.hxx diff --git a/src/IFSelect/IFSelect_CheckCounter.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_CheckCounter.cxx similarity index 100% rename from src/IFSelect/IFSelect_CheckCounter.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_CheckCounter.cxx diff --git a/src/IFSelect/IFSelect_CheckCounter.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_CheckCounter.hxx similarity index 100% rename from src/IFSelect/IFSelect_CheckCounter.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_CheckCounter.hxx diff --git a/src/IFSelect/IFSelect_ContextModif.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_ContextModif.cxx similarity index 100% rename from src/IFSelect/IFSelect_ContextModif.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_ContextModif.cxx diff --git a/src/IFSelect/IFSelect_ContextModif.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_ContextModif.hxx similarity index 100% rename from src/IFSelect/IFSelect_ContextModif.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_ContextModif.hxx diff --git a/src/IFSelect/IFSelect_ContextWrite.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_ContextWrite.cxx similarity index 100% rename from src/IFSelect/IFSelect_ContextWrite.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_ContextWrite.cxx diff --git a/src/IFSelect/IFSelect_ContextWrite.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_ContextWrite.hxx similarity index 100% rename from src/IFSelect/IFSelect_ContextWrite.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_ContextWrite.hxx diff --git a/src/IFSelect/IFSelect_DispGlobal.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_DispGlobal.cxx similarity index 100% rename from src/IFSelect/IFSelect_DispGlobal.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_DispGlobal.cxx diff --git a/src/IFSelect/IFSelect_DispGlobal.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_DispGlobal.hxx similarity index 100% rename from src/IFSelect/IFSelect_DispGlobal.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_DispGlobal.hxx diff --git a/src/IFSelect/IFSelect_DispPerCount.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_DispPerCount.cxx similarity index 100% rename from src/IFSelect/IFSelect_DispPerCount.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_DispPerCount.cxx diff --git a/src/IFSelect/IFSelect_DispPerCount.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_DispPerCount.hxx similarity index 100% rename from src/IFSelect/IFSelect_DispPerCount.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_DispPerCount.hxx diff --git a/src/IFSelect/IFSelect_DispPerFiles.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_DispPerFiles.cxx similarity index 100% rename from src/IFSelect/IFSelect_DispPerFiles.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_DispPerFiles.cxx diff --git a/src/IFSelect/IFSelect_DispPerFiles.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_DispPerFiles.hxx similarity index 100% rename from src/IFSelect/IFSelect_DispPerFiles.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_DispPerFiles.hxx diff --git a/src/IFSelect/IFSelect_DispPerOne.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_DispPerOne.cxx similarity index 100% rename from src/IFSelect/IFSelect_DispPerOne.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_DispPerOne.cxx diff --git a/src/IFSelect/IFSelect_DispPerOne.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_DispPerOne.hxx similarity index 100% rename from src/IFSelect/IFSelect_DispPerOne.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_DispPerOne.hxx diff --git a/src/IFSelect/IFSelect_DispPerSignature.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_DispPerSignature.cxx similarity index 100% rename from src/IFSelect/IFSelect_DispPerSignature.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_DispPerSignature.cxx diff --git a/src/IFSelect/IFSelect_DispPerSignature.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_DispPerSignature.hxx similarity index 100% rename from src/IFSelect/IFSelect_DispPerSignature.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_DispPerSignature.hxx diff --git a/src/IFSelect/IFSelect_Dispatch.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_Dispatch.cxx similarity index 100% rename from src/IFSelect/IFSelect_Dispatch.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_Dispatch.cxx diff --git a/src/IFSelect/IFSelect_Dispatch.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_Dispatch.hxx similarity index 100% rename from src/IFSelect/IFSelect_Dispatch.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_Dispatch.hxx diff --git a/src/IFSelect/IFSelect_EditForm.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_EditForm.cxx similarity index 100% rename from src/IFSelect/IFSelect_EditForm.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_EditForm.cxx diff --git a/src/IFSelect/IFSelect_EditForm.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_EditForm.hxx similarity index 100% rename from src/IFSelect/IFSelect_EditForm.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_EditForm.hxx diff --git a/src/IFSelect/IFSelect_EditValue.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_EditValue.hxx similarity index 100% rename from src/IFSelect/IFSelect_EditValue.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_EditValue.hxx diff --git a/src/IFSelect/IFSelect_Editor.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_Editor.cxx similarity index 100% rename from src/IFSelect/IFSelect_Editor.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_Editor.cxx diff --git a/src/IFSelect/IFSelect_Editor.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_Editor.hxx similarity index 100% rename from src/IFSelect/IFSelect_Editor.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_Editor.hxx diff --git a/src/IFSelect/IFSelect_FileModifier.gxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_FileModifier.gxx similarity index 100% rename from src/IFSelect/IFSelect_FileModifier.gxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_FileModifier.gxx diff --git a/src/IFSelect/IFSelect_Functions.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_Functions.cxx similarity index 100% rename from src/IFSelect/IFSelect_Functions.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_Functions.cxx diff --git a/src/IFSelect/IFSelect_Functions.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_Functions.hxx similarity index 100% rename from src/IFSelect/IFSelect_Functions.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_Functions.hxx diff --git a/src/IFSelect/IFSelect_GeneralModifier.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_GeneralModifier.cxx similarity index 100% rename from src/IFSelect/IFSelect_GeneralModifier.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_GeneralModifier.cxx diff --git a/src/IFSelect/IFSelect_GeneralModifier.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_GeneralModifier.hxx similarity index 100% rename from src/IFSelect/IFSelect_GeneralModifier.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_GeneralModifier.hxx diff --git a/src/IFSelect/IFSelect_GraphCounter.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_GraphCounter.cxx similarity index 100% rename from src/IFSelect/IFSelect_GraphCounter.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_GraphCounter.cxx diff --git a/src/IFSelect/IFSelect_GraphCounter.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_GraphCounter.hxx similarity index 100% rename from src/IFSelect/IFSelect_GraphCounter.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_GraphCounter.hxx diff --git a/src/IFSelect/IFSelect_HSeqOfSelection.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_HSeqOfSelection.hxx similarity index 100% rename from src/IFSelect/IFSelect_HSeqOfSelection.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_HSeqOfSelection.hxx diff --git a/src/IFSelect/IFSelect_IntParam.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_IntParam.cxx similarity index 100% rename from src/IFSelect/IFSelect_IntParam.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_IntParam.cxx diff --git a/src/IFSelect/IFSelect_IntParam.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_IntParam.hxx similarity index 100% rename from src/IFSelect/IFSelect_IntParam.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_IntParam.hxx diff --git a/src/IFSelect/IFSelect_ListEditor.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_ListEditor.cxx similarity index 100% rename from src/IFSelect/IFSelect_ListEditor.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_ListEditor.cxx diff --git a/src/IFSelect/IFSelect_ListEditor.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_ListEditor.hxx similarity index 100% rename from src/IFSelect/IFSelect_ListEditor.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_ListEditor.hxx diff --git a/src/IFSelect/IFSelect_ModelCopier.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_ModelCopier.cxx similarity index 100% rename from src/IFSelect/IFSelect_ModelCopier.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_ModelCopier.cxx diff --git a/src/IFSelect/IFSelect_ModelCopier.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_ModelCopier.hxx similarity index 100% rename from src/IFSelect/IFSelect_ModelCopier.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_ModelCopier.hxx diff --git a/src/IFSelect/IFSelect_ModelModifier.gxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_ModelModifier.gxx similarity index 100% rename from src/IFSelect/IFSelect_ModelModifier.gxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_ModelModifier.gxx diff --git a/src/IFSelect/IFSelect_ModifEditForm.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_ModifEditForm.cxx similarity index 100% rename from src/IFSelect/IFSelect_ModifEditForm.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_ModifEditForm.cxx diff --git a/src/IFSelect/IFSelect_ModifEditForm.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_ModifEditForm.hxx similarity index 100% rename from src/IFSelect/IFSelect_ModifEditForm.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_ModifEditForm.hxx diff --git a/src/IFSelect/IFSelect_ModifReorder.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_ModifReorder.cxx similarity index 100% rename from src/IFSelect/IFSelect_ModifReorder.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_ModifReorder.cxx diff --git a/src/IFSelect/IFSelect_ModifReorder.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_ModifReorder.hxx similarity index 100% rename from src/IFSelect/IFSelect_ModifReorder.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_ModifReorder.hxx diff --git a/src/IFSelect/IFSelect_Modifier.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_Modifier.cxx similarity index 100% rename from src/IFSelect/IFSelect_Modifier.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_Modifier.cxx diff --git a/src/IFSelect/IFSelect_Modifier.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_Modifier.hxx similarity index 100% rename from src/IFSelect/IFSelect_Modifier.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_Modifier.hxx diff --git a/src/IFSelect/IFSelect_PacketList.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_PacketList.cxx similarity index 100% rename from src/IFSelect/IFSelect_PacketList.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_PacketList.cxx diff --git a/src/IFSelect/IFSelect_PacketList.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_PacketList.hxx similarity index 100% rename from src/IFSelect/IFSelect_PacketList.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_PacketList.hxx diff --git a/src/IFSelect/IFSelect_ParamEditor.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_ParamEditor.cxx similarity index 100% rename from src/IFSelect/IFSelect_ParamEditor.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_ParamEditor.cxx diff --git a/src/IFSelect/IFSelect_ParamEditor.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_ParamEditor.hxx similarity index 100% rename from src/IFSelect/IFSelect_ParamEditor.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_ParamEditor.hxx diff --git a/src/IFSelect/IFSelect_PrintCount.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_PrintCount.hxx similarity index 100% rename from src/IFSelect/IFSelect_PrintCount.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_PrintCount.hxx diff --git a/src/IFSelect/IFSelect_PrintFail.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_PrintFail.hxx similarity index 100% rename from src/IFSelect/IFSelect_PrintFail.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_PrintFail.hxx diff --git a/src/IFSelect/IFSelect_RemainMode.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_RemainMode.hxx similarity index 100% rename from src/IFSelect/IFSelect_RemainMode.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_RemainMode.hxx diff --git a/src/IFSelect/IFSelect_ReturnStatus.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_ReturnStatus.hxx similarity index 100% rename from src/IFSelect/IFSelect_ReturnStatus.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_ReturnStatus.hxx diff --git a/src/IFSelect/IFSelect_SelectAnyList.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectAnyList.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectAnyList.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectAnyList.cxx diff --git a/src/IFSelect/IFSelect_SelectAnyList.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectAnyList.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectAnyList.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectAnyList.hxx diff --git a/src/IFSelect/IFSelect_SelectAnyType.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectAnyType.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectAnyType.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectAnyType.cxx diff --git a/src/IFSelect/IFSelect_SelectAnyType.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectAnyType.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectAnyType.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectAnyType.hxx diff --git a/src/IFSelect/IFSelect_SelectBase.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectBase.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectBase.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectBase.cxx diff --git a/src/IFSelect/IFSelect_SelectBase.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectBase.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectBase.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectBase.hxx diff --git a/src/IFSelect/IFSelect_SelectCombine.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectCombine.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectCombine.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectCombine.cxx diff --git a/src/IFSelect/IFSelect_SelectCombine.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectCombine.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectCombine.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectCombine.hxx diff --git a/src/IFSelect/IFSelect_SelectControl.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectControl.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectControl.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectControl.cxx diff --git a/src/IFSelect/IFSelect_SelectControl.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectControl.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectControl.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectControl.hxx diff --git a/src/IFSelect/IFSelect_SelectDeduct.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectDeduct.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectDeduct.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectDeduct.cxx diff --git a/src/IFSelect/IFSelect_SelectDeduct.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectDeduct.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectDeduct.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectDeduct.hxx diff --git a/src/IFSelect/IFSelect_SelectDiff.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectDiff.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectDiff.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectDiff.cxx diff --git a/src/IFSelect/IFSelect_SelectDiff.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectDiff.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectDiff.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectDiff.hxx diff --git a/src/IFSelect/IFSelect_SelectEntityNumber.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectEntityNumber.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectEntityNumber.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectEntityNumber.cxx diff --git a/src/IFSelect/IFSelect_SelectEntityNumber.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectEntityNumber.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectEntityNumber.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectEntityNumber.hxx diff --git a/src/IFSelect/IFSelect_SelectErrorEntities.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectErrorEntities.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectErrorEntities.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectErrorEntities.cxx diff --git a/src/IFSelect/IFSelect_SelectErrorEntities.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectErrorEntities.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectErrorEntities.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectErrorEntities.hxx diff --git a/src/IFSelect/IFSelect_SelectExplore.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectExplore.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectExplore.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectExplore.cxx diff --git a/src/IFSelect/IFSelect_SelectExplore.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectExplore.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectExplore.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectExplore.hxx diff --git a/src/IFSelect/IFSelect_SelectExtract.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectExtract.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectExtract.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectExtract.cxx diff --git a/src/IFSelect/IFSelect_SelectExtract.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectExtract.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectExtract.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectExtract.hxx diff --git a/src/IFSelect/IFSelect_SelectFlag.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectFlag.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectFlag.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectFlag.cxx diff --git a/src/IFSelect/IFSelect_SelectFlag.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectFlag.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectFlag.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectFlag.hxx diff --git a/src/IFSelect/IFSelect_SelectInList.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectInList.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectInList.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectInList.cxx diff --git a/src/IFSelect/IFSelect_SelectInList.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectInList.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectInList.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectInList.hxx diff --git a/src/IFSelect/IFSelect_SelectIncorrectEntities.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectIncorrectEntities.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectIncorrectEntities.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectIncorrectEntities.cxx diff --git a/src/IFSelect/IFSelect_SelectIncorrectEntities.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectIncorrectEntities.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectIncorrectEntities.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectIncorrectEntities.hxx diff --git a/src/IFSelect/IFSelect_SelectIntersection.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectIntersection.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectIntersection.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectIntersection.cxx diff --git a/src/IFSelect/IFSelect_SelectIntersection.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectIntersection.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectIntersection.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectIntersection.hxx diff --git a/src/IFSelect/IFSelect_SelectModelEntities.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectModelEntities.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectModelEntities.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectModelEntities.cxx diff --git a/src/IFSelect/IFSelect_SelectModelEntities.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectModelEntities.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectModelEntities.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectModelEntities.hxx diff --git a/src/IFSelect/IFSelect_SelectModelRoots.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectModelRoots.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectModelRoots.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectModelRoots.cxx diff --git a/src/IFSelect/IFSelect_SelectModelRoots.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectModelRoots.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectModelRoots.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectModelRoots.hxx diff --git a/src/IFSelect/IFSelect_SelectPointed.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectPointed.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectPointed.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectPointed.cxx diff --git a/src/IFSelect/IFSelect_SelectPointed.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectPointed.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectPointed.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectPointed.hxx diff --git a/src/IFSelect/IFSelect_SelectRange.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectRange.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectRange.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectRange.cxx diff --git a/src/IFSelect/IFSelect_SelectRange.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectRange.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectRange.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectRange.hxx diff --git a/src/IFSelect/IFSelect_SelectRootComps.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectRootComps.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectRootComps.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectRootComps.cxx diff --git a/src/IFSelect/IFSelect_SelectRootComps.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectRootComps.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectRootComps.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectRootComps.hxx diff --git a/src/IFSelect/IFSelect_SelectRoots.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectRoots.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectRoots.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectRoots.cxx diff --git a/src/IFSelect/IFSelect_SelectRoots.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectRoots.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectRoots.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectRoots.hxx diff --git a/src/IFSelect/IFSelect_SelectSent.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectSent.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectSent.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectSent.cxx diff --git a/src/IFSelect/IFSelect_SelectSent.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectSent.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectSent.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectSent.hxx diff --git a/src/IFSelect/IFSelect_SelectShared.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectShared.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectShared.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectShared.cxx diff --git a/src/IFSelect/IFSelect_SelectShared.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectShared.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectShared.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectShared.hxx diff --git a/src/IFSelect/IFSelect_SelectSharing.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectSharing.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectSharing.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectSharing.cxx diff --git a/src/IFSelect/IFSelect_SelectSharing.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectSharing.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectSharing.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectSharing.hxx diff --git a/src/IFSelect/IFSelect_SelectSignature.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectSignature.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectSignature.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectSignature.cxx diff --git a/src/IFSelect/IFSelect_SelectSignature.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectSignature.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectSignature.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectSignature.hxx diff --git a/src/IFSelect/IFSelect_SelectSignedShared.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectSignedShared.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectSignedShared.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectSignedShared.cxx diff --git a/src/IFSelect/IFSelect_SelectSignedShared.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectSignedShared.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectSignedShared.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectSignedShared.hxx diff --git a/src/IFSelect/IFSelect_SelectSignedSharing.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectSignedSharing.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectSignedSharing.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectSignedSharing.cxx diff --git a/src/IFSelect/IFSelect_SelectSignedSharing.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectSignedSharing.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectSignedSharing.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectSignedSharing.hxx diff --git a/src/IFSelect/IFSelect_SelectSuite.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectSuite.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectSuite.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectSuite.cxx diff --git a/src/IFSelect/IFSelect_SelectSuite.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectSuite.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectSuite.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectSuite.hxx diff --git a/src/IFSelect/IFSelect_SelectType.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectType.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectType.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectType.cxx diff --git a/src/IFSelect/IFSelect_SelectType.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectType.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectType.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectType.hxx diff --git a/src/IFSelect/IFSelect_SelectUnion.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectUnion.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectUnion.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectUnion.cxx diff --git a/src/IFSelect/IFSelect_SelectUnion.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectUnion.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectUnion.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectUnion.hxx diff --git a/src/IFSelect/IFSelect_SelectUnknownEntities.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectUnknownEntities.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectUnknownEntities.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectUnknownEntities.cxx diff --git a/src/IFSelect/IFSelect_SelectUnknownEntities.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectUnknownEntities.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectUnknownEntities.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectUnknownEntities.hxx diff --git a/src/IFSelect/IFSelect_Selection.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_Selection.cxx similarity index 100% rename from src/IFSelect/IFSelect_Selection.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_Selection.cxx diff --git a/src/IFSelect/IFSelect_Selection.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_Selection.hxx similarity index 100% rename from src/IFSelect/IFSelect_Selection.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_Selection.hxx diff --git a/src/IFSelect/IFSelect_SelectionIterator.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectionIterator.cxx similarity index 100% rename from src/IFSelect/IFSelect_SelectionIterator.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectionIterator.cxx diff --git a/src/IFSelect/IFSelect_SelectionIterator.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectionIterator.hxx similarity index 100% rename from src/IFSelect/IFSelect_SelectionIterator.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SelectionIterator.hxx diff --git a/src/IFSelect/IFSelect_SequenceOfAppliedModifiers.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SequenceOfAppliedModifiers.hxx similarity index 100% rename from src/IFSelect/IFSelect_SequenceOfAppliedModifiers.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SequenceOfAppliedModifiers.hxx diff --git a/src/IFSelect/IFSelect_SequenceOfGeneralModifier.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SequenceOfGeneralModifier.hxx similarity index 100% rename from src/IFSelect/IFSelect_SequenceOfGeneralModifier.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SequenceOfGeneralModifier.hxx diff --git a/src/IFSelect/IFSelect_SequenceOfInterfaceModel.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SequenceOfInterfaceModel.hxx similarity index 100% rename from src/IFSelect/IFSelect_SequenceOfInterfaceModel.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SequenceOfInterfaceModel.hxx diff --git a/src/IFSelect/IFSelect_SessionDumper.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SessionDumper.cxx similarity index 100% rename from src/IFSelect/IFSelect_SessionDumper.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SessionDumper.cxx diff --git a/src/IFSelect/IFSelect_SessionDumper.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SessionDumper.hxx similarity index 100% rename from src/IFSelect/IFSelect_SessionDumper.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SessionDumper.hxx diff --git a/src/IFSelect/IFSelect_SessionFile.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SessionFile.cxx similarity index 100% rename from src/IFSelect/IFSelect_SessionFile.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SessionFile.cxx diff --git a/src/IFSelect/IFSelect_SessionFile.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SessionFile.hxx similarity index 100% rename from src/IFSelect/IFSelect_SessionFile.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SessionFile.hxx diff --git a/src/IFSelect/IFSelect_SessionPilot.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SessionPilot.cxx similarity index 100% rename from src/IFSelect/IFSelect_SessionPilot.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SessionPilot.cxx diff --git a/src/IFSelect/IFSelect_SessionPilot.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SessionPilot.hxx similarity index 100% rename from src/IFSelect/IFSelect_SessionPilot.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SessionPilot.hxx diff --git a/src/IFSelect/IFSelect_ShareOut.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_ShareOut.cxx similarity index 100% rename from src/IFSelect/IFSelect_ShareOut.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_ShareOut.cxx diff --git a/src/IFSelect/IFSelect_ShareOut.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_ShareOut.hxx similarity index 100% rename from src/IFSelect/IFSelect_ShareOut.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_ShareOut.hxx diff --git a/src/IFSelect/IFSelect_ShareOutResult.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_ShareOutResult.cxx similarity index 100% rename from src/IFSelect/IFSelect_ShareOutResult.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_ShareOutResult.cxx diff --git a/src/IFSelect/IFSelect_ShareOutResult.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_ShareOutResult.hxx similarity index 100% rename from src/IFSelect/IFSelect_ShareOutResult.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_ShareOutResult.hxx diff --git a/src/IFSelect/IFSelect_SignAncestor.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SignAncestor.cxx similarity index 100% rename from src/IFSelect/IFSelect_SignAncestor.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SignAncestor.cxx diff --git a/src/IFSelect/IFSelect_SignAncestor.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SignAncestor.hxx similarity index 100% rename from src/IFSelect/IFSelect_SignAncestor.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SignAncestor.hxx diff --git a/src/IFSelect/IFSelect_SignCategory.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SignCategory.cxx similarity index 100% rename from src/IFSelect/IFSelect_SignCategory.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SignCategory.cxx diff --git a/src/IFSelect/IFSelect_SignCategory.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SignCategory.hxx similarity index 100% rename from src/IFSelect/IFSelect_SignCategory.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SignCategory.hxx diff --git a/src/IFSelect/IFSelect_SignCounter.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SignCounter.cxx similarity index 100% rename from src/IFSelect/IFSelect_SignCounter.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SignCounter.cxx diff --git a/src/IFSelect/IFSelect_SignCounter.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SignCounter.hxx similarity index 100% rename from src/IFSelect/IFSelect_SignCounter.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SignCounter.hxx diff --git a/src/IFSelect/IFSelect_SignMultiple.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SignMultiple.cxx similarity index 100% rename from src/IFSelect/IFSelect_SignMultiple.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SignMultiple.cxx diff --git a/src/IFSelect/IFSelect_SignMultiple.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SignMultiple.hxx similarity index 100% rename from src/IFSelect/IFSelect_SignMultiple.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SignMultiple.hxx diff --git a/src/IFSelect/IFSelect_SignType.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SignType.cxx similarity index 100% rename from src/IFSelect/IFSelect_SignType.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SignType.cxx diff --git a/src/IFSelect/IFSelect_SignType.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SignType.hxx similarity index 100% rename from src/IFSelect/IFSelect_SignType.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SignType.hxx diff --git a/src/IFSelect/IFSelect_SignValidity.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SignValidity.cxx similarity index 100% rename from src/IFSelect/IFSelect_SignValidity.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SignValidity.cxx diff --git a/src/IFSelect/IFSelect_SignValidity.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SignValidity.hxx similarity index 100% rename from src/IFSelect/IFSelect_SignValidity.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SignValidity.hxx diff --git a/src/IFSelect/IFSelect_Signature.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_Signature.cxx similarity index 100% rename from src/IFSelect/IFSelect_Signature.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_Signature.cxx diff --git a/src/IFSelect/IFSelect_Signature.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_Signature.hxx similarity index 100% rename from src/IFSelect/IFSelect_Signature.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_Signature.hxx diff --git a/src/IFSelect/IFSelect_SignatureList.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SignatureList.cxx similarity index 100% rename from src/IFSelect/IFSelect_SignatureList.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SignatureList.cxx diff --git a/src/IFSelect/IFSelect_SignatureList.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_SignatureList.hxx similarity index 100% rename from src/IFSelect/IFSelect_SignatureList.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_SignatureList.hxx diff --git a/src/IFSelect/IFSelect_TSeqOfDispatch.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_TSeqOfDispatch.hxx similarity index 100% rename from src/IFSelect/IFSelect_TSeqOfDispatch.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_TSeqOfDispatch.hxx diff --git a/src/IFSelect/IFSelect_TSeqOfSelection.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_TSeqOfSelection.hxx similarity index 100% rename from src/IFSelect/IFSelect_TSeqOfSelection.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_TSeqOfSelection.hxx diff --git a/src/IFSelect/IFSelect_TransformStandard.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_TransformStandard.cxx similarity index 100% rename from src/IFSelect/IFSelect_TransformStandard.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_TransformStandard.cxx diff --git a/src/IFSelect/IFSelect_TransformStandard.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_TransformStandard.hxx similarity index 100% rename from src/IFSelect/IFSelect_TransformStandard.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_TransformStandard.hxx diff --git a/src/IFSelect/IFSelect_Transformer.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_Transformer.cxx similarity index 100% rename from src/IFSelect/IFSelect_Transformer.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_Transformer.cxx diff --git a/src/IFSelect/IFSelect_Transformer.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_Transformer.hxx similarity index 100% rename from src/IFSelect/IFSelect_Transformer.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_Transformer.hxx diff --git a/src/IFSelect/IFSelect_WorkLibrary.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_WorkLibrary.cxx similarity index 100% rename from src/IFSelect/IFSelect_WorkLibrary.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_WorkLibrary.cxx diff --git a/src/IFSelect/IFSelect_WorkLibrary.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_WorkLibrary.hxx similarity index 100% rename from src/IFSelect/IFSelect_WorkLibrary.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_WorkLibrary.hxx diff --git a/src/IFSelect/IFSelect_WorkSession.cxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_WorkSession.cxx similarity index 100% rename from src/IFSelect/IFSelect_WorkSession.cxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_WorkSession.cxx diff --git a/src/IFSelect/IFSelect_WorkSession.hxx b/src/DataExchange/TKXSBase/IFSelect/IFSelect_WorkSession.hxx similarity index 100% rename from src/IFSelect/IFSelect_WorkSession.hxx rename to src/DataExchange/TKXSBase/IFSelect/IFSelect_WorkSession.hxx diff --git a/src/DataExchange/TKXSBase/Interface/FILES.cmake b/src/DataExchange/TKXSBase/Interface/FILES.cmake new file mode 100644 index 0000000000..667c3c8a1a --- /dev/null +++ b/src/DataExchange/TKXSBase/Interface/FILES.cmake @@ -0,0 +1,119 @@ +# Source files for Interface package +set(OCCT_Interface_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Interface_FILES + Interface_Array1OfFileParameter.hxx + Interface_Array1OfHAsciiString.hxx + Interface_BitMap.cxx + Interface_BitMap.hxx + Interface_Category.cxx + Interface_Category.hxx + Interface_Check.cxx + Interface_Check.hxx + Interface_CheckFailure.hxx + Interface_CheckIterator.cxx + Interface_CheckIterator.hxx + Interface_CheckStatus.hxx + Interface_CheckTool.cxx + Interface_CheckTool.hxx + Interface_CopyControl.cxx + Interface_CopyControl.hxx + Interface_CopyMap.cxx + Interface_CopyMap.hxx + Interface_CopyTool.cxx + Interface_CopyTool.hxx + Interface_DataMapIteratorOfDataMapOfTransientInteger.hxx + Interface_DataMapOfTransientInteger.hxx + Interface_DataState.hxx + Interface_EntityCluster.cxx + Interface_EntityCluster.hxx + Interface_EntityIterator.cxx + Interface_EntityIterator.hxx + Interface_EntityList.cxx + Interface_EntityList.hxx + Interface_FileParameter.cxx + Interface_FileParameter.hxx + Interface_FileReaderData.cxx + Interface_FileReaderData.hxx + Interface_FileReaderTool.cxx + Interface_FileReaderTool.hxx + Interface_FloatWriter.cxx + Interface_FloatWriter.hxx + Interface_GeneralLib.hxx + Interface_GeneralLib_0.cxx + Interface_GeneralModule.cxx + Interface_GeneralModule.hxx + Interface_GlobalNodeOfGeneralLib.hxx + Interface_GlobalNodeOfGeneralLib_0.cxx + Interface_GlobalNodeOfReaderLib.hxx + Interface_GlobalNodeOfReaderLib_0.cxx + Interface_Graph.cxx + Interface_Graph.hxx + Interface_GraphContent.cxx + Interface_GraphContent.hxx + Interface_GTool.cxx + Interface_GTool.hxx + Interface_HArray1OfHAsciiString.hxx + Interface_HGraph.cxx + Interface_HGraph.hxx + Interface_HSequenceOfCheck.hxx + Interface_IndexedMapOfAsciiString.hxx + Interface_InterfaceError.hxx + Interface_InterfaceMismatch.hxx + Interface_InterfaceModel.cxx + Interface_InterfaceModel.hxx + Interface_IntList.cxx + Interface_IntList.hxx + Interface_IntVal.cxx + Interface_IntVal.hxx + Interface_JaggedArray.gxx + Interface_LineBuffer.cxx + Interface_LineBuffer.hxx + Interface_Macros.hxx + Interface_MSG.cxx + Interface_MSG.hxx + Interface_NodeOfGeneralLib.hxx + Interface_NodeOfGeneralLib_0.cxx + Interface_NodeOfReaderLib.hxx + Interface_NodeOfReaderLib_0.cxx + Interface_ParamList.cxx + Interface_ParamList.hxx + Interface_ParamList.lxx + Interface_ParamSet.cxx + Interface_ParamSet.hxx + Interface_ParamType.hxx + Interface_Protocol.cxx + Interface_Protocol.hxx + Interface_ReaderLib.hxx + Interface_ReaderLib_0.cxx + Interface_ReaderModule.cxx + Interface_ReaderModule.hxx + Interface_Recognizer.gxx + Interface_ReportEntity.cxx + Interface_ReportEntity.hxx + Interface_SequenceOfCheck.hxx + Interface_ShareFlags.cxx + Interface_ShareFlags.hxx + Interface_ShareTool.cxx + Interface_ShareTool.hxx + Interface_SignLabel.cxx + Interface_SignLabel.hxx + Interface_SignType.cxx + Interface_SignType.hxx + Interface_STAT.cxx + Interface_STAT.hxx + Interface_Static.cxx + Interface_Static.hxx + Interface_Statics.hxx + Interface_StaticSatisfies.hxx + Interface_StaticStandards.cxx + Interface_Translates.hxx + Interface_TypedValue.cxx + Interface_TypedValue.hxx + Interface_UndefinedContent.cxx + Interface_UndefinedContent.hxx + Interface_ValueInterpret.hxx + Interface_ValueSatisfies.hxx + Interface_VectorOfFileParameter.hxx + Interface_Version.hxx +) diff --git a/src/Interface/Interface_Array1OfFileParameter.hxx b/src/DataExchange/TKXSBase/Interface/Interface_Array1OfFileParameter.hxx similarity index 100% rename from src/Interface/Interface_Array1OfFileParameter.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_Array1OfFileParameter.hxx diff --git a/src/Interface/Interface_Array1OfHAsciiString.hxx b/src/DataExchange/TKXSBase/Interface/Interface_Array1OfHAsciiString.hxx similarity index 100% rename from src/Interface/Interface_Array1OfHAsciiString.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_Array1OfHAsciiString.hxx diff --git a/src/Interface/Interface_BitMap.cxx b/src/DataExchange/TKXSBase/Interface/Interface_BitMap.cxx similarity index 100% rename from src/Interface/Interface_BitMap.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_BitMap.cxx diff --git a/src/Interface/Interface_BitMap.hxx b/src/DataExchange/TKXSBase/Interface/Interface_BitMap.hxx similarity index 100% rename from src/Interface/Interface_BitMap.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_BitMap.hxx diff --git a/src/Interface/Interface_Category.cxx b/src/DataExchange/TKXSBase/Interface/Interface_Category.cxx similarity index 100% rename from src/Interface/Interface_Category.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_Category.cxx diff --git a/src/Interface/Interface_Category.hxx b/src/DataExchange/TKXSBase/Interface/Interface_Category.hxx similarity index 100% rename from src/Interface/Interface_Category.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_Category.hxx diff --git a/src/Interface/Interface_Check.cxx b/src/DataExchange/TKXSBase/Interface/Interface_Check.cxx similarity index 100% rename from src/Interface/Interface_Check.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_Check.cxx diff --git a/src/Interface/Interface_Check.hxx b/src/DataExchange/TKXSBase/Interface/Interface_Check.hxx similarity index 100% rename from src/Interface/Interface_Check.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_Check.hxx diff --git a/src/Interface/Interface_CheckFailure.hxx b/src/DataExchange/TKXSBase/Interface/Interface_CheckFailure.hxx similarity index 100% rename from src/Interface/Interface_CheckFailure.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_CheckFailure.hxx diff --git a/src/Interface/Interface_CheckIterator.cxx b/src/DataExchange/TKXSBase/Interface/Interface_CheckIterator.cxx similarity index 100% rename from src/Interface/Interface_CheckIterator.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_CheckIterator.cxx diff --git a/src/Interface/Interface_CheckIterator.hxx b/src/DataExchange/TKXSBase/Interface/Interface_CheckIterator.hxx similarity index 100% rename from src/Interface/Interface_CheckIterator.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_CheckIterator.hxx diff --git a/src/Interface/Interface_CheckStatus.hxx b/src/DataExchange/TKXSBase/Interface/Interface_CheckStatus.hxx similarity index 100% rename from src/Interface/Interface_CheckStatus.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_CheckStatus.hxx diff --git a/src/Interface/Interface_CheckTool.cxx b/src/DataExchange/TKXSBase/Interface/Interface_CheckTool.cxx similarity index 100% rename from src/Interface/Interface_CheckTool.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_CheckTool.cxx diff --git a/src/Interface/Interface_CheckTool.hxx b/src/DataExchange/TKXSBase/Interface/Interface_CheckTool.hxx similarity index 100% rename from src/Interface/Interface_CheckTool.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_CheckTool.hxx diff --git a/src/Interface/Interface_CopyControl.cxx b/src/DataExchange/TKXSBase/Interface/Interface_CopyControl.cxx similarity index 100% rename from src/Interface/Interface_CopyControl.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_CopyControl.cxx diff --git a/src/Interface/Interface_CopyControl.hxx b/src/DataExchange/TKXSBase/Interface/Interface_CopyControl.hxx similarity index 100% rename from src/Interface/Interface_CopyControl.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_CopyControl.hxx diff --git a/src/Interface/Interface_CopyMap.cxx b/src/DataExchange/TKXSBase/Interface/Interface_CopyMap.cxx similarity index 100% rename from src/Interface/Interface_CopyMap.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_CopyMap.cxx diff --git a/src/Interface/Interface_CopyMap.hxx b/src/DataExchange/TKXSBase/Interface/Interface_CopyMap.hxx similarity index 100% rename from src/Interface/Interface_CopyMap.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_CopyMap.hxx diff --git a/src/Interface/Interface_CopyTool.cxx b/src/DataExchange/TKXSBase/Interface/Interface_CopyTool.cxx similarity index 100% rename from src/Interface/Interface_CopyTool.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_CopyTool.cxx diff --git a/src/Interface/Interface_CopyTool.hxx b/src/DataExchange/TKXSBase/Interface/Interface_CopyTool.hxx similarity index 100% rename from src/Interface/Interface_CopyTool.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_CopyTool.hxx diff --git a/src/Interface/Interface_DataMapIteratorOfDataMapOfTransientInteger.hxx b/src/DataExchange/TKXSBase/Interface/Interface_DataMapIteratorOfDataMapOfTransientInteger.hxx similarity index 100% rename from src/Interface/Interface_DataMapIteratorOfDataMapOfTransientInteger.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_DataMapIteratorOfDataMapOfTransientInteger.hxx diff --git a/src/Interface/Interface_DataMapOfTransientInteger.hxx b/src/DataExchange/TKXSBase/Interface/Interface_DataMapOfTransientInteger.hxx similarity index 100% rename from src/Interface/Interface_DataMapOfTransientInteger.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_DataMapOfTransientInteger.hxx diff --git a/src/Interface/Interface_DataState.hxx b/src/DataExchange/TKXSBase/Interface/Interface_DataState.hxx similarity index 100% rename from src/Interface/Interface_DataState.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_DataState.hxx diff --git a/src/Interface/Interface_EntityCluster.cxx b/src/DataExchange/TKXSBase/Interface/Interface_EntityCluster.cxx similarity index 100% rename from src/Interface/Interface_EntityCluster.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_EntityCluster.cxx diff --git a/src/Interface/Interface_EntityCluster.hxx b/src/DataExchange/TKXSBase/Interface/Interface_EntityCluster.hxx similarity index 100% rename from src/Interface/Interface_EntityCluster.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_EntityCluster.hxx diff --git a/src/Interface/Interface_EntityIterator.cxx b/src/DataExchange/TKXSBase/Interface/Interface_EntityIterator.cxx similarity index 100% rename from src/Interface/Interface_EntityIterator.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_EntityIterator.cxx diff --git a/src/Interface/Interface_EntityIterator.hxx b/src/DataExchange/TKXSBase/Interface/Interface_EntityIterator.hxx similarity index 100% rename from src/Interface/Interface_EntityIterator.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_EntityIterator.hxx diff --git a/src/Interface/Interface_EntityList.cxx b/src/DataExchange/TKXSBase/Interface/Interface_EntityList.cxx similarity index 100% rename from src/Interface/Interface_EntityList.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_EntityList.cxx diff --git a/src/Interface/Interface_EntityList.hxx b/src/DataExchange/TKXSBase/Interface/Interface_EntityList.hxx similarity index 100% rename from src/Interface/Interface_EntityList.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_EntityList.hxx diff --git a/src/Interface/Interface_FileParameter.cxx b/src/DataExchange/TKXSBase/Interface/Interface_FileParameter.cxx similarity index 100% rename from src/Interface/Interface_FileParameter.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_FileParameter.cxx diff --git a/src/Interface/Interface_FileParameter.hxx b/src/DataExchange/TKXSBase/Interface/Interface_FileParameter.hxx similarity index 100% rename from src/Interface/Interface_FileParameter.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_FileParameter.hxx diff --git a/src/Interface/Interface_FileReaderData.cxx b/src/DataExchange/TKXSBase/Interface/Interface_FileReaderData.cxx similarity index 100% rename from src/Interface/Interface_FileReaderData.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_FileReaderData.cxx diff --git a/src/Interface/Interface_FileReaderData.hxx b/src/DataExchange/TKXSBase/Interface/Interface_FileReaderData.hxx similarity index 100% rename from src/Interface/Interface_FileReaderData.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_FileReaderData.hxx diff --git a/src/Interface/Interface_FileReaderTool.cxx b/src/DataExchange/TKXSBase/Interface/Interface_FileReaderTool.cxx similarity index 100% rename from src/Interface/Interface_FileReaderTool.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_FileReaderTool.cxx diff --git a/src/Interface/Interface_FileReaderTool.hxx b/src/DataExchange/TKXSBase/Interface/Interface_FileReaderTool.hxx similarity index 100% rename from src/Interface/Interface_FileReaderTool.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_FileReaderTool.hxx diff --git a/src/Interface/Interface_FloatWriter.cxx b/src/DataExchange/TKXSBase/Interface/Interface_FloatWriter.cxx similarity index 100% rename from src/Interface/Interface_FloatWriter.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_FloatWriter.cxx diff --git a/src/Interface/Interface_FloatWriter.hxx b/src/DataExchange/TKXSBase/Interface/Interface_FloatWriter.hxx similarity index 100% rename from src/Interface/Interface_FloatWriter.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_FloatWriter.hxx diff --git a/src/Interface/Interface_GTool.cxx b/src/DataExchange/TKXSBase/Interface/Interface_GTool.cxx similarity index 100% rename from src/Interface/Interface_GTool.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_GTool.cxx diff --git a/src/Interface/Interface_GTool.hxx b/src/DataExchange/TKXSBase/Interface/Interface_GTool.hxx similarity index 100% rename from src/Interface/Interface_GTool.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_GTool.hxx diff --git a/src/Interface/Interface_GeneralLib.hxx b/src/DataExchange/TKXSBase/Interface/Interface_GeneralLib.hxx similarity index 100% rename from src/Interface/Interface_GeneralLib.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_GeneralLib.hxx diff --git a/src/Interface/Interface_GeneralLib_0.cxx b/src/DataExchange/TKXSBase/Interface/Interface_GeneralLib_0.cxx similarity index 100% rename from src/Interface/Interface_GeneralLib_0.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_GeneralLib_0.cxx diff --git a/src/Interface/Interface_GeneralModule.cxx b/src/DataExchange/TKXSBase/Interface/Interface_GeneralModule.cxx similarity index 100% rename from src/Interface/Interface_GeneralModule.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_GeneralModule.cxx diff --git a/src/Interface/Interface_GeneralModule.hxx b/src/DataExchange/TKXSBase/Interface/Interface_GeneralModule.hxx similarity index 100% rename from src/Interface/Interface_GeneralModule.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_GeneralModule.hxx diff --git a/src/Interface/Interface_GlobalNodeOfGeneralLib.hxx b/src/DataExchange/TKXSBase/Interface/Interface_GlobalNodeOfGeneralLib.hxx similarity index 100% rename from src/Interface/Interface_GlobalNodeOfGeneralLib.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_GlobalNodeOfGeneralLib.hxx diff --git a/src/Interface/Interface_GlobalNodeOfGeneralLib_0.cxx b/src/DataExchange/TKXSBase/Interface/Interface_GlobalNodeOfGeneralLib_0.cxx similarity index 100% rename from src/Interface/Interface_GlobalNodeOfGeneralLib_0.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_GlobalNodeOfGeneralLib_0.cxx diff --git a/src/Interface/Interface_GlobalNodeOfReaderLib.hxx b/src/DataExchange/TKXSBase/Interface/Interface_GlobalNodeOfReaderLib.hxx similarity index 100% rename from src/Interface/Interface_GlobalNodeOfReaderLib.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_GlobalNodeOfReaderLib.hxx diff --git a/src/Interface/Interface_GlobalNodeOfReaderLib_0.cxx b/src/DataExchange/TKXSBase/Interface/Interface_GlobalNodeOfReaderLib_0.cxx similarity index 100% rename from src/Interface/Interface_GlobalNodeOfReaderLib_0.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_GlobalNodeOfReaderLib_0.cxx diff --git a/src/Interface/Interface_Graph.cxx b/src/DataExchange/TKXSBase/Interface/Interface_Graph.cxx similarity index 100% rename from src/Interface/Interface_Graph.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_Graph.cxx diff --git a/src/Interface/Interface_Graph.hxx b/src/DataExchange/TKXSBase/Interface/Interface_Graph.hxx similarity index 100% rename from src/Interface/Interface_Graph.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_Graph.hxx diff --git a/src/Interface/Interface_GraphContent.cxx b/src/DataExchange/TKXSBase/Interface/Interface_GraphContent.cxx similarity index 100% rename from src/Interface/Interface_GraphContent.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_GraphContent.cxx diff --git a/src/Interface/Interface_GraphContent.hxx b/src/DataExchange/TKXSBase/Interface/Interface_GraphContent.hxx similarity index 100% rename from src/Interface/Interface_GraphContent.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_GraphContent.hxx diff --git a/src/Interface/Interface_HArray1OfHAsciiString.hxx b/src/DataExchange/TKXSBase/Interface/Interface_HArray1OfHAsciiString.hxx similarity index 100% rename from src/Interface/Interface_HArray1OfHAsciiString.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_HArray1OfHAsciiString.hxx diff --git a/src/Interface/Interface_HGraph.cxx b/src/DataExchange/TKXSBase/Interface/Interface_HGraph.cxx similarity index 100% rename from src/Interface/Interface_HGraph.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_HGraph.cxx diff --git a/src/Interface/Interface_HGraph.hxx b/src/DataExchange/TKXSBase/Interface/Interface_HGraph.hxx similarity index 100% rename from src/Interface/Interface_HGraph.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_HGraph.hxx diff --git a/src/Interface/Interface_HSequenceOfCheck.hxx b/src/DataExchange/TKXSBase/Interface/Interface_HSequenceOfCheck.hxx similarity index 100% rename from src/Interface/Interface_HSequenceOfCheck.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_HSequenceOfCheck.hxx diff --git a/src/Interface/Interface_IndexedMapOfAsciiString.hxx b/src/DataExchange/TKXSBase/Interface/Interface_IndexedMapOfAsciiString.hxx similarity index 100% rename from src/Interface/Interface_IndexedMapOfAsciiString.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_IndexedMapOfAsciiString.hxx diff --git a/src/Interface/Interface_IntList.cxx b/src/DataExchange/TKXSBase/Interface/Interface_IntList.cxx similarity index 100% rename from src/Interface/Interface_IntList.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_IntList.cxx diff --git a/src/Interface/Interface_IntList.hxx b/src/DataExchange/TKXSBase/Interface/Interface_IntList.hxx similarity index 100% rename from src/Interface/Interface_IntList.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_IntList.hxx diff --git a/src/Interface/Interface_IntVal.cxx b/src/DataExchange/TKXSBase/Interface/Interface_IntVal.cxx similarity index 100% rename from src/Interface/Interface_IntVal.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_IntVal.cxx diff --git a/src/Interface/Interface_IntVal.hxx b/src/DataExchange/TKXSBase/Interface/Interface_IntVal.hxx similarity index 100% rename from src/Interface/Interface_IntVal.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_IntVal.hxx diff --git a/src/Interface/Interface_InterfaceError.hxx b/src/DataExchange/TKXSBase/Interface/Interface_InterfaceError.hxx similarity index 100% rename from src/Interface/Interface_InterfaceError.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_InterfaceError.hxx diff --git a/src/Interface/Interface_InterfaceMismatch.hxx b/src/DataExchange/TKXSBase/Interface/Interface_InterfaceMismatch.hxx similarity index 100% rename from src/Interface/Interface_InterfaceMismatch.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_InterfaceMismatch.hxx diff --git a/src/Interface/Interface_InterfaceModel.cxx b/src/DataExchange/TKXSBase/Interface/Interface_InterfaceModel.cxx similarity index 100% rename from src/Interface/Interface_InterfaceModel.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_InterfaceModel.cxx diff --git a/src/Interface/Interface_InterfaceModel.hxx b/src/DataExchange/TKXSBase/Interface/Interface_InterfaceModel.hxx similarity index 100% rename from src/Interface/Interface_InterfaceModel.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_InterfaceModel.hxx diff --git a/src/Interface/Interface_JaggedArray.gxx b/src/DataExchange/TKXSBase/Interface/Interface_JaggedArray.gxx similarity index 100% rename from src/Interface/Interface_JaggedArray.gxx rename to src/DataExchange/TKXSBase/Interface/Interface_JaggedArray.gxx diff --git a/src/Interface/Interface_LineBuffer.cxx b/src/DataExchange/TKXSBase/Interface/Interface_LineBuffer.cxx similarity index 100% rename from src/Interface/Interface_LineBuffer.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_LineBuffer.cxx diff --git a/src/Interface/Interface_LineBuffer.hxx b/src/DataExchange/TKXSBase/Interface/Interface_LineBuffer.hxx similarity index 100% rename from src/Interface/Interface_LineBuffer.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_LineBuffer.hxx diff --git a/src/Interface/Interface_MSG.cxx b/src/DataExchange/TKXSBase/Interface/Interface_MSG.cxx similarity index 100% rename from src/Interface/Interface_MSG.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_MSG.cxx diff --git a/src/Interface/Interface_MSG.hxx b/src/DataExchange/TKXSBase/Interface/Interface_MSG.hxx similarity index 100% rename from src/Interface/Interface_MSG.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_MSG.hxx diff --git a/src/Interface/Interface_Macros.hxx b/src/DataExchange/TKXSBase/Interface/Interface_Macros.hxx similarity index 100% rename from src/Interface/Interface_Macros.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_Macros.hxx diff --git a/src/Interface/Interface_NodeOfGeneralLib.hxx b/src/DataExchange/TKXSBase/Interface/Interface_NodeOfGeneralLib.hxx similarity index 100% rename from src/Interface/Interface_NodeOfGeneralLib.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_NodeOfGeneralLib.hxx diff --git a/src/Interface/Interface_NodeOfGeneralLib_0.cxx b/src/DataExchange/TKXSBase/Interface/Interface_NodeOfGeneralLib_0.cxx similarity index 100% rename from src/Interface/Interface_NodeOfGeneralLib_0.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_NodeOfGeneralLib_0.cxx diff --git a/src/Interface/Interface_NodeOfReaderLib.hxx b/src/DataExchange/TKXSBase/Interface/Interface_NodeOfReaderLib.hxx similarity index 100% rename from src/Interface/Interface_NodeOfReaderLib.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_NodeOfReaderLib.hxx diff --git a/src/Interface/Interface_NodeOfReaderLib_0.cxx b/src/DataExchange/TKXSBase/Interface/Interface_NodeOfReaderLib_0.cxx similarity index 100% rename from src/Interface/Interface_NodeOfReaderLib_0.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_NodeOfReaderLib_0.cxx diff --git a/src/Interface/Interface_ParamList.cxx b/src/DataExchange/TKXSBase/Interface/Interface_ParamList.cxx similarity index 100% rename from src/Interface/Interface_ParamList.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_ParamList.cxx diff --git a/src/Interface/Interface_ParamList.hxx b/src/DataExchange/TKXSBase/Interface/Interface_ParamList.hxx similarity index 100% rename from src/Interface/Interface_ParamList.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_ParamList.hxx diff --git a/src/Interface/Interface_ParamList.lxx b/src/DataExchange/TKXSBase/Interface/Interface_ParamList.lxx similarity index 100% rename from src/Interface/Interface_ParamList.lxx rename to src/DataExchange/TKXSBase/Interface/Interface_ParamList.lxx diff --git a/src/Interface/Interface_ParamSet.cxx b/src/DataExchange/TKXSBase/Interface/Interface_ParamSet.cxx similarity index 100% rename from src/Interface/Interface_ParamSet.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_ParamSet.cxx diff --git a/src/Interface/Interface_ParamSet.hxx b/src/DataExchange/TKXSBase/Interface/Interface_ParamSet.hxx similarity index 100% rename from src/Interface/Interface_ParamSet.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_ParamSet.hxx diff --git a/src/Interface/Interface_ParamType.hxx b/src/DataExchange/TKXSBase/Interface/Interface_ParamType.hxx similarity index 100% rename from src/Interface/Interface_ParamType.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_ParamType.hxx diff --git a/src/Interface/Interface_Protocol.cxx b/src/DataExchange/TKXSBase/Interface/Interface_Protocol.cxx similarity index 100% rename from src/Interface/Interface_Protocol.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_Protocol.cxx diff --git a/src/Interface/Interface_Protocol.hxx b/src/DataExchange/TKXSBase/Interface/Interface_Protocol.hxx similarity index 100% rename from src/Interface/Interface_Protocol.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_Protocol.hxx diff --git a/src/Interface/Interface_ReaderLib.hxx b/src/DataExchange/TKXSBase/Interface/Interface_ReaderLib.hxx similarity index 100% rename from src/Interface/Interface_ReaderLib.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_ReaderLib.hxx diff --git a/src/Interface/Interface_ReaderLib_0.cxx b/src/DataExchange/TKXSBase/Interface/Interface_ReaderLib_0.cxx similarity index 100% rename from src/Interface/Interface_ReaderLib_0.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_ReaderLib_0.cxx diff --git a/src/Interface/Interface_ReaderModule.cxx b/src/DataExchange/TKXSBase/Interface/Interface_ReaderModule.cxx similarity index 100% rename from src/Interface/Interface_ReaderModule.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_ReaderModule.cxx diff --git a/src/Interface/Interface_ReaderModule.hxx b/src/DataExchange/TKXSBase/Interface/Interface_ReaderModule.hxx similarity index 100% rename from src/Interface/Interface_ReaderModule.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_ReaderModule.hxx diff --git a/src/Interface/Interface_Recognizer.gxx b/src/DataExchange/TKXSBase/Interface/Interface_Recognizer.gxx similarity index 100% rename from src/Interface/Interface_Recognizer.gxx rename to src/DataExchange/TKXSBase/Interface/Interface_Recognizer.gxx diff --git a/src/Interface/Interface_ReportEntity.cxx b/src/DataExchange/TKXSBase/Interface/Interface_ReportEntity.cxx similarity index 100% rename from src/Interface/Interface_ReportEntity.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_ReportEntity.cxx diff --git a/src/Interface/Interface_ReportEntity.hxx b/src/DataExchange/TKXSBase/Interface/Interface_ReportEntity.hxx similarity index 100% rename from src/Interface/Interface_ReportEntity.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_ReportEntity.hxx diff --git a/src/Interface/Interface_STAT.cxx b/src/DataExchange/TKXSBase/Interface/Interface_STAT.cxx similarity index 100% rename from src/Interface/Interface_STAT.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_STAT.cxx diff --git a/src/Interface/Interface_STAT.hxx b/src/DataExchange/TKXSBase/Interface/Interface_STAT.hxx similarity index 100% rename from src/Interface/Interface_STAT.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_STAT.hxx diff --git a/src/Interface/Interface_SequenceOfCheck.hxx b/src/DataExchange/TKXSBase/Interface/Interface_SequenceOfCheck.hxx similarity index 100% rename from src/Interface/Interface_SequenceOfCheck.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_SequenceOfCheck.hxx diff --git a/src/Interface/Interface_ShareFlags.cxx b/src/DataExchange/TKXSBase/Interface/Interface_ShareFlags.cxx similarity index 100% rename from src/Interface/Interface_ShareFlags.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_ShareFlags.cxx diff --git a/src/Interface/Interface_ShareFlags.hxx b/src/DataExchange/TKXSBase/Interface/Interface_ShareFlags.hxx similarity index 100% rename from src/Interface/Interface_ShareFlags.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_ShareFlags.hxx diff --git a/src/Interface/Interface_ShareTool.cxx b/src/DataExchange/TKXSBase/Interface/Interface_ShareTool.cxx similarity index 100% rename from src/Interface/Interface_ShareTool.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_ShareTool.cxx diff --git a/src/Interface/Interface_ShareTool.hxx b/src/DataExchange/TKXSBase/Interface/Interface_ShareTool.hxx similarity index 100% rename from src/Interface/Interface_ShareTool.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_ShareTool.hxx diff --git a/src/Interface/Interface_SignLabel.cxx b/src/DataExchange/TKXSBase/Interface/Interface_SignLabel.cxx similarity index 100% rename from src/Interface/Interface_SignLabel.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_SignLabel.cxx diff --git a/src/Interface/Interface_SignLabel.hxx b/src/DataExchange/TKXSBase/Interface/Interface_SignLabel.hxx similarity index 100% rename from src/Interface/Interface_SignLabel.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_SignLabel.hxx diff --git a/src/Interface/Interface_SignType.cxx b/src/DataExchange/TKXSBase/Interface/Interface_SignType.cxx similarity index 100% rename from src/Interface/Interface_SignType.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_SignType.cxx diff --git a/src/Interface/Interface_SignType.hxx b/src/DataExchange/TKXSBase/Interface/Interface_SignType.hxx similarity index 100% rename from src/Interface/Interface_SignType.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_SignType.hxx diff --git a/src/Interface/Interface_Static.cxx b/src/DataExchange/TKXSBase/Interface/Interface_Static.cxx similarity index 100% rename from src/Interface/Interface_Static.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_Static.cxx diff --git a/src/Interface/Interface_Static.hxx b/src/DataExchange/TKXSBase/Interface/Interface_Static.hxx similarity index 100% rename from src/Interface/Interface_Static.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_Static.hxx diff --git a/src/Interface/Interface_StaticSatisfies.hxx b/src/DataExchange/TKXSBase/Interface/Interface_StaticSatisfies.hxx similarity index 100% rename from src/Interface/Interface_StaticSatisfies.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_StaticSatisfies.hxx diff --git a/src/Interface/Interface_StaticStandards.cxx b/src/DataExchange/TKXSBase/Interface/Interface_StaticStandards.cxx similarity index 100% rename from src/Interface/Interface_StaticStandards.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_StaticStandards.cxx diff --git a/src/Interface/Interface_Statics.hxx b/src/DataExchange/TKXSBase/Interface/Interface_Statics.hxx similarity index 100% rename from src/Interface/Interface_Statics.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_Statics.hxx diff --git a/src/Interface/Interface_Translates.hxx b/src/DataExchange/TKXSBase/Interface/Interface_Translates.hxx similarity index 100% rename from src/Interface/Interface_Translates.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_Translates.hxx diff --git a/src/Interface/Interface_TypedValue.cxx b/src/DataExchange/TKXSBase/Interface/Interface_TypedValue.cxx similarity index 100% rename from src/Interface/Interface_TypedValue.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_TypedValue.cxx diff --git a/src/Interface/Interface_TypedValue.hxx b/src/DataExchange/TKXSBase/Interface/Interface_TypedValue.hxx similarity index 100% rename from src/Interface/Interface_TypedValue.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_TypedValue.hxx diff --git a/src/Interface/Interface_UndefinedContent.cxx b/src/DataExchange/TKXSBase/Interface/Interface_UndefinedContent.cxx similarity index 100% rename from src/Interface/Interface_UndefinedContent.cxx rename to src/DataExchange/TKXSBase/Interface/Interface_UndefinedContent.cxx diff --git a/src/Interface/Interface_UndefinedContent.hxx b/src/DataExchange/TKXSBase/Interface/Interface_UndefinedContent.hxx similarity index 100% rename from src/Interface/Interface_UndefinedContent.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_UndefinedContent.hxx diff --git a/src/Interface/Interface_ValueInterpret.hxx b/src/DataExchange/TKXSBase/Interface/Interface_ValueInterpret.hxx similarity index 100% rename from src/Interface/Interface_ValueInterpret.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_ValueInterpret.hxx diff --git a/src/Interface/Interface_ValueSatisfies.hxx b/src/DataExchange/TKXSBase/Interface/Interface_ValueSatisfies.hxx similarity index 100% rename from src/Interface/Interface_ValueSatisfies.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_ValueSatisfies.hxx diff --git a/src/Interface/Interface_VectorOfFileParameter.hxx b/src/DataExchange/TKXSBase/Interface/Interface_VectorOfFileParameter.hxx similarity index 100% rename from src/Interface/Interface_VectorOfFileParameter.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_VectorOfFileParameter.hxx diff --git a/src/Interface/Interface_Version.hxx b/src/DataExchange/TKXSBase/Interface/Interface_Version.hxx similarity index 100% rename from src/Interface/Interface_Version.hxx rename to src/DataExchange/TKXSBase/Interface/Interface_Version.hxx diff --git a/src/DataExchange/TKXSBase/LibCtl/FILES.cmake b/src/DataExchange/TKXSBase/LibCtl/FILES.cmake new file mode 100644 index 0000000000..51b5b1a6bf --- /dev/null +++ b/src/DataExchange/TKXSBase/LibCtl/FILES.cmake @@ -0,0 +1,8 @@ +# Source files for LibCtl package +set(OCCT_LibCtl_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_LibCtl_FILES + LibCtl_GlobalNode.gxx + LibCtl_Library.gxx + LibCtl_Node.gxx +) diff --git a/src/LibCtl/LibCtl_GlobalNode.gxx b/src/DataExchange/TKXSBase/LibCtl/LibCtl_GlobalNode.gxx similarity index 100% rename from src/LibCtl/LibCtl_GlobalNode.gxx rename to src/DataExchange/TKXSBase/LibCtl/LibCtl_GlobalNode.gxx diff --git a/src/LibCtl/LibCtl_Library.gxx b/src/DataExchange/TKXSBase/LibCtl/LibCtl_Library.gxx similarity index 100% rename from src/LibCtl/LibCtl_Library.gxx rename to src/DataExchange/TKXSBase/LibCtl/LibCtl_Library.gxx diff --git a/src/LibCtl/LibCtl_Node.gxx b/src/DataExchange/TKXSBase/LibCtl/LibCtl_Node.gxx similarity index 100% rename from src/LibCtl/LibCtl_Node.gxx rename to src/DataExchange/TKXSBase/LibCtl/LibCtl_Node.gxx diff --git a/src/DataExchange/TKXSBase/MoniTool/FILES.cmake b/src/DataExchange/TKXSBase/MoniTool/FILES.cmake new file mode 100644 index 0000000000..56aaed7ef6 --- /dev/null +++ b/src/DataExchange/TKXSBase/MoniTool/FILES.cmake @@ -0,0 +1,43 @@ +# Source files for MoniTool package +set(OCCT_MoniTool_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_MoniTool_FILES + MoniTool_AttrList.cxx + MoniTool_AttrList.hxx + MoniTool_CaseData.cxx + MoniTool_CaseData.hxx + MoniTool_DataInfo.cxx + MoniTool_DataInfo.hxx + MoniTool_DataMapIteratorOfDataMapOfShapeTransient.hxx + MoniTool_DataMapIteratorOfDataMapOfTimer.hxx + MoniTool_DataMapOfShapeTransient.hxx + MoniTool_DataMapOfTimer.hxx + MoniTool_Element.cxx + MoniTool_Element.hxx + MoniTool_HSequenceOfElement.hxx + MoniTool_IndexedDataMapOfShapeTransient.hxx + MoniTool_IntVal.cxx + MoniTool_IntVal.hxx + MoniTool_Macros.hxx + MoniTool_RealVal.cxx + MoniTool_RealVal.hxx + MoniTool_SequenceOfElement.hxx + MoniTool_SignShape.cxx + MoniTool_SignShape.hxx + MoniTool_SignText.cxx + MoniTool_SignText.hxx + MoniTool_Stat.cxx + MoniTool_Stat.hxx + MoniTool_Timer.cxx + MoniTool_Timer.hxx + MoniTool_Timer.lxx + MoniTool_TimerSentry.hxx + MoniTool_TimerSentry.lxx + MoniTool_TransientElem.cxx + MoniTool_TransientElem.hxx + MoniTool_TypedValue.cxx + MoniTool_TypedValue.hxx + MoniTool_ValueInterpret.hxx + MoniTool_ValueSatisfies.hxx + MoniTool_ValueType.hxx +) diff --git a/src/MoniTool/MoniTool_AttrList.cxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_AttrList.cxx similarity index 100% rename from src/MoniTool/MoniTool_AttrList.cxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_AttrList.cxx diff --git a/src/MoniTool/MoniTool_AttrList.hxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_AttrList.hxx similarity index 100% rename from src/MoniTool/MoniTool_AttrList.hxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_AttrList.hxx diff --git a/src/MoniTool/MoniTool_CaseData.cxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_CaseData.cxx similarity index 100% rename from src/MoniTool/MoniTool_CaseData.cxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_CaseData.cxx diff --git a/src/MoniTool/MoniTool_CaseData.hxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_CaseData.hxx similarity index 100% rename from src/MoniTool/MoniTool_CaseData.hxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_CaseData.hxx diff --git a/src/MoniTool/MoniTool_DataInfo.cxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_DataInfo.cxx similarity index 100% rename from src/MoniTool/MoniTool_DataInfo.cxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_DataInfo.cxx diff --git a/src/MoniTool/MoniTool_DataInfo.hxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_DataInfo.hxx similarity index 100% rename from src/MoniTool/MoniTool_DataInfo.hxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_DataInfo.hxx diff --git a/src/MoniTool/MoniTool_DataMapIteratorOfDataMapOfShapeTransient.hxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_DataMapIteratorOfDataMapOfShapeTransient.hxx similarity index 100% rename from src/MoniTool/MoniTool_DataMapIteratorOfDataMapOfShapeTransient.hxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_DataMapIteratorOfDataMapOfShapeTransient.hxx diff --git a/src/MoniTool/MoniTool_DataMapIteratorOfDataMapOfTimer.hxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_DataMapIteratorOfDataMapOfTimer.hxx similarity index 100% rename from src/MoniTool/MoniTool_DataMapIteratorOfDataMapOfTimer.hxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_DataMapIteratorOfDataMapOfTimer.hxx diff --git a/src/MoniTool/MoniTool_DataMapOfShapeTransient.hxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_DataMapOfShapeTransient.hxx similarity index 100% rename from src/MoniTool/MoniTool_DataMapOfShapeTransient.hxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_DataMapOfShapeTransient.hxx diff --git a/src/MoniTool/MoniTool_DataMapOfTimer.hxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_DataMapOfTimer.hxx similarity index 100% rename from src/MoniTool/MoniTool_DataMapOfTimer.hxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_DataMapOfTimer.hxx diff --git a/src/MoniTool/MoniTool_Element.cxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_Element.cxx similarity index 100% rename from src/MoniTool/MoniTool_Element.cxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_Element.cxx diff --git a/src/MoniTool/MoniTool_Element.hxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_Element.hxx similarity index 100% rename from src/MoniTool/MoniTool_Element.hxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_Element.hxx diff --git a/src/MoniTool/MoniTool_HSequenceOfElement.hxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_HSequenceOfElement.hxx similarity index 100% rename from src/MoniTool/MoniTool_HSequenceOfElement.hxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_HSequenceOfElement.hxx diff --git a/src/MoniTool/MoniTool_IndexedDataMapOfShapeTransient.hxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_IndexedDataMapOfShapeTransient.hxx similarity index 100% rename from src/MoniTool/MoniTool_IndexedDataMapOfShapeTransient.hxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_IndexedDataMapOfShapeTransient.hxx diff --git a/src/MoniTool/MoniTool_IntVal.cxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_IntVal.cxx similarity index 100% rename from src/MoniTool/MoniTool_IntVal.cxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_IntVal.cxx diff --git a/src/MoniTool/MoniTool_IntVal.hxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_IntVal.hxx similarity index 100% rename from src/MoniTool/MoniTool_IntVal.hxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_IntVal.hxx diff --git a/src/MoniTool/MoniTool_Macros.hxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_Macros.hxx similarity index 100% rename from src/MoniTool/MoniTool_Macros.hxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_Macros.hxx diff --git a/src/MoniTool/MoniTool_RealVal.cxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_RealVal.cxx similarity index 100% rename from src/MoniTool/MoniTool_RealVal.cxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_RealVal.cxx diff --git a/src/MoniTool/MoniTool_RealVal.hxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_RealVal.hxx similarity index 100% rename from src/MoniTool/MoniTool_RealVal.hxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_RealVal.hxx diff --git a/src/MoniTool/MoniTool_SequenceOfElement.hxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_SequenceOfElement.hxx similarity index 100% rename from src/MoniTool/MoniTool_SequenceOfElement.hxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_SequenceOfElement.hxx diff --git a/src/MoniTool/MoniTool_SignShape.cxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_SignShape.cxx similarity index 100% rename from src/MoniTool/MoniTool_SignShape.cxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_SignShape.cxx diff --git a/src/MoniTool/MoniTool_SignShape.hxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_SignShape.hxx similarity index 100% rename from src/MoniTool/MoniTool_SignShape.hxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_SignShape.hxx diff --git a/src/MoniTool/MoniTool_SignText.cxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_SignText.cxx similarity index 100% rename from src/MoniTool/MoniTool_SignText.cxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_SignText.cxx diff --git a/src/MoniTool/MoniTool_SignText.hxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_SignText.hxx similarity index 100% rename from src/MoniTool/MoniTool_SignText.hxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_SignText.hxx diff --git a/src/MoniTool/MoniTool_Stat.cxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_Stat.cxx similarity index 100% rename from src/MoniTool/MoniTool_Stat.cxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_Stat.cxx diff --git a/src/MoniTool/MoniTool_Stat.hxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_Stat.hxx similarity index 100% rename from src/MoniTool/MoniTool_Stat.hxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_Stat.hxx diff --git a/src/MoniTool/MoniTool_Timer.cxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_Timer.cxx similarity index 100% rename from src/MoniTool/MoniTool_Timer.cxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_Timer.cxx diff --git a/src/MoniTool/MoniTool_Timer.hxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_Timer.hxx similarity index 100% rename from src/MoniTool/MoniTool_Timer.hxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_Timer.hxx diff --git a/src/MoniTool/MoniTool_Timer.lxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_Timer.lxx similarity index 100% rename from src/MoniTool/MoniTool_Timer.lxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_Timer.lxx diff --git a/src/MoniTool/MoniTool_TimerSentry.hxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_TimerSentry.hxx similarity index 100% rename from src/MoniTool/MoniTool_TimerSentry.hxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_TimerSentry.hxx diff --git a/src/MoniTool/MoniTool_TimerSentry.lxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_TimerSentry.lxx similarity index 100% rename from src/MoniTool/MoniTool_TimerSentry.lxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_TimerSentry.lxx diff --git a/src/MoniTool/MoniTool_TransientElem.cxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_TransientElem.cxx similarity index 100% rename from src/MoniTool/MoniTool_TransientElem.cxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_TransientElem.cxx diff --git a/src/MoniTool/MoniTool_TransientElem.hxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_TransientElem.hxx similarity index 100% rename from src/MoniTool/MoniTool_TransientElem.hxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_TransientElem.hxx diff --git a/src/MoniTool/MoniTool_TypedValue.cxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_TypedValue.cxx similarity index 100% rename from src/MoniTool/MoniTool_TypedValue.cxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_TypedValue.cxx diff --git a/src/MoniTool/MoniTool_TypedValue.hxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_TypedValue.hxx similarity index 100% rename from src/MoniTool/MoniTool_TypedValue.hxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_TypedValue.hxx diff --git a/src/MoniTool/MoniTool_ValueInterpret.hxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_ValueInterpret.hxx similarity index 100% rename from src/MoniTool/MoniTool_ValueInterpret.hxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_ValueInterpret.hxx diff --git a/src/MoniTool/MoniTool_ValueSatisfies.hxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_ValueSatisfies.hxx similarity index 100% rename from src/MoniTool/MoniTool_ValueSatisfies.hxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_ValueSatisfies.hxx diff --git a/src/MoniTool/MoniTool_ValueType.hxx b/src/DataExchange/TKXSBase/MoniTool/MoniTool_ValueType.hxx similarity index 100% rename from src/MoniTool/MoniTool_ValueType.hxx rename to src/DataExchange/TKXSBase/MoniTool/MoniTool_ValueType.hxx diff --git a/src/DataExchange/TKXSBase/PACKAGES.cmake b/src/DataExchange/TKXSBase/PACKAGES.cmake new file mode 100644 index 0000000000..463da337c6 --- /dev/null +++ b/src/DataExchange/TKXSBase/PACKAGES.cmake @@ -0,0 +1,13 @@ +# Auto-generated list of packages for TKXSBase toolkit +set(OCCT_TKXSBase_LIST_OF_PACKAGES + Interface + Transfer + IFGraph + IFSelect + TransferBRep + XSControl + XSAlgo + LibCtl + MoniTool + XSMessage +) diff --git a/src/TKXSBase/TKXSBase_pch.hxx b/src/DataExchange/TKXSBase/TKXSBase_pch.hxx similarity index 100% rename from src/TKXSBase/TKXSBase_pch.hxx rename to src/DataExchange/TKXSBase/TKXSBase_pch.hxx diff --git a/src/DataExchange/TKXSBase/Transfer/FILES.cmake b/src/DataExchange/TKXSBase/Transfer/FILES.cmake new file mode 100644 index 0000000000..3cf603b0cc --- /dev/null +++ b/src/DataExchange/TKXSBase/Transfer/FILES.cmake @@ -0,0 +1,73 @@ +# Source files for Transfer package +set(OCCT_Transfer_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Transfer_FILES + Transfer_ActorDispatch.cxx + Transfer_ActorDispatch.hxx + Transfer_ActorOfFinderProcess.cxx + Transfer_ActorOfFinderProcess.hxx + Transfer_ActorOfProcessForFinder.hxx + Transfer_ActorOfProcessForFinder_0.cxx + Transfer_ActorOfProcessForTransient.hxx + Transfer_ActorOfProcessForTransient_0.cxx + Transfer_ActorOfTransientProcess.cxx + Transfer_ActorOfTransientProcess.hxx + Transfer_Binder.cxx + Transfer_Binder.hxx + Transfer_BinderOfTransientInteger.cxx + Transfer_BinderOfTransientInteger.hxx + Transfer_DataInfo.cxx + Transfer_DataInfo.hxx + Transfer_DispatchControl.cxx + Transfer_DispatchControl.hxx + Transfer_Finder.cxx + Transfer_Finder.hxx + Transfer_FinderProcess.cxx + Transfer_FinderProcess.hxx + Transfer_FindHasher.hxx + Transfer_HSequenceOfBinder.hxx + Transfer_HSequenceOfFinder.hxx + Transfer_IteratorOfProcessForFinder.hxx + Transfer_IteratorOfProcessForFinder_0.cxx + Transfer_IteratorOfProcessForTransient.hxx + Transfer_IteratorOfProcessForTransient_0.cxx + Transfer_MapContainer.cxx + Transfer_MapContainer.hxx + Transfer_MultipleBinder.cxx + Transfer_MultipleBinder.hxx + Transfer_ProcessForFinder.hxx + Transfer_ProcessForFinder_0.cxx + Transfer_ProcessForTransient.hxx + Transfer_ProcessForTransient_0.cxx + Transfer_ResultFromModel.cxx + Transfer_ResultFromModel.hxx + Transfer_ResultFromTransient.cxx + Transfer_ResultFromTransient.hxx + Transfer_SequenceOfBinder.hxx + Transfer_SequenceOfFinder.hxx + Transfer_SimpleBinderOfTransient.cxx + Transfer_SimpleBinderOfTransient.hxx + Transfer_StatusExec.hxx + Transfer_StatusResult.hxx + Transfer_TransferDeadLoop.hxx + Transfer_TransferDispatch.cxx + Transfer_TransferDispatch.hxx + Transfer_TransferFailure.hxx + Transfer_TransferInput.cxx + Transfer_TransferInput.hxx + Transfer_TransferIterator.cxx + Transfer_TransferIterator.hxx + Transfer_TransferMapOfProcessForFinder.hxx + Transfer_TransferMapOfProcessForTransient.hxx + Transfer_TransferOutput.cxx + Transfer_TransferOutput.hxx + Transfer_TransientListBinder.cxx + Transfer_TransientListBinder.hxx + Transfer_TransientMapper.hxx + Transfer_TransientMapper_0.cxx + Transfer_TransientProcess.cxx + Transfer_TransientProcess.hxx + Transfer_UndefMode.hxx + Transfer_VoidBinder.cxx + Transfer_VoidBinder.hxx +) diff --git a/src/Transfer/Transfer_ActorDispatch.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_ActorDispatch.cxx similarity index 100% rename from src/Transfer/Transfer_ActorDispatch.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_ActorDispatch.cxx diff --git a/src/Transfer/Transfer_ActorDispatch.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_ActorDispatch.hxx similarity index 100% rename from src/Transfer/Transfer_ActorDispatch.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_ActorDispatch.hxx diff --git a/src/Transfer/Transfer_ActorOfFinderProcess.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_ActorOfFinderProcess.cxx similarity index 100% rename from src/Transfer/Transfer_ActorOfFinderProcess.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_ActorOfFinderProcess.cxx diff --git a/src/Transfer/Transfer_ActorOfFinderProcess.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_ActorOfFinderProcess.hxx similarity index 100% rename from src/Transfer/Transfer_ActorOfFinderProcess.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_ActorOfFinderProcess.hxx diff --git a/src/Transfer/Transfer_ActorOfProcessForFinder.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_ActorOfProcessForFinder.hxx similarity index 100% rename from src/Transfer/Transfer_ActorOfProcessForFinder.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_ActorOfProcessForFinder.hxx diff --git a/src/Transfer/Transfer_ActorOfProcessForFinder_0.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_ActorOfProcessForFinder_0.cxx similarity index 100% rename from src/Transfer/Transfer_ActorOfProcessForFinder_0.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_ActorOfProcessForFinder_0.cxx diff --git a/src/Transfer/Transfer_ActorOfProcessForTransient.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_ActorOfProcessForTransient.hxx similarity index 100% rename from src/Transfer/Transfer_ActorOfProcessForTransient.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_ActorOfProcessForTransient.hxx diff --git a/src/Transfer/Transfer_ActorOfProcessForTransient_0.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_ActorOfProcessForTransient_0.cxx similarity index 100% rename from src/Transfer/Transfer_ActorOfProcessForTransient_0.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_ActorOfProcessForTransient_0.cxx diff --git a/src/Transfer/Transfer_ActorOfTransientProcess.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_ActorOfTransientProcess.cxx similarity index 100% rename from src/Transfer/Transfer_ActorOfTransientProcess.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_ActorOfTransientProcess.cxx diff --git a/src/Transfer/Transfer_ActorOfTransientProcess.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_ActorOfTransientProcess.hxx similarity index 100% rename from src/Transfer/Transfer_ActorOfTransientProcess.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_ActorOfTransientProcess.hxx diff --git a/src/Transfer/Transfer_Binder.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_Binder.cxx similarity index 100% rename from src/Transfer/Transfer_Binder.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_Binder.cxx diff --git a/src/Transfer/Transfer_Binder.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_Binder.hxx similarity index 100% rename from src/Transfer/Transfer_Binder.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_Binder.hxx diff --git a/src/Transfer/Transfer_BinderOfTransientInteger.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_BinderOfTransientInteger.cxx similarity index 100% rename from src/Transfer/Transfer_BinderOfTransientInteger.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_BinderOfTransientInteger.cxx diff --git a/src/Transfer/Transfer_BinderOfTransientInteger.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_BinderOfTransientInteger.hxx similarity index 100% rename from src/Transfer/Transfer_BinderOfTransientInteger.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_BinderOfTransientInteger.hxx diff --git a/src/Transfer/Transfer_DataInfo.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_DataInfo.cxx similarity index 100% rename from src/Transfer/Transfer_DataInfo.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_DataInfo.cxx diff --git a/src/Transfer/Transfer_DataInfo.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_DataInfo.hxx similarity index 100% rename from src/Transfer/Transfer_DataInfo.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_DataInfo.hxx diff --git a/src/Transfer/Transfer_DispatchControl.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_DispatchControl.cxx similarity index 100% rename from src/Transfer/Transfer_DispatchControl.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_DispatchControl.cxx diff --git a/src/Transfer/Transfer_DispatchControl.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_DispatchControl.hxx similarity index 100% rename from src/Transfer/Transfer_DispatchControl.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_DispatchControl.hxx diff --git a/src/Transfer/Transfer_FindHasher.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_FindHasher.hxx similarity index 100% rename from src/Transfer/Transfer_FindHasher.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_FindHasher.hxx diff --git a/src/Transfer/Transfer_Finder.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_Finder.cxx similarity index 100% rename from src/Transfer/Transfer_Finder.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_Finder.cxx diff --git a/src/Transfer/Transfer_Finder.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_Finder.hxx similarity index 100% rename from src/Transfer/Transfer_Finder.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_Finder.hxx diff --git a/src/Transfer/Transfer_FinderProcess.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_FinderProcess.cxx similarity index 100% rename from src/Transfer/Transfer_FinderProcess.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_FinderProcess.cxx diff --git a/src/Transfer/Transfer_FinderProcess.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_FinderProcess.hxx similarity index 100% rename from src/Transfer/Transfer_FinderProcess.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_FinderProcess.hxx diff --git a/src/Transfer/Transfer_HSequenceOfBinder.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_HSequenceOfBinder.hxx similarity index 100% rename from src/Transfer/Transfer_HSequenceOfBinder.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_HSequenceOfBinder.hxx diff --git a/src/Transfer/Transfer_HSequenceOfFinder.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_HSequenceOfFinder.hxx similarity index 100% rename from src/Transfer/Transfer_HSequenceOfFinder.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_HSequenceOfFinder.hxx diff --git a/src/Transfer/Transfer_IteratorOfProcessForFinder.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_IteratorOfProcessForFinder.hxx similarity index 100% rename from src/Transfer/Transfer_IteratorOfProcessForFinder.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_IteratorOfProcessForFinder.hxx diff --git a/src/Transfer/Transfer_IteratorOfProcessForFinder_0.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_IteratorOfProcessForFinder_0.cxx similarity index 100% rename from src/Transfer/Transfer_IteratorOfProcessForFinder_0.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_IteratorOfProcessForFinder_0.cxx diff --git a/src/Transfer/Transfer_IteratorOfProcessForTransient.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_IteratorOfProcessForTransient.hxx similarity index 100% rename from src/Transfer/Transfer_IteratorOfProcessForTransient.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_IteratorOfProcessForTransient.hxx diff --git a/src/Transfer/Transfer_IteratorOfProcessForTransient_0.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_IteratorOfProcessForTransient_0.cxx similarity index 100% rename from src/Transfer/Transfer_IteratorOfProcessForTransient_0.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_IteratorOfProcessForTransient_0.cxx diff --git a/src/Transfer/Transfer_MapContainer.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_MapContainer.cxx similarity index 100% rename from src/Transfer/Transfer_MapContainer.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_MapContainer.cxx diff --git a/src/Transfer/Transfer_MapContainer.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_MapContainer.hxx similarity index 100% rename from src/Transfer/Transfer_MapContainer.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_MapContainer.hxx diff --git a/src/Transfer/Transfer_MultipleBinder.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_MultipleBinder.cxx similarity index 100% rename from src/Transfer/Transfer_MultipleBinder.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_MultipleBinder.cxx diff --git a/src/Transfer/Transfer_MultipleBinder.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_MultipleBinder.hxx similarity index 100% rename from src/Transfer/Transfer_MultipleBinder.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_MultipleBinder.hxx diff --git a/src/Transfer/Transfer_ProcessForFinder.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_ProcessForFinder.hxx similarity index 100% rename from src/Transfer/Transfer_ProcessForFinder.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_ProcessForFinder.hxx diff --git a/src/Transfer/Transfer_ProcessForFinder_0.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_ProcessForFinder_0.cxx similarity index 100% rename from src/Transfer/Transfer_ProcessForFinder_0.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_ProcessForFinder_0.cxx diff --git a/src/Transfer/Transfer_ProcessForTransient.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_ProcessForTransient.hxx similarity index 100% rename from src/Transfer/Transfer_ProcessForTransient.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_ProcessForTransient.hxx diff --git a/src/Transfer/Transfer_ProcessForTransient_0.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_ProcessForTransient_0.cxx similarity index 100% rename from src/Transfer/Transfer_ProcessForTransient_0.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_ProcessForTransient_0.cxx diff --git a/src/Transfer/Transfer_ResultFromModel.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_ResultFromModel.cxx similarity index 100% rename from src/Transfer/Transfer_ResultFromModel.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_ResultFromModel.cxx diff --git a/src/Transfer/Transfer_ResultFromModel.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_ResultFromModel.hxx similarity index 100% rename from src/Transfer/Transfer_ResultFromModel.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_ResultFromModel.hxx diff --git a/src/Transfer/Transfer_ResultFromTransient.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_ResultFromTransient.cxx similarity index 100% rename from src/Transfer/Transfer_ResultFromTransient.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_ResultFromTransient.cxx diff --git a/src/Transfer/Transfer_ResultFromTransient.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_ResultFromTransient.hxx similarity index 100% rename from src/Transfer/Transfer_ResultFromTransient.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_ResultFromTransient.hxx diff --git a/src/Transfer/Transfer_SequenceOfBinder.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_SequenceOfBinder.hxx similarity index 100% rename from src/Transfer/Transfer_SequenceOfBinder.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_SequenceOfBinder.hxx diff --git a/src/Transfer/Transfer_SequenceOfFinder.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_SequenceOfFinder.hxx similarity index 100% rename from src/Transfer/Transfer_SequenceOfFinder.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_SequenceOfFinder.hxx diff --git a/src/Transfer/Transfer_SimpleBinderOfTransient.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_SimpleBinderOfTransient.cxx similarity index 100% rename from src/Transfer/Transfer_SimpleBinderOfTransient.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_SimpleBinderOfTransient.cxx diff --git a/src/Transfer/Transfer_SimpleBinderOfTransient.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_SimpleBinderOfTransient.hxx similarity index 100% rename from src/Transfer/Transfer_SimpleBinderOfTransient.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_SimpleBinderOfTransient.hxx diff --git a/src/Transfer/Transfer_StatusExec.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_StatusExec.hxx similarity index 100% rename from src/Transfer/Transfer_StatusExec.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_StatusExec.hxx diff --git a/src/Transfer/Transfer_StatusResult.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_StatusResult.hxx similarity index 100% rename from src/Transfer/Transfer_StatusResult.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_StatusResult.hxx diff --git a/src/Transfer/Transfer_TransferDeadLoop.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_TransferDeadLoop.hxx similarity index 100% rename from src/Transfer/Transfer_TransferDeadLoop.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_TransferDeadLoop.hxx diff --git a/src/Transfer/Transfer_TransferDispatch.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_TransferDispatch.cxx similarity index 100% rename from src/Transfer/Transfer_TransferDispatch.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_TransferDispatch.cxx diff --git a/src/Transfer/Transfer_TransferDispatch.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_TransferDispatch.hxx similarity index 100% rename from src/Transfer/Transfer_TransferDispatch.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_TransferDispatch.hxx diff --git a/src/Transfer/Transfer_TransferFailure.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_TransferFailure.hxx similarity index 100% rename from src/Transfer/Transfer_TransferFailure.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_TransferFailure.hxx diff --git a/src/Transfer/Transfer_TransferInput.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_TransferInput.cxx similarity index 100% rename from src/Transfer/Transfer_TransferInput.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_TransferInput.cxx diff --git a/src/Transfer/Transfer_TransferInput.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_TransferInput.hxx similarity index 100% rename from src/Transfer/Transfer_TransferInput.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_TransferInput.hxx diff --git a/src/Transfer/Transfer_TransferIterator.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_TransferIterator.cxx similarity index 100% rename from src/Transfer/Transfer_TransferIterator.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_TransferIterator.cxx diff --git a/src/Transfer/Transfer_TransferIterator.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_TransferIterator.hxx similarity index 100% rename from src/Transfer/Transfer_TransferIterator.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_TransferIterator.hxx diff --git a/src/Transfer/Transfer_TransferMapOfProcessForFinder.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_TransferMapOfProcessForFinder.hxx similarity index 100% rename from src/Transfer/Transfer_TransferMapOfProcessForFinder.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_TransferMapOfProcessForFinder.hxx diff --git a/src/Transfer/Transfer_TransferMapOfProcessForTransient.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_TransferMapOfProcessForTransient.hxx similarity index 100% rename from src/Transfer/Transfer_TransferMapOfProcessForTransient.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_TransferMapOfProcessForTransient.hxx diff --git a/src/Transfer/Transfer_TransferOutput.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_TransferOutput.cxx similarity index 100% rename from src/Transfer/Transfer_TransferOutput.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_TransferOutput.cxx diff --git a/src/Transfer/Transfer_TransferOutput.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_TransferOutput.hxx similarity index 100% rename from src/Transfer/Transfer_TransferOutput.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_TransferOutput.hxx diff --git a/src/Transfer/Transfer_TransientListBinder.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_TransientListBinder.cxx similarity index 100% rename from src/Transfer/Transfer_TransientListBinder.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_TransientListBinder.cxx diff --git a/src/Transfer/Transfer_TransientListBinder.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_TransientListBinder.hxx similarity index 100% rename from src/Transfer/Transfer_TransientListBinder.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_TransientListBinder.hxx diff --git a/src/Transfer/Transfer_TransientMapper.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_TransientMapper.hxx similarity index 100% rename from src/Transfer/Transfer_TransientMapper.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_TransientMapper.hxx diff --git a/src/Transfer/Transfer_TransientMapper_0.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_TransientMapper_0.cxx similarity index 100% rename from src/Transfer/Transfer_TransientMapper_0.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_TransientMapper_0.cxx diff --git a/src/Transfer/Transfer_TransientProcess.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_TransientProcess.cxx similarity index 100% rename from src/Transfer/Transfer_TransientProcess.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_TransientProcess.cxx diff --git a/src/Transfer/Transfer_TransientProcess.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_TransientProcess.hxx similarity index 100% rename from src/Transfer/Transfer_TransientProcess.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_TransientProcess.hxx diff --git a/src/Transfer/Transfer_UndefMode.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_UndefMode.hxx similarity index 100% rename from src/Transfer/Transfer_UndefMode.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_UndefMode.hxx diff --git a/src/Transfer/Transfer_VoidBinder.cxx b/src/DataExchange/TKXSBase/Transfer/Transfer_VoidBinder.cxx similarity index 100% rename from src/Transfer/Transfer_VoidBinder.cxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_VoidBinder.cxx diff --git a/src/Transfer/Transfer_VoidBinder.hxx b/src/DataExchange/TKXSBase/Transfer/Transfer_VoidBinder.hxx similarity index 100% rename from src/Transfer/Transfer_VoidBinder.hxx rename to src/DataExchange/TKXSBase/Transfer/Transfer_VoidBinder.hxx diff --git a/src/DataExchange/TKXSBase/TransferBRep/FILES.cmake b/src/DataExchange/TKXSBase/TransferBRep/FILES.cmake new file mode 100644 index 0000000000..7238b91466 --- /dev/null +++ b/src/DataExchange/TKXSBase/TransferBRep/FILES.cmake @@ -0,0 +1,24 @@ +# Source files for TransferBRep package +set(OCCT_TransferBRep_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TransferBRep_FILES + TransferBRep.cxx + TransferBRep.hxx + TransferBRep_BinderOfShape.cxx + TransferBRep_BinderOfShape.hxx + TransferBRep_HSequenceOfTransferResultInfo.hxx + TransferBRep_Reader.cxx + TransferBRep_Reader.hxx + TransferBRep_SequenceOfTransferResultInfo.hxx + TransferBRep_ShapeBinder.cxx + TransferBRep_ShapeBinder.hxx + TransferBRep_ShapeInfo.cxx + TransferBRep_ShapeInfo.hxx + TransferBRep_ShapeListBinder.cxx + TransferBRep_ShapeListBinder.hxx + TransferBRep_ShapeMapper.hxx + TransferBRep_ShapeMapper_0.cxx + TransferBRep_TransferResultInfo.cxx + TransferBRep_TransferResultInfo.hxx + TransferBRep_TransferResultInfo.lxx +) diff --git a/src/TransferBRep/TransferBRep.cxx b/src/DataExchange/TKXSBase/TransferBRep/TransferBRep.cxx similarity index 100% rename from src/TransferBRep/TransferBRep.cxx rename to src/DataExchange/TKXSBase/TransferBRep/TransferBRep.cxx diff --git a/src/TransferBRep/TransferBRep.hxx b/src/DataExchange/TKXSBase/TransferBRep/TransferBRep.hxx similarity index 100% rename from src/TransferBRep/TransferBRep.hxx rename to src/DataExchange/TKXSBase/TransferBRep/TransferBRep.hxx diff --git a/src/TransferBRep/TransferBRep_BinderOfShape.cxx b/src/DataExchange/TKXSBase/TransferBRep/TransferBRep_BinderOfShape.cxx similarity index 100% rename from src/TransferBRep/TransferBRep_BinderOfShape.cxx rename to src/DataExchange/TKXSBase/TransferBRep/TransferBRep_BinderOfShape.cxx diff --git a/src/TransferBRep/TransferBRep_BinderOfShape.hxx b/src/DataExchange/TKXSBase/TransferBRep/TransferBRep_BinderOfShape.hxx similarity index 100% rename from src/TransferBRep/TransferBRep_BinderOfShape.hxx rename to src/DataExchange/TKXSBase/TransferBRep/TransferBRep_BinderOfShape.hxx diff --git a/src/TransferBRep/TransferBRep_HSequenceOfTransferResultInfo.hxx b/src/DataExchange/TKXSBase/TransferBRep/TransferBRep_HSequenceOfTransferResultInfo.hxx similarity index 100% rename from src/TransferBRep/TransferBRep_HSequenceOfTransferResultInfo.hxx rename to src/DataExchange/TKXSBase/TransferBRep/TransferBRep_HSequenceOfTransferResultInfo.hxx diff --git a/src/TransferBRep/TransferBRep_Reader.cxx b/src/DataExchange/TKXSBase/TransferBRep/TransferBRep_Reader.cxx similarity index 100% rename from src/TransferBRep/TransferBRep_Reader.cxx rename to src/DataExchange/TKXSBase/TransferBRep/TransferBRep_Reader.cxx diff --git a/src/TransferBRep/TransferBRep_Reader.hxx b/src/DataExchange/TKXSBase/TransferBRep/TransferBRep_Reader.hxx similarity index 100% rename from src/TransferBRep/TransferBRep_Reader.hxx rename to src/DataExchange/TKXSBase/TransferBRep/TransferBRep_Reader.hxx diff --git a/src/TransferBRep/TransferBRep_SequenceOfTransferResultInfo.hxx b/src/DataExchange/TKXSBase/TransferBRep/TransferBRep_SequenceOfTransferResultInfo.hxx similarity index 100% rename from src/TransferBRep/TransferBRep_SequenceOfTransferResultInfo.hxx rename to src/DataExchange/TKXSBase/TransferBRep/TransferBRep_SequenceOfTransferResultInfo.hxx diff --git a/src/TransferBRep/TransferBRep_ShapeBinder.cxx b/src/DataExchange/TKXSBase/TransferBRep/TransferBRep_ShapeBinder.cxx similarity index 100% rename from src/TransferBRep/TransferBRep_ShapeBinder.cxx rename to src/DataExchange/TKXSBase/TransferBRep/TransferBRep_ShapeBinder.cxx diff --git a/src/TransferBRep/TransferBRep_ShapeBinder.hxx b/src/DataExchange/TKXSBase/TransferBRep/TransferBRep_ShapeBinder.hxx similarity index 100% rename from src/TransferBRep/TransferBRep_ShapeBinder.hxx rename to src/DataExchange/TKXSBase/TransferBRep/TransferBRep_ShapeBinder.hxx diff --git a/src/TransferBRep/TransferBRep_ShapeInfo.cxx b/src/DataExchange/TKXSBase/TransferBRep/TransferBRep_ShapeInfo.cxx similarity index 100% rename from src/TransferBRep/TransferBRep_ShapeInfo.cxx rename to src/DataExchange/TKXSBase/TransferBRep/TransferBRep_ShapeInfo.cxx diff --git a/src/TransferBRep/TransferBRep_ShapeInfo.hxx b/src/DataExchange/TKXSBase/TransferBRep/TransferBRep_ShapeInfo.hxx similarity index 100% rename from src/TransferBRep/TransferBRep_ShapeInfo.hxx rename to src/DataExchange/TKXSBase/TransferBRep/TransferBRep_ShapeInfo.hxx diff --git a/src/TransferBRep/TransferBRep_ShapeListBinder.cxx b/src/DataExchange/TKXSBase/TransferBRep/TransferBRep_ShapeListBinder.cxx similarity index 100% rename from src/TransferBRep/TransferBRep_ShapeListBinder.cxx rename to src/DataExchange/TKXSBase/TransferBRep/TransferBRep_ShapeListBinder.cxx diff --git a/src/TransferBRep/TransferBRep_ShapeListBinder.hxx b/src/DataExchange/TKXSBase/TransferBRep/TransferBRep_ShapeListBinder.hxx similarity index 100% rename from src/TransferBRep/TransferBRep_ShapeListBinder.hxx rename to src/DataExchange/TKXSBase/TransferBRep/TransferBRep_ShapeListBinder.hxx diff --git a/src/TransferBRep/TransferBRep_ShapeMapper.hxx b/src/DataExchange/TKXSBase/TransferBRep/TransferBRep_ShapeMapper.hxx similarity index 100% rename from src/TransferBRep/TransferBRep_ShapeMapper.hxx rename to src/DataExchange/TKXSBase/TransferBRep/TransferBRep_ShapeMapper.hxx diff --git a/src/TransferBRep/TransferBRep_ShapeMapper_0.cxx b/src/DataExchange/TKXSBase/TransferBRep/TransferBRep_ShapeMapper_0.cxx similarity index 100% rename from src/TransferBRep/TransferBRep_ShapeMapper_0.cxx rename to src/DataExchange/TKXSBase/TransferBRep/TransferBRep_ShapeMapper_0.cxx diff --git a/src/TransferBRep/TransferBRep_TransferResultInfo.cxx b/src/DataExchange/TKXSBase/TransferBRep/TransferBRep_TransferResultInfo.cxx similarity index 100% rename from src/TransferBRep/TransferBRep_TransferResultInfo.cxx rename to src/DataExchange/TKXSBase/TransferBRep/TransferBRep_TransferResultInfo.cxx diff --git a/src/TransferBRep/TransferBRep_TransferResultInfo.hxx b/src/DataExchange/TKXSBase/TransferBRep/TransferBRep_TransferResultInfo.hxx similarity index 100% rename from src/TransferBRep/TransferBRep_TransferResultInfo.hxx rename to src/DataExchange/TKXSBase/TransferBRep/TransferBRep_TransferResultInfo.hxx diff --git a/src/TransferBRep/TransferBRep_TransferResultInfo.lxx b/src/DataExchange/TKXSBase/TransferBRep/TransferBRep_TransferResultInfo.lxx similarity index 100% rename from src/TransferBRep/TransferBRep_TransferResultInfo.lxx rename to src/DataExchange/TKXSBase/TransferBRep/TransferBRep_TransferResultInfo.lxx diff --git a/src/DataExchange/TKXSBase/XSAlgo/FILES.cmake b/src/DataExchange/TKXSBase/XSAlgo/FILES.cmake new file mode 100644 index 0000000000..742527f34a --- /dev/null +++ b/src/DataExchange/TKXSBase/XSAlgo/FILES.cmake @@ -0,0 +1,11 @@ +# Source files for XSAlgo package +set(OCCT_XSAlgo_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XSAlgo_FILES + XSAlgo.cxx + XSAlgo.hxx + XSAlgo_AlgoContainer.cxx + XSAlgo_AlgoContainer.hxx + XSAlgo_ShapeProcessor.cxx + XSAlgo_ShapeProcessor.hxx +) diff --git a/src/XSAlgo/XSAlgo.cxx b/src/DataExchange/TKXSBase/XSAlgo/XSAlgo.cxx similarity index 100% rename from src/XSAlgo/XSAlgo.cxx rename to src/DataExchange/TKXSBase/XSAlgo/XSAlgo.cxx diff --git a/src/XSAlgo/XSAlgo.hxx b/src/DataExchange/TKXSBase/XSAlgo/XSAlgo.hxx similarity index 100% rename from src/XSAlgo/XSAlgo.hxx rename to src/DataExchange/TKXSBase/XSAlgo/XSAlgo.hxx diff --git a/src/XSAlgo/XSAlgo_AlgoContainer.cxx b/src/DataExchange/TKXSBase/XSAlgo/XSAlgo_AlgoContainer.cxx similarity index 100% rename from src/XSAlgo/XSAlgo_AlgoContainer.cxx rename to src/DataExchange/TKXSBase/XSAlgo/XSAlgo_AlgoContainer.cxx diff --git a/src/XSAlgo/XSAlgo_AlgoContainer.hxx b/src/DataExchange/TKXSBase/XSAlgo/XSAlgo_AlgoContainer.hxx similarity index 100% rename from src/XSAlgo/XSAlgo_AlgoContainer.hxx rename to src/DataExchange/TKXSBase/XSAlgo/XSAlgo_AlgoContainer.hxx diff --git a/src/XSAlgo/XSAlgo_ShapeProcessor.cxx b/src/DataExchange/TKXSBase/XSAlgo/XSAlgo_ShapeProcessor.cxx similarity index 100% rename from src/XSAlgo/XSAlgo_ShapeProcessor.cxx rename to src/DataExchange/TKXSBase/XSAlgo/XSAlgo_ShapeProcessor.cxx diff --git a/src/XSAlgo/XSAlgo_ShapeProcessor.hxx b/src/DataExchange/TKXSBase/XSAlgo/XSAlgo_ShapeProcessor.hxx similarity index 100% rename from src/XSAlgo/XSAlgo_ShapeProcessor.hxx rename to src/DataExchange/TKXSBase/XSAlgo/XSAlgo_ShapeProcessor.hxx diff --git a/src/DataExchange/TKXSBase/XSControl/FILES.cmake b/src/DataExchange/TKXSBase/XSControl/FILES.cmake new file mode 100644 index 0000000000..fce3b6698f --- /dev/null +++ b/src/DataExchange/TKXSBase/XSControl/FILES.cmake @@ -0,0 +1,33 @@ +# Source files for XSControl package +set(OCCT_XSControl_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XSControl_FILES + XSControl.cxx + XSControl.hxx + XSControl_ConnectedShapes.cxx + XSControl_ConnectedShapes.hxx + XSControl_Controller.cxx + XSControl_Controller.hxx + XSControl_FuncShape.cxx + XSControl_FuncShape.hxx + XSControl_Functions.cxx + XSControl_Functions.hxx + XSControl_Reader.cxx + XSControl_Reader.hxx + XSControl_SelectForTransfer.cxx + XSControl_SelectForTransfer.hxx + XSControl_SignTransferStatus.cxx + XSControl_SignTransferStatus.hxx + XSControl_TransferReader.cxx + XSControl_TransferReader.hxx + XSControl_TransferWriter.cxx + XSControl_TransferWriter.hxx + XSControl_Utils.cxx + XSControl_Utils.hxx + XSControl_Vars.cxx + XSControl_Vars.hxx + XSControl_WorkSession.cxx + XSControl_WorkSession.hxx + XSControl_Writer.cxx + XSControl_Writer.hxx +) diff --git a/src/XSControl/XSControl.cxx b/src/DataExchange/TKXSBase/XSControl/XSControl.cxx similarity index 100% rename from src/XSControl/XSControl.cxx rename to src/DataExchange/TKXSBase/XSControl/XSControl.cxx diff --git a/src/XSControl/XSControl.hxx b/src/DataExchange/TKXSBase/XSControl/XSControl.hxx similarity index 100% rename from src/XSControl/XSControl.hxx rename to src/DataExchange/TKXSBase/XSControl/XSControl.hxx diff --git a/src/XSControl/XSControl_ConnectedShapes.cxx b/src/DataExchange/TKXSBase/XSControl/XSControl_ConnectedShapes.cxx similarity index 100% rename from src/XSControl/XSControl_ConnectedShapes.cxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_ConnectedShapes.cxx diff --git a/src/XSControl/XSControl_ConnectedShapes.hxx b/src/DataExchange/TKXSBase/XSControl/XSControl_ConnectedShapes.hxx similarity index 100% rename from src/XSControl/XSControl_ConnectedShapes.hxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_ConnectedShapes.hxx diff --git a/src/XSControl/XSControl_Controller.cxx b/src/DataExchange/TKXSBase/XSControl/XSControl_Controller.cxx similarity index 100% rename from src/XSControl/XSControl_Controller.cxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_Controller.cxx diff --git a/src/XSControl/XSControl_Controller.hxx b/src/DataExchange/TKXSBase/XSControl/XSControl_Controller.hxx similarity index 100% rename from src/XSControl/XSControl_Controller.hxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_Controller.hxx diff --git a/src/XSControl/XSControl_FuncShape.cxx b/src/DataExchange/TKXSBase/XSControl/XSControl_FuncShape.cxx similarity index 100% rename from src/XSControl/XSControl_FuncShape.cxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_FuncShape.cxx diff --git a/src/XSControl/XSControl_FuncShape.hxx b/src/DataExchange/TKXSBase/XSControl/XSControl_FuncShape.hxx similarity index 100% rename from src/XSControl/XSControl_FuncShape.hxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_FuncShape.hxx diff --git a/src/XSControl/XSControl_Functions.cxx b/src/DataExchange/TKXSBase/XSControl/XSControl_Functions.cxx similarity index 100% rename from src/XSControl/XSControl_Functions.cxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_Functions.cxx diff --git a/src/XSControl/XSControl_Functions.hxx b/src/DataExchange/TKXSBase/XSControl/XSControl_Functions.hxx similarity index 100% rename from src/XSControl/XSControl_Functions.hxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_Functions.hxx diff --git a/src/XSControl/XSControl_Reader.cxx b/src/DataExchange/TKXSBase/XSControl/XSControl_Reader.cxx similarity index 100% rename from src/XSControl/XSControl_Reader.cxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_Reader.cxx diff --git a/src/XSControl/XSControl_Reader.hxx b/src/DataExchange/TKXSBase/XSControl/XSControl_Reader.hxx similarity index 100% rename from src/XSControl/XSControl_Reader.hxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_Reader.hxx diff --git a/src/XSControl/XSControl_SelectForTransfer.cxx b/src/DataExchange/TKXSBase/XSControl/XSControl_SelectForTransfer.cxx similarity index 100% rename from src/XSControl/XSControl_SelectForTransfer.cxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_SelectForTransfer.cxx diff --git a/src/XSControl/XSControl_SelectForTransfer.hxx b/src/DataExchange/TKXSBase/XSControl/XSControl_SelectForTransfer.hxx similarity index 100% rename from src/XSControl/XSControl_SelectForTransfer.hxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_SelectForTransfer.hxx diff --git a/src/XSControl/XSControl_SignTransferStatus.cxx b/src/DataExchange/TKXSBase/XSControl/XSControl_SignTransferStatus.cxx similarity index 100% rename from src/XSControl/XSControl_SignTransferStatus.cxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_SignTransferStatus.cxx diff --git a/src/XSControl/XSControl_SignTransferStatus.hxx b/src/DataExchange/TKXSBase/XSControl/XSControl_SignTransferStatus.hxx similarity index 100% rename from src/XSControl/XSControl_SignTransferStatus.hxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_SignTransferStatus.hxx diff --git a/src/XSControl/XSControl_TransferReader.cxx b/src/DataExchange/TKXSBase/XSControl/XSControl_TransferReader.cxx similarity index 100% rename from src/XSControl/XSControl_TransferReader.cxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_TransferReader.cxx diff --git a/src/XSControl/XSControl_TransferReader.hxx b/src/DataExchange/TKXSBase/XSControl/XSControl_TransferReader.hxx similarity index 100% rename from src/XSControl/XSControl_TransferReader.hxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_TransferReader.hxx diff --git a/src/XSControl/XSControl_TransferWriter.cxx b/src/DataExchange/TKXSBase/XSControl/XSControl_TransferWriter.cxx similarity index 100% rename from src/XSControl/XSControl_TransferWriter.cxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_TransferWriter.cxx diff --git a/src/XSControl/XSControl_TransferWriter.hxx b/src/DataExchange/TKXSBase/XSControl/XSControl_TransferWriter.hxx similarity index 100% rename from src/XSControl/XSControl_TransferWriter.hxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_TransferWriter.hxx diff --git a/src/XSControl/XSControl_Utils.cxx b/src/DataExchange/TKXSBase/XSControl/XSControl_Utils.cxx similarity index 100% rename from src/XSControl/XSControl_Utils.cxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_Utils.cxx diff --git a/src/XSControl/XSControl_Utils.hxx b/src/DataExchange/TKXSBase/XSControl/XSControl_Utils.hxx similarity index 100% rename from src/XSControl/XSControl_Utils.hxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_Utils.hxx diff --git a/src/XSControl/XSControl_Vars.cxx b/src/DataExchange/TKXSBase/XSControl/XSControl_Vars.cxx similarity index 100% rename from src/XSControl/XSControl_Vars.cxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_Vars.cxx diff --git a/src/XSControl/XSControl_Vars.hxx b/src/DataExchange/TKXSBase/XSControl/XSControl_Vars.hxx similarity index 100% rename from src/XSControl/XSControl_Vars.hxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_Vars.hxx diff --git a/src/XSControl/XSControl_WorkSession.cxx b/src/DataExchange/TKXSBase/XSControl/XSControl_WorkSession.cxx similarity index 100% rename from src/XSControl/XSControl_WorkSession.cxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_WorkSession.cxx diff --git a/src/XSControl/XSControl_WorkSession.hxx b/src/DataExchange/TKXSBase/XSControl/XSControl_WorkSession.hxx similarity index 100% rename from src/XSControl/XSControl_WorkSession.hxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_WorkSession.hxx diff --git a/src/XSControl/XSControl_Writer.cxx b/src/DataExchange/TKXSBase/XSControl/XSControl_Writer.cxx similarity index 100% rename from src/XSControl/XSControl_Writer.cxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_Writer.cxx diff --git a/src/XSControl/XSControl_Writer.hxx b/src/DataExchange/TKXSBase/XSControl/XSControl_Writer.hxx similarity index 100% rename from src/XSControl/XSControl_Writer.hxx rename to src/DataExchange/TKXSBase/XSControl/XSControl_Writer.hxx diff --git a/src/DataExchange/TKXSBase/XSMessage/FILES.cmake b/src/DataExchange/TKXSBase/XSMessage/FILES.cmake new file mode 100644 index 0000000000..df0820f56d --- /dev/null +++ b/src/DataExchange/TKXSBase/XSMessage/FILES.cmake @@ -0,0 +1,6 @@ +# Source files for XSMessage package +set(OCCT_XSMessage_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XSMessage_FILES + XSMessage_XSTEP_us.pxx +) diff --git a/src/XSMessage/XSMessage_XSTEP_fr.pxx b/src/DataExchange/TKXSBase/XSMessage/XSMessage_XSTEP_fr.pxx similarity index 100% rename from src/XSMessage/XSMessage_XSTEP_fr.pxx rename to src/DataExchange/TKXSBase/XSMessage/XSMessage_XSTEP_fr.pxx diff --git a/src/XSMessage/XSMessage_XSTEP_us.pxx b/src/DataExchange/TKXSBase/XSMessage/XSMessage_XSTEP_us.pxx similarity index 100% rename from src/XSMessage/XSMessage_XSTEP_us.pxx rename to src/DataExchange/TKXSBase/XSMessage/XSMessage_XSTEP_us.pxx diff --git a/src/TKXmlXCAF/CMakeLists.txt b/src/DataExchange/TKXmlXCAF/CMakeLists.txt similarity index 100% rename from src/TKXmlXCAF/CMakeLists.txt rename to src/DataExchange/TKXmlXCAF/CMakeLists.txt diff --git a/src/DataExchange/TKXmlXCAF/EXTERNLIB.cmake b/src/DataExchange/TKXmlXCAF/EXTERNLIB.cmake new file mode 100644 index 0000000000..4063b818b9 --- /dev/null +++ b/src/DataExchange/TKXmlXCAF/EXTERNLIB.cmake @@ -0,0 +1,16 @@ +# External dependencies for TKXmlXCAF +set(OCCT_TKXmlXCAF_EXTERNAL_LIBS + TKXmlL + TKBRep + TKCDF + TKMath + TKernel + TKService + TKG2d + TKGeomBase + TKCAF + TKG3d + TKLCAF + TKXCAF + TKXml +) diff --git a/src/DataExchange/TKXmlXCAF/FILES.cmake b/src/DataExchange/TKXmlXCAF/FILES.cmake new file mode 100644 index 0000000000..733f6f2707 --- /dev/null +++ b/src/DataExchange/TKXmlXCAF/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKXmlXCAF +set(OCCT_TKXmlXCAF_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKXmlXCAF_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/DataExchange/TKXmlXCAF/PACKAGES.cmake b/src/DataExchange/TKXmlXCAF/PACKAGES.cmake new file mode 100644 index 0000000000..0b558e7bb1 --- /dev/null +++ b/src/DataExchange/TKXmlXCAF/PACKAGES.cmake @@ -0,0 +1,5 @@ +# Auto-generated list of packages for TKXmlXCAF toolkit +set(OCCT_TKXmlXCAF_LIST_OF_PACKAGES + XmlXCAFDrivers + XmlMXCAFDoc +) diff --git a/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/FILES.cmake b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/FILES.cmake new file mode 100644 index 0000000000..4b1ab1734f --- /dev/null +++ b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/FILES.cmake @@ -0,0 +1,36 @@ +# Source files for XmlMXCAFDoc package +set(OCCT_XmlMXCAFDoc_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XmlMXCAFDoc_FILES + XmlMXCAFDoc.cxx + XmlMXCAFDoc.hxx + XmlMXCAFDoc_AssemblyItemRefDriver.cxx + XmlMXCAFDoc_AssemblyItemRefDriver.hxx + XmlMXCAFDoc_CentroidDriver.cxx + XmlMXCAFDoc_CentroidDriver.hxx + XmlMXCAFDoc_ColorDriver.cxx + XmlMXCAFDoc_ColorDriver.hxx + XmlMXCAFDoc_DatumDriver.cxx + XmlMXCAFDoc_DatumDriver.hxx + XmlMXCAFDoc_DimTolDriver.cxx + XmlMXCAFDoc_DimTolDriver.hxx + XmlMXCAFDoc_GraphNodeDriver.cxx + XmlMXCAFDoc_GraphNodeDriver.hxx + XmlMXCAFDoc_LengthUnitDriver.cxx + XmlMXCAFDoc_LengthUnitDriver.hxx + XmlMXCAFDoc_LocationDriver.cxx + XmlMXCAFDoc_LocationDriver.hxx + XmlMXCAFDoc_LocationDriver.lxx + XmlMXCAFDoc_MaterialDriver.cxx + XmlMXCAFDoc_MaterialDriver.hxx + XmlMXCAFDoc_NoteDriver.cxx + XmlMXCAFDoc_NoteDriver.hxx + XmlMXCAFDoc_NoteCommentDriver.cxx + XmlMXCAFDoc_NoteCommentDriver.hxx + XmlMXCAFDoc_NoteBinDataDriver.cxx + XmlMXCAFDoc_NoteBinDataDriver.hxx + XmlMXCAFDoc_VisMaterialDriver.cxx + XmlMXCAFDoc_VisMaterialDriver.hxx + XmlMXCAFDoc_VisMaterialToolDriver.cxx + XmlMXCAFDoc_VisMaterialToolDriver.hxx +) diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc.cxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc.cxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc.cxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc.cxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc.hxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc.hxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc.hxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc.hxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_AssemblyItemRefDriver.cxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_AssemblyItemRefDriver.cxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_AssemblyItemRefDriver.cxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_AssemblyItemRefDriver.cxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_AssemblyItemRefDriver.hxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_AssemblyItemRefDriver.hxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_AssemblyItemRefDriver.hxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_AssemblyItemRefDriver.hxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_CentroidDriver.cxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_CentroidDriver.cxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_CentroidDriver.cxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_CentroidDriver.cxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_CentroidDriver.hxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_CentroidDriver.hxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_CentroidDriver.hxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_CentroidDriver.hxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_ColorDriver.cxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_ColorDriver.cxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_ColorDriver.cxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_ColorDriver.cxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_ColorDriver.hxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_ColorDriver.hxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_ColorDriver.hxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_ColorDriver.hxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_DatumDriver.cxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_DatumDriver.cxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_DatumDriver.cxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_DatumDriver.cxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_DatumDriver.hxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_DatumDriver.hxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_DatumDriver.hxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_DatumDriver.hxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_DimTolDriver.cxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_DimTolDriver.cxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_DimTolDriver.cxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_DimTolDriver.cxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_DimTolDriver.hxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_DimTolDriver.hxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_DimTolDriver.hxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_DimTolDriver.hxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_GraphNodeDriver.cxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_GraphNodeDriver.cxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_GraphNodeDriver.cxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_GraphNodeDriver.cxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_GraphNodeDriver.hxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_GraphNodeDriver.hxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_GraphNodeDriver.hxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_GraphNodeDriver.hxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_LengthUnitDriver.cxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_LengthUnitDriver.cxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_LengthUnitDriver.cxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_LengthUnitDriver.cxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_LengthUnitDriver.hxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_LengthUnitDriver.hxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_LengthUnitDriver.hxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_LengthUnitDriver.hxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_LocationDriver.cxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_LocationDriver.cxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_LocationDriver.cxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_LocationDriver.cxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_LocationDriver.hxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_LocationDriver.hxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_LocationDriver.hxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_LocationDriver.hxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_LocationDriver.lxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_LocationDriver.lxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_LocationDriver.lxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_LocationDriver.lxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_MaterialDriver.cxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_MaterialDriver.cxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_MaterialDriver.cxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_MaterialDriver.cxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_MaterialDriver.hxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_MaterialDriver.hxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_MaterialDriver.hxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_MaterialDriver.hxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_NoteBinDataDriver.cxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_NoteBinDataDriver.cxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_NoteBinDataDriver.cxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_NoteBinDataDriver.cxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_NoteBinDataDriver.hxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_NoteBinDataDriver.hxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_NoteBinDataDriver.hxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_NoteBinDataDriver.hxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_NoteCommentDriver.cxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_NoteCommentDriver.cxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_NoteCommentDriver.cxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_NoteCommentDriver.cxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_NoteCommentDriver.hxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_NoteCommentDriver.hxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_NoteCommentDriver.hxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_NoteCommentDriver.hxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_NoteDriver.cxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_NoteDriver.cxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_NoteDriver.cxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_NoteDriver.cxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_NoteDriver.hxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_NoteDriver.hxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_NoteDriver.hxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_NoteDriver.hxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_VisMaterialDriver.cxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_VisMaterialDriver.cxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_VisMaterialDriver.cxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_VisMaterialDriver.cxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_VisMaterialDriver.hxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_VisMaterialDriver.hxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_VisMaterialDriver.hxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_VisMaterialDriver.hxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_VisMaterialToolDriver.cxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_VisMaterialToolDriver.cxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_VisMaterialToolDriver.cxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_VisMaterialToolDriver.cxx diff --git a/src/XmlMXCAFDoc/XmlMXCAFDoc_VisMaterialToolDriver.hxx b/src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_VisMaterialToolDriver.hxx similarity index 100% rename from src/XmlMXCAFDoc/XmlMXCAFDoc_VisMaterialToolDriver.hxx rename to src/DataExchange/TKXmlXCAF/XmlMXCAFDoc/XmlMXCAFDoc_VisMaterialToolDriver.hxx diff --git a/src/DataExchange/TKXmlXCAF/XmlXCAFDrivers/FILES.cmake b/src/DataExchange/TKXmlXCAF/XmlXCAFDrivers/FILES.cmake new file mode 100644 index 0000000000..c72c71e846 --- /dev/null +++ b/src/DataExchange/TKXmlXCAF/XmlXCAFDrivers/FILES.cmake @@ -0,0 +1,13 @@ +# Source files for XmlXCAFDrivers package +set(OCCT_XmlXCAFDrivers_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XmlXCAFDrivers_FILES + FILES + GUID.txt + XmlXCAFDrivers.cxx + XmlXCAFDrivers.hxx + XmlXCAFDrivers_DocumentRetrievalDriver.cxx + XmlXCAFDrivers_DocumentRetrievalDriver.hxx + XmlXCAFDrivers_DocumentStorageDriver.cxx + XmlXCAFDrivers_DocumentStorageDriver.hxx +) diff --git a/src/XmlXCAFDrivers/GUID.txt b/src/DataExchange/TKXmlXCAF/XmlXCAFDrivers/GUID.txt similarity index 100% rename from src/XmlXCAFDrivers/GUID.txt rename to src/DataExchange/TKXmlXCAF/XmlXCAFDrivers/GUID.txt diff --git a/src/XmlXCAFDrivers/XmlXCAFDrivers.cxx b/src/DataExchange/TKXmlXCAF/XmlXCAFDrivers/XmlXCAFDrivers.cxx similarity index 100% rename from src/XmlXCAFDrivers/XmlXCAFDrivers.cxx rename to src/DataExchange/TKXmlXCAF/XmlXCAFDrivers/XmlXCAFDrivers.cxx diff --git a/src/XmlXCAFDrivers/XmlXCAFDrivers.hxx b/src/DataExchange/TKXmlXCAF/XmlXCAFDrivers/XmlXCAFDrivers.hxx similarity index 100% rename from src/XmlXCAFDrivers/XmlXCAFDrivers.hxx rename to src/DataExchange/TKXmlXCAF/XmlXCAFDrivers/XmlXCAFDrivers.hxx diff --git a/src/XmlXCAFDrivers/XmlXCAFDrivers_DocumentRetrievalDriver.cxx b/src/DataExchange/TKXmlXCAF/XmlXCAFDrivers/XmlXCAFDrivers_DocumentRetrievalDriver.cxx similarity index 100% rename from src/XmlXCAFDrivers/XmlXCAFDrivers_DocumentRetrievalDriver.cxx rename to src/DataExchange/TKXmlXCAF/XmlXCAFDrivers/XmlXCAFDrivers_DocumentRetrievalDriver.cxx diff --git a/src/XmlXCAFDrivers/XmlXCAFDrivers_DocumentRetrievalDriver.hxx b/src/DataExchange/TKXmlXCAF/XmlXCAFDrivers/XmlXCAFDrivers_DocumentRetrievalDriver.hxx similarity index 100% rename from src/XmlXCAFDrivers/XmlXCAFDrivers_DocumentRetrievalDriver.hxx rename to src/DataExchange/TKXmlXCAF/XmlXCAFDrivers/XmlXCAFDrivers_DocumentRetrievalDriver.hxx diff --git a/src/XmlXCAFDrivers/XmlXCAFDrivers_DocumentStorageDriver.cxx b/src/DataExchange/TKXmlXCAF/XmlXCAFDrivers/XmlXCAFDrivers_DocumentStorageDriver.cxx similarity index 100% rename from src/XmlXCAFDrivers/XmlXCAFDrivers_DocumentStorageDriver.cxx rename to src/DataExchange/TKXmlXCAF/XmlXCAFDrivers/XmlXCAFDrivers_DocumentStorageDriver.cxx diff --git a/src/XmlXCAFDrivers/XmlXCAFDrivers_DocumentStorageDriver.hxx b/src/DataExchange/TKXmlXCAF/XmlXCAFDrivers/XmlXCAFDrivers_DocumentStorageDriver.hxx similarity index 100% rename from src/XmlXCAFDrivers/XmlXCAFDrivers_DocumentStorageDriver.hxx rename to src/DataExchange/TKXmlXCAF/XmlXCAFDrivers/XmlXCAFDrivers_DocumentStorageDriver.hxx diff --git a/src/DataExchange/TOOLKITS.cmake b/src/DataExchange/TOOLKITS.cmake new file mode 100644 index 0000000000..593d063d67 --- /dev/null +++ b/src/DataExchange/TOOLKITS.cmake @@ -0,0 +1,17 @@ +# Auto-generated list of toolkits for DataExchange module +set(OCCT_DataExchange_LIST_OF_TOOLKITS + TKDE + TKXSBase + TKDESTEP + TKDEIGES + TKDESTL + TKDEVRML + TKDECascade + TKDEOBJ + TKDEGLTF + TKDEPLY + TKXCAF + TKXmlXCAF + TKBinXCAF + TKRWMesh +) diff --git a/src/Draft/FILES b/src/Draft/FILES deleted file mode 100755 index 3722bfd7d2..0000000000 --- a/src/Draft/FILES +++ /dev/null @@ -1,15 +0,0 @@ -Draft.cxx -Draft.hxx -Draft_IndexedDataMapOfEdgeEdgeInfo.hxx -Draft_IndexedDataMapOfFaceFaceInfo.hxx -Draft_IndexedDataMapOfVertexVertexInfo.hxx -Draft_EdgeInfo.cxx -Draft_EdgeInfo.hxx -Draft_ErrorStatus.hxx -Draft_FaceInfo.cxx -Draft_FaceInfo.hxx -Draft_Modification.cxx -Draft_Modification.hxx -Draft_Modification_1.cxx -Draft_VertexInfo.cxx -Draft_VertexInfo.hxx diff --git a/src/DRAWEXE/CMakeLists.txt b/src/Draw/DRAWEXE/CMakeLists.txt similarity index 100% rename from src/DRAWEXE/CMakeLists.txt rename to src/Draw/DRAWEXE/CMakeLists.txt diff --git a/src/DRAWEXE/DRAWEXE.cxx b/src/Draw/DRAWEXE/DRAWEXE.cxx similarity index 100% rename from src/DRAWEXE/DRAWEXE.cxx rename to src/Draw/DRAWEXE/DRAWEXE.cxx diff --git a/src/DRAWEXE/DRAWEXE.html b/src/Draw/DRAWEXE/DRAWEXE.html similarity index 100% rename from src/DRAWEXE/DRAWEXE.html rename to src/Draw/DRAWEXE/DRAWEXE.html diff --git a/src/Draw/DRAWEXE/EXTERNLIB.cmake b/src/Draw/DRAWEXE/EXTERNLIB.cmake new file mode 100644 index 0000000000..d932b395f2 --- /dev/null +++ b/src/Draw/DRAWEXE/EXTERNLIB.cmake @@ -0,0 +1,16 @@ +# External dependencies for DRAWEXE +set(OCCT_DRAWEXE_EXTERNAL_LIBS + TKDraw + TKMesh + TKShHealing + TKTopAlgo + TKHLR + TKGeomAlgo + TKGeomBase + TKG2d + TKBRep + TKMath + TKG3d + TKernel + TKService +) diff --git a/src/DRAWEXE/EXTERNLIB_STATIC b/src/Draw/DRAWEXE/EXTERNLIB_STATIC similarity index 100% rename from src/DRAWEXE/EXTERNLIB_STATIC rename to src/Draw/DRAWEXE/EXTERNLIB_STATIC diff --git a/src/Draw/DRAWEXE/FILES.cmake b/src/Draw/DRAWEXE/FILES.cmake new file mode 100644 index 0000000000..d08c922634 --- /dev/null +++ b/src/Draw/DRAWEXE/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for DRAWEXE +set(OCCT_DRAWEXE_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_DRAWEXE_FILES + DRAWEXE.cxx + EXTERNLIB +) diff --git a/src/Draw/DRAWEXE/PACKAGES.cmake b/src/Draw/DRAWEXE/PACKAGES.cmake new file mode 100644 index 0000000000..42f4bd811c --- /dev/null +++ b/src/Draw/DRAWEXE/PACKAGES.cmake @@ -0,0 +1,3 @@ +# Auto-generated list of packages for DRAWEXE toolkit +set(OCCT_DRAWEXE_LIST_OF_PACKAGES +) diff --git a/src/Draw/FILES b/src/Draw/FILES deleted file mode 100755 index fbfb124724..0000000000 --- a/src/Draw/FILES +++ /dev/null @@ -1,78 +0,0 @@ -Draw.cxx -Draw.hxx -Draw_Appli.hxx -Draw_Axis2D.cxx -Draw_Axis2D.hxx -Draw_Axis3D.cxx -Draw_Axis3D.hxx -Draw_BasicCommands.cxx -Draw_Box.cxx -Draw_Box.hxx -Draw_Chronometer.cxx -Draw_Chronometer.hxx -Draw_Circle2D.cxx -Draw_Circle2D.hxx -Draw_Circle3D.cxx -Draw_Circle3D.hxx -Draw_Color.cxx -Draw_Color.hxx -Draw_ColorKind.hxx -Draw_Commands.cxx -Draw_Debug.cxx -Draw_Display.cxx -Draw_Display.hxx -Draw_Drawable2D.cxx -Draw_Drawable2D.hxx -Draw_Drawable3D.cxx -Draw_Drawable3D.hxx -Draw_Failure.hxx -Draw_GraphicCommands.cxx -Draw_Grid.cxx -Draw_Grid.hxx -Draw_Grid.lxx -Draw_Interpretor.cxx -Draw_Interpretor.hxx -Draw_Main.cxx -Draw_Main.hxx -Draw_MapOfAsciiString.hxx -Draw_Marker2D.cxx -Draw_Marker2D.hxx -Draw_Marker3D.cxx -Draw_Marker3D.hxx -Draw_MarkerShape.hxx -Draw_MessageCommands.cxx -Draw_Number.cxx -Draw_Number.hxx -Draw_PInterp.hxx -Draw_PloadCommands.cxx -Draw_PluginMacro.hxx -Draw_Printer.cxx -Draw_Printer.hxx -Draw_ProgressIndicator.cxx -Draw_ProgressIndicator.hxx -Draw_Replace.tcl -Draw_Segment2D.cxx -Draw_Segment2D.hxx -Draw_Segment3D.cxx -Draw_Segment3D.hxx -Draw_SequenceOfDrawable3D.hxx -Draw_Text2D.cxx -Draw_Text2D.hxx -Draw_Text3D.cxx -Draw_Text3D.hxx -Draw_UnitCommands.cxx -Draw_VariableCommands.cxx -Draw_View.cxx -Draw_View.hxx -Draw_Viewer.cxx -Draw_Viewer.hxx -Draw_Window.cxx -Draw_Window.hxx -Draw_Window_1.mm -Draw_WNTCommandWindow.cxx -Draw_WNTCommandWindow.pxx -Draw_WNTInit.cxx -Draw_WNTInit.pxx -Draw_WNTMainWindow.cxx -Draw_WNTMainWindow.pxx -Draw_WNTRessource.pxx diff --git a/src/TKD3DHostTest/CMakeLists.txt b/src/Draw/TKD3DHostTest/CMakeLists.txt similarity index 100% rename from src/TKD3DHostTest/CMakeLists.txt rename to src/Draw/TKD3DHostTest/CMakeLists.txt diff --git a/src/D3DHostTest/D3DHostTest.cxx b/src/Draw/TKD3DHostTest/D3DHostTest/D3DHostTest.cxx similarity index 100% rename from src/D3DHostTest/D3DHostTest.cxx rename to src/Draw/TKD3DHostTest/D3DHostTest/D3DHostTest.cxx diff --git a/src/D3DHostTest/D3DHostTest.hxx b/src/Draw/TKD3DHostTest/D3DHostTest/D3DHostTest.hxx similarity index 100% rename from src/D3DHostTest/D3DHostTest.hxx rename to src/Draw/TKD3DHostTest/D3DHostTest/D3DHostTest.hxx diff --git a/src/Draw/TKD3DHostTest/D3DHostTest/FILES.cmake b/src/Draw/TKD3DHostTest/D3DHostTest/FILES.cmake new file mode 100644 index 0000000000..c11a4bc600 --- /dev/null +++ b/src/Draw/TKD3DHostTest/D3DHostTest/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for D3DHostTest package +set(OCCT_D3DHostTest_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_D3DHostTest_FILES + D3DHostTest.cxx + D3DHostTest.hxx +) diff --git a/src/Draw/TKD3DHostTest/EXTERNLIB.cmake b/src/Draw/TKD3DHostTest/EXTERNLIB.cmake new file mode 100644 index 0000000000..b399885c76 --- /dev/null +++ b/src/Draw/TKD3DHostTest/EXTERNLIB.cmake @@ -0,0 +1,8 @@ +# External dependencies for TKD3DHostTest +set(OCCT_TKD3DHostTest_EXTERNAL_LIBS + TKernel + TKMath + TKDraw + TKD3DHost + TKService +) diff --git a/src/Draw/TKD3DHostTest/FILES.cmake b/src/Draw/TKD3DHostTest/FILES.cmake new file mode 100644 index 0000000000..fd675fdb24 --- /dev/null +++ b/src/Draw/TKD3DHostTest/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKD3DHostTest +set(OCCT_TKD3DHostTest_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKD3DHostTest_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/Draw/TKD3DHostTest/PACKAGES.cmake b/src/Draw/TKD3DHostTest/PACKAGES.cmake new file mode 100644 index 0000000000..a7bf6db8bd --- /dev/null +++ b/src/Draw/TKD3DHostTest/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKD3DHostTest toolkit +set(OCCT_TKD3DHostTest_LIST_OF_PACKAGES + D3DHostTest +) diff --git a/src/TKDCAF/CMakeLists.txt b/src/Draw/TKDCAF/CMakeLists.txt similarity index 100% rename from src/TKDCAF/CMakeLists.txt rename to src/Draw/TKDCAF/CMakeLists.txt diff --git a/src/DDF/DDF.cxx b/src/Draw/TKDCAF/DDF/DDF.cxx similarity index 100% rename from src/DDF/DDF.cxx rename to src/Draw/TKDCAF/DDF/DDF.cxx diff --git a/src/DDF/DDF.hxx b/src/Draw/TKDCAF/DDF/DDF.hxx similarity index 100% rename from src/DDF/DDF.hxx rename to src/Draw/TKDCAF/DDF/DDF.hxx diff --git a/src/DDF/DDF_AttributeBrowser.cxx b/src/Draw/TKDCAF/DDF/DDF_AttributeBrowser.cxx similarity index 100% rename from src/DDF/DDF_AttributeBrowser.cxx rename to src/Draw/TKDCAF/DDF/DDF_AttributeBrowser.cxx diff --git a/src/DDF/DDF_AttributeBrowser.hxx b/src/Draw/TKDCAF/DDF/DDF_AttributeBrowser.hxx similarity index 100% rename from src/DDF/DDF_AttributeBrowser.hxx rename to src/Draw/TKDCAF/DDF/DDF_AttributeBrowser.hxx diff --git a/src/DDF/DDF_BasicCommands.cxx b/src/Draw/TKDCAF/DDF/DDF_BasicCommands.cxx similarity index 100% rename from src/DDF/DDF_BasicCommands.cxx rename to src/Draw/TKDCAF/DDF/DDF_BasicCommands.cxx diff --git a/src/DDF/DDF_Browser.cxx b/src/Draw/TKDCAF/DDF/DDF_Browser.cxx similarity index 100% rename from src/DDF/DDF_Browser.cxx rename to src/Draw/TKDCAF/DDF/DDF_Browser.cxx diff --git a/src/DDF/DDF_Browser.hxx b/src/Draw/TKDCAF/DDF/DDF_Browser.hxx similarity index 100% rename from src/DDF/DDF_Browser.hxx rename to src/Draw/TKDCAF/DDF/DDF_Browser.hxx diff --git a/src/DDF/DDF_BrowserCommands.cxx b/src/Draw/TKDCAF/DDF/DDF_BrowserCommands.cxx similarity index 100% rename from src/DDF/DDF_BrowserCommands.cxx rename to src/Draw/TKDCAF/DDF/DDF_BrowserCommands.cxx diff --git a/src/DDF/DDF_Data.cxx b/src/Draw/TKDCAF/DDF/DDF_Data.cxx similarity index 100% rename from src/DDF/DDF_Data.cxx rename to src/Draw/TKDCAF/DDF/DDF_Data.cxx diff --git a/src/DDF/DDF_Data.hxx b/src/Draw/TKDCAF/DDF/DDF_Data.hxx similarity index 100% rename from src/DDF/DDF_Data.hxx rename to src/Draw/TKDCAF/DDF/DDF_Data.hxx diff --git a/src/DDF/DDF_DataCommands.cxx b/src/Draw/TKDCAF/DDF/DDF_DataCommands.cxx similarity index 100% rename from src/DDF/DDF_DataCommands.cxx rename to src/Draw/TKDCAF/DDF/DDF_DataCommands.cxx diff --git a/src/DDF/DDF_ListIteratorOfTransactionStack.hxx b/src/Draw/TKDCAF/DDF/DDF_ListIteratorOfTransactionStack.hxx similarity index 100% rename from src/DDF/DDF_ListIteratorOfTransactionStack.hxx rename to src/Draw/TKDCAF/DDF/DDF_ListIteratorOfTransactionStack.hxx diff --git a/src/DDF/DDF_Transaction.cxx b/src/Draw/TKDCAF/DDF/DDF_Transaction.cxx similarity index 100% rename from src/DDF/DDF_Transaction.cxx rename to src/Draw/TKDCAF/DDF/DDF_Transaction.cxx diff --git a/src/DDF/DDF_Transaction.hxx b/src/Draw/TKDCAF/DDF/DDF_Transaction.hxx similarity index 100% rename from src/DDF/DDF_Transaction.hxx rename to src/Draw/TKDCAF/DDF/DDF_Transaction.hxx diff --git a/src/DDF/DDF_TransactionCommands.cxx b/src/Draw/TKDCAF/DDF/DDF_TransactionCommands.cxx similarity index 100% rename from src/DDF/DDF_TransactionCommands.cxx rename to src/Draw/TKDCAF/DDF/DDF_TransactionCommands.cxx diff --git a/src/DDF/DDF_TransactionStack.hxx b/src/Draw/TKDCAF/DDF/DDF_TransactionStack.hxx similarity index 100% rename from src/DDF/DDF_TransactionStack.hxx rename to src/Draw/TKDCAF/DDF/DDF_TransactionStack.hxx diff --git a/src/Draw/TKDCAF/DDF/FILES.cmake b/src/Draw/TKDCAF/DDF/FILES.cmake new file mode 100644 index 0000000000..fd0b264826 --- /dev/null +++ b/src/Draw/TKDCAF/DDF/FILES.cmake @@ -0,0 +1,22 @@ +# Source files for DDF package +set(OCCT_DDF_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_DDF_FILES + DDF.cxx + DDF.hxx + DDF_AttributeBrowser.cxx + DDF_AttributeBrowser.hxx + DDF_BasicCommands.cxx + DDF_Browser.cxx + DDF_Browser.hxx + DDF_BrowserCommands.cxx + DDF_Data.cxx + DDF_Data.hxx + DDF_DataCommands.cxx + DDF_ListIteratorOfTransactionStack.hxx + DDF_Transaction.cxx + DDF_Transaction.hxx + DDF_TransactionCommands.cxx + DDF_TransactionStack.hxx + FILES +) diff --git a/src/DDataStd/DDataStd.cxx b/src/Draw/TKDCAF/DDataStd/DDataStd.cxx similarity index 100% rename from src/DDataStd/DDataStd.cxx rename to src/Draw/TKDCAF/DDataStd/DDataStd.cxx diff --git a/src/DDataStd/DDataStd.hxx b/src/Draw/TKDCAF/DDataStd/DDataStd.hxx similarity index 100% rename from src/DDataStd/DDataStd.hxx rename to src/Draw/TKDCAF/DDataStd/DDataStd.hxx diff --git a/src/DDataStd/DDataStd_BasicCommands.cxx b/src/Draw/TKDCAF/DDataStd/DDataStd_BasicCommands.cxx similarity index 100% rename from src/DDataStd/DDataStd_BasicCommands.cxx rename to src/Draw/TKDCAF/DDataStd/DDataStd_BasicCommands.cxx diff --git a/src/DDataStd/DDataStd_ConstraintCommands.cxx b/src/Draw/TKDCAF/DDataStd/DDataStd_ConstraintCommands.cxx similarity index 100% rename from src/DDataStd/DDataStd_ConstraintCommands.cxx rename to src/Draw/TKDCAF/DDataStd/DDataStd_ConstraintCommands.cxx diff --git a/src/DDataStd/DDataStd_DatumCommands.cxx b/src/Draw/TKDCAF/DDataStd/DDataStd_DatumCommands.cxx similarity index 100% rename from src/DDataStd/DDataStd_DatumCommands.cxx rename to src/Draw/TKDCAF/DDataStd/DDataStd_DatumCommands.cxx diff --git a/src/DDataStd/DDataStd_DrawDisplayCommands.cxx b/src/Draw/TKDCAF/DDataStd/DDataStd_DrawDisplayCommands.cxx similarity index 100% rename from src/DDataStd/DDataStd_DrawDisplayCommands.cxx rename to src/Draw/TKDCAF/DDataStd/DDataStd_DrawDisplayCommands.cxx diff --git a/src/DDataStd/DDataStd_DrawDriver.cxx b/src/Draw/TKDCAF/DDataStd/DDataStd_DrawDriver.cxx similarity index 100% rename from src/DDataStd/DDataStd_DrawDriver.cxx rename to src/Draw/TKDCAF/DDataStd/DDataStd_DrawDriver.cxx diff --git a/src/DDataStd/DDataStd_DrawDriver.hxx b/src/Draw/TKDCAF/DDataStd/DDataStd_DrawDriver.hxx similarity index 100% rename from src/DDataStd/DDataStd_DrawDriver.hxx rename to src/Draw/TKDCAF/DDataStd/DDataStd_DrawDriver.hxx diff --git a/src/DDataStd/DDataStd_DrawPresentation.cxx b/src/Draw/TKDCAF/DDataStd/DDataStd_DrawPresentation.cxx similarity index 100% rename from src/DDataStd/DDataStd_DrawPresentation.cxx rename to src/Draw/TKDCAF/DDataStd/DDataStd_DrawPresentation.cxx diff --git a/src/DDataStd/DDataStd_DrawPresentation.hxx b/src/Draw/TKDCAF/DDataStd/DDataStd_DrawPresentation.hxx similarity index 100% rename from src/DDataStd/DDataStd_DrawPresentation.hxx rename to src/Draw/TKDCAF/DDataStd/DDataStd_DrawPresentation.hxx diff --git a/src/DDataStd/DDataStd_NameCommands.cxx b/src/Draw/TKDCAF/DDataStd/DDataStd_NameCommands.cxx similarity index 100% rename from src/DDataStd/DDataStd_NameCommands.cxx rename to src/Draw/TKDCAF/DDataStd/DDataStd_NameCommands.cxx diff --git a/src/DDataStd/DDataStd_NamedShapeCommands.cxx b/src/Draw/TKDCAF/DDataStd/DDataStd_NamedShapeCommands.cxx similarity index 100% rename from src/DDataStd/DDataStd_NamedShapeCommands.cxx rename to src/Draw/TKDCAF/DDataStd/DDataStd_NamedShapeCommands.cxx diff --git a/src/DDataStd/DDataStd_ObjectCommands.cxx b/src/Draw/TKDCAF/DDataStd/DDataStd_ObjectCommands.cxx similarity index 100% rename from src/DDataStd/DDataStd_ObjectCommands.cxx rename to src/Draw/TKDCAF/DDataStd/DDataStd_ObjectCommands.cxx diff --git a/src/DDataStd/DDataStd_TreeBrowser.cxx b/src/Draw/TKDCAF/DDataStd/DDataStd_TreeBrowser.cxx similarity index 100% rename from src/DDataStd/DDataStd_TreeBrowser.cxx rename to src/Draw/TKDCAF/DDataStd/DDataStd_TreeBrowser.cxx diff --git a/src/DDataStd/DDataStd_TreeBrowser.hxx b/src/Draw/TKDCAF/DDataStd/DDataStd_TreeBrowser.hxx similarity index 100% rename from src/DDataStd/DDataStd_TreeBrowser.hxx rename to src/Draw/TKDCAF/DDataStd/DDataStd_TreeBrowser.hxx diff --git a/src/DDataStd/DDataStd_TreeBrowser.tcl b/src/Draw/TKDCAF/DDataStd/DDataStd_TreeBrowser.tcl similarity index 100% rename from src/DDataStd/DDataStd_TreeBrowser.tcl rename to src/Draw/TKDCAF/DDataStd/DDataStd_TreeBrowser.tcl diff --git a/src/DDataStd/DDataStd_TreeCommands.cxx b/src/Draw/TKDCAF/DDataStd/DDataStd_TreeCommands.cxx similarity index 100% rename from src/DDataStd/DDataStd_TreeCommands.cxx rename to src/Draw/TKDCAF/DDataStd/DDataStd_TreeCommands.cxx diff --git a/src/Draw/TKDCAF/DDataStd/FILES.cmake b/src/Draw/TKDCAF/DDataStd/FILES.cmake new file mode 100644 index 0000000000..b9e1933bc9 --- /dev/null +++ b/src/Draw/TKDCAF/DDataStd/FILES.cmake @@ -0,0 +1,22 @@ +# Source files for DDataStd package +set(OCCT_DDataStd_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_DDataStd_FILES + DDataStd.cxx + DDataStd.hxx + DDataStd_BasicCommands.cxx + DDataStd_ConstraintCommands.cxx + DDataStd_DatumCommands.cxx + DDataStd_DrawDisplayCommands.cxx + DDataStd_DrawDriver.cxx + DDataStd_DrawDriver.hxx + DDataStd_DrawPresentation.cxx + DDataStd_DrawPresentation.hxx + DDataStd_NameCommands.cxx + DDataStd_NamedShapeCommands.cxx + DDataStd_ObjectCommands.cxx + DDataStd_TreeBrowser.cxx + DDataStd_TreeBrowser.hxx + DDataStd_TreeBrowser.tcl + DDataStd_TreeCommands.cxx +) diff --git a/src/DDocStd/DDocStd.cxx b/src/Draw/TKDCAF/DDocStd/DDocStd.cxx similarity index 100% rename from src/DDocStd/DDocStd.cxx rename to src/Draw/TKDCAF/DDocStd/DDocStd.cxx diff --git a/src/DDocStd/DDocStd.hxx b/src/Draw/TKDCAF/DDocStd/DDocStd.hxx similarity index 100% rename from src/DDocStd/DDocStd.hxx rename to src/Draw/TKDCAF/DDocStd/DDocStd.hxx diff --git a/src/DDocStd/DDocStd_ApplicationCommands.cxx b/src/Draw/TKDCAF/DDocStd/DDocStd_ApplicationCommands.cxx similarity index 100% rename from src/DDocStd/DDocStd_ApplicationCommands.cxx rename to src/Draw/TKDCAF/DDocStd/DDocStd_ApplicationCommands.cxx diff --git a/src/DDocStd/DDocStd_DocumentCommands.cxx b/src/Draw/TKDCAF/DDocStd/DDocStd_DocumentCommands.cxx similarity index 100% rename from src/DDocStd/DDocStd_DocumentCommands.cxx rename to src/Draw/TKDCAF/DDocStd/DDocStd_DocumentCommands.cxx diff --git a/src/DDocStd/DDocStd_DrawDocument.cxx b/src/Draw/TKDCAF/DDocStd/DDocStd_DrawDocument.cxx similarity index 100% rename from src/DDocStd/DDocStd_DrawDocument.cxx rename to src/Draw/TKDCAF/DDocStd/DDocStd_DrawDocument.cxx diff --git a/src/DDocStd/DDocStd_DrawDocument.hxx b/src/Draw/TKDCAF/DDocStd/DDocStd_DrawDocument.hxx similarity index 100% rename from src/DDocStd/DDocStd_DrawDocument.hxx rename to src/Draw/TKDCAF/DDocStd/DDocStd_DrawDocument.hxx diff --git a/src/DDocStd/DDocStd_MTMCommands.cxx b/src/Draw/TKDCAF/DDocStd/DDocStd_MTMCommands.cxx similarity index 100% rename from src/DDocStd/DDocStd_MTMCommands.cxx rename to src/Draw/TKDCAF/DDocStd/DDocStd_MTMCommands.cxx diff --git a/src/DDocStd/DDocStd_ShapeSchemaCommands.cxx b/src/Draw/TKDCAF/DDocStd/DDocStd_ShapeSchemaCommands.cxx similarity index 100% rename from src/DDocStd/DDocStd_ShapeSchemaCommands.cxx rename to src/Draw/TKDCAF/DDocStd/DDocStd_ShapeSchemaCommands.cxx diff --git a/src/DDocStd/DDocStd_ToolsCommands.cxx b/src/Draw/TKDCAF/DDocStd/DDocStd_ToolsCommands.cxx similarity index 100% rename from src/DDocStd/DDocStd_ToolsCommands.cxx rename to src/Draw/TKDCAF/DDocStd/DDocStd_ToolsCommands.cxx diff --git a/src/Draw/TKDCAF/DDocStd/FILES.cmake b/src/Draw/TKDCAF/DDocStd/FILES.cmake new file mode 100644 index 0000000000..b0b7ea5a3a --- /dev/null +++ b/src/Draw/TKDCAF/DDocStd/FILES.cmake @@ -0,0 +1,15 @@ +# Source files for DDocStd package +set(OCCT_DDocStd_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_DDocStd_FILES + DDocStd.cxx + DDocStd.hxx + DDocStd_ApplicationCommands.cxx + DDocStd_DocumentCommands.cxx + DDocStd_DrawDocument.cxx + DDocStd_DrawDocument.hxx + DDocStd_MTMCommands.cxx + DDocStd_ToolsCommands.cxx + DDocStd_ShapeSchemaCommands.cxx + IDNames.tcl +) diff --git a/src/DDocStd/IDNames.tcl b/src/Draw/TKDCAF/DDocStd/IDNames.tcl similarity index 100% rename from src/DDocStd/IDNames.tcl rename to src/Draw/TKDCAF/DDocStd/IDNames.tcl diff --git a/src/DNaming/DNaming.cxx b/src/Draw/TKDCAF/DNaming/DNaming.cxx similarity index 100% rename from src/DNaming/DNaming.cxx rename to src/Draw/TKDCAF/DNaming/DNaming.cxx diff --git a/src/DNaming/DNaming.hxx b/src/Draw/TKDCAF/DNaming/DNaming.hxx similarity index 100% rename from src/DNaming/DNaming.hxx rename to src/Draw/TKDCAF/DNaming/DNaming.hxx diff --git a/src/DNaming/DNaming_BasicCommands.cxx b/src/Draw/TKDCAF/DNaming/DNaming_BasicCommands.cxx similarity index 100% rename from src/DNaming/DNaming_BasicCommands.cxx rename to src/Draw/TKDCAF/DNaming/DNaming_BasicCommands.cxx diff --git a/src/DNaming/DNaming_BooleanOperationDriver.cxx b/src/Draw/TKDCAF/DNaming/DNaming_BooleanOperationDriver.cxx similarity index 100% rename from src/DNaming/DNaming_BooleanOperationDriver.cxx rename to src/Draw/TKDCAF/DNaming/DNaming_BooleanOperationDriver.cxx diff --git a/src/DNaming/DNaming_BooleanOperationDriver.hxx b/src/Draw/TKDCAF/DNaming/DNaming_BooleanOperationDriver.hxx similarity index 100% rename from src/DNaming/DNaming_BooleanOperationDriver.hxx rename to src/Draw/TKDCAF/DNaming/DNaming_BooleanOperationDriver.hxx diff --git a/src/DNaming/DNaming_BoxDriver.cxx b/src/Draw/TKDCAF/DNaming/DNaming_BoxDriver.cxx similarity index 100% rename from src/DNaming/DNaming_BoxDriver.cxx rename to src/Draw/TKDCAF/DNaming/DNaming_BoxDriver.cxx diff --git a/src/DNaming/DNaming_BoxDriver.hxx b/src/Draw/TKDCAF/DNaming/DNaming_BoxDriver.hxx similarity index 100% rename from src/DNaming/DNaming_BoxDriver.hxx rename to src/Draw/TKDCAF/DNaming/DNaming_BoxDriver.hxx diff --git a/src/DNaming/DNaming_CylinderDriver.cxx b/src/Draw/TKDCAF/DNaming/DNaming_CylinderDriver.cxx similarity index 100% rename from src/DNaming/DNaming_CylinderDriver.cxx rename to src/Draw/TKDCAF/DNaming/DNaming_CylinderDriver.cxx diff --git a/src/DNaming/DNaming_CylinderDriver.hxx b/src/Draw/TKDCAF/DNaming/DNaming_CylinderDriver.hxx similarity index 100% rename from src/DNaming/DNaming_CylinderDriver.hxx rename to src/Draw/TKDCAF/DNaming/DNaming_CylinderDriver.hxx diff --git a/src/DNaming/DNaming_DataMapIteratorOfDataMapOfShapeOfName.hxx b/src/Draw/TKDCAF/DNaming/DNaming_DataMapIteratorOfDataMapOfShapeOfName.hxx similarity index 100% rename from src/DNaming/DNaming_DataMapIteratorOfDataMapOfShapeOfName.hxx rename to src/Draw/TKDCAF/DNaming/DNaming_DataMapIteratorOfDataMapOfShapeOfName.hxx diff --git a/src/DNaming/DNaming_DataMapOfShapeOfName.hxx b/src/Draw/TKDCAF/DNaming/DNaming_DataMapOfShapeOfName.hxx similarity index 100% rename from src/DNaming/DNaming_DataMapOfShapeOfName.hxx rename to src/Draw/TKDCAF/DNaming/DNaming_DataMapOfShapeOfName.hxx diff --git a/src/DNaming/DNaming_FilletDriver.cxx b/src/Draw/TKDCAF/DNaming/DNaming_FilletDriver.cxx similarity index 100% rename from src/DNaming/DNaming_FilletDriver.cxx rename to src/Draw/TKDCAF/DNaming/DNaming_FilletDriver.cxx diff --git a/src/DNaming/DNaming_FilletDriver.hxx b/src/Draw/TKDCAF/DNaming/DNaming_FilletDriver.hxx similarity index 100% rename from src/DNaming/DNaming_FilletDriver.hxx rename to src/Draw/TKDCAF/DNaming/DNaming_FilletDriver.hxx diff --git a/src/DNaming/DNaming_Line3DDriver.cxx b/src/Draw/TKDCAF/DNaming/DNaming_Line3DDriver.cxx similarity index 100% rename from src/DNaming/DNaming_Line3DDriver.cxx rename to src/Draw/TKDCAF/DNaming/DNaming_Line3DDriver.cxx diff --git a/src/DNaming/DNaming_Line3DDriver.hxx b/src/Draw/TKDCAF/DNaming/DNaming_Line3DDriver.hxx similarity index 100% rename from src/DNaming/DNaming_Line3DDriver.hxx rename to src/Draw/TKDCAF/DNaming/DNaming_Line3DDriver.hxx diff --git a/src/DNaming/DNaming_ModelingCommands.cxx b/src/Draw/TKDCAF/DNaming/DNaming_ModelingCommands.cxx similarity index 100% rename from src/DNaming/DNaming_ModelingCommands.cxx rename to src/Draw/TKDCAF/DNaming/DNaming_ModelingCommands.cxx diff --git a/src/DNaming/DNaming_PointDriver.cxx b/src/Draw/TKDCAF/DNaming/DNaming_PointDriver.cxx similarity index 100% rename from src/DNaming/DNaming_PointDriver.cxx rename to src/Draw/TKDCAF/DNaming/DNaming_PointDriver.cxx diff --git a/src/DNaming/DNaming_PointDriver.hxx b/src/Draw/TKDCAF/DNaming/DNaming_PointDriver.hxx similarity index 100% rename from src/DNaming/DNaming_PointDriver.hxx rename to src/Draw/TKDCAF/DNaming/DNaming_PointDriver.hxx diff --git a/src/DNaming/DNaming_PrismDriver.cxx b/src/Draw/TKDCAF/DNaming/DNaming_PrismDriver.cxx similarity index 100% rename from src/DNaming/DNaming_PrismDriver.cxx rename to src/Draw/TKDCAF/DNaming/DNaming_PrismDriver.cxx diff --git a/src/DNaming/DNaming_PrismDriver.hxx b/src/Draw/TKDCAF/DNaming/DNaming_PrismDriver.hxx similarity index 100% rename from src/DNaming/DNaming_PrismDriver.hxx rename to src/Draw/TKDCAF/DNaming/DNaming_PrismDriver.hxx diff --git a/src/DNaming/DNaming_RevolutionDriver.cxx b/src/Draw/TKDCAF/DNaming/DNaming_RevolutionDriver.cxx similarity index 100% rename from src/DNaming/DNaming_RevolutionDriver.cxx rename to src/Draw/TKDCAF/DNaming/DNaming_RevolutionDriver.cxx diff --git a/src/DNaming/DNaming_RevolutionDriver.hxx b/src/Draw/TKDCAF/DNaming/DNaming_RevolutionDriver.hxx similarity index 100% rename from src/DNaming/DNaming_RevolutionDriver.hxx rename to src/Draw/TKDCAF/DNaming/DNaming_RevolutionDriver.hxx diff --git a/src/DNaming/DNaming_Selection.tcl b/src/Draw/TKDCAF/DNaming/DNaming_Selection.tcl similarity index 100% rename from src/DNaming/DNaming_Selection.tcl rename to src/Draw/TKDCAF/DNaming/DNaming_Selection.tcl diff --git a/src/DNaming/DNaming_SelectionCommands.cxx b/src/Draw/TKDCAF/DNaming/DNaming_SelectionCommands.cxx similarity index 100% rename from src/DNaming/DNaming_SelectionCommands.cxx rename to src/Draw/TKDCAF/DNaming/DNaming_SelectionCommands.cxx diff --git a/src/DNaming/DNaming_SelectionDriver.cxx b/src/Draw/TKDCAF/DNaming/DNaming_SelectionDriver.cxx similarity index 100% rename from src/DNaming/DNaming_SelectionDriver.cxx rename to src/Draw/TKDCAF/DNaming/DNaming_SelectionDriver.cxx diff --git a/src/DNaming/DNaming_SelectionDriver.hxx b/src/Draw/TKDCAF/DNaming/DNaming_SelectionDriver.hxx similarity index 100% rename from src/DNaming/DNaming_SelectionDriver.hxx rename to src/Draw/TKDCAF/DNaming/DNaming_SelectionDriver.hxx diff --git a/src/DNaming/DNaming_SphereDriver.cxx b/src/Draw/TKDCAF/DNaming/DNaming_SphereDriver.cxx similarity index 100% rename from src/DNaming/DNaming_SphereDriver.cxx rename to src/Draw/TKDCAF/DNaming/DNaming_SphereDriver.cxx diff --git a/src/DNaming/DNaming_SphereDriver.hxx b/src/Draw/TKDCAF/DNaming/DNaming_SphereDriver.hxx similarity index 100% rename from src/DNaming/DNaming_SphereDriver.hxx rename to src/Draw/TKDCAF/DNaming/DNaming_SphereDriver.hxx diff --git a/src/DNaming/DNaming_ToolsCommands.cxx b/src/Draw/TKDCAF/DNaming/DNaming_ToolsCommands.cxx similarity index 100% rename from src/DNaming/DNaming_ToolsCommands.cxx rename to src/Draw/TKDCAF/DNaming/DNaming_ToolsCommands.cxx diff --git a/src/DNaming/DNaming_TransformationDriver.cxx b/src/Draw/TKDCAF/DNaming/DNaming_TransformationDriver.cxx similarity index 100% rename from src/DNaming/DNaming_TransformationDriver.cxx rename to src/Draw/TKDCAF/DNaming/DNaming_TransformationDriver.cxx diff --git a/src/DNaming/DNaming_TransformationDriver.hxx b/src/Draw/TKDCAF/DNaming/DNaming_TransformationDriver.hxx similarity index 100% rename from src/DNaming/DNaming_TransformationDriver.hxx rename to src/Draw/TKDCAF/DNaming/DNaming_TransformationDriver.hxx diff --git a/src/Draw/TKDCAF/DNaming/FILES.cmake b/src/Draw/TKDCAF/DNaming/FILES.cmake new file mode 100644 index 0000000000..5ea54c8780 --- /dev/null +++ b/src/Draw/TKDCAF/DNaming/FILES.cmake @@ -0,0 +1,37 @@ +# Source files for DNaming package +set(OCCT_DNaming_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_DNaming_FILES + DNaming.cxx + DNaming.hxx + DNaming_BasicCommands.cxx + DNaming_BooleanOperationDriver.cxx + DNaming_BooleanOperationDriver.hxx + DNaming_BoxDriver.cxx + DNaming_BoxDriver.hxx + DNaming_CylinderDriver.cxx + DNaming_CylinderDriver.hxx + DNaming_DataMapIteratorOfDataMapOfShapeOfName.hxx + DNaming_DataMapOfShapeOfName.hxx + DNaming_FilletDriver.cxx + DNaming_FilletDriver.hxx + DNaming_Line3DDriver.cxx + DNaming_Line3DDriver.hxx + DNaming_ModelingCommands.cxx + DNaming_PointDriver.cxx + DNaming_PointDriver.hxx + DNaming_PrismDriver.cxx + DNaming_PrismDriver.hxx + DNaming_RevolutionDriver.cxx + DNaming_RevolutionDriver.hxx + DNaming_Selection.tcl + DNaming_SelectionCommands.cxx + DNaming_SelectionDriver.cxx + DNaming_SelectionDriver.hxx + DNaming_SphereDriver.cxx + DNaming_SphereDriver.hxx + DNaming_ToolsCommands.cxx + DNaming_TransformationDriver.cxx + DNaming_TransformationDriver.hxx + ModelDefinitions.hxx +) diff --git a/src/DNaming/ModelDefinitions.hxx b/src/Draw/TKDCAF/DNaming/ModelDefinitions.hxx similarity index 100% rename from src/DNaming/ModelDefinitions.hxx rename to src/Draw/TKDCAF/DNaming/ModelDefinitions.hxx diff --git a/src/DPrsStd/DPrsStd.cxx b/src/Draw/TKDCAF/DPrsStd/DPrsStd.cxx similarity index 100% rename from src/DPrsStd/DPrsStd.cxx rename to src/Draw/TKDCAF/DPrsStd/DPrsStd.cxx diff --git a/src/DPrsStd/DPrsStd.hxx b/src/Draw/TKDCAF/DPrsStd/DPrsStd.hxx similarity index 100% rename from src/DPrsStd/DPrsStd.hxx rename to src/Draw/TKDCAF/DPrsStd/DPrsStd.hxx diff --git a/src/DPrsStd/DPrsStd_AISPresentationCommands.cxx b/src/Draw/TKDCAF/DPrsStd/DPrsStd_AISPresentationCommands.cxx similarity index 100% rename from src/DPrsStd/DPrsStd_AISPresentationCommands.cxx rename to src/Draw/TKDCAF/DPrsStd/DPrsStd_AISPresentationCommands.cxx diff --git a/src/DPrsStd/DPrsStd_AISViewerCommands.cxx b/src/Draw/TKDCAF/DPrsStd/DPrsStd_AISViewerCommands.cxx similarity index 100% rename from src/DPrsStd/DPrsStd_AISViewerCommands.cxx rename to src/Draw/TKDCAF/DPrsStd/DPrsStd_AISViewerCommands.cxx diff --git a/src/Draw/TKDCAF/DPrsStd/FILES.cmake b/src/Draw/TKDCAF/DPrsStd/FILES.cmake new file mode 100644 index 0000000000..f0651761c6 --- /dev/null +++ b/src/Draw/TKDCAF/DPrsStd/FILES.cmake @@ -0,0 +1,9 @@ +# Source files for DPrsStd package +set(OCCT_DPrsStd_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_DPrsStd_FILES + DPrsStd.cxx + DPrsStd.hxx + DPrsStd_AISPresentationCommands.cxx + DPrsStd_AISViewerCommands.cxx +) diff --git a/src/DrawDim/DrawDim.cxx b/src/Draw/TKDCAF/DrawDim/DrawDim.cxx similarity index 100% rename from src/DrawDim/DrawDim.cxx rename to src/Draw/TKDCAF/DrawDim/DrawDim.cxx diff --git a/src/DrawDim/DrawDim.hxx b/src/Draw/TKDCAF/DrawDim/DrawDim.hxx similarity index 100% rename from src/DrawDim/DrawDim.hxx rename to src/Draw/TKDCAF/DrawDim/DrawDim.hxx diff --git a/src/DrawDim/DrawDim_Angle.cxx b/src/Draw/TKDCAF/DrawDim/DrawDim_Angle.cxx similarity index 100% rename from src/DrawDim/DrawDim_Angle.cxx rename to src/Draw/TKDCAF/DrawDim/DrawDim_Angle.cxx diff --git a/src/DrawDim/DrawDim_Angle.hxx b/src/Draw/TKDCAF/DrawDim/DrawDim_Angle.hxx similarity index 100% rename from src/DrawDim/DrawDim_Angle.hxx rename to src/Draw/TKDCAF/DrawDim/DrawDim_Angle.hxx diff --git a/src/DrawDim/DrawDim_Dimension.cxx b/src/Draw/TKDCAF/DrawDim/DrawDim_Dimension.cxx similarity index 100% rename from src/DrawDim/DrawDim_Dimension.cxx rename to src/Draw/TKDCAF/DrawDim/DrawDim_Dimension.cxx diff --git a/src/DrawDim/DrawDim_Dimension.hxx b/src/Draw/TKDCAF/DrawDim/DrawDim_Dimension.hxx similarity index 100% rename from src/DrawDim/DrawDim_Dimension.hxx rename to src/Draw/TKDCAF/DrawDim/DrawDim_Dimension.hxx diff --git a/src/DrawDim/DrawDim_Distance.cxx b/src/Draw/TKDCAF/DrawDim/DrawDim_Distance.cxx similarity index 100% rename from src/DrawDim/DrawDim_Distance.cxx rename to src/Draw/TKDCAF/DrawDim/DrawDim_Distance.cxx diff --git a/src/DrawDim/DrawDim_Distance.hxx b/src/Draw/TKDCAF/DrawDim/DrawDim_Distance.hxx similarity index 100% rename from src/DrawDim/DrawDim_Distance.hxx rename to src/Draw/TKDCAF/DrawDim/DrawDim_Distance.hxx diff --git a/src/DrawDim/DrawDim_PlanarAngle.cxx b/src/Draw/TKDCAF/DrawDim/DrawDim_PlanarAngle.cxx similarity index 100% rename from src/DrawDim/DrawDim_PlanarAngle.cxx rename to src/Draw/TKDCAF/DrawDim/DrawDim_PlanarAngle.cxx diff --git a/src/DrawDim/DrawDim_PlanarAngle.hxx b/src/Draw/TKDCAF/DrawDim/DrawDim_PlanarAngle.hxx similarity index 100% rename from src/DrawDim/DrawDim_PlanarAngle.hxx rename to src/Draw/TKDCAF/DrawDim/DrawDim_PlanarAngle.hxx diff --git a/src/DrawDim/DrawDim_PlanarDiameter.cxx b/src/Draw/TKDCAF/DrawDim/DrawDim_PlanarDiameter.cxx similarity index 100% rename from src/DrawDim/DrawDim_PlanarDiameter.cxx rename to src/Draw/TKDCAF/DrawDim/DrawDim_PlanarDiameter.cxx diff --git a/src/DrawDim/DrawDim_PlanarDiameter.hxx b/src/Draw/TKDCAF/DrawDim/DrawDim_PlanarDiameter.hxx similarity index 100% rename from src/DrawDim/DrawDim_PlanarDiameter.hxx rename to src/Draw/TKDCAF/DrawDim/DrawDim_PlanarDiameter.hxx diff --git a/src/DrawDim/DrawDim_PlanarDimension.cxx b/src/Draw/TKDCAF/DrawDim/DrawDim_PlanarDimension.cxx similarity index 100% rename from src/DrawDim/DrawDim_PlanarDimension.cxx rename to src/Draw/TKDCAF/DrawDim/DrawDim_PlanarDimension.cxx diff --git a/src/DrawDim/DrawDim_PlanarDimension.hxx b/src/Draw/TKDCAF/DrawDim/DrawDim_PlanarDimension.hxx similarity index 100% rename from src/DrawDim/DrawDim_PlanarDimension.hxx rename to src/Draw/TKDCAF/DrawDim/DrawDim_PlanarDimension.hxx diff --git a/src/DrawDim/DrawDim_PlanarDimensionCommands.cxx b/src/Draw/TKDCAF/DrawDim/DrawDim_PlanarDimensionCommands.cxx similarity index 100% rename from src/DrawDim/DrawDim_PlanarDimensionCommands.cxx rename to src/Draw/TKDCAF/DrawDim/DrawDim_PlanarDimensionCommands.cxx diff --git a/src/DrawDim/DrawDim_PlanarDistance.cxx b/src/Draw/TKDCAF/DrawDim/DrawDim_PlanarDistance.cxx similarity index 100% rename from src/DrawDim/DrawDim_PlanarDistance.cxx rename to src/Draw/TKDCAF/DrawDim/DrawDim_PlanarDistance.cxx diff --git a/src/DrawDim/DrawDim_PlanarDistance.hxx b/src/Draw/TKDCAF/DrawDim/DrawDim_PlanarDistance.hxx similarity index 100% rename from src/DrawDim/DrawDim_PlanarDistance.hxx rename to src/Draw/TKDCAF/DrawDim/DrawDim_PlanarDistance.hxx diff --git a/src/DrawDim/DrawDim_PlanarRadius.cxx b/src/Draw/TKDCAF/DrawDim/DrawDim_PlanarRadius.cxx similarity index 100% rename from src/DrawDim/DrawDim_PlanarRadius.cxx rename to src/Draw/TKDCAF/DrawDim/DrawDim_PlanarRadius.cxx diff --git a/src/DrawDim/DrawDim_PlanarRadius.hxx b/src/Draw/TKDCAF/DrawDim/DrawDim_PlanarRadius.hxx similarity index 100% rename from src/DrawDim/DrawDim_PlanarRadius.hxx rename to src/Draw/TKDCAF/DrawDim/DrawDim_PlanarRadius.hxx diff --git a/src/DrawDim/DrawDim_Radius.cxx b/src/Draw/TKDCAF/DrawDim/DrawDim_Radius.cxx similarity index 100% rename from src/DrawDim/DrawDim_Radius.cxx rename to src/Draw/TKDCAF/DrawDim/DrawDim_Radius.cxx diff --git a/src/DrawDim/DrawDim_Radius.hxx b/src/Draw/TKDCAF/DrawDim/DrawDim_Radius.hxx similarity index 100% rename from src/DrawDim/DrawDim_Radius.hxx rename to src/Draw/TKDCAF/DrawDim/DrawDim_Radius.hxx diff --git a/src/Draw/TKDCAF/DrawDim/FILES.cmake b/src/Draw/TKDCAF/DrawDim/FILES.cmake new file mode 100644 index 0000000000..b28e50ad0f --- /dev/null +++ b/src/Draw/TKDCAF/DrawDim/FILES.cmake @@ -0,0 +1,26 @@ +# Source files for DrawDim package +set(OCCT_DrawDim_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_DrawDim_FILES + DrawDim.cxx + DrawDim.hxx + DrawDim_Angle.cxx + DrawDim_Angle.hxx + DrawDim_Dimension.cxx + DrawDim_Dimension.hxx + DrawDim_Distance.cxx + DrawDim_Distance.hxx + DrawDim_PlanarAngle.cxx + DrawDim_PlanarAngle.hxx + DrawDim_PlanarDiameter.cxx + DrawDim_PlanarDiameter.hxx + DrawDim_PlanarDimension.cxx + DrawDim_PlanarDimension.hxx + DrawDim_PlanarDimensionCommands.cxx + DrawDim_PlanarDistance.cxx + DrawDim_PlanarDistance.hxx + DrawDim_PlanarRadius.cxx + DrawDim_PlanarRadius.hxx + DrawDim_Radius.cxx + DrawDim_Radius.hxx +) diff --git a/src/Draw/TKDCAF/EXTERNLIB.cmake b/src/Draw/TKDCAF/EXTERNLIB.cmake new file mode 100644 index 0000000000..46b794dd7c --- /dev/null +++ b/src/Draw/TKDCAF/EXTERNLIB.cmake @@ -0,0 +1,29 @@ +# External dependencies for TKDCAF +set(OCCT_TKDCAF_EXTERNAL_LIBS + TKGeomBase + TKBRep + TKGeomAlgo + TKernel + TKMath + TKG2d + TKG3d + TKDraw + TKCDF + TKV3d + TKService + TKLCAF + TKFillet + TKTopAlgo + TKPrim + TKBool + TKBO + TKCAF + TKVCAF + TKViewerTest + TKStd + TKStdL + TKBin + TKBinL + TKXml + TKXmlL +) diff --git a/src/Draw/TKDCAF/FILES.cmake b/src/Draw/TKDCAF/FILES.cmake new file mode 100644 index 0000000000..cd5e5185f9 --- /dev/null +++ b/src/Draw/TKDCAF/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKDCAF +set(OCCT_TKDCAF_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKDCAF_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/Draw/TKDCAF/PACKAGES.cmake b/src/Draw/TKDCAF/PACKAGES.cmake new file mode 100644 index 0000000000..36255a3dfa --- /dev/null +++ b/src/Draw/TKDCAF/PACKAGES.cmake @@ -0,0 +1,9 @@ +# Auto-generated list of packages for TKDCAF toolkit +set(OCCT_TKDCAF_LIST_OF_PACKAGES + DDF + DDocStd + DNaming + DDataStd + DPrsStd + DrawDim +) diff --git a/src/TKDraw/CMakeLists.txt b/src/Draw/TKDraw/CMakeLists.txt similarity index 100% rename from src/TKDraw/CMakeLists.txt rename to src/Draw/TKDraw/CMakeLists.txt diff --git a/src/DBRep/DBRep.cxx b/src/Draw/TKDraw/DBRep/DBRep.cxx similarity index 100% rename from src/DBRep/DBRep.cxx rename to src/Draw/TKDraw/DBRep/DBRep.cxx diff --git a/src/DBRep/DBRep.hxx b/src/Draw/TKDraw/DBRep/DBRep.hxx similarity index 100% rename from src/DBRep/DBRep.hxx rename to src/Draw/TKDraw/DBRep/DBRep.hxx diff --git a/src/DBRep/DBRep_Debug.cxx b/src/Draw/TKDraw/DBRep/DBRep_Debug.cxx similarity index 100% rename from src/DBRep/DBRep_Debug.cxx rename to src/Draw/TKDraw/DBRep/DBRep_Debug.cxx diff --git a/src/DBRep/DBRep_DrawableShape.cxx b/src/Draw/TKDraw/DBRep/DBRep_DrawableShape.cxx similarity index 100% rename from src/DBRep/DBRep_DrawableShape.cxx rename to src/Draw/TKDraw/DBRep/DBRep_DrawableShape.cxx diff --git a/src/DBRep/DBRep_DrawableShape.hxx b/src/Draw/TKDraw/DBRep/DBRep_DrawableShape.hxx similarity index 100% rename from src/DBRep/DBRep_DrawableShape.hxx rename to src/Draw/TKDraw/DBRep/DBRep_DrawableShape.hxx diff --git a/src/DBRep/DBRep_Edge.cxx b/src/Draw/TKDraw/DBRep/DBRep_Edge.cxx similarity index 100% rename from src/DBRep/DBRep_Edge.cxx rename to src/Draw/TKDraw/DBRep/DBRep_Edge.cxx diff --git a/src/DBRep/DBRep_Edge.hxx b/src/Draw/TKDraw/DBRep/DBRep_Edge.hxx similarity index 100% rename from src/DBRep/DBRep_Edge.hxx rename to src/Draw/TKDraw/DBRep/DBRep_Edge.hxx diff --git a/src/DBRep/DBRep_Edge.lxx b/src/Draw/TKDraw/DBRep/DBRep_Edge.lxx similarity index 100% rename from src/DBRep/DBRep_Edge.lxx rename to src/Draw/TKDraw/DBRep/DBRep_Edge.lxx diff --git a/src/DBRep/DBRep_Face.cxx b/src/Draw/TKDraw/DBRep/DBRep_Face.cxx similarity index 100% rename from src/DBRep/DBRep_Face.cxx rename to src/Draw/TKDraw/DBRep/DBRep_Face.cxx diff --git a/src/DBRep/DBRep_Face.hxx b/src/Draw/TKDraw/DBRep/DBRep_Face.hxx similarity index 100% rename from src/DBRep/DBRep_Face.hxx rename to src/Draw/TKDraw/DBRep/DBRep_Face.hxx diff --git a/src/DBRep/DBRep_Face.lxx b/src/Draw/TKDraw/DBRep/DBRep_Face.lxx similarity index 100% rename from src/DBRep/DBRep_Face.lxx rename to src/Draw/TKDraw/DBRep/DBRep_Face.lxx diff --git a/src/DBRep/DBRep_HideData.cxx b/src/Draw/TKDraw/DBRep/DBRep_HideData.cxx similarity index 100% rename from src/DBRep/DBRep_HideData.cxx rename to src/Draw/TKDraw/DBRep/DBRep_HideData.cxx diff --git a/src/DBRep/DBRep_HideData.hxx b/src/Draw/TKDraw/DBRep/DBRep_HideData.hxx similarity index 100% rename from src/DBRep/DBRep_HideData.hxx rename to src/Draw/TKDraw/DBRep/DBRep_HideData.hxx diff --git a/src/DBRep/DBRep_IsoBuilder.cxx b/src/Draw/TKDraw/DBRep/DBRep_IsoBuilder.cxx similarity index 100% rename from src/DBRep/DBRep_IsoBuilder.cxx rename to src/Draw/TKDraw/DBRep/DBRep_IsoBuilder.cxx diff --git a/src/DBRep/DBRep_IsoBuilder.hxx b/src/Draw/TKDraw/DBRep/DBRep_IsoBuilder.hxx similarity index 100% rename from src/DBRep/DBRep_IsoBuilder.hxx rename to src/Draw/TKDraw/DBRep/DBRep_IsoBuilder.hxx diff --git a/src/DBRep/DBRep_ListIteratorOfListOfEdge.hxx b/src/Draw/TKDraw/DBRep/DBRep_ListIteratorOfListOfEdge.hxx similarity index 100% rename from src/DBRep/DBRep_ListIteratorOfListOfEdge.hxx rename to src/Draw/TKDraw/DBRep/DBRep_ListIteratorOfListOfEdge.hxx diff --git a/src/DBRep/DBRep_ListIteratorOfListOfFace.hxx b/src/Draw/TKDraw/DBRep/DBRep_ListIteratorOfListOfFace.hxx similarity index 100% rename from src/DBRep/DBRep_ListIteratorOfListOfFace.hxx rename to src/Draw/TKDraw/DBRep/DBRep_ListIteratorOfListOfFace.hxx diff --git a/src/DBRep/DBRep_ListIteratorOfListOfHideData.hxx b/src/Draw/TKDraw/DBRep/DBRep_ListIteratorOfListOfHideData.hxx similarity index 100% rename from src/DBRep/DBRep_ListIteratorOfListOfHideData.hxx rename to src/Draw/TKDraw/DBRep/DBRep_ListIteratorOfListOfHideData.hxx diff --git a/src/DBRep/DBRep_ListOfEdge.hxx b/src/Draw/TKDraw/DBRep/DBRep_ListOfEdge.hxx similarity index 100% rename from src/DBRep/DBRep_ListOfEdge.hxx rename to src/Draw/TKDraw/DBRep/DBRep_ListOfEdge.hxx diff --git a/src/DBRep/DBRep_ListOfFace.hxx b/src/Draw/TKDraw/DBRep/DBRep_ListOfFace.hxx similarity index 100% rename from src/DBRep/DBRep_ListOfFace.hxx rename to src/Draw/TKDraw/DBRep/DBRep_ListOfFace.hxx diff --git a/src/DBRep/DBRep_ListOfHideData.hxx b/src/Draw/TKDraw/DBRep/DBRep_ListOfHideData.hxx similarity index 100% rename from src/DBRep/DBRep_ListOfHideData.hxx rename to src/Draw/TKDraw/DBRep/DBRep_ListOfHideData.hxx diff --git a/src/DBRep/DBRep_Params.hxx b/src/Draw/TKDraw/DBRep/DBRep_Params.hxx similarity index 100% rename from src/DBRep/DBRep_Params.hxx rename to src/Draw/TKDraw/DBRep/DBRep_Params.hxx diff --git a/src/Draw/TKDraw/DBRep/FILES.cmake b/src/Draw/TKDraw/DBRep/FILES.cmake new file mode 100644 index 0000000000..a5b2e33347 --- /dev/null +++ b/src/Draw/TKDraw/DBRep/FILES.cmake @@ -0,0 +1,27 @@ +# Source files for DBRep package +set(OCCT_DBRep_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_DBRep_FILES + DBRep.cxx + DBRep.hxx + DBRep_Debug.cxx + DBRep_DrawableShape.cxx + DBRep_DrawableShape.hxx + DBRep_Edge.cxx + DBRep_Edge.hxx + DBRep_Edge.lxx + DBRep_Face.cxx + DBRep_Face.hxx + DBRep_Face.lxx + DBRep_HideData.cxx + DBRep_HideData.hxx + DBRep_IsoBuilder.cxx + DBRep_IsoBuilder.hxx + DBRep_ListIteratorOfListOfEdge.hxx + DBRep_ListIteratorOfListOfFace.hxx + DBRep_ListIteratorOfListOfHideData.hxx + DBRep_ListOfEdge.hxx + DBRep_ListOfFace.hxx + DBRep_ListOfHideData.hxx + DBRep_Params.hxx +) diff --git a/src/Draw/Draw.cxx b/src/Draw/TKDraw/Draw/Draw.cxx similarity index 100% rename from src/Draw/Draw.cxx rename to src/Draw/TKDraw/Draw/Draw.cxx diff --git a/src/Draw/Draw.hxx b/src/Draw/TKDraw/Draw/Draw.hxx similarity index 100% rename from src/Draw/Draw.hxx rename to src/Draw/TKDraw/Draw/Draw.hxx diff --git a/src/Draw/Draw_Appli.hxx b/src/Draw/TKDraw/Draw/Draw_Appli.hxx similarity index 100% rename from src/Draw/Draw_Appli.hxx rename to src/Draw/TKDraw/Draw/Draw_Appli.hxx diff --git a/src/Draw/Draw_Axis2D.cxx b/src/Draw/TKDraw/Draw/Draw_Axis2D.cxx similarity index 100% rename from src/Draw/Draw_Axis2D.cxx rename to src/Draw/TKDraw/Draw/Draw_Axis2D.cxx diff --git a/src/Draw/Draw_Axis2D.hxx b/src/Draw/TKDraw/Draw/Draw_Axis2D.hxx similarity index 100% rename from src/Draw/Draw_Axis2D.hxx rename to src/Draw/TKDraw/Draw/Draw_Axis2D.hxx diff --git a/src/Draw/Draw_Axis3D.cxx b/src/Draw/TKDraw/Draw/Draw_Axis3D.cxx similarity index 100% rename from src/Draw/Draw_Axis3D.cxx rename to src/Draw/TKDraw/Draw/Draw_Axis3D.cxx diff --git a/src/Draw/Draw_Axis3D.hxx b/src/Draw/TKDraw/Draw/Draw_Axis3D.hxx similarity index 100% rename from src/Draw/Draw_Axis3D.hxx rename to src/Draw/TKDraw/Draw/Draw_Axis3D.hxx diff --git a/src/Draw/Draw_BasicCommands.cxx b/src/Draw/TKDraw/Draw/Draw_BasicCommands.cxx similarity index 100% rename from src/Draw/Draw_BasicCommands.cxx rename to src/Draw/TKDraw/Draw/Draw_BasicCommands.cxx diff --git a/src/Draw/Draw_Box.cxx b/src/Draw/TKDraw/Draw/Draw_Box.cxx similarity index 100% rename from src/Draw/Draw_Box.cxx rename to src/Draw/TKDraw/Draw/Draw_Box.cxx diff --git a/src/Draw/Draw_Box.hxx b/src/Draw/TKDraw/Draw/Draw_Box.hxx similarity index 100% rename from src/Draw/Draw_Box.hxx rename to src/Draw/TKDraw/Draw/Draw_Box.hxx diff --git a/src/Draw/Draw_Chronometer.cxx b/src/Draw/TKDraw/Draw/Draw_Chronometer.cxx similarity index 100% rename from src/Draw/Draw_Chronometer.cxx rename to src/Draw/TKDraw/Draw/Draw_Chronometer.cxx diff --git a/src/Draw/Draw_Chronometer.hxx b/src/Draw/TKDraw/Draw/Draw_Chronometer.hxx similarity index 100% rename from src/Draw/Draw_Chronometer.hxx rename to src/Draw/TKDraw/Draw/Draw_Chronometer.hxx diff --git a/src/Draw/Draw_Circle2D.cxx b/src/Draw/TKDraw/Draw/Draw_Circle2D.cxx similarity index 100% rename from src/Draw/Draw_Circle2D.cxx rename to src/Draw/TKDraw/Draw/Draw_Circle2D.cxx diff --git a/src/Draw/Draw_Circle2D.hxx b/src/Draw/TKDraw/Draw/Draw_Circle2D.hxx similarity index 100% rename from src/Draw/Draw_Circle2D.hxx rename to src/Draw/TKDraw/Draw/Draw_Circle2D.hxx diff --git a/src/Draw/Draw_Circle3D.cxx b/src/Draw/TKDraw/Draw/Draw_Circle3D.cxx similarity index 100% rename from src/Draw/Draw_Circle3D.cxx rename to src/Draw/TKDraw/Draw/Draw_Circle3D.cxx diff --git a/src/Draw/Draw_Circle3D.hxx b/src/Draw/TKDraw/Draw/Draw_Circle3D.hxx similarity index 100% rename from src/Draw/Draw_Circle3D.hxx rename to src/Draw/TKDraw/Draw/Draw_Circle3D.hxx diff --git a/src/Draw/Draw_Color.cxx b/src/Draw/TKDraw/Draw/Draw_Color.cxx similarity index 100% rename from src/Draw/Draw_Color.cxx rename to src/Draw/TKDraw/Draw/Draw_Color.cxx diff --git a/src/Draw/Draw_Color.hxx b/src/Draw/TKDraw/Draw/Draw_Color.hxx similarity index 100% rename from src/Draw/Draw_Color.hxx rename to src/Draw/TKDraw/Draw/Draw_Color.hxx diff --git a/src/Draw/Draw_ColorKind.hxx b/src/Draw/TKDraw/Draw/Draw_ColorKind.hxx similarity index 100% rename from src/Draw/Draw_ColorKind.hxx rename to src/Draw/TKDraw/Draw/Draw_ColorKind.hxx diff --git a/src/Draw/Draw_Commands.cxx b/src/Draw/TKDraw/Draw/Draw_Commands.cxx similarity index 100% rename from src/Draw/Draw_Commands.cxx rename to src/Draw/TKDraw/Draw/Draw_Commands.cxx diff --git a/src/Draw/Draw_Debug.cxx b/src/Draw/TKDraw/Draw/Draw_Debug.cxx similarity index 100% rename from src/Draw/Draw_Debug.cxx rename to src/Draw/TKDraw/Draw/Draw_Debug.cxx diff --git a/src/Draw/Draw_Display.cxx b/src/Draw/TKDraw/Draw/Draw_Display.cxx similarity index 100% rename from src/Draw/Draw_Display.cxx rename to src/Draw/TKDraw/Draw/Draw_Display.cxx diff --git a/src/Draw/Draw_Display.hxx b/src/Draw/TKDraw/Draw/Draw_Display.hxx similarity index 100% rename from src/Draw/Draw_Display.hxx rename to src/Draw/TKDraw/Draw/Draw_Display.hxx diff --git a/src/Draw/Draw_Drawable2D.cxx b/src/Draw/TKDraw/Draw/Draw_Drawable2D.cxx similarity index 100% rename from src/Draw/Draw_Drawable2D.cxx rename to src/Draw/TKDraw/Draw/Draw_Drawable2D.cxx diff --git a/src/Draw/Draw_Drawable2D.hxx b/src/Draw/TKDraw/Draw/Draw_Drawable2D.hxx similarity index 100% rename from src/Draw/Draw_Drawable2D.hxx rename to src/Draw/TKDraw/Draw/Draw_Drawable2D.hxx diff --git a/src/Draw/Draw_Drawable3D.cxx b/src/Draw/TKDraw/Draw/Draw_Drawable3D.cxx similarity index 100% rename from src/Draw/Draw_Drawable3D.cxx rename to src/Draw/TKDraw/Draw/Draw_Drawable3D.cxx diff --git a/src/Draw/Draw_Drawable3D.hxx b/src/Draw/TKDraw/Draw/Draw_Drawable3D.hxx similarity index 100% rename from src/Draw/Draw_Drawable3D.hxx rename to src/Draw/TKDraw/Draw/Draw_Drawable3D.hxx diff --git a/src/Draw/Draw_Failure.hxx b/src/Draw/TKDraw/Draw/Draw_Failure.hxx similarity index 100% rename from src/Draw/Draw_Failure.hxx rename to src/Draw/TKDraw/Draw/Draw_Failure.hxx diff --git a/src/Draw/Draw_GraphicCommands.cxx b/src/Draw/TKDraw/Draw/Draw_GraphicCommands.cxx similarity index 100% rename from src/Draw/Draw_GraphicCommands.cxx rename to src/Draw/TKDraw/Draw/Draw_GraphicCommands.cxx diff --git a/src/Draw/Draw_Grid.cxx b/src/Draw/TKDraw/Draw/Draw_Grid.cxx similarity index 100% rename from src/Draw/Draw_Grid.cxx rename to src/Draw/TKDraw/Draw/Draw_Grid.cxx diff --git a/src/Draw/Draw_Grid.hxx b/src/Draw/TKDraw/Draw/Draw_Grid.hxx similarity index 100% rename from src/Draw/Draw_Grid.hxx rename to src/Draw/TKDraw/Draw/Draw_Grid.hxx diff --git a/src/Draw/Draw_Grid.lxx b/src/Draw/TKDraw/Draw/Draw_Grid.lxx similarity index 100% rename from src/Draw/Draw_Grid.lxx rename to src/Draw/TKDraw/Draw/Draw_Grid.lxx diff --git a/src/Draw/Draw_Interpretor.cxx b/src/Draw/TKDraw/Draw/Draw_Interpretor.cxx similarity index 99% rename from src/Draw/Draw_Interpretor.cxx rename to src/Draw/TKDraw/Draw/Draw_Interpretor.cxx index d3139835ea..00c6a75bc0 100644 --- a/src/Draw/Draw_Interpretor.cxx +++ b/src/Draw/TKDraw/Draw/Draw_Interpretor.cxx @@ -331,7 +331,7 @@ void Draw_Interpretor::add(const Standard_CString theCommandName, OSD_Path aPath(theFileName); Standard_Integer nbTrek = aPath.TrekLength(); - for (Standard_Integer i = 2; i < nbTrek; ++i) + for (Standard_Integer i = 4; i < nbTrek; ++i) { aPath.RemoveATrek(1); } diff --git a/src/Draw/Draw_Interpretor.hxx b/src/Draw/TKDraw/Draw/Draw_Interpretor.hxx similarity index 100% rename from src/Draw/Draw_Interpretor.hxx rename to src/Draw/TKDraw/Draw/Draw_Interpretor.hxx diff --git a/src/Draw/Draw_Main.cxx b/src/Draw/TKDraw/Draw/Draw_Main.cxx similarity index 100% rename from src/Draw/Draw_Main.cxx rename to src/Draw/TKDraw/Draw/Draw_Main.cxx diff --git a/src/Draw/Draw_Main.hxx b/src/Draw/TKDraw/Draw/Draw_Main.hxx similarity index 100% rename from src/Draw/Draw_Main.hxx rename to src/Draw/TKDraw/Draw/Draw_Main.hxx diff --git a/src/Draw/Draw_MapOfAsciiString.hxx b/src/Draw/TKDraw/Draw/Draw_MapOfAsciiString.hxx similarity index 100% rename from src/Draw/Draw_MapOfAsciiString.hxx rename to src/Draw/TKDraw/Draw/Draw_MapOfAsciiString.hxx diff --git a/src/Draw/Draw_Marker2D.cxx b/src/Draw/TKDraw/Draw/Draw_Marker2D.cxx similarity index 100% rename from src/Draw/Draw_Marker2D.cxx rename to src/Draw/TKDraw/Draw/Draw_Marker2D.cxx diff --git a/src/Draw/Draw_Marker2D.hxx b/src/Draw/TKDraw/Draw/Draw_Marker2D.hxx similarity index 100% rename from src/Draw/Draw_Marker2D.hxx rename to src/Draw/TKDraw/Draw/Draw_Marker2D.hxx diff --git a/src/Draw/Draw_Marker3D.cxx b/src/Draw/TKDraw/Draw/Draw_Marker3D.cxx similarity index 100% rename from src/Draw/Draw_Marker3D.cxx rename to src/Draw/TKDraw/Draw/Draw_Marker3D.cxx diff --git a/src/Draw/Draw_Marker3D.hxx b/src/Draw/TKDraw/Draw/Draw_Marker3D.hxx similarity index 100% rename from src/Draw/Draw_Marker3D.hxx rename to src/Draw/TKDraw/Draw/Draw_Marker3D.hxx diff --git a/src/Draw/Draw_MarkerShape.hxx b/src/Draw/TKDraw/Draw/Draw_MarkerShape.hxx similarity index 100% rename from src/Draw/Draw_MarkerShape.hxx rename to src/Draw/TKDraw/Draw/Draw_MarkerShape.hxx diff --git a/src/Draw/Draw_MessageCommands.cxx b/src/Draw/TKDraw/Draw/Draw_MessageCommands.cxx similarity index 100% rename from src/Draw/Draw_MessageCommands.cxx rename to src/Draw/TKDraw/Draw/Draw_MessageCommands.cxx diff --git a/src/Draw/Draw_Number.cxx b/src/Draw/TKDraw/Draw/Draw_Number.cxx similarity index 100% rename from src/Draw/Draw_Number.cxx rename to src/Draw/TKDraw/Draw/Draw_Number.cxx diff --git a/src/Draw/Draw_Number.hxx b/src/Draw/TKDraw/Draw/Draw_Number.hxx similarity index 100% rename from src/Draw/Draw_Number.hxx rename to src/Draw/TKDraw/Draw/Draw_Number.hxx diff --git a/src/Draw/Draw_PInterp.hxx b/src/Draw/TKDraw/Draw/Draw_PInterp.hxx similarity index 100% rename from src/Draw/Draw_PInterp.hxx rename to src/Draw/TKDraw/Draw/Draw_PInterp.hxx diff --git a/src/Draw/Draw_PloadCommands.cxx b/src/Draw/TKDraw/Draw/Draw_PloadCommands.cxx similarity index 100% rename from src/Draw/Draw_PloadCommands.cxx rename to src/Draw/TKDraw/Draw/Draw_PloadCommands.cxx diff --git a/src/Draw/Draw_PluginMacro.hxx b/src/Draw/TKDraw/Draw/Draw_PluginMacro.hxx similarity index 100% rename from src/Draw/Draw_PluginMacro.hxx rename to src/Draw/TKDraw/Draw/Draw_PluginMacro.hxx diff --git a/src/Draw/Draw_Printer.cxx b/src/Draw/TKDraw/Draw/Draw_Printer.cxx similarity index 100% rename from src/Draw/Draw_Printer.cxx rename to src/Draw/TKDraw/Draw/Draw_Printer.cxx diff --git a/src/Draw/Draw_Printer.hxx b/src/Draw/TKDraw/Draw/Draw_Printer.hxx similarity index 100% rename from src/Draw/Draw_Printer.hxx rename to src/Draw/TKDraw/Draw/Draw_Printer.hxx diff --git a/src/Draw/Draw_ProgressIndicator.cxx b/src/Draw/TKDraw/Draw/Draw_ProgressIndicator.cxx similarity index 100% rename from src/Draw/Draw_ProgressIndicator.cxx rename to src/Draw/TKDraw/Draw/Draw_ProgressIndicator.cxx diff --git a/src/Draw/Draw_ProgressIndicator.hxx b/src/Draw/TKDraw/Draw/Draw_ProgressIndicator.hxx similarity index 100% rename from src/Draw/Draw_ProgressIndicator.hxx rename to src/Draw/TKDraw/Draw/Draw_ProgressIndicator.hxx diff --git a/src/Draw/Draw_Replace.tcl b/src/Draw/TKDraw/Draw/Draw_Replace.tcl similarity index 100% rename from src/Draw/Draw_Replace.tcl rename to src/Draw/TKDraw/Draw/Draw_Replace.tcl diff --git a/src/Draw/Draw_Segment2D.cxx b/src/Draw/TKDraw/Draw/Draw_Segment2D.cxx similarity index 100% rename from src/Draw/Draw_Segment2D.cxx rename to src/Draw/TKDraw/Draw/Draw_Segment2D.cxx diff --git a/src/Draw/Draw_Segment2D.hxx b/src/Draw/TKDraw/Draw/Draw_Segment2D.hxx similarity index 100% rename from src/Draw/Draw_Segment2D.hxx rename to src/Draw/TKDraw/Draw/Draw_Segment2D.hxx diff --git a/src/Draw/Draw_Segment3D.cxx b/src/Draw/TKDraw/Draw/Draw_Segment3D.cxx similarity index 100% rename from src/Draw/Draw_Segment3D.cxx rename to src/Draw/TKDraw/Draw/Draw_Segment3D.cxx diff --git a/src/Draw/Draw_Segment3D.hxx b/src/Draw/TKDraw/Draw/Draw_Segment3D.hxx similarity index 100% rename from src/Draw/Draw_Segment3D.hxx rename to src/Draw/TKDraw/Draw/Draw_Segment3D.hxx diff --git a/src/Draw/Draw_SequenceOfDrawable3D.hxx b/src/Draw/TKDraw/Draw/Draw_SequenceOfDrawable3D.hxx similarity index 100% rename from src/Draw/Draw_SequenceOfDrawable3D.hxx rename to src/Draw/TKDraw/Draw/Draw_SequenceOfDrawable3D.hxx diff --git a/src/Draw/Draw_Text2D.cxx b/src/Draw/TKDraw/Draw/Draw_Text2D.cxx similarity index 100% rename from src/Draw/Draw_Text2D.cxx rename to src/Draw/TKDraw/Draw/Draw_Text2D.cxx diff --git a/src/Draw/Draw_Text2D.hxx b/src/Draw/TKDraw/Draw/Draw_Text2D.hxx similarity index 100% rename from src/Draw/Draw_Text2D.hxx rename to src/Draw/TKDraw/Draw/Draw_Text2D.hxx diff --git a/src/Draw/Draw_Text3D.cxx b/src/Draw/TKDraw/Draw/Draw_Text3D.cxx similarity index 100% rename from src/Draw/Draw_Text3D.cxx rename to src/Draw/TKDraw/Draw/Draw_Text3D.cxx diff --git a/src/Draw/Draw_Text3D.hxx b/src/Draw/TKDraw/Draw/Draw_Text3D.hxx similarity index 100% rename from src/Draw/Draw_Text3D.hxx rename to src/Draw/TKDraw/Draw/Draw_Text3D.hxx diff --git a/src/Draw/Draw_UnitCommands.cxx b/src/Draw/TKDraw/Draw/Draw_UnitCommands.cxx similarity index 100% rename from src/Draw/Draw_UnitCommands.cxx rename to src/Draw/TKDraw/Draw/Draw_UnitCommands.cxx diff --git a/src/Draw/Draw_VariableCommands.cxx b/src/Draw/TKDraw/Draw/Draw_VariableCommands.cxx similarity index 100% rename from src/Draw/Draw_VariableCommands.cxx rename to src/Draw/TKDraw/Draw/Draw_VariableCommands.cxx diff --git a/src/Draw/Draw_View.cxx b/src/Draw/TKDraw/Draw/Draw_View.cxx similarity index 100% rename from src/Draw/Draw_View.cxx rename to src/Draw/TKDraw/Draw/Draw_View.cxx diff --git a/src/Draw/Draw_View.hxx b/src/Draw/TKDraw/Draw/Draw_View.hxx similarity index 100% rename from src/Draw/Draw_View.hxx rename to src/Draw/TKDraw/Draw/Draw_View.hxx diff --git a/src/Draw/Draw_Viewer.cxx b/src/Draw/TKDraw/Draw/Draw_Viewer.cxx similarity index 100% rename from src/Draw/Draw_Viewer.cxx rename to src/Draw/TKDraw/Draw/Draw_Viewer.cxx diff --git a/src/Draw/Draw_Viewer.hxx b/src/Draw/TKDraw/Draw/Draw_Viewer.hxx similarity index 100% rename from src/Draw/Draw_Viewer.hxx rename to src/Draw/TKDraw/Draw/Draw_Viewer.hxx diff --git a/src/Draw/Draw_WNTCommandWindow.cxx b/src/Draw/TKDraw/Draw/Draw_WNTCommandWindow.cxx similarity index 100% rename from src/Draw/Draw_WNTCommandWindow.cxx rename to src/Draw/TKDraw/Draw/Draw_WNTCommandWindow.cxx diff --git a/src/Draw/Draw_WNTCommandWindow.pxx b/src/Draw/TKDraw/Draw/Draw_WNTCommandWindow.pxx similarity index 100% rename from src/Draw/Draw_WNTCommandWindow.pxx rename to src/Draw/TKDraw/Draw/Draw_WNTCommandWindow.pxx diff --git a/src/Draw/Draw_WNTInit.cxx b/src/Draw/TKDraw/Draw/Draw_WNTInit.cxx similarity index 100% rename from src/Draw/Draw_WNTInit.cxx rename to src/Draw/TKDraw/Draw/Draw_WNTInit.cxx diff --git a/src/Draw/Draw_WNTInit.pxx b/src/Draw/TKDraw/Draw/Draw_WNTInit.pxx similarity index 100% rename from src/Draw/Draw_WNTInit.pxx rename to src/Draw/TKDraw/Draw/Draw_WNTInit.pxx diff --git a/src/Draw/Draw_WNTMainWindow.cxx b/src/Draw/TKDraw/Draw/Draw_WNTMainWindow.cxx similarity index 100% rename from src/Draw/Draw_WNTMainWindow.cxx rename to src/Draw/TKDraw/Draw/Draw_WNTMainWindow.cxx diff --git a/src/Draw/Draw_WNTMainWindow.pxx b/src/Draw/TKDraw/Draw/Draw_WNTMainWindow.pxx similarity index 100% rename from src/Draw/Draw_WNTMainWindow.pxx rename to src/Draw/TKDraw/Draw/Draw_WNTMainWindow.pxx diff --git a/src/Draw/Draw_WNTRessource.pxx b/src/Draw/TKDraw/Draw/Draw_WNTRessource.pxx similarity index 100% rename from src/Draw/Draw_WNTRessource.pxx rename to src/Draw/TKDraw/Draw/Draw_WNTRessource.pxx diff --git a/src/Draw/Draw_Window.cxx b/src/Draw/TKDraw/Draw/Draw_Window.cxx similarity index 100% rename from src/Draw/Draw_Window.cxx rename to src/Draw/TKDraw/Draw/Draw_Window.cxx diff --git a/src/Draw/Draw_Window.hxx b/src/Draw/TKDraw/Draw/Draw_Window.hxx similarity index 100% rename from src/Draw/Draw_Window.hxx rename to src/Draw/TKDraw/Draw/Draw_Window.hxx diff --git a/src/Draw/Draw_Window_1.mm b/src/Draw/TKDraw/Draw/Draw_Window_1.mm similarity index 100% rename from src/Draw/Draw_Window_1.mm rename to src/Draw/TKDraw/Draw/Draw_Window_1.mm diff --git a/src/Draw/TKDraw/Draw/FILES.cmake b/src/Draw/TKDraw/Draw/FILES.cmake new file mode 100644 index 0000000000..f1199d390b --- /dev/null +++ b/src/Draw/TKDraw/Draw/FILES.cmake @@ -0,0 +1,83 @@ +# Source files for Draw package +set(OCCT_Draw_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Draw_FILES + Draw.cxx + Draw.hxx + Draw_Appli.hxx + Draw_Axis2D.cxx + Draw_Axis2D.hxx + Draw_Axis3D.cxx + Draw_Axis3D.hxx + Draw_BasicCommands.cxx + Draw_Box.cxx + Draw_Box.hxx + Draw_Chronometer.cxx + Draw_Chronometer.hxx + Draw_Circle2D.cxx + Draw_Circle2D.hxx + Draw_Circle3D.cxx + Draw_Circle3D.hxx + Draw_Color.cxx + Draw_Color.hxx + Draw_ColorKind.hxx + Draw_Commands.cxx + Draw_Debug.cxx + Draw_Display.cxx + Draw_Display.hxx + Draw_Drawable2D.cxx + Draw_Drawable2D.hxx + Draw_Drawable3D.cxx + Draw_Drawable3D.hxx + Draw_Failure.hxx + Draw_GraphicCommands.cxx + Draw_Grid.cxx + Draw_Grid.hxx + Draw_Grid.lxx + Draw_Interpretor.cxx + Draw_Interpretor.hxx + Draw_Main.cxx + Draw_Main.hxx + Draw_MapOfAsciiString.hxx + Draw_Marker2D.cxx + Draw_Marker2D.hxx + Draw_Marker3D.cxx + Draw_Marker3D.hxx + Draw_MarkerShape.hxx + Draw_MessageCommands.cxx + Draw_Number.cxx + Draw_Number.hxx + Draw_PInterp.hxx + Draw_PloadCommands.cxx + Draw_PluginMacro.hxx + Draw_Printer.cxx + Draw_Printer.hxx + Draw_ProgressIndicator.cxx + Draw_ProgressIndicator.hxx + Draw_Replace.tcl + Draw_Segment2D.cxx + Draw_Segment2D.hxx + Draw_Segment3D.cxx + Draw_Segment3D.hxx + Draw_SequenceOfDrawable3D.hxx + Draw_Text2D.cxx + Draw_Text2D.hxx + Draw_Text3D.cxx + Draw_Text3D.hxx + Draw_UnitCommands.cxx + Draw_VariableCommands.cxx + Draw_View.cxx + Draw_View.hxx + Draw_Viewer.cxx + Draw_Viewer.hxx + Draw_Window.cxx + Draw_Window.hxx + Draw_Window_1.mm + Draw_WNTCommandWindow.cxx + Draw_WNTCommandWindow.pxx + Draw_WNTInit.cxx + Draw_WNTInit.pxx + Draw_WNTMainWindow.cxx + Draw_WNTMainWindow.pxx + Draw_WNTRessource.pxx +) diff --git a/src/DrawTrSurf/DrawTrSurf.cxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf.cxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf.cxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf.cxx diff --git a/src/DrawTrSurf/DrawTrSurf.hxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf.hxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf.hxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf.hxx diff --git a/src/DrawTrSurf/DrawTrSurf_BSplineCurve.cxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_BSplineCurve.cxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_BSplineCurve.cxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_BSplineCurve.cxx diff --git a/src/DrawTrSurf/DrawTrSurf_BSplineCurve.hxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_BSplineCurve.hxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_BSplineCurve.hxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_BSplineCurve.hxx diff --git a/src/DrawTrSurf/DrawTrSurf_BSplineCurve2d.cxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_BSplineCurve2d.cxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_BSplineCurve2d.cxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_BSplineCurve2d.cxx diff --git a/src/DrawTrSurf/DrawTrSurf_BSplineCurve2d.hxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_BSplineCurve2d.hxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_BSplineCurve2d.hxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_BSplineCurve2d.hxx diff --git a/src/DrawTrSurf/DrawTrSurf_BSplineSurface.cxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_BSplineSurface.cxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_BSplineSurface.cxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_BSplineSurface.cxx diff --git a/src/DrawTrSurf/DrawTrSurf_BSplineSurface.hxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_BSplineSurface.hxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_BSplineSurface.hxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_BSplineSurface.hxx diff --git a/src/DrawTrSurf/DrawTrSurf_BezierCurve.cxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_BezierCurve.cxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_BezierCurve.cxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_BezierCurve.cxx diff --git a/src/DrawTrSurf/DrawTrSurf_BezierCurve.hxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_BezierCurve.hxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_BezierCurve.hxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_BezierCurve.hxx diff --git a/src/DrawTrSurf/DrawTrSurf_BezierCurve2d.cxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_BezierCurve2d.cxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_BezierCurve2d.cxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_BezierCurve2d.cxx diff --git a/src/DrawTrSurf/DrawTrSurf_BezierCurve2d.hxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_BezierCurve2d.hxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_BezierCurve2d.hxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_BezierCurve2d.hxx diff --git a/src/DrawTrSurf/DrawTrSurf_BezierSurface.cxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_BezierSurface.cxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_BezierSurface.cxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_BezierSurface.cxx diff --git a/src/DrawTrSurf/DrawTrSurf_BezierSurface.hxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_BezierSurface.hxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_BezierSurface.hxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_BezierSurface.hxx diff --git a/src/DrawTrSurf/DrawTrSurf_Curve.cxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Curve.cxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_Curve.cxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Curve.cxx diff --git a/src/DrawTrSurf/DrawTrSurf_Curve.hxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Curve.hxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_Curve.hxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Curve.hxx diff --git a/src/DrawTrSurf/DrawTrSurf_Curve2d.cxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Curve2d.cxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_Curve2d.cxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Curve2d.cxx diff --git a/src/DrawTrSurf/DrawTrSurf_Curve2d.hxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Curve2d.hxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_Curve2d.hxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Curve2d.hxx diff --git a/src/DrawTrSurf/DrawTrSurf_Debug.cxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Debug.cxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_Debug.cxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Debug.cxx diff --git a/src/DrawTrSurf/DrawTrSurf_Drawable.cxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Drawable.cxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_Drawable.cxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Drawable.cxx diff --git a/src/DrawTrSurf/DrawTrSurf_Drawable.hxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Drawable.hxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_Drawable.hxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Drawable.hxx diff --git a/src/DrawTrSurf/DrawTrSurf_Params.hxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Params.hxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_Params.hxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Params.hxx diff --git a/src/DrawTrSurf/DrawTrSurf_Point.cxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Point.cxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_Point.cxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Point.cxx diff --git a/src/DrawTrSurf/DrawTrSurf_Point.hxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Point.hxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_Point.hxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Point.hxx diff --git a/src/DrawTrSurf/DrawTrSurf_Polygon2D.cxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Polygon2D.cxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_Polygon2D.cxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Polygon2D.cxx diff --git a/src/DrawTrSurf/DrawTrSurf_Polygon2D.hxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Polygon2D.hxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_Polygon2D.hxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Polygon2D.hxx diff --git a/src/DrawTrSurf/DrawTrSurf_Polygon3D.cxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Polygon3D.cxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_Polygon3D.cxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Polygon3D.cxx diff --git a/src/DrawTrSurf/DrawTrSurf_Polygon3D.hxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Polygon3D.hxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_Polygon3D.hxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Polygon3D.hxx diff --git a/src/DrawTrSurf/DrawTrSurf_Surface.cxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Surface.cxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_Surface.cxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Surface.cxx diff --git a/src/DrawTrSurf/DrawTrSurf_Surface.hxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Surface.hxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_Surface.hxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Surface.hxx diff --git a/src/DrawTrSurf/DrawTrSurf_Triangulation.cxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Triangulation.cxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_Triangulation.cxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Triangulation.cxx diff --git a/src/DrawTrSurf/DrawTrSurf_Triangulation.hxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Triangulation.hxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_Triangulation.hxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Triangulation.hxx diff --git a/src/DrawTrSurf/DrawTrSurf_Triangulation2D.cxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Triangulation2D.cxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_Triangulation2D.cxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Triangulation2D.cxx diff --git a/src/DrawTrSurf/DrawTrSurf_Triangulation2D.hxx b/src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Triangulation2D.hxx similarity index 100% rename from src/DrawTrSurf/DrawTrSurf_Triangulation2D.hxx rename to src/Draw/TKDraw/DrawTrSurf/DrawTrSurf_Triangulation2D.hxx diff --git a/src/Draw/TKDraw/DrawTrSurf/FILES.cmake b/src/Draw/TKDraw/DrawTrSurf/FILES.cmake new file mode 100644 index 0000000000..9d714cd900 --- /dev/null +++ b/src/Draw/TKDraw/DrawTrSurf/FILES.cmake @@ -0,0 +1,39 @@ +# Source files for DrawTrSurf package +set(OCCT_DrawTrSurf_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_DrawTrSurf_FILES + DrawTrSurf.cxx + DrawTrSurf.hxx + DrawTrSurf_BezierCurve.cxx + DrawTrSurf_BezierCurve.hxx + DrawTrSurf_BezierCurve2d.cxx + DrawTrSurf_BezierCurve2d.hxx + DrawTrSurf_BezierSurface.cxx + DrawTrSurf_BezierSurface.hxx + DrawTrSurf_BSplineCurve.cxx + DrawTrSurf_BSplineCurve.hxx + DrawTrSurf_BSplineCurve2d.cxx + DrawTrSurf_BSplineCurve2d.hxx + DrawTrSurf_BSplineSurface.cxx + DrawTrSurf_BSplineSurface.hxx + DrawTrSurf_Curve.cxx + DrawTrSurf_Curve.hxx + DrawTrSurf_Curve2d.cxx + DrawTrSurf_Curve2d.hxx + DrawTrSurf_Debug.cxx + DrawTrSurf_Drawable.cxx + DrawTrSurf_Drawable.hxx + DrawTrSurf_Params.hxx + DrawTrSurf_Point.cxx + DrawTrSurf_Point.hxx + DrawTrSurf_Polygon2D.cxx + DrawTrSurf_Polygon2D.hxx + DrawTrSurf_Polygon3D.cxx + DrawTrSurf_Polygon3D.hxx + DrawTrSurf_Surface.cxx + DrawTrSurf_Surface.hxx + DrawTrSurf_Triangulation.cxx + DrawTrSurf_Triangulation.hxx + DrawTrSurf_Triangulation2D.cxx + DrawTrSurf_Triangulation2D.hxx +) diff --git a/src/Draw/TKDraw/EXTERNLIB.cmake b/src/Draw/TKDraw/EXTERNLIB.cmake new file mode 100644 index 0000000000..0e2fd5517f --- /dev/null +++ b/src/Draw/TKDraw/EXTERNLIB.cmake @@ -0,0 +1,27 @@ +# External dependencies for TKDraw +set(OCCT_TKDraw_EXTERNAL_LIBS + TKernel + TKG2d + TKGeomBase + TKG3d + TKMath + TKBRep + TKGeomAlgo + TKShHealing + TKMesh + TKService + TKHLR + TKTopAlgo + CSF_TclLibs + CSF_TclTkLibs + CSF_XwLibs + CSF_gdi32 + CSF_advapi32 + CSF_user32 + CSF_shell32 + CSF_TBB + CSF_objc + CSF_Appkit + CSF_IOKit + CSF_ThreadLibs +) diff --git a/src/Draw/TKDraw/FILES.cmake b/src/Draw/TKDraw/FILES.cmake new file mode 100644 index 0000000000..9646d13d89 --- /dev/null +++ b/src/Draw/TKDraw/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKDraw +set(OCCT_TKDraw_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKDraw_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/Draw/TKDraw/PACKAGES.cmake b/src/Draw/TKDraw/PACKAGES.cmake new file mode 100644 index 0000000000..7772b4a9dc --- /dev/null +++ b/src/Draw/TKDraw/PACKAGES.cmake @@ -0,0 +1,6 @@ +# Auto-generated list of packages for TKDraw toolkit +set(OCCT_TKDraw_LIST_OF_PACKAGES + Draw + DBRep + DrawTrSurf +) diff --git a/src/TKIVtkDraw/CMakeLists.txt b/src/Draw/TKIVtkDraw/CMakeLists.txt similarity index 100% rename from src/TKIVtkDraw/CMakeLists.txt rename to src/Draw/TKIVtkDraw/CMakeLists.txt diff --git a/src/Draw/TKIVtkDraw/EXTERNLIB.cmake b/src/Draw/TKIVtkDraw/EXTERNLIB.cmake new file mode 100644 index 0000000000..914bc11f34 --- /dev/null +++ b/src/Draw/TKIVtkDraw/EXTERNLIB.cmake @@ -0,0 +1,26 @@ +# External dependencies for TKIVtkDraw +set(OCCT_TKIVtkDraw_EXTERNAL_LIBS + CSF_VTK + CSF_TclLibs + CSF_XwLibs + CSF_user32 + TKernel + TKBRep + TKDraw + TKG2d + TKG3d + TKGeomAlgo + TKGeomBase + TKMath + TKMesh + TKService + TKTopAlgo + TKV3d + TKOpenGl + TKIVtk + vtkIOImage + vtkImagingCore + vtkInteractionStyle + vtkRenderingOpenGL + vtkRenderingFreeTypeOpenGL +) diff --git a/src/Draw/TKIVtkDraw/FILES.cmake b/src/Draw/TKIVtkDraw/FILES.cmake new file mode 100644 index 0000000000..85da3bc43f --- /dev/null +++ b/src/Draw/TKIVtkDraw/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKIVtkDraw +set(OCCT_TKIVtkDraw_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKIVtkDraw_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/Draw/TKIVtkDraw/IVtkDraw/FILES.cmake b/src/Draw/TKIVtkDraw/IVtkDraw/FILES.cmake new file mode 100644 index 0000000000..fff76f96d4 --- /dev/null +++ b/src/Draw/TKIVtkDraw/IVtkDraw/FILES.cmake @@ -0,0 +1,11 @@ +# Source files for IVtkDraw package +set(OCCT_IVtkDraw_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IVtkDraw_FILES + IVtkDraw.cxx + IVtkDraw.hxx + IVtkDraw_HighlightAndSelectionPipeline.cxx + IVtkDraw_HighlightAndSelectionPipeline.hxx + IVtkDraw_Interactor.cxx + IVtkDraw_Interactor.hxx +) diff --git a/src/IVtkDraw/IVtkDraw.cxx b/src/Draw/TKIVtkDraw/IVtkDraw/IVtkDraw.cxx similarity index 100% rename from src/IVtkDraw/IVtkDraw.cxx rename to src/Draw/TKIVtkDraw/IVtkDraw/IVtkDraw.cxx diff --git a/src/IVtkDraw/IVtkDraw.hxx b/src/Draw/TKIVtkDraw/IVtkDraw/IVtkDraw.hxx similarity index 100% rename from src/IVtkDraw/IVtkDraw.hxx rename to src/Draw/TKIVtkDraw/IVtkDraw/IVtkDraw.hxx diff --git a/src/IVtkDraw/IVtkDraw_HighlightAndSelectionPipeline.cxx b/src/Draw/TKIVtkDraw/IVtkDraw/IVtkDraw_HighlightAndSelectionPipeline.cxx similarity index 100% rename from src/IVtkDraw/IVtkDraw_HighlightAndSelectionPipeline.cxx rename to src/Draw/TKIVtkDraw/IVtkDraw/IVtkDraw_HighlightAndSelectionPipeline.cxx diff --git a/src/IVtkDraw/IVtkDraw_HighlightAndSelectionPipeline.hxx b/src/Draw/TKIVtkDraw/IVtkDraw/IVtkDraw_HighlightAndSelectionPipeline.hxx similarity index 100% rename from src/IVtkDraw/IVtkDraw_HighlightAndSelectionPipeline.hxx rename to src/Draw/TKIVtkDraw/IVtkDraw/IVtkDraw_HighlightAndSelectionPipeline.hxx diff --git a/src/IVtkDraw/IVtkDraw_Interactor.cxx b/src/Draw/TKIVtkDraw/IVtkDraw/IVtkDraw_Interactor.cxx similarity index 100% rename from src/IVtkDraw/IVtkDraw_Interactor.cxx rename to src/Draw/TKIVtkDraw/IVtkDraw/IVtkDraw_Interactor.cxx diff --git a/src/IVtkDraw/IVtkDraw_Interactor.hxx b/src/Draw/TKIVtkDraw/IVtkDraw/IVtkDraw_Interactor.hxx similarity index 100% rename from src/IVtkDraw/IVtkDraw_Interactor.hxx rename to src/Draw/TKIVtkDraw/IVtkDraw/IVtkDraw_Interactor.hxx diff --git a/src/Draw/TKIVtkDraw/PACKAGES.cmake b/src/Draw/TKIVtkDraw/PACKAGES.cmake new file mode 100644 index 0000000000..2fbf011234 --- /dev/null +++ b/src/Draw/TKIVtkDraw/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKIVtkDraw toolkit +set(OCCT_TKIVtkDraw_LIST_OF_PACKAGES + IVtkDraw +) diff --git a/src/TKOpenGlTest/CMakeLists.txt b/src/Draw/TKOpenGlTest/CMakeLists.txt similarity index 100% rename from src/TKOpenGlTest/CMakeLists.txt rename to src/Draw/TKOpenGlTest/CMakeLists.txt diff --git a/src/Draw/TKOpenGlTest/EXTERNLIB.cmake b/src/Draw/TKOpenGlTest/EXTERNLIB.cmake new file mode 100644 index 0000000000..aa1836eed5 --- /dev/null +++ b/src/Draw/TKOpenGlTest/EXTERNLIB.cmake @@ -0,0 +1,11 @@ +# External dependencies for TKOpenGlTest +set(OCCT_TKOpenGlTest_EXTERNAL_LIBS + TKernel + TKMath + TKDraw + TKOpenGl + TKService + TKV3d + TKViewerTest + CSF_OpenGlLibs +) diff --git a/src/Draw/TKOpenGlTest/FILES.cmake b/src/Draw/TKOpenGlTest/FILES.cmake new file mode 100644 index 0000000000..e16297a93a --- /dev/null +++ b/src/Draw/TKOpenGlTest/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKOpenGlTest +set(OCCT_TKOpenGlTest_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKOpenGlTest_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/Draw/TKOpenGlTest/OpenGlTest/FILES.cmake b/src/Draw/TKOpenGlTest/OpenGlTest/FILES.cmake new file mode 100644 index 0000000000..1dc6f5e507 --- /dev/null +++ b/src/Draw/TKOpenGlTest/OpenGlTest/FILES.cmake @@ -0,0 +1,8 @@ +# Source files for OpenGlTest package +set(OCCT_OpenGlTest_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_OpenGlTest_FILES + OpenGlTest.cxx + OpenGlTest.hxx + OpenGlTest_Commands.cxx +) diff --git a/src/OpenGlTest/OpenGlTest.cxx b/src/Draw/TKOpenGlTest/OpenGlTest/OpenGlTest.cxx similarity index 100% rename from src/OpenGlTest/OpenGlTest.cxx rename to src/Draw/TKOpenGlTest/OpenGlTest/OpenGlTest.cxx diff --git a/src/OpenGlTest/OpenGlTest.hxx b/src/Draw/TKOpenGlTest/OpenGlTest/OpenGlTest.hxx similarity index 100% rename from src/OpenGlTest/OpenGlTest.hxx rename to src/Draw/TKOpenGlTest/OpenGlTest/OpenGlTest.hxx diff --git a/src/OpenGlTest/OpenGlTest_Commands.cxx b/src/Draw/TKOpenGlTest/OpenGlTest/OpenGlTest_Commands.cxx similarity index 100% rename from src/OpenGlTest/OpenGlTest_Commands.cxx rename to src/Draw/TKOpenGlTest/OpenGlTest/OpenGlTest_Commands.cxx diff --git a/src/Draw/TKOpenGlTest/PACKAGES.cmake b/src/Draw/TKOpenGlTest/PACKAGES.cmake new file mode 100644 index 0000000000..d3db05f8c2 --- /dev/null +++ b/src/Draw/TKOpenGlTest/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKOpenGlTest toolkit +set(OCCT_TKOpenGlTest_LIST_OF_PACKAGES + OpenGlTest +) diff --git a/src/TKOpenGlesTest/CMakeLists.txt b/src/Draw/TKOpenGlesTest/CMakeLists.txt similarity index 100% rename from src/TKOpenGlesTest/CMakeLists.txt rename to src/Draw/TKOpenGlesTest/CMakeLists.txt diff --git a/src/Draw/TKOpenGlesTest/EXTERNLIB.cmake b/src/Draw/TKOpenGlesTest/EXTERNLIB.cmake new file mode 100644 index 0000000000..94b9827657 --- /dev/null +++ b/src/Draw/TKOpenGlesTest/EXTERNLIB.cmake @@ -0,0 +1,11 @@ +# External dependencies for TKOpenGlesTest +set(OCCT_TKOpenGlesTest_EXTERNAL_LIBS + TKernel + TKMath + TKDraw + TKOpenGles + TKService + TKV3d + TKViewerTest + CSF_OpenGlesLibs +) diff --git a/src/Draw/TKOpenGlesTest/FILES.cmake b/src/Draw/TKOpenGlesTest/FILES.cmake new file mode 100644 index 0000000000..ab9dbb317a --- /dev/null +++ b/src/Draw/TKOpenGlesTest/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKOpenGlesTest +set(OCCT_TKOpenGlesTest_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKOpenGlesTest_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/Draw/TKOpenGlesTest/PACKAGES.cmake b/src/Draw/TKOpenGlesTest/PACKAGES.cmake new file mode 100644 index 0000000000..3c221cbe84 --- /dev/null +++ b/src/Draw/TKOpenGlesTest/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKOpenGlesTest toolkit +set(OCCT_TKOpenGlesTest_LIST_OF_PACKAGES + ../TKOpenGlTest/OpenGlTest +) diff --git a/src/TKQADraw/CMakeLists.txt b/src/Draw/TKQADraw/CMakeLists.txt similarity index 100% rename from src/TKQADraw/CMakeLists.txt rename to src/Draw/TKQADraw/CMakeLists.txt diff --git a/src/Draw/TKQADraw/EXTERNLIB.cmake b/src/Draw/TKQADraw/EXTERNLIB.cmake new file mode 100644 index 0000000000..ab04cead84 --- /dev/null +++ b/src/Draw/TKQADraw/EXTERNLIB.cmake @@ -0,0 +1,48 @@ +# External dependencies for TKQADraw +set(OCCT_TKQADraw_EXTERNAL_LIBS + TKBRep + TKMath + TKernel + TKService + TKG2d + TKDraw + TKV3d + TKGeomBase + TKG3d + TKViewerTest + TKCDF + TKDCAF + TKLCAF + TKFillet + TKTopAlgo + TKHLR + TKBool + TKGeomAlgo + TKPrim + TKBO + TKShHealing + TKOffset + TKFeat + TKCAF + TKVCAF + TKDEIGES + TKXSBase + TKMesh + TKXCAF + TKBinXCAF + TKDESTEP + TKXSDRAW + TKDESTL + TKXml + TKTObj + TKXmlL + TKBin + TKBinL + TKStd + TKStdL + TKExpress + CSF_gdi32 + CSF_advapi32 + CSF_user32 + CSF_TBB +) diff --git a/src/Draw/TKQADraw/FILES.cmake b/src/Draw/TKQADraw/FILES.cmake new file mode 100644 index 0000000000..9f61b4366e --- /dev/null +++ b/src/Draw/TKQADraw/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKQADraw +set(OCCT_TKQADraw_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKQADraw_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/Draw/TKQADraw/PACKAGES.cmake b/src/Draw/TKQADraw/PACKAGES.cmake new file mode 100644 index 0000000000..cecd38b003 --- /dev/null +++ b/src/Draw/TKQADraw/PACKAGES.cmake @@ -0,0 +1,7 @@ +# Auto-generated list of packages for TKQADraw toolkit +set(OCCT_TKQADraw_LIST_OF_PACKAGES + QABugs + QADNaming + QADraw + QANCollection +) diff --git a/src/Draw/TKQADraw/QABugs/FILES.cmake b/src/Draw/TKQADraw/QABugs/FILES.cmake new file mode 100644 index 0000000000..7e6672f0f7 --- /dev/null +++ b/src/Draw/TKQADraw/QABugs/FILES.cmake @@ -0,0 +1,29 @@ +# Source files for QABugs package +set(OCCT_QABugs_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_QABugs_FILES + QABugs.cxx + QABugs.hxx + QABugs_1.cxx + QABugs_2.cxx + QABugs_3.cxx + QABugs_5.cxx + QABugs_6.cxx + QABugs_7.cxx + QABugs_8.cxx + QABugs_9.cxx + QABugs_10.cxx + QABugs_11.cxx + QABugs_12.cxx + QABugs_13.cxx + QABugs_14.cxx + QABugs_15.cxx + QABugs_16.cxx + QABugs_17.cxx + QABugs_18.cxx + QABugs_19.cxx + QABugs_20.cxx + QABugs_BVH.cxx + QABugs_PresentableObject.cxx + QABugs_PresentableObject.hxx +) diff --git a/src/QABugs/QABugs.cxx b/src/Draw/TKQADraw/QABugs/QABugs.cxx similarity index 100% rename from src/QABugs/QABugs.cxx rename to src/Draw/TKQADraw/QABugs/QABugs.cxx diff --git a/src/QABugs/QABugs.hxx b/src/Draw/TKQADraw/QABugs/QABugs.hxx similarity index 100% rename from src/QABugs/QABugs.hxx rename to src/Draw/TKQADraw/QABugs/QABugs.hxx diff --git a/src/QABugs/QABugs_1.cxx b/src/Draw/TKQADraw/QABugs/QABugs_1.cxx similarity index 100% rename from src/QABugs/QABugs_1.cxx rename to src/Draw/TKQADraw/QABugs/QABugs_1.cxx diff --git a/src/QABugs/QABugs_10.cxx b/src/Draw/TKQADraw/QABugs/QABugs_10.cxx similarity index 100% rename from src/QABugs/QABugs_10.cxx rename to src/Draw/TKQADraw/QABugs/QABugs_10.cxx diff --git a/src/QABugs/QABugs_11.cxx b/src/Draw/TKQADraw/QABugs/QABugs_11.cxx similarity index 100% rename from src/QABugs/QABugs_11.cxx rename to src/Draw/TKQADraw/QABugs/QABugs_11.cxx diff --git a/src/QABugs/QABugs_12.cxx b/src/Draw/TKQADraw/QABugs/QABugs_12.cxx similarity index 100% rename from src/QABugs/QABugs_12.cxx rename to src/Draw/TKQADraw/QABugs/QABugs_12.cxx diff --git a/src/QABugs/QABugs_13.cxx b/src/Draw/TKQADraw/QABugs/QABugs_13.cxx similarity index 100% rename from src/QABugs/QABugs_13.cxx rename to src/Draw/TKQADraw/QABugs/QABugs_13.cxx diff --git a/src/QABugs/QABugs_14.cxx b/src/Draw/TKQADraw/QABugs/QABugs_14.cxx similarity index 100% rename from src/QABugs/QABugs_14.cxx rename to src/Draw/TKQADraw/QABugs/QABugs_14.cxx diff --git a/src/QABugs/QABugs_15.cxx b/src/Draw/TKQADraw/QABugs/QABugs_15.cxx similarity index 100% rename from src/QABugs/QABugs_15.cxx rename to src/Draw/TKQADraw/QABugs/QABugs_15.cxx diff --git a/src/QABugs/QABugs_16.cxx b/src/Draw/TKQADraw/QABugs/QABugs_16.cxx similarity index 100% rename from src/QABugs/QABugs_16.cxx rename to src/Draw/TKQADraw/QABugs/QABugs_16.cxx diff --git a/src/QABugs/QABugs_17.cxx b/src/Draw/TKQADraw/QABugs/QABugs_17.cxx similarity index 100% rename from src/QABugs/QABugs_17.cxx rename to src/Draw/TKQADraw/QABugs/QABugs_17.cxx diff --git a/src/QABugs/QABugs_18.cxx b/src/Draw/TKQADraw/QABugs/QABugs_18.cxx similarity index 100% rename from src/QABugs/QABugs_18.cxx rename to src/Draw/TKQADraw/QABugs/QABugs_18.cxx diff --git a/src/QABugs/QABugs_19.cxx b/src/Draw/TKQADraw/QABugs/QABugs_19.cxx similarity index 100% rename from src/QABugs/QABugs_19.cxx rename to src/Draw/TKQADraw/QABugs/QABugs_19.cxx diff --git a/src/QABugs/QABugs_2.cxx b/src/Draw/TKQADraw/QABugs/QABugs_2.cxx similarity index 100% rename from src/QABugs/QABugs_2.cxx rename to src/Draw/TKQADraw/QABugs/QABugs_2.cxx diff --git a/src/QABugs/QABugs_20.cxx b/src/Draw/TKQADraw/QABugs/QABugs_20.cxx similarity index 100% rename from src/QABugs/QABugs_20.cxx rename to src/Draw/TKQADraw/QABugs/QABugs_20.cxx diff --git a/src/QABugs/QABugs_3.cxx b/src/Draw/TKQADraw/QABugs/QABugs_3.cxx similarity index 100% rename from src/QABugs/QABugs_3.cxx rename to src/Draw/TKQADraw/QABugs/QABugs_3.cxx diff --git a/src/QABugs/QABugs_5.cxx b/src/Draw/TKQADraw/QABugs/QABugs_5.cxx similarity index 100% rename from src/QABugs/QABugs_5.cxx rename to src/Draw/TKQADraw/QABugs/QABugs_5.cxx diff --git a/src/QABugs/QABugs_6.cxx b/src/Draw/TKQADraw/QABugs/QABugs_6.cxx similarity index 100% rename from src/QABugs/QABugs_6.cxx rename to src/Draw/TKQADraw/QABugs/QABugs_6.cxx diff --git a/src/QABugs/QABugs_7.cxx b/src/Draw/TKQADraw/QABugs/QABugs_7.cxx similarity index 100% rename from src/QABugs/QABugs_7.cxx rename to src/Draw/TKQADraw/QABugs/QABugs_7.cxx diff --git a/src/QABugs/QABugs_8.cxx b/src/Draw/TKQADraw/QABugs/QABugs_8.cxx similarity index 100% rename from src/QABugs/QABugs_8.cxx rename to src/Draw/TKQADraw/QABugs/QABugs_8.cxx diff --git a/src/QABugs/QABugs_9.cxx b/src/Draw/TKQADraw/QABugs/QABugs_9.cxx similarity index 100% rename from src/QABugs/QABugs_9.cxx rename to src/Draw/TKQADraw/QABugs/QABugs_9.cxx diff --git a/src/QABugs/QABugs_BVH.cxx b/src/Draw/TKQADraw/QABugs/QABugs_BVH.cxx similarity index 100% rename from src/QABugs/QABugs_BVH.cxx rename to src/Draw/TKQADraw/QABugs/QABugs_BVH.cxx diff --git a/src/QABugs/QABugs_PresentableObject.cxx b/src/Draw/TKQADraw/QABugs/QABugs_PresentableObject.cxx similarity index 100% rename from src/QABugs/QABugs_PresentableObject.cxx rename to src/Draw/TKQADraw/QABugs/QABugs_PresentableObject.cxx diff --git a/src/QABugs/QABugs_PresentableObject.hxx b/src/Draw/TKQADraw/QABugs/QABugs_PresentableObject.hxx similarity index 100% rename from src/QABugs/QABugs_PresentableObject.hxx rename to src/Draw/TKQADraw/QABugs/QABugs_PresentableObject.hxx diff --git a/src/Draw/TKQADraw/QADNaming/FILES.cmake b/src/Draw/TKQADraw/QADNaming/FILES.cmake new file mode 100644 index 0000000000..622edeb9ab --- /dev/null +++ b/src/Draw/TKQADraw/QADNaming/FILES.cmake @@ -0,0 +1,13 @@ +# Source files for QADNaming package +set(OCCT_QADNaming_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_QADNaming_FILES + QADNaming.cxx + QADNaming.hxx + QADNaming_BasicCommands.cxx + QADNaming_BuilderCommands.cxx + QADNaming_IteratorsCommands.cxx + QADNaming_Selection.tcl + QADNaming_SelectionCommands.cxx + QADNaming_ToolsCommands.cxx +) diff --git a/src/QADNaming/QADNaming.cxx b/src/Draw/TKQADraw/QADNaming/QADNaming.cxx similarity index 100% rename from src/QADNaming/QADNaming.cxx rename to src/Draw/TKQADraw/QADNaming/QADNaming.cxx diff --git a/src/QADNaming/QADNaming.hxx b/src/Draw/TKQADraw/QADNaming/QADNaming.hxx similarity index 100% rename from src/QADNaming/QADNaming.hxx rename to src/Draw/TKQADraw/QADNaming/QADNaming.hxx diff --git a/src/QADNaming/QADNaming_BasicCommands.cxx b/src/Draw/TKQADraw/QADNaming/QADNaming_BasicCommands.cxx similarity index 100% rename from src/QADNaming/QADNaming_BasicCommands.cxx rename to src/Draw/TKQADraw/QADNaming/QADNaming_BasicCommands.cxx diff --git a/src/QADNaming/QADNaming_BuilderCommands.cxx b/src/Draw/TKQADraw/QADNaming/QADNaming_BuilderCommands.cxx similarity index 100% rename from src/QADNaming/QADNaming_BuilderCommands.cxx rename to src/Draw/TKQADraw/QADNaming/QADNaming_BuilderCommands.cxx diff --git a/src/QADNaming/QADNaming_IteratorsCommands.cxx b/src/Draw/TKQADraw/QADNaming/QADNaming_IteratorsCommands.cxx similarity index 100% rename from src/QADNaming/QADNaming_IteratorsCommands.cxx rename to src/Draw/TKQADraw/QADNaming/QADNaming_IteratorsCommands.cxx diff --git a/src/QADNaming/QADNaming_Selection.tcl b/src/Draw/TKQADraw/QADNaming/QADNaming_Selection.tcl similarity index 100% rename from src/QADNaming/QADNaming_Selection.tcl rename to src/Draw/TKQADraw/QADNaming/QADNaming_Selection.tcl diff --git a/src/QADNaming/QADNaming_SelectionCommands.cxx b/src/Draw/TKQADraw/QADNaming/QADNaming_SelectionCommands.cxx similarity index 100% rename from src/QADNaming/QADNaming_SelectionCommands.cxx rename to src/Draw/TKQADraw/QADNaming/QADNaming_SelectionCommands.cxx diff --git a/src/QADNaming/QADNaming_ToolsCommands.cxx b/src/Draw/TKQADraw/QADNaming/QADNaming_ToolsCommands.cxx similarity index 100% rename from src/QADNaming/QADNaming_ToolsCommands.cxx rename to src/Draw/TKQADraw/QADNaming/QADNaming_ToolsCommands.cxx diff --git a/src/Draw/TKQADraw/QADraw/FILES.cmake b/src/Draw/TKQADraw/QADraw/FILES.cmake new file mode 100644 index 0000000000..08dbd20b4d --- /dev/null +++ b/src/Draw/TKQADraw/QADraw/FILES.cmake @@ -0,0 +1,8 @@ +# Source files for QADraw package +set(OCCT_QADraw_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_QADraw_FILES + QADraw.cxx + QADraw.hxx + QADraw_Tutorials.cxx +) diff --git a/src/QADraw/QADraw.cxx b/src/Draw/TKQADraw/QADraw/QADraw.cxx similarity index 100% rename from src/QADraw/QADraw.cxx rename to src/Draw/TKQADraw/QADraw/QADraw.cxx diff --git a/src/QADraw/QADraw.hxx b/src/Draw/TKQADraw/QADraw/QADraw.hxx similarity index 100% rename from src/QADraw/QADraw.hxx rename to src/Draw/TKQADraw/QADraw/QADraw.hxx diff --git a/src/QADraw/QADraw_Tutorials.cxx b/src/Draw/TKQADraw/QADraw/QADraw_Tutorials.cxx similarity index 100% rename from src/QADraw/QADraw_Tutorials.cxx rename to src/Draw/TKQADraw/QADraw/QADraw_Tutorials.cxx diff --git a/src/Draw/TKQADraw/QANCollection/FILES.cmake b/src/Draw/TKQADraw/QANCollection/FILES.cmake new file mode 100644 index 0000000000..428163929b --- /dev/null +++ b/src/Draw/TKQADraw/QANCollection/FILES.cmake @@ -0,0 +1,22 @@ +# Source files for QANCollection package +set(OCCT_QANCollection_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_QANCollection_FILES + FILES + QANCollection.cxx + QANCollection.hxx + QANCollection_Alloc.cxx + QANCollection_Handle.cxx + QANCollection_Common.cxx + QANCollection_Common.hxx + QANCollection_DataMapIteratorOfDataMapOfRealPnt.hxx + QANCollection_DataMapOfRealPnt.hxx + QANCollection_DoubleMapIteratorOfDoubleMapOfRealInteger.hxx + QANCollection_DoubleMapOfRealInteger.hxx + QANCollection_IndexedDataMapOfRealPnt.hxx + QANCollection_ListIteratorOfListOfPnt.hxx + QANCollection_ListOfPnt.hxx + QANCollection_Perf.cxx + QANCollection_Stl.cxx + QANCollection_Test.cxx +) diff --git a/src/QANCollection/QANCollection.cxx b/src/Draw/TKQADraw/QANCollection/QANCollection.cxx similarity index 100% rename from src/QANCollection/QANCollection.cxx rename to src/Draw/TKQADraw/QANCollection/QANCollection.cxx diff --git a/src/QANCollection/QANCollection.hxx b/src/Draw/TKQADraw/QANCollection/QANCollection.hxx similarity index 100% rename from src/QANCollection/QANCollection.hxx rename to src/Draw/TKQADraw/QANCollection/QANCollection.hxx diff --git a/src/QANCollection/QANCollection_Alloc.cxx b/src/Draw/TKQADraw/QANCollection/QANCollection_Alloc.cxx similarity index 100% rename from src/QANCollection/QANCollection_Alloc.cxx rename to src/Draw/TKQADraw/QANCollection/QANCollection_Alloc.cxx diff --git a/src/QANCollection/QANCollection_Common.cxx b/src/Draw/TKQADraw/QANCollection/QANCollection_Common.cxx similarity index 100% rename from src/QANCollection/QANCollection_Common.cxx rename to src/Draw/TKQADraw/QANCollection/QANCollection_Common.cxx diff --git a/src/QANCollection/QANCollection_Common.hxx b/src/Draw/TKQADraw/QANCollection/QANCollection_Common.hxx similarity index 100% rename from src/QANCollection/QANCollection_Common.hxx rename to src/Draw/TKQADraw/QANCollection/QANCollection_Common.hxx diff --git a/src/QANCollection/QANCollection_DataMapIteratorOfDataMapOfRealPnt.hxx b/src/Draw/TKQADraw/QANCollection/QANCollection_DataMapIteratorOfDataMapOfRealPnt.hxx similarity index 100% rename from src/QANCollection/QANCollection_DataMapIteratorOfDataMapOfRealPnt.hxx rename to src/Draw/TKQADraw/QANCollection/QANCollection_DataMapIteratorOfDataMapOfRealPnt.hxx diff --git a/src/QANCollection/QANCollection_DataMapOfRealPnt.hxx b/src/Draw/TKQADraw/QANCollection/QANCollection_DataMapOfRealPnt.hxx similarity index 100% rename from src/QANCollection/QANCollection_DataMapOfRealPnt.hxx rename to src/Draw/TKQADraw/QANCollection/QANCollection_DataMapOfRealPnt.hxx diff --git a/src/QANCollection/QANCollection_DoubleMapIteratorOfDoubleMapOfRealInteger.hxx b/src/Draw/TKQADraw/QANCollection/QANCollection_DoubleMapIteratorOfDoubleMapOfRealInteger.hxx similarity index 100% rename from src/QANCollection/QANCollection_DoubleMapIteratorOfDoubleMapOfRealInteger.hxx rename to src/Draw/TKQADraw/QANCollection/QANCollection_DoubleMapIteratorOfDoubleMapOfRealInteger.hxx diff --git a/src/QANCollection/QANCollection_DoubleMapOfRealInteger.hxx b/src/Draw/TKQADraw/QANCollection/QANCollection_DoubleMapOfRealInteger.hxx similarity index 100% rename from src/QANCollection/QANCollection_DoubleMapOfRealInteger.hxx rename to src/Draw/TKQADraw/QANCollection/QANCollection_DoubleMapOfRealInteger.hxx diff --git a/src/QANCollection/QANCollection_Handle.cxx b/src/Draw/TKQADraw/QANCollection/QANCollection_Handle.cxx similarity index 100% rename from src/QANCollection/QANCollection_Handle.cxx rename to src/Draw/TKQADraw/QANCollection/QANCollection_Handle.cxx diff --git a/src/QANCollection/QANCollection_IndexedDataMapOfRealPnt.hxx b/src/Draw/TKQADraw/QANCollection/QANCollection_IndexedDataMapOfRealPnt.hxx similarity index 100% rename from src/QANCollection/QANCollection_IndexedDataMapOfRealPnt.hxx rename to src/Draw/TKQADraw/QANCollection/QANCollection_IndexedDataMapOfRealPnt.hxx diff --git a/src/QANCollection/QANCollection_ListIteratorOfListOfPnt.hxx b/src/Draw/TKQADraw/QANCollection/QANCollection_ListIteratorOfListOfPnt.hxx similarity index 100% rename from src/QANCollection/QANCollection_ListIteratorOfListOfPnt.hxx rename to src/Draw/TKQADraw/QANCollection/QANCollection_ListIteratorOfListOfPnt.hxx diff --git a/src/QANCollection/QANCollection_ListOfPnt.hxx b/src/Draw/TKQADraw/QANCollection/QANCollection_ListOfPnt.hxx similarity index 100% rename from src/QANCollection/QANCollection_ListOfPnt.hxx rename to src/Draw/TKQADraw/QANCollection/QANCollection_ListOfPnt.hxx diff --git a/src/QANCollection/QANCollection_Perf.cxx b/src/Draw/TKQADraw/QANCollection/QANCollection_Perf.cxx similarity index 100% rename from src/QANCollection/QANCollection_Perf.cxx rename to src/Draw/TKQADraw/QANCollection/QANCollection_Perf.cxx diff --git a/src/QANCollection/QANCollection_Stl.cxx b/src/Draw/TKQADraw/QANCollection/QANCollection_Stl.cxx similarity index 100% rename from src/QANCollection/QANCollection_Stl.cxx rename to src/Draw/TKQADraw/QANCollection/QANCollection_Stl.cxx diff --git a/src/QANCollection/QANCollection_Test.cxx b/src/Draw/TKQADraw/QANCollection/QANCollection_Test.cxx similarity index 100% rename from src/QANCollection/QANCollection_Test.cxx rename to src/Draw/TKQADraw/QANCollection/QANCollection_Test.cxx diff --git a/src/TKTObjDRAW/CMakeLists.txt b/src/Draw/TKTObjDRAW/CMakeLists.txt similarity index 100% rename from src/TKTObjDRAW/CMakeLists.txt rename to src/Draw/TKTObjDRAW/CMakeLists.txt diff --git a/src/Draw/TKTObjDRAW/EXTERNLIB.cmake b/src/Draw/TKTObjDRAW/EXTERNLIB.cmake new file mode 100644 index 0000000000..49e7cc47a2 --- /dev/null +++ b/src/Draw/TKTObjDRAW/EXTERNLIB.cmake @@ -0,0 +1,12 @@ +# External dependencies for TKTObjDRAW +set(OCCT_TKTObjDRAW_EXTERNAL_LIBS + TKernel + TKCDF + TKLCAF + TKTObj + TKMath + TKDraw + TKDCAF + TKBinTObj + TKXmlTObj +) diff --git a/src/Draw/TKTObjDRAW/FILES.cmake b/src/Draw/TKTObjDRAW/FILES.cmake new file mode 100644 index 0000000000..72addb34fc --- /dev/null +++ b/src/Draw/TKTObjDRAW/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKTObjDRAW +set(OCCT_TKTObjDRAW_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKTObjDRAW_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/Draw/TKTObjDRAW/PACKAGES.cmake b/src/Draw/TKTObjDRAW/PACKAGES.cmake new file mode 100644 index 0000000000..6e17272477 --- /dev/null +++ b/src/Draw/TKTObjDRAW/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKTObjDRAW toolkit +set(OCCT_TKTObjDRAW_LIST_OF_PACKAGES + TObjDRAW +) diff --git a/src/Draw/TKTObjDRAW/TObjDRAW/FILES.cmake b/src/Draw/TKTObjDRAW/TObjDRAW/FILES.cmake new file mode 100644 index 0000000000..d7bdc0f0db --- /dev/null +++ b/src/Draw/TKTObjDRAW/TObjDRAW/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TObjDRAW package +set(OCCT_TObjDRAW_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TObjDRAW_FILES + TObjDRAW.cxx + TObjDRAW.hxx +) diff --git a/src/TObjDRAW/TObjDRAW.cxx b/src/Draw/TKTObjDRAW/TObjDRAW/TObjDRAW.cxx similarity index 100% rename from src/TObjDRAW/TObjDRAW.cxx rename to src/Draw/TKTObjDRAW/TObjDRAW/TObjDRAW.cxx diff --git a/src/TObjDRAW/TObjDRAW.hxx b/src/Draw/TKTObjDRAW/TObjDRAW/TObjDRAW.hxx similarity index 100% rename from src/TObjDRAW/TObjDRAW.hxx rename to src/Draw/TKTObjDRAW/TObjDRAW/TObjDRAW.hxx diff --git a/src/BOPTest/BOPTest.cxx b/src/Draw/TKTopTest/BOPTest/BOPTest.cxx similarity index 100% rename from src/BOPTest/BOPTest.cxx rename to src/Draw/TKTopTest/BOPTest/BOPTest.cxx diff --git a/src/BOPTest/BOPTest.hxx b/src/Draw/TKTopTest/BOPTest/BOPTest.hxx similarity index 100% rename from src/BOPTest/BOPTest.hxx rename to src/Draw/TKTopTest/BOPTest/BOPTest.hxx diff --git a/src/BOPTest/BOPTest_APICommands.cxx b/src/Draw/TKTopTest/BOPTest/BOPTest_APICommands.cxx similarity index 100% rename from src/BOPTest/BOPTest_APICommands.cxx rename to src/Draw/TKTopTest/BOPTest/BOPTest_APICommands.cxx diff --git a/src/BOPTest/BOPTest_BOPCommands.cxx b/src/Draw/TKTopTest/BOPTest/BOPTest_BOPCommands.cxx similarity index 100% rename from src/BOPTest/BOPTest_BOPCommands.cxx rename to src/Draw/TKTopTest/BOPTest/BOPTest_BOPCommands.cxx diff --git a/src/BOPTest/BOPTest_CellsCommands.cxx b/src/Draw/TKTopTest/BOPTest/BOPTest_CellsCommands.cxx similarity index 100% rename from src/BOPTest/BOPTest_CellsCommands.cxx rename to src/Draw/TKTopTest/BOPTest/BOPTest_CellsCommands.cxx diff --git a/src/BOPTest/BOPTest_CheckCommands.cxx b/src/Draw/TKTopTest/BOPTest/BOPTest_CheckCommands.cxx similarity index 100% rename from src/BOPTest/BOPTest_CheckCommands.cxx rename to src/Draw/TKTopTest/BOPTest/BOPTest_CheckCommands.cxx diff --git a/src/BOPTest/BOPTest_DebugCommands.cxx b/src/Draw/TKTopTest/BOPTest/BOPTest_DebugCommands.cxx similarity index 100% rename from src/BOPTest/BOPTest_DebugCommands.cxx rename to src/Draw/TKTopTest/BOPTest/BOPTest_DebugCommands.cxx diff --git a/src/BOPTest/BOPTest_DrawableShape.cxx b/src/Draw/TKTopTest/BOPTest/BOPTest_DrawableShape.cxx similarity index 100% rename from src/BOPTest/BOPTest_DrawableShape.cxx rename to src/Draw/TKTopTest/BOPTest/BOPTest_DrawableShape.cxx diff --git a/src/BOPTest/BOPTest_DrawableShape.hxx b/src/Draw/TKTopTest/BOPTest/BOPTest_DrawableShape.hxx similarity index 100% rename from src/BOPTest/BOPTest_DrawableShape.hxx rename to src/Draw/TKTopTest/BOPTest/BOPTest_DrawableShape.hxx diff --git a/src/BOPTest/BOPTest_LowCommands.cxx b/src/Draw/TKTopTest/BOPTest/BOPTest_LowCommands.cxx similarity index 100% rename from src/BOPTest/BOPTest_LowCommands.cxx rename to src/Draw/TKTopTest/BOPTest/BOPTest_LowCommands.cxx diff --git a/src/BOPTest/BOPTest_MkConnectedCommands.cxx b/src/Draw/TKTopTest/BOPTest/BOPTest_MkConnectedCommands.cxx similarity index 100% rename from src/BOPTest/BOPTest_MkConnectedCommands.cxx rename to src/Draw/TKTopTest/BOPTest/BOPTest_MkConnectedCommands.cxx diff --git a/src/BOPTest/BOPTest_ObjCommands.cxx b/src/Draw/TKTopTest/BOPTest/BOPTest_ObjCommands.cxx similarity index 100% rename from src/BOPTest/BOPTest_ObjCommands.cxx rename to src/Draw/TKTopTest/BOPTest/BOPTest_ObjCommands.cxx diff --git a/src/BOPTest/BOPTest_Objects.cxx b/src/Draw/TKTopTest/BOPTest/BOPTest_Objects.cxx similarity index 100% rename from src/BOPTest/BOPTest_Objects.cxx rename to src/Draw/TKTopTest/BOPTest/BOPTest_Objects.cxx diff --git a/src/BOPTest/BOPTest_Objects.hxx b/src/Draw/TKTopTest/BOPTest/BOPTest_Objects.hxx similarity index 100% rename from src/BOPTest/BOPTest_Objects.hxx rename to src/Draw/TKTopTest/BOPTest/BOPTest_Objects.hxx diff --git a/src/BOPTest/BOPTest_OptionCommands.cxx b/src/Draw/TKTopTest/BOPTest/BOPTest_OptionCommands.cxx similarity index 100% rename from src/BOPTest/BOPTest_OptionCommands.cxx rename to src/Draw/TKTopTest/BOPTest/BOPTest_OptionCommands.cxx diff --git a/src/BOPTest/BOPTest_PartitionCommands.cxx b/src/Draw/TKTopTest/BOPTest/BOPTest_PartitionCommands.cxx similarity index 100% rename from src/BOPTest/BOPTest_PartitionCommands.cxx rename to src/Draw/TKTopTest/BOPTest/BOPTest_PartitionCommands.cxx diff --git a/src/BOPTest/BOPTest_PeriodicityCommands.cxx b/src/Draw/TKTopTest/BOPTest/BOPTest_PeriodicityCommands.cxx similarity index 100% rename from src/BOPTest/BOPTest_PeriodicityCommands.cxx rename to src/Draw/TKTopTest/BOPTest/BOPTest_PeriodicityCommands.cxx diff --git a/src/BOPTest/BOPTest_RemoveFeaturesCommands.cxx b/src/Draw/TKTopTest/BOPTest/BOPTest_RemoveFeaturesCommands.cxx similarity index 100% rename from src/BOPTest/BOPTest_RemoveFeaturesCommands.cxx rename to src/Draw/TKTopTest/BOPTest/BOPTest_RemoveFeaturesCommands.cxx diff --git a/src/BOPTest/BOPTest_TolerCommands.cxx b/src/Draw/TKTopTest/BOPTest/BOPTest_TolerCommands.cxx similarity index 100% rename from src/BOPTest/BOPTest_TolerCommands.cxx rename to src/Draw/TKTopTest/BOPTest/BOPTest_TolerCommands.cxx diff --git a/src/BOPTest/BOPTest_UtilityCommands.cxx b/src/Draw/TKTopTest/BOPTest/BOPTest_UtilityCommands.cxx similarity index 100% rename from src/BOPTest/BOPTest_UtilityCommands.cxx rename to src/Draw/TKTopTest/BOPTest/BOPTest_UtilityCommands.cxx diff --git a/src/Draw/TKTopTest/BOPTest/FILES.cmake b/src/Draw/TKTopTest/BOPTest/FILES.cmake new file mode 100644 index 0000000000..bcc4cb1dbc --- /dev/null +++ b/src/Draw/TKTopTest/BOPTest/FILES.cmake @@ -0,0 +1,25 @@ +# Source files for BOPTest package +set(OCCT_BOPTest_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BOPTest_FILES + BOPTest.cxx + BOPTest.hxx + BOPTest_APICommands.cxx + BOPTest_BOPCommands.cxx + BOPTest_CheckCommands.cxx + BOPTest_DrawableShape.cxx + BOPTest_DrawableShape.hxx + BOPTest_LowCommands.cxx + BOPTest_MkConnectedCommands.cxx + BOPTest_ObjCommands.cxx + BOPTest_Objects.cxx + BOPTest_Objects.hxx + BOPTest_OptionCommands.cxx + BOPTest_PartitionCommands.cxx + BOPTest_PeriodicityCommands.cxx + BOPTest_TolerCommands.cxx + BOPTest_DebugCommands.cxx + BOPTest_CellsCommands.cxx + BOPTest_RemoveFeaturesCommands.cxx + BOPTest_UtilityCommands.cxx +) diff --git a/src/BRepTest/BRepTest.cxx b/src/Draw/TKTopTest/BRepTest/BRepTest.cxx similarity index 100% rename from src/BRepTest/BRepTest.cxx rename to src/Draw/TKTopTest/BRepTest/BRepTest.cxx diff --git a/src/BRepTest/BRepTest.hxx b/src/Draw/TKTopTest/BRepTest/BRepTest.hxx similarity index 100% rename from src/BRepTest/BRepTest.hxx rename to src/Draw/TKTopTest/BRepTest/BRepTest.hxx diff --git a/src/BRepTest/BRepTest_BasicCommands.cxx b/src/Draw/TKTopTest/BRepTest/BRepTest_BasicCommands.cxx similarity index 100% rename from src/BRepTest/BRepTest_BasicCommands.cxx rename to src/Draw/TKTopTest/BRepTest/BRepTest_BasicCommands.cxx diff --git a/src/BRepTest/BRepTest_ChamferCommands.cxx b/src/Draw/TKTopTest/BRepTest/BRepTest_ChamferCommands.cxx similarity index 100% rename from src/BRepTest/BRepTest_ChamferCommands.cxx rename to src/Draw/TKTopTest/BRepTest/BRepTest_ChamferCommands.cxx diff --git a/src/BRepTest/BRepTest_CheckCommands.cxx b/src/Draw/TKTopTest/BRepTest/BRepTest_CheckCommands.cxx similarity index 100% rename from src/BRepTest/BRepTest_CheckCommands.cxx rename to src/Draw/TKTopTest/BRepTest/BRepTest_CheckCommands.cxx diff --git a/src/BRepTest/BRepTest_CurveCommands.cxx b/src/Draw/TKTopTest/BRepTest/BRepTest_CurveCommands.cxx similarity index 100% rename from src/BRepTest/BRepTest_CurveCommands.cxx rename to src/Draw/TKTopTest/BRepTest/BRepTest_CurveCommands.cxx diff --git a/src/BRepTest/BRepTest_DraftAngleCommands.cxx b/src/Draw/TKTopTest/BRepTest/BRepTest_DraftAngleCommands.cxx similarity index 100% rename from src/BRepTest/BRepTest_DraftAngleCommands.cxx rename to src/Draw/TKTopTest/BRepTest/BRepTest_DraftAngleCommands.cxx diff --git a/src/BRepTest/BRepTest_DrawableHistory.cxx b/src/Draw/TKTopTest/BRepTest/BRepTest_DrawableHistory.cxx similarity index 100% rename from src/BRepTest/BRepTest_DrawableHistory.cxx rename to src/Draw/TKTopTest/BRepTest/BRepTest_DrawableHistory.cxx diff --git a/src/BRepTest/BRepTest_DrawableHistory.hxx b/src/Draw/TKTopTest/BRepTest/BRepTest_DrawableHistory.hxx similarity index 100% rename from src/BRepTest/BRepTest_DrawableHistory.hxx rename to src/Draw/TKTopTest/BRepTest/BRepTest_DrawableHistory.hxx diff --git a/src/BRepTest/BRepTest_ExtremaCommands.cxx b/src/Draw/TKTopTest/BRepTest/BRepTest_ExtremaCommands.cxx similarity index 100% rename from src/BRepTest/BRepTest_ExtremaCommands.cxx rename to src/Draw/TKTopTest/BRepTest/BRepTest_ExtremaCommands.cxx diff --git a/src/BRepTest/BRepTest_FeatureCommands.cxx b/src/Draw/TKTopTest/BRepTest/BRepTest_FeatureCommands.cxx similarity index 100% rename from src/BRepTest/BRepTest_FeatureCommands.cxx rename to src/Draw/TKTopTest/BRepTest/BRepTest_FeatureCommands.cxx diff --git a/src/BRepTest/BRepTest_Fillet2DCommands.cxx b/src/Draw/TKTopTest/BRepTest/BRepTest_Fillet2DCommands.cxx similarity index 100% rename from src/BRepTest/BRepTest_Fillet2DCommands.cxx rename to src/Draw/TKTopTest/BRepTest/BRepTest_Fillet2DCommands.cxx diff --git a/src/BRepTest/BRepTest_FilletCommands.cxx b/src/Draw/TKTopTest/BRepTest/BRepTest_FilletCommands.cxx similarity index 100% rename from src/BRepTest/BRepTest_FilletCommands.cxx rename to src/Draw/TKTopTest/BRepTest/BRepTest_FilletCommands.cxx diff --git a/src/BRepTest/BRepTest_FillingCommands.cxx b/src/Draw/TKTopTest/BRepTest/BRepTest_FillingCommands.cxx similarity index 100% rename from src/BRepTest/BRepTest_FillingCommands.cxx rename to src/Draw/TKTopTest/BRepTest/BRepTest_FillingCommands.cxx diff --git a/src/BRepTest/BRepTest_GPropCommands.cxx b/src/Draw/TKTopTest/BRepTest/BRepTest_GPropCommands.cxx similarity index 100% rename from src/BRepTest/BRepTest_GPropCommands.cxx rename to src/Draw/TKTopTest/BRepTest/BRepTest_GPropCommands.cxx diff --git a/src/BRepTest/BRepTest_HistoryCommands.cxx b/src/Draw/TKTopTest/BRepTest/BRepTest_HistoryCommands.cxx similarity index 100% rename from src/BRepTest/BRepTest_HistoryCommands.cxx rename to src/Draw/TKTopTest/BRepTest/BRepTest_HistoryCommands.cxx diff --git a/src/BRepTest/BRepTest_MatCommands.cxx b/src/Draw/TKTopTest/BRepTest/BRepTest_MatCommands.cxx similarity index 100% rename from src/BRepTest/BRepTest_MatCommands.cxx rename to src/Draw/TKTopTest/BRepTest/BRepTest_MatCommands.cxx diff --git a/src/BRepTest/BRepTest_Objects.cxx b/src/Draw/TKTopTest/BRepTest/BRepTest_Objects.cxx similarity index 100% rename from src/BRepTest/BRepTest_Objects.cxx rename to src/Draw/TKTopTest/BRepTest/BRepTest_Objects.cxx diff --git a/src/BRepTest/BRepTest_Objects.hxx b/src/Draw/TKTopTest/BRepTest/BRepTest_Objects.hxx similarity index 100% rename from src/BRepTest/BRepTest_Objects.hxx rename to src/Draw/TKTopTest/BRepTest/BRepTest_Objects.hxx diff --git a/src/BRepTest/BRepTest_OtherCommands.cxx b/src/Draw/TKTopTest/BRepTest/BRepTest_OtherCommands.cxx similarity index 100% rename from src/BRepTest/BRepTest_OtherCommands.cxx rename to src/Draw/TKTopTest/BRepTest/BRepTest_OtherCommands.cxx diff --git a/src/BRepTest/BRepTest_PrimitiveCommands.cxx b/src/Draw/TKTopTest/BRepTest/BRepTest_PrimitiveCommands.cxx similarity index 100% rename from src/BRepTest/BRepTest_PrimitiveCommands.cxx rename to src/Draw/TKTopTest/BRepTest/BRepTest_PrimitiveCommands.cxx diff --git a/src/BRepTest/BRepTest_ProjectionCommands.cxx b/src/Draw/TKTopTest/BRepTest/BRepTest_ProjectionCommands.cxx similarity index 100% rename from src/BRepTest/BRepTest_ProjectionCommands.cxx rename to src/Draw/TKTopTest/BRepTest/BRepTest_ProjectionCommands.cxx diff --git a/src/BRepTest/BRepTest_SurfaceCommands.cxx b/src/Draw/TKTopTest/BRepTest/BRepTest_SurfaceCommands.cxx similarity index 100% rename from src/BRepTest/BRepTest_SurfaceCommands.cxx rename to src/Draw/TKTopTest/BRepTest/BRepTest_SurfaceCommands.cxx diff --git a/src/BRepTest/BRepTest_SweepCommands.cxx b/src/Draw/TKTopTest/BRepTest/BRepTest_SweepCommands.cxx similarity index 100% rename from src/BRepTest/BRepTest_SweepCommands.cxx rename to src/Draw/TKTopTest/BRepTest/BRepTest_SweepCommands.cxx diff --git a/src/BRepTest/BRepTest_TopologyCommands.cxx b/src/Draw/TKTopTest/BRepTest/BRepTest_TopologyCommands.cxx similarity index 100% rename from src/BRepTest/BRepTest_TopologyCommands.cxx rename to src/Draw/TKTopTest/BRepTest/BRepTest_TopologyCommands.cxx diff --git a/src/Draw/TKTopTest/BRepTest/FILES.cmake b/src/Draw/TKTopTest/BRepTest/FILES.cmake new file mode 100644 index 0000000000..60433f2d4b --- /dev/null +++ b/src/Draw/TKTopTest/BRepTest/FILES.cmake @@ -0,0 +1,30 @@ +# Source files for BRepTest package +set(OCCT_BRepTest_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepTest_FILES + BRepTest.cxx + BRepTest.hxx + BRepTest_BasicCommands.cxx + BRepTest_ChamferCommands.cxx + BRepTest_CheckCommands.cxx + BRepTest_CurveCommands.cxx + BRepTest_DraftAngleCommands.cxx + BRepTest_DrawableHistory.cxx + BRepTest_DrawableHistory.hxx + BRepTest_ExtremaCommands.cxx + BRepTest_FeatureCommands.cxx + BRepTest_Fillet2DCommands.cxx + BRepTest_FilletCommands.cxx + BRepTest_FillingCommands.cxx + BRepTest_GPropCommands.cxx + BRepTest_HistoryCommands.cxx + BRepTest_MatCommands.cxx + BRepTest_Objects.cxx + BRepTest_Objects.hxx + BRepTest_OtherCommands.cxx + BRepTest_PrimitiveCommands.cxx + BRepTest_ProjectionCommands.cxx + BRepTest_SurfaceCommands.cxx + BRepTest_SweepCommands.cxx + BRepTest_TopologyCommands.cxx +) diff --git a/src/TKTopTest/CMakeLists.txt b/src/Draw/TKTopTest/CMakeLists.txt similarity index 100% rename from src/TKTopTest/CMakeLists.txt rename to src/Draw/TKTopTest/CMakeLists.txt diff --git a/src/DrawFairCurve/DrawFairCurve_Batten.cxx b/src/Draw/TKTopTest/DrawFairCurve/DrawFairCurve_Batten.cxx similarity index 100% rename from src/DrawFairCurve/DrawFairCurve_Batten.cxx rename to src/Draw/TKTopTest/DrawFairCurve/DrawFairCurve_Batten.cxx diff --git a/src/DrawFairCurve/DrawFairCurve_Batten.hxx b/src/Draw/TKTopTest/DrawFairCurve/DrawFairCurve_Batten.hxx similarity index 100% rename from src/DrawFairCurve/DrawFairCurve_Batten.hxx rename to src/Draw/TKTopTest/DrawFairCurve/DrawFairCurve_Batten.hxx diff --git a/src/DrawFairCurve/DrawFairCurve_MinimalVariation.cxx b/src/Draw/TKTopTest/DrawFairCurve/DrawFairCurve_MinimalVariation.cxx similarity index 100% rename from src/DrawFairCurve/DrawFairCurve_MinimalVariation.cxx rename to src/Draw/TKTopTest/DrawFairCurve/DrawFairCurve_MinimalVariation.cxx diff --git a/src/DrawFairCurve/DrawFairCurve_MinimalVariation.hxx b/src/Draw/TKTopTest/DrawFairCurve/DrawFairCurve_MinimalVariation.hxx similarity index 100% rename from src/DrawFairCurve/DrawFairCurve_MinimalVariation.hxx rename to src/Draw/TKTopTest/DrawFairCurve/DrawFairCurve_MinimalVariation.hxx diff --git a/src/Draw/TKTopTest/DrawFairCurve/FILES.cmake b/src/Draw/TKTopTest/DrawFairCurve/FILES.cmake new file mode 100644 index 0000000000..60a1a9b7eb --- /dev/null +++ b/src/Draw/TKTopTest/DrawFairCurve/FILES.cmake @@ -0,0 +1,9 @@ +# Source files for DrawFairCurve package +set(OCCT_DrawFairCurve_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_DrawFairCurve_FILES + DrawFairCurve_Batten.cxx + DrawFairCurve_Batten.hxx + DrawFairCurve_MinimalVariation.cxx + DrawFairCurve_MinimalVariation.hxx +) diff --git a/src/Draw/TKTopTest/EXTERNLIB.cmake b/src/Draw/TKTopTest/EXTERNLIB.cmake new file mode 100644 index 0000000000..20d8a923b2 --- /dev/null +++ b/src/Draw/TKTopTest/EXTERNLIB.cmake @@ -0,0 +1,23 @@ +# External dependencies for TKTopTest +set(OCCT_TKTopTest_EXTERNAL_LIBS + TKBRep + TKGeomAlgo + TKTopAlgo + TKernel + TKMath + TKBO + TKG2d + TKG3d + TKDraw + TKHLR + TKGeomBase + TKMesh + TKService + TKV3d + TKFillet + TKPrim + TKBool + TKOffset + TKFeat + TKShHealing +) diff --git a/src/Draw/TKTopTest/FILES.cmake b/src/Draw/TKTopTest/FILES.cmake new file mode 100644 index 0000000000..063dfee22f --- /dev/null +++ b/src/Draw/TKTopTest/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKTopTest +set(OCCT_TKTopTest_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKTopTest_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/Draw/TKTopTest/GeometryTest/FILES.cmake b/src/Draw/TKTopTest/GeometryTest/FILES.cmake new file mode 100644 index 0000000000..9afd6aa5ba --- /dev/null +++ b/src/Draw/TKTopTest/GeometryTest/FILES.cmake @@ -0,0 +1,18 @@ +# Source files for GeometryTest package +set(OCCT_GeometryTest_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_GeometryTest_FILES + GeometryTest.cxx + GeometryTest.hxx + GeometryTest_APICommands.cxx + GeometryTest_ConstraintCommands.cxx + GeometryTest_ContinuityCommands.cxx + GeometryTest_CurveCommands.cxx + GeometryTest_CurveTanCommands.cxx + GeometryTest_DrawableQualifiedCurve2d.cxx + GeometryTest_DrawableQualifiedCurve2d.hxx + GeometryTest_FairCurveCommands.cxx + GeometryTest_PolyCommands.cxx + GeometryTest_SurfaceCommands.cxx + GeometryTest_TestProjCommands.cxx +) diff --git a/src/GeometryTest/GeometryTest.cxx b/src/Draw/TKTopTest/GeometryTest/GeometryTest.cxx similarity index 100% rename from src/GeometryTest/GeometryTest.cxx rename to src/Draw/TKTopTest/GeometryTest/GeometryTest.cxx diff --git a/src/GeometryTest/GeometryTest.hxx b/src/Draw/TKTopTest/GeometryTest/GeometryTest.hxx similarity index 100% rename from src/GeometryTest/GeometryTest.hxx rename to src/Draw/TKTopTest/GeometryTest/GeometryTest.hxx diff --git a/src/GeometryTest/GeometryTest_APICommands.cxx b/src/Draw/TKTopTest/GeometryTest/GeometryTest_APICommands.cxx similarity index 100% rename from src/GeometryTest/GeometryTest_APICommands.cxx rename to src/Draw/TKTopTest/GeometryTest/GeometryTest_APICommands.cxx diff --git a/src/GeometryTest/GeometryTest_ConstraintCommands.cxx b/src/Draw/TKTopTest/GeometryTest/GeometryTest_ConstraintCommands.cxx similarity index 100% rename from src/GeometryTest/GeometryTest_ConstraintCommands.cxx rename to src/Draw/TKTopTest/GeometryTest/GeometryTest_ConstraintCommands.cxx diff --git a/src/GeometryTest/GeometryTest_ContinuityCommands.cxx b/src/Draw/TKTopTest/GeometryTest/GeometryTest_ContinuityCommands.cxx similarity index 100% rename from src/GeometryTest/GeometryTest_ContinuityCommands.cxx rename to src/Draw/TKTopTest/GeometryTest/GeometryTest_ContinuityCommands.cxx diff --git a/src/GeometryTest/GeometryTest_CurveCommands.cxx b/src/Draw/TKTopTest/GeometryTest/GeometryTest_CurveCommands.cxx similarity index 100% rename from src/GeometryTest/GeometryTest_CurveCommands.cxx rename to src/Draw/TKTopTest/GeometryTest/GeometryTest_CurveCommands.cxx diff --git a/src/GeometryTest/GeometryTest_CurveTanCommands.cxx b/src/Draw/TKTopTest/GeometryTest/GeometryTest_CurveTanCommands.cxx similarity index 100% rename from src/GeometryTest/GeometryTest_CurveTanCommands.cxx rename to src/Draw/TKTopTest/GeometryTest/GeometryTest_CurveTanCommands.cxx diff --git a/src/GeometryTest/GeometryTest_DrawableQualifiedCurve2d.cxx b/src/Draw/TKTopTest/GeometryTest/GeometryTest_DrawableQualifiedCurve2d.cxx similarity index 100% rename from src/GeometryTest/GeometryTest_DrawableQualifiedCurve2d.cxx rename to src/Draw/TKTopTest/GeometryTest/GeometryTest_DrawableQualifiedCurve2d.cxx diff --git a/src/GeometryTest/GeometryTest_DrawableQualifiedCurve2d.hxx b/src/Draw/TKTopTest/GeometryTest/GeometryTest_DrawableQualifiedCurve2d.hxx similarity index 100% rename from src/GeometryTest/GeometryTest_DrawableQualifiedCurve2d.hxx rename to src/Draw/TKTopTest/GeometryTest/GeometryTest_DrawableQualifiedCurve2d.hxx diff --git a/src/GeometryTest/GeometryTest_FairCurveCommands.cxx b/src/Draw/TKTopTest/GeometryTest/GeometryTest_FairCurveCommands.cxx similarity index 100% rename from src/GeometryTest/GeometryTest_FairCurveCommands.cxx rename to src/Draw/TKTopTest/GeometryTest/GeometryTest_FairCurveCommands.cxx diff --git a/src/GeometryTest/GeometryTest_PolyCommands.cxx b/src/Draw/TKTopTest/GeometryTest/GeometryTest_PolyCommands.cxx similarity index 100% rename from src/GeometryTest/GeometryTest_PolyCommands.cxx rename to src/Draw/TKTopTest/GeometryTest/GeometryTest_PolyCommands.cxx diff --git a/src/GeometryTest/GeometryTest_SurfaceCommands.cxx b/src/Draw/TKTopTest/GeometryTest/GeometryTest_SurfaceCommands.cxx similarity index 100% rename from src/GeometryTest/GeometryTest_SurfaceCommands.cxx rename to src/Draw/TKTopTest/GeometryTest/GeometryTest_SurfaceCommands.cxx diff --git a/src/GeometryTest/GeometryTest_TestProjCommands.cxx b/src/Draw/TKTopTest/GeometryTest/GeometryTest_TestProjCommands.cxx similarity index 100% rename from src/GeometryTest/GeometryTest_TestProjCommands.cxx rename to src/Draw/TKTopTest/GeometryTest/GeometryTest_TestProjCommands.cxx diff --git a/src/Draw/TKTopTest/GeomliteTest/FILES.cmake b/src/Draw/TKTopTest/GeomliteTest/FILES.cmake new file mode 100644 index 0000000000..7e8b2d4a38 --- /dev/null +++ b/src/Draw/TKTopTest/GeomliteTest/FILES.cmake @@ -0,0 +1,12 @@ +# Source files for GeomliteTest package +set(OCCT_GeomliteTest_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_GeomliteTest_FILES + GeomliteTest.cxx + GeomliteTest.hxx + GeomliteTest_API2dCommands.cxx + GeomliteTest_ApproxCommands.cxx + GeomliteTest_CurveCommands.cxx + GeomliteTest_ModificationCommands.cxx + GeomliteTest_SurfaceCommands.cxx +) diff --git a/src/GeomliteTest/GeomliteTest.cxx b/src/Draw/TKTopTest/GeomliteTest/GeomliteTest.cxx similarity index 100% rename from src/GeomliteTest/GeomliteTest.cxx rename to src/Draw/TKTopTest/GeomliteTest/GeomliteTest.cxx diff --git a/src/GeomliteTest/GeomliteTest.hxx b/src/Draw/TKTopTest/GeomliteTest/GeomliteTest.hxx similarity index 100% rename from src/GeomliteTest/GeomliteTest.hxx rename to src/Draw/TKTopTest/GeomliteTest/GeomliteTest.hxx diff --git a/src/GeomliteTest/GeomliteTest_API2dCommands.cxx b/src/Draw/TKTopTest/GeomliteTest/GeomliteTest_API2dCommands.cxx similarity index 100% rename from src/GeomliteTest/GeomliteTest_API2dCommands.cxx rename to src/Draw/TKTopTest/GeomliteTest/GeomliteTest_API2dCommands.cxx diff --git a/src/GeomliteTest/GeomliteTest_ApproxCommands.cxx b/src/Draw/TKTopTest/GeomliteTest/GeomliteTest_ApproxCommands.cxx similarity index 100% rename from src/GeomliteTest/GeomliteTest_ApproxCommands.cxx rename to src/Draw/TKTopTest/GeomliteTest/GeomliteTest_ApproxCommands.cxx diff --git a/src/GeomliteTest/GeomliteTest_CurveCommands.cxx b/src/Draw/TKTopTest/GeomliteTest/GeomliteTest_CurveCommands.cxx similarity index 100% rename from src/GeomliteTest/GeomliteTest_CurveCommands.cxx rename to src/Draw/TKTopTest/GeomliteTest/GeomliteTest_CurveCommands.cxx diff --git a/src/GeomliteTest/GeomliteTest_ModificationCommands.cxx b/src/Draw/TKTopTest/GeomliteTest/GeomliteTest_ModificationCommands.cxx similarity index 100% rename from src/GeomliteTest/GeomliteTest_ModificationCommands.cxx rename to src/Draw/TKTopTest/GeomliteTest/GeomliteTest_ModificationCommands.cxx diff --git a/src/GeomliteTest/GeomliteTest_SurfaceCommands.cxx b/src/Draw/TKTopTest/GeomliteTest/GeomliteTest_SurfaceCommands.cxx similarity index 100% rename from src/GeomliteTest/GeomliteTest_SurfaceCommands.cxx rename to src/Draw/TKTopTest/GeomliteTest/GeomliteTest_SurfaceCommands.cxx diff --git a/src/Draw/TKTopTest/HLRTest/FILES.cmake b/src/Draw/TKTopTest/HLRTest/FILES.cmake new file mode 100644 index 0000000000..de2c8b7e5c --- /dev/null +++ b/src/Draw/TKTopTest/HLRTest/FILES.cmake @@ -0,0 +1,20 @@ +# Source files for HLRTest package +set(OCCT_HLRTest_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_HLRTest_FILES + HLRTest.cxx + HLRTest.hxx + HLRTest_DrawableEdgeTool.cxx + HLRTest_DrawableEdgeTool.hxx + HLRTest_DrawablePolyEdgeTool.cxx + HLRTest_DrawablePolyEdgeTool.hxx + HLRTest_DrawablePolyEdgeTool.lxx + HLRTest_OutLiner.cxx + HLRTest_OutLiner.hxx + HLRTest_OutLiner.lxx + HLRTest_Projector.cxx + HLRTest_Projector.hxx + HLRTest_ShapeData.cxx + HLRTest_ShapeData.hxx + HLRTest_ShapeData.lxx +) diff --git a/src/HLRTest/HLRTest.cxx b/src/Draw/TKTopTest/HLRTest/HLRTest.cxx similarity index 100% rename from src/HLRTest/HLRTest.cxx rename to src/Draw/TKTopTest/HLRTest/HLRTest.cxx diff --git a/src/HLRTest/HLRTest.hxx b/src/Draw/TKTopTest/HLRTest/HLRTest.hxx similarity index 100% rename from src/HLRTest/HLRTest.hxx rename to src/Draw/TKTopTest/HLRTest/HLRTest.hxx diff --git a/src/HLRTest/HLRTest_DrawableEdgeTool.cxx b/src/Draw/TKTopTest/HLRTest/HLRTest_DrawableEdgeTool.cxx similarity index 100% rename from src/HLRTest/HLRTest_DrawableEdgeTool.cxx rename to src/Draw/TKTopTest/HLRTest/HLRTest_DrawableEdgeTool.cxx diff --git a/src/HLRTest/HLRTest_DrawableEdgeTool.hxx b/src/Draw/TKTopTest/HLRTest/HLRTest_DrawableEdgeTool.hxx similarity index 100% rename from src/HLRTest/HLRTest_DrawableEdgeTool.hxx rename to src/Draw/TKTopTest/HLRTest/HLRTest_DrawableEdgeTool.hxx diff --git a/src/HLRTest/HLRTest_DrawablePolyEdgeTool.cxx b/src/Draw/TKTopTest/HLRTest/HLRTest_DrawablePolyEdgeTool.cxx similarity index 100% rename from src/HLRTest/HLRTest_DrawablePolyEdgeTool.cxx rename to src/Draw/TKTopTest/HLRTest/HLRTest_DrawablePolyEdgeTool.cxx diff --git a/src/HLRTest/HLRTest_DrawablePolyEdgeTool.hxx b/src/Draw/TKTopTest/HLRTest/HLRTest_DrawablePolyEdgeTool.hxx similarity index 100% rename from src/HLRTest/HLRTest_DrawablePolyEdgeTool.hxx rename to src/Draw/TKTopTest/HLRTest/HLRTest_DrawablePolyEdgeTool.hxx diff --git a/src/HLRTest/HLRTest_DrawablePolyEdgeTool.lxx b/src/Draw/TKTopTest/HLRTest/HLRTest_DrawablePolyEdgeTool.lxx similarity index 100% rename from src/HLRTest/HLRTest_DrawablePolyEdgeTool.lxx rename to src/Draw/TKTopTest/HLRTest/HLRTest_DrawablePolyEdgeTool.lxx diff --git a/src/HLRTest/HLRTest_OutLiner.cxx b/src/Draw/TKTopTest/HLRTest/HLRTest_OutLiner.cxx similarity index 100% rename from src/HLRTest/HLRTest_OutLiner.cxx rename to src/Draw/TKTopTest/HLRTest/HLRTest_OutLiner.cxx diff --git a/src/HLRTest/HLRTest_OutLiner.hxx b/src/Draw/TKTopTest/HLRTest/HLRTest_OutLiner.hxx similarity index 100% rename from src/HLRTest/HLRTest_OutLiner.hxx rename to src/Draw/TKTopTest/HLRTest/HLRTest_OutLiner.hxx diff --git a/src/HLRTest/HLRTest_OutLiner.lxx b/src/Draw/TKTopTest/HLRTest/HLRTest_OutLiner.lxx similarity index 100% rename from src/HLRTest/HLRTest_OutLiner.lxx rename to src/Draw/TKTopTest/HLRTest/HLRTest_OutLiner.lxx diff --git a/src/HLRTest/HLRTest_Projector.cxx b/src/Draw/TKTopTest/HLRTest/HLRTest_Projector.cxx similarity index 100% rename from src/HLRTest/HLRTest_Projector.cxx rename to src/Draw/TKTopTest/HLRTest/HLRTest_Projector.cxx diff --git a/src/HLRTest/HLRTest_Projector.hxx b/src/Draw/TKTopTest/HLRTest/HLRTest_Projector.hxx similarity index 100% rename from src/HLRTest/HLRTest_Projector.hxx rename to src/Draw/TKTopTest/HLRTest/HLRTest_Projector.hxx diff --git a/src/HLRTest/HLRTest_ShapeData.cxx b/src/Draw/TKTopTest/HLRTest/HLRTest_ShapeData.cxx similarity index 100% rename from src/HLRTest/HLRTest_ShapeData.cxx rename to src/Draw/TKTopTest/HLRTest/HLRTest_ShapeData.cxx diff --git a/src/HLRTest/HLRTest_ShapeData.hxx b/src/Draw/TKTopTest/HLRTest/HLRTest_ShapeData.hxx similarity index 100% rename from src/HLRTest/HLRTest_ShapeData.hxx rename to src/Draw/TKTopTest/HLRTest/HLRTest_ShapeData.hxx diff --git a/src/HLRTest/HLRTest_ShapeData.lxx b/src/Draw/TKTopTest/HLRTest/HLRTest_ShapeData.lxx similarity index 100% rename from src/HLRTest/HLRTest_ShapeData.lxx rename to src/Draw/TKTopTest/HLRTest/HLRTest_ShapeData.lxx diff --git a/src/Draw/TKTopTest/MeshTest/FILES.cmake b/src/Draw/TKTopTest/MeshTest/FILES.cmake new file mode 100644 index 0000000000..28b8bd82fd --- /dev/null +++ b/src/Draw/TKTopTest/MeshTest/FILES.cmake @@ -0,0 +1,11 @@ +# Source files for MeshTest package +set(OCCT_MeshTest_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_MeshTest_FILES + MeshTest.cxx + MeshTest.hxx + MeshTest_CheckTopology.cxx + MeshTest_CheckTopology.hxx + MeshTest_PluginCommands.cxx + MeshTest_Debug.cxx +) diff --git a/src/MeshTest/MeshTest.cxx b/src/Draw/TKTopTest/MeshTest/MeshTest.cxx similarity index 100% rename from src/MeshTest/MeshTest.cxx rename to src/Draw/TKTopTest/MeshTest/MeshTest.cxx diff --git a/src/MeshTest/MeshTest.hxx b/src/Draw/TKTopTest/MeshTest/MeshTest.hxx similarity index 100% rename from src/MeshTest/MeshTest.hxx rename to src/Draw/TKTopTest/MeshTest/MeshTest.hxx diff --git a/src/MeshTest/MeshTest_CheckTopology.cxx b/src/Draw/TKTopTest/MeshTest/MeshTest_CheckTopology.cxx similarity index 100% rename from src/MeshTest/MeshTest_CheckTopology.cxx rename to src/Draw/TKTopTest/MeshTest/MeshTest_CheckTopology.cxx diff --git a/src/MeshTest/MeshTest_CheckTopology.hxx b/src/Draw/TKTopTest/MeshTest/MeshTest_CheckTopology.hxx similarity index 100% rename from src/MeshTest/MeshTest_CheckTopology.hxx rename to src/Draw/TKTopTest/MeshTest/MeshTest_CheckTopology.hxx diff --git a/src/MeshTest/MeshTest_Debug.cxx b/src/Draw/TKTopTest/MeshTest/MeshTest_Debug.cxx similarity index 100% rename from src/MeshTest/MeshTest_Debug.cxx rename to src/Draw/TKTopTest/MeshTest/MeshTest_Debug.cxx diff --git a/src/MeshTest/MeshTest_PluginCommands.cxx b/src/Draw/TKTopTest/MeshTest/MeshTest_PluginCommands.cxx similarity index 100% rename from src/MeshTest/MeshTest_PluginCommands.cxx rename to src/Draw/TKTopTest/MeshTest/MeshTest_PluginCommands.cxx diff --git a/src/Draw/TKTopTest/PACKAGES.cmake b/src/Draw/TKTopTest/PACKAGES.cmake new file mode 100644 index 0000000000..3cf33cc087 --- /dev/null +++ b/src/Draw/TKTopTest/PACKAGES.cmake @@ -0,0 +1,11 @@ +# Auto-generated list of packages for TKTopTest toolkit +set(OCCT_TKTopTest_LIST_OF_PACKAGES + BRepTest + GeometryTest + HLRTest + MeshTest + GeomliteTest + DrawFairCurve + BOPTest + SWDRAW +) diff --git a/src/Draw/TKTopTest/SWDRAW/FILES.cmake b/src/Draw/TKTopTest/SWDRAW/FILES.cmake new file mode 100644 index 0000000000..beffc570cc --- /dev/null +++ b/src/Draw/TKTopTest/SWDRAW/FILES.cmake @@ -0,0 +1,23 @@ +# Source files for SWDRAW package +set(OCCT_SWDRAW_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_SWDRAW_FILES + SWDRAW.cxx + SWDRAW.hxx + SWDRAW_ShapeAnalysis.cxx + SWDRAW_ShapeAnalysis.hxx + SWDRAW_ShapeCustom.cxx + SWDRAW_ShapeCustom.hxx + SWDRAW_ShapeExtend.cxx + SWDRAW_ShapeExtend.hxx + SWDRAW_ShapeFix.cxx + SWDRAW_ShapeFix.hxx + SWDRAW_ShapeProcess.cxx + SWDRAW_ShapeProcess.hxx + SWDRAW_ShapeProcessAPI.cxx + SWDRAW_ShapeProcessAPI.hxx + SWDRAW_ShapeTool.cxx + SWDRAW_ShapeTool.hxx + SWDRAW_ShapeUpgrade.cxx + SWDRAW_ShapeUpgrade.hxx +) diff --git a/src/SWDRAW/SWDRAW.cxx b/src/Draw/TKTopTest/SWDRAW/SWDRAW.cxx similarity index 100% rename from src/SWDRAW/SWDRAW.cxx rename to src/Draw/TKTopTest/SWDRAW/SWDRAW.cxx diff --git a/src/SWDRAW/SWDRAW.hxx b/src/Draw/TKTopTest/SWDRAW/SWDRAW.hxx similarity index 100% rename from src/SWDRAW/SWDRAW.hxx rename to src/Draw/TKTopTest/SWDRAW/SWDRAW.hxx diff --git a/src/SWDRAW/SWDRAW_ShapeAnalysis.cxx b/src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeAnalysis.cxx similarity index 100% rename from src/SWDRAW/SWDRAW_ShapeAnalysis.cxx rename to src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeAnalysis.cxx diff --git a/src/SWDRAW/SWDRAW_ShapeAnalysis.hxx b/src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeAnalysis.hxx similarity index 100% rename from src/SWDRAW/SWDRAW_ShapeAnalysis.hxx rename to src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeAnalysis.hxx diff --git a/src/SWDRAW/SWDRAW_ShapeCustom.cxx b/src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeCustom.cxx similarity index 100% rename from src/SWDRAW/SWDRAW_ShapeCustom.cxx rename to src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeCustom.cxx diff --git a/src/SWDRAW/SWDRAW_ShapeCustom.hxx b/src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeCustom.hxx similarity index 100% rename from src/SWDRAW/SWDRAW_ShapeCustom.hxx rename to src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeCustom.hxx diff --git a/src/SWDRAW/SWDRAW_ShapeExtend.cxx b/src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeExtend.cxx similarity index 100% rename from src/SWDRAW/SWDRAW_ShapeExtend.cxx rename to src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeExtend.cxx diff --git a/src/SWDRAW/SWDRAW_ShapeExtend.hxx b/src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeExtend.hxx similarity index 100% rename from src/SWDRAW/SWDRAW_ShapeExtend.hxx rename to src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeExtend.hxx diff --git a/src/SWDRAW/SWDRAW_ShapeFix.cxx b/src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeFix.cxx similarity index 100% rename from src/SWDRAW/SWDRAW_ShapeFix.cxx rename to src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeFix.cxx diff --git a/src/SWDRAW/SWDRAW_ShapeFix.hxx b/src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeFix.hxx similarity index 100% rename from src/SWDRAW/SWDRAW_ShapeFix.hxx rename to src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeFix.hxx diff --git a/src/SWDRAW/SWDRAW_ShapeProcess.cxx b/src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeProcess.cxx similarity index 100% rename from src/SWDRAW/SWDRAW_ShapeProcess.cxx rename to src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeProcess.cxx diff --git a/src/SWDRAW/SWDRAW_ShapeProcess.hxx b/src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeProcess.hxx similarity index 100% rename from src/SWDRAW/SWDRAW_ShapeProcess.hxx rename to src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeProcess.hxx diff --git a/src/SWDRAW/SWDRAW_ShapeProcessAPI.cxx b/src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeProcessAPI.cxx similarity index 100% rename from src/SWDRAW/SWDRAW_ShapeProcessAPI.cxx rename to src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeProcessAPI.cxx diff --git a/src/SWDRAW/SWDRAW_ShapeProcessAPI.hxx b/src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeProcessAPI.hxx similarity index 100% rename from src/SWDRAW/SWDRAW_ShapeProcessAPI.hxx rename to src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeProcessAPI.hxx diff --git a/src/SWDRAW/SWDRAW_ShapeTool.cxx b/src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeTool.cxx similarity index 100% rename from src/SWDRAW/SWDRAW_ShapeTool.cxx rename to src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeTool.cxx diff --git a/src/SWDRAW/SWDRAW_ShapeTool.hxx b/src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeTool.hxx similarity index 100% rename from src/SWDRAW/SWDRAW_ShapeTool.hxx rename to src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeTool.hxx diff --git a/src/SWDRAW/SWDRAW_ShapeUpgrade.cxx b/src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeUpgrade.cxx similarity index 100% rename from src/SWDRAW/SWDRAW_ShapeUpgrade.cxx rename to src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeUpgrade.cxx diff --git a/src/SWDRAW/SWDRAW_ShapeUpgrade.hxx b/src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeUpgrade.hxx similarity index 100% rename from src/SWDRAW/SWDRAW_ShapeUpgrade.hxx rename to src/Draw/TKTopTest/SWDRAW/SWDRAW_ShapeUpgrade.hxx diff --git a/src/TKViewerTest/CMakeLists.txt b/src/Draw/TKViewerTest/CMakeLists.txt similarity index 100% rename from src/TKViewerTest/CMakeLists.txt rename to src/Draw/TKViewerTest/CMakeLists.txt diff --git a/src/Draw/TKViewerTest/EXTERNLIB.cmake b/src/Draw/TKViewerTest/EXTERNLIB.cmake new file mode 100644 index 0000000000..045e4d5183 --- /dev/null +++ b/src/Draw/TKViewerTest/EXTERNLIB.cmake @@ -0,0 +1,30 @@ +# External dependencies for TKViewerTest +set(OCCT_TKViewerTest_EXTERNAL_LIBS + TKGeomBase + TKFillet + TKBRep + TKTopAlgo + TKHLR + TKernel + TKMath + TKService + TKShHealing + TKBool + TKPrim + TKGeomAlgo + TKG2d + TKTopTest + TKG3d + TKOffset + TKMesh + TKV3d + TKDraw + CSF_TclLibs + CSF_XwLibs + CSF_user32 + CSF_gdi32 + CSF_objc + CSF_Appkit + CSF_IOKit + CSF_FREETYPE +) diff --git a/src/Draw/TKViewerTest/FILES.cmake b/src/Draw/TKViewerTest/FILES.cmake new file mode 100644 index 0000000000..4a5bb533c2 --- /dev/null +++ b/src/Draw/TKViewerTest/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKViewerTest +set(OCCT_TKViewerTest_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKViewerTest_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/Draw/TKViewerTest/PACKAGES.cmake b/src/Draw/TKViewerTest/PACKAGES.cmake new file mode 100644 index 0000000000..77eb239fa0 --- /dev/null +++ b/src/Draw/TKViewerTest/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKViewerTest toolkit +set(OCCT_TKViewerTest_LIST_OF_PACKAGES + ViewerTest +) diff --git a/src/Draw/TKViewerTest/ViewerTest/FILES.cmake b/src/Draw/TKViewerTest/ViewerTest/FILES.cmake new file mode 100644 index 0000000000..c4fa117dda --- /dev/null +++ b/src/Draw/TKViewerTest/ViewerTest/FILES.cmake @@ -0,0 +1,25 @@ +# Source files for ViewerTest package +set(OCCT_ViewerTest_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_ViewerTest_FILES + ViewerTest.cxx + ViewerTest.hxx + ViewerTest_AutoUpdater.cxx + ViewerTest_AutoUpdater.hxx + ViewerTest_CmdParser.cxx + ViewerTest_CmdParser.hxx + ViewerTest_ContinuousRedrawer.cxx + ViewerTest_ContinuousRedrawer.hxx + ViewerTest_DoubleMapIteratorOfDoubleMapOfInteractiveAndName.hxx + ViewerTest_DoubleMapOfInteractiveAndName.hxx + ViewerTest_EventManager.cxx + ViewerTest_EventManager.hxx + ViewerTest_FilletCommands.cxx + ViewerTest_ObjectCommands.cxx + ViewerTest_OpenGlCommands.cxx + ViewerTest_RelationCommands.cxx + ViewerTest_ViewerCommands.cxx + ViewerTest_ViewerCommands_1.mm + ViewerTest_V3dView.cxx + ViewerTest_V3dView.hxx +) diff --git a/src/ViewerTest/ViewerTest.cxx b/src/Draw/TKViewerTest/ViewerTest/ViewerTest.cxx similarity index 100% rename from src/ViewerTest/ViewerTest.cxx rename to src/Draw/TKViewerTest/ViewerTest/ViewerTest.cxx diff --git a/src/ViewerTest/ViewerTest.hxx b/src/Draw/TKViewerTest/ViewerTest/ViewerTest.hxx similarity index 100% rename from src/ViewerTest/ViewerTest.hxx rename to src/Draw/TKViewerTest/ViewerTest/ViewerTest.hxx diff --git a/src/ViewerTest/ViewerTest_AutoUpdater.cxx b/src/Draw/TKViewerTest/ViewerTest/ViewerTest_AutoUpdater.cxx similarity index 100% rename from src/ViewerTest/ViewerTest_AutoUpdater.cxx rename to src/Draw/TKViewerTest/ViewerTest/ViewerTest_AutoUpdater.cxx diff --git a/src/ViewerTest/ViewerTest_AutoUpdater.hxx b/src/Draw/TKViewerTest/ViewerTest/ViewerTest_AutoUpdater.hxx similarity index 100% rename from src/ViewerTest/ViewerTest_AutoUpdater.hxx rename to src/Draw/TKViewerTest/ViewerTest/ViewerTest_AutoUpdater.hxx diff --git a/src/ViewerTest/ViewerTest_CmdParser.cxx b/src/Draw/TKViewerTest/ViewerTest/ViewerTest_CmdParser.cxx similarity index 100% rename from src/ViewerTest/ViewerTest_CmdParser.cxx rename to src/Draw/TKViewerTest/ViewerTest/ViewerTest_CmdParser.cxx diff --git a/src/ViewerTest/ViewerTest_CmdParser.hxx b/src/Draw/TKViewerTest/ViewerTest/ViewerTest_CmdParser.hxx similarity index 100% rename from src/ViewerTest/ViewerTest_CmdParser.hxx rename to src/Draw/TKViewerTest/ViewerTest/ViewerTest_CmdParser.hxx diff --git a/src/ViewerTest/ViewerTest_ContinuousRedrawer.cxx b/src/Draw/TKViewerTest/ViewerTest/ViewerTest_ContinuousRedrawer.cxx similarity index 100% rename from src/ViewerTest/ViewerTest_ContinuousRedrawer.cxx rename to src/Draw/TKViewerTest/ViewerTest/ViewerTest_ContinuousRedrawer.cxx diff --git a/src/ViewerTest/ViewerTest_ContinuousRedrawer.hxx b/src/Draw/TKViewerTest/ViewerTest/ViewerTest_ContinuousRedrawer.hxx similarity index 100% rename from src/ViewerTest/ViewerTest_ContinuousRedrawer.hxx rename to src/Draw/TKViewerTest/ViewerTest/ViewerTest_ContinuousRedrawer.hxx diff --git a/src/ViewerTest/ViewerTest_DoubleMapIteratorOfDoubleMapOfInteractiveAndName.hxx b/src/Draw/TKViewerTest/ViewerTest/ViewerTest_DoubleMapIteratorOfDoubleMapOfInteractiveAndName.hxx similarity index 100% rename from src/ViewerTest/ViewerTest_DoubleMapIteratorOfDoubleMapOfInteractiveAndName.hxx rename to src/Draw/TKViewerTest/ViewerTest/ViewerTest_DoubleMapIteratorOfDoubleMapOfInteractiveAndName.hxx diff --git a/src/ViewerTest/ViewerTest_DoubleMapOfInteractiveAndName.hxx b/src/Draw/TKViewerTest/ViewerTest/ViewerTest_DoubleMapOfInteractiveAndName.hxx similarity index 100% rename from src/ViewerTest/ViewerTest_DoubleMapOfInteractiveAndName.hxx rename to src/Draw/TKViewerTest/ViewerTest/ViewerTest_DoubleMapOfInteractiveAndName.hxx diff --git a/src/ViewerTest/ViewerTest_EventManager.cxx b/src/Draw/TKViewerTest/ViewerTest/ViewerTest_EventManager.cxx similarity index 100% rename from src/ViewerTest/ViewerTest_EventManager.cxx rename to src/Draw/TKViewerTest/ViewerTest/ViewerTest_EventManager.cxx diff --git a/src/ViewerTest/ViewerTest_EventManager.hxx b/src/Draw/TKViewerTest/ViewerTest/ViewerTest_EventManager.hxx similarity index 100% rename from src/ViewerTest/ViewerTest_EventManager.hxx rename to src/Draw/TKViewerTest/ViewerTest/ViewerTest_EventManager.hxx diff --git a/src/ViewerTest/ViewerTest_FilletCommands.cxx b/src/Draw/TKViewerTest/ViewerTest/ViewerTest_FilletCommands.cxx similarity index 100% rename from src/ViewerTest/ViewerTest_FilletCommands.cxx rename to src/Draw/TKViewerTest/ViewerTest/ViewerTest_FilletCommands.cxx diff --git a/src/ViewerTest/ViewerTest_ObjectCommands.cxx b/src/Draw/TKViewerTest/ViewerTest/ViewerTest_ObjectCommands.cxx similarity index 100% rename from src/ViewerTest/ViewerTest_ObjectCommands.cxx rename to src/Draw/TKViewerTest/ViewerTest/ViewerTest_ObjectCommands.cxx diff --git a/src/ViewerTest/ViewerTest_OpenGlCommands.cxx b/src/Draw/TKViewerTest/ViewerTest/ViewerTest_OpenGlCommands.cxx similarity index 100% rename from src/ViewerTest/ViewerTest_OpenGlCommands.cxx rename to src/Draw/TKViewerTest/ViewerTest/ViewerTest_OpenGlCommands.cxx diff --git a/src/ViewerTest/ViewerTest_RelationCommands.cxx b/src/Draw/TKViewerTest/ViewerTest/ViewerTest_RelationCommands.cxx similarity index 100% rename from src/ViewerTest/ViewerTest_RelationCommands.cxx rename to src/Draw/TKViewerTest/ViewerTest/ViewerTest_RelationCommands.cxx diff --git a/src/ViewerTest/ViewerTest_V3dView.cxx b/src/Draw/TKViewerTest/ViewerTest/ViewerTest_V3dView.cxx similarity index 100% rename from src/ViewerTest/ViewerTest_V3dView.cxx rename to src/Draw/TKViewerTest/ViewerTest/ViewerTest_V3dView.cxx diff --git a/src/ViewerTest/ViewerTest_V3dView.hxx b/src/Draw/TKViewerTest/ViewerTest/ViewerTest_V3dView.hxx similarity index 100% rename from src/ViewerTest/ViewerTest_V3dView.hxx rename to src/Draw/TKViewerTest/ViewerTest/ViewerTest_V3dView.hxx diff --git a/src/ViewerTest/ViewerTest_ViewerCommands.cxx b/src/Draw/TKViewerTest/ViewerTest/ViewerTest_ViewerCommands.cxx similarity index 100% rename from src/ViewerTest/ViewerTest_ViewerCommands.cxx rename to src/Draw/TKViewerTest/ViewerTest/ViewerTest_ViewerCommands.cxx diff --git a/src/ViewerTest/ViewerTest_ViewerCommands_1.mm b/src/Draw/TKViewerTest/ViewerTest/ViewerTest_ViewerCommands_1.mm similarity index 100% rename from src/ViewerTest/ViewerTest_ViewerCommands_1.mm rename to src/Draw/TKViewerTest/ViewerTest/ViewerTest_ViewerCommands_1.mm diff --git a/src/TKXDEDRAW/CMakeLists.txt b/src/Draw/TKXDEDRAW/CMakeLists.txt similarity index 100% rename from src/TKXDEDRAW/CMakeLists.txt rename to src/Draw/TKXDEDRAW/CMakeLists.txt diff --git a/src/Draw/TKXDEDRAW/EXTERNLIB.cmake b/src/Draw/TKXDEDRAW/EXTERNLIB.cmake new file mode 100644 index 0000000000..11dc0c6afa --- /dev/null +++ b/src/Draw/TKXDEDRAW/EXTERNLIB.cmake @@ -0,0 +1,34 @@ +# External dependencies for TKXDEDRAW +set(OCCT_TKXDEDRAW_EXTERNAL_LIBS + TKDE + TKCDF + TKBRep + TKXCAF + TKernel + TKV3d + TKMath + TKService + TKXSBase + TKG2d + TKCAF + TKVCAF + TKDraw + TKTopAlgo + TKLCAF + TKG3d + TKRWMesh + TKDEOBJ + TKDEGLTF + TKDEPLY + TKDESTL + TKMesh + TKXSDRAW + TKDECascade + TKDEIGES + TKDESTEP + TKDCAF + TKViewerTest + TKBinXCAF + TKXmlXCAF + TKDEVRML +) diff --git a/src/Draw/TKXDEDRAW/FILES.cmake b/src/Draw/TKXDEDRAW/FILES.cmake new file mode 100644 index 0000000000..bb16189c35 --- /dev/null +++ b/src/Draw/TKXDEDRAW/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKXDEDRAW +set(OCCT_TKXDEDRAW_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKXDEDRAW_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/Draw/TKXDEDRAW/PACKAGES.cmake b/src/Draw/TKXDEDRAW/PACKAGES.cmake new file mode 100644 index 0000000000..8004bc8d38 --- /dev/null +++ b/src/Draw/TKXDEDRAW/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKXDEDRAW toolkit +set(OCCT_TKXDEDRAW_LIST_OF_PACKAGES + XDEDRAW +) diff --git a/src/Draw/TKXDEDRAW/XDEDRAW/FILES.cmake b/src/Draw/TKXDEDRAW/XDEDRAW/FILES.cmake new file mode 100644 index 0000000000..f763e83dd0 --- /dev/null +++ b/src/Draw/TKXDEDRAW/XDEDRAW/FILES.cmake @@ -0,0 +1,23 @@ +# Source files for XDEDRAW package +set(OCCT_XDEDRAW_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XDEDRAW_FILES + XDEDRAW.cxx + XDEDRAW.hxx + XDEDRAW_Colors.cxx + XDEDRAW_Colors.hxx + XDEDRAW_Common.cxx + XDEDRAW_Common.hxx + XDEDRAW_Layers.cxx + XDEDRAW_Layers.hxx + XDEDRAW_Props.cxx + XDEDRAW_Props.hxx + XDEDRAW_GDTs.cxx + XDEDRAW_GDTs.hxx + XDEDRAW_Shapes.cxx + XDEDRAW_Shapes.hxx + XDEDRAW_Views.cxx + XDEDRAW_Views.hxx + XDEDRAW_Notes.cxx + XDEDRAW_Notes.hxx +) diff --git a/src/XDEDRAW/XDEDRAW.cxx b/src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW.cxx similarity index 100% rename from src/XDEDRAW/XDEDRAW.cxx rename to src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW.cxx diff --git a/src/XDEDRAW/XDEDRAW.hxx b/src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW.hxx similarity index 100% rename from src/XDEDRAW/XDEDRAW.hxx rename to src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW.hxx diff --git a/src/XDEDRAW/XDEDRAW_Colors.cxx b/src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Colors.cxx similarity index 100% rename from src/XDEDRAW/XDEDRAW_Colors.cxx rename to src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Colors.cxx diff --git a/src/XDEDRAW/XDEDRAW_Colors.hxx b/src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Colors.hxx similarity index 100% rename from src/XDEDRAW/XDEDRAW_Colors.hxx rename to src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Colors.hxx diff --git a/src/XDEDRAW/XDEDRAW_Common.cxx b/src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Common.cxx similarity index 100% rename from src/XDEDRAW/XDEDRAW_Common.cxx rename to src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Common.cxx diff --git a/src/XDEDRAW/XDEDRAW_Common.hxx b/src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Common.hxx similarity index 100% rename from src/XDEDRAW/XDEDRAW_Common.hxx rename to src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Common.hxx diff --git a/src/XDEDRAW/XDEDRAW_GDTs.cxx b/src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_GDTs.cxx similarity index 100% rename from src/XDEDRAW/XDEDRAW_GDTs.cxx rename to src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_GDTs.cxx diff --git a/src/XDEDRAW/XDEDRAW_GDTs.hxx b/src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_GDTs.hxx similarity index 100% rename from src/XDEDRAW/XDEDRAW_GDTs.hxx rename to src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_GDTs.hxx diff --git a/src/XDEDRAW/XDEDRAW_Layers.cxx b/src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Layers.cxx similarity index 100% rename from src/XDEDRAW/XDEDRAW_Layers.cxx rename to src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Layers.cxx diff --git a/src/XDEDRAW/XDEDRAW_Layers.hxx b/src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Layers.hxx similarity index 100% rename from src/XDEDRAW/XDEDRAW_Layers.hxx rename to src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Layers.hxx diff --git a/src/XDEDRAW/XDEDRAW_Notes.cxx b/src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Notes.cxx similarity index 100% rename from src/XDEDRAW/XDEDRAW_Notes.cxx rename to src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Notes.cxx diff --git a/src/XDEDRAW/XDEDRAW_Notes.hxx b/src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Notes.hxx similarity index 100% rename from src/XDEDRAW/XDEDRAW_Notes.hxx rename to src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Notes.hxx diff --git a/src/XDEDRAW/XDEDRAW_Props.cxx b/src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Props.cxx similarity index 100% rename from src/XDEDRAW/XDEDRAW_Props.cxx rename to src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Props.cxx diff --git a/src/XDEDRAW/XDEDRAW_Props.hxx b/src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Props.hxx similarity index 100% rename from src/XDEDRAW/XDEDRAW_Props.hxx rename to src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Props.hxx diff --git a/src/XDEDRAW/XDEDRAW_Shapes.cxx b/src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Shapes.cxx similarity index 100% rename from src/XDEDRAW/XDEDRAW_Shapes.cxx rename to src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Shapes.cxx diff --git a/src/XDEDRAW/XDEDRAW_Shapes.hxx b/src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Shapes.hxx similarity index 100% rename from src/XDEDRAW/XDEDRAW_Shapes.hxx rename to src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Shapes.hxx diff --git a/src/XDEDRAW/XDEDRAW_Views.cxx b/src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Views.cxx similarity index 100% rename from src/XDEDRAW/XDEDRAW_Views.cxx rename to src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Views.cxx diff --git a/src/XDEDRAW/XDEDRAW_Views.hxx b/src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Views.hxx similarity index 100% rename from src/XDEDRAW/XDEDRAW_Views.hxx rename to src/Draw/TKXDEDRAW/XDEDRAW/XDEDRAW_Views.hxx diff --git a/src/TKXSDRAW/CMakeLists.txt b/src/Draw/TKXSDRAW/CMakeLists.txt similarity index 100% rename from src/TKXSDRAW/CMakeLists.txt rename to src/Draw/TKXSDRAW/CMakeLists.txt diff --git a/src/Draw/TKXSDRAW/EXTERNLIB.cmake b/src/Draw/TKXSDRAW/EXTERNLIB.cmake new file mode 100644 index 0000000000..ceebed1ffc --- /dev/null +++ b/src/Draw/TKXSDRAW/EXTERNLIB.cmake @@ -0,0 +1,21 @@ +# External dependencies for TKXSDRAW +set(OCCT_TKXSDRAW_EXTERNAL_LIBS + TKBRep + TKV3d + TKMath + TKernel + TKService + TKXSBase + TKMeshVS + TKG3d + TKViewerTest + TKG2d + TKTopAlgo + TKGeomBase + TKGeomAlgo + TKMesh + TKDraw + TKLCAF + TKDCAF + TKXCAF +) diff --git a/src/Draw/TKXSDRAW/FILES.cmake b/src/Draw/TKXSDRAW/FILES.cmake new file mode 100644 index 0000000000..c5dec4a7c4 --- /dev/null +++ b/src/Draw/TKXSDRAW/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKXSDRAW +set(OCCT_TKXSDRAW_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKXSDRAW_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/Draw/TKXSDRAW/PACKAGES.cmake b/src/Draw/TKXSDRAW/PACKAGES.cmake new file mode 100644 index 0000000000..ca624d0146 --- /dev/null +++ b/src/Draw/TKXSDRAW/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKXSDRAW toolkit +set(OCCT_TKXSDRAW_LIST_OF_PACKAGES + XSDRAW +) diff --git a/src/Draw/TKXSDRAW/XSDRAW/FILES.cmake b/src/Draw/TKXSDRAW/XSDRAW/FILES.cmake new file mode 100644 index 0000000000..a793da6338 --- /dev/null +++ b/src/Draw/TKXSDRAW/XSDRAW/FILES.cmake @@ -0,0 +1,11 @@ +# Source files for XSDRAW package +set(OCCT_XSDRAW_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XSDRAW_FILES + XSDRAW.cxx + XSDRAW.hxx + XSDRAW_Functions.cxx + XSDRAW_Functions.hxx + XSDRAW_Vars.cxx + XSDRAW_Vars.hxx +) diff --git a/src/XSDRAW/XSDRAW.cxx b/src/Draw/TKXSDRAW/XSDRAW/XSDRAW.cxx similarity index 100% rename from src/XSDRAW/XSDRAW.cxx rename to src/Draw/TKXSDRAW/XSDRAW/XSDRAW.cxx diff --git a/src/XSDRAW/XSDRAW.hxx b/src/Draw/TKXSDRAW/XSDRAW/XSDRAW.hxx similarity index 100% rename from src/XSDRAW/XSDRAW.hxx rename to src/Draw/TKXSDRAW/XSDRAW/XSDRAW.hxx diff --git a/src/XSDRAW/XSDRAW_Functions.cxx b/src/Draw/TKXSDRAW/XSDRAW/XSDRAW_Functions.cxx similarity index 100% rename from src/XSDRAW/XSDRAW_Functions.cxx rename to src/Draw/TKXSDRAW/XSDRAW/XSDRAW_Functions.cxx diff --git a/src/XSDRAW/XSDRAW_Functions.hxx b/src/Draw/TKXSDRAW/XSDRAW/XSDRAW_Functions.hxx similarity index 100% rename from src/XSDRAW/XSDRAW_Functions.hxx rename to src/Draw/TKXSDRAW/XSDRAW/XSDRAW_Functions.hxx diff --git a/src/XSDRAW/XSDRAW_Vars.cxx b/src/Draw/TKXSDRAW/XSDRAW/XSDRAW_Vars.cxx similarity index 100% rename from src/XSDRAW/XSDRAW_Vars.cxx rename to src/Draw/TKXSDRAW/XSDRAW/XSDRAW_Vars.cxx diff --git a/src/XSDRAW/XSDRAW_Vars.hxx b/src/Draw/TKXSDRAW/XSDRAW/XSDRAW_Vars.hxx similarity index 100% rename from src/XSDRAW/XSDRAW_Vars.hxx rename to src/Draw/TKXSDRAW/XSDRAW/XSDRAW_Vars.hxx diff --git a/src/TKXSDRAWDE/CMakeLists.txt b/src/Draw/TKXSDRAWDE/CMakeLists.txt similarity index 100% rename from src/TKXSDRAWDE/CMakeLists.txt rename to src/Draw/TKXSDRAWDE/CMakeLists.txt diff --git a/src/Draw/TKXSDRAWDE/EXTERNLIB.cmake b/src/Draw/TKXSDRAWDE/EXTERNLIB.cmake new file mode 100644 index 0000000000..b5a361555e --- /dev/null +++ b/src/Draw/TKXSDRAWDE/EXTERNLIB.cmake @@ -0,0 +1,26 @@ +# External dependencies for TKXSDRAWDE +set(OCCT_TKXSDRAWDE_EXTERNAL_LIBS + TKBRep + TKV3d + TKMath + TKernel + TKService + TKXSBase + TKMeshVS + TKG3d + TKViewerTest + TKG2d + TKTopAlgo + TKGeomBase + TKGeomAlgo + TKMesh + TKDraw + TKLCAF + TKDCAF + TKXCAF + TKRWMesh + TKXSBase + TKDECascade + TKDE + TKXSDRAW +) diff --git a/src/Draw/TKXSDRAWDE/FILES.cmake b/src/Draw/TKXSDRAWDE/FILES.cmake new file mode 100644 index 0000000000..d3f0e07a84 --- /dev/null +++ b/src/Draw/TKXSDRAWDE/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKXSDRAWDE +set(OCCT_TKXSDRAWDE_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKXSDRAWDE_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/Draw/TKXSDRAWDE/PACKAGES.cmake b/src/Draw/TKXSDRAWDE/PACKAGES.cmake new file mode 100644 index 0000000000..7bebcf765c --- /dev/null +++ b/src/Draw/TKXSDRAWDE/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKXSDRAWDE toolkit +set(OCCT_TKXSDRAWDE_LIST_OF_PACKAGES + XSDRAWDE +) diff --git a/src/Draw/TKXSDRAWDE/XSDRAWDE/FILES.cmake b/src/Draw/TKXSDRAWDE/XSDRAWDE/FILES.cmake new file mode 100644 index 0000000000..ba2f8034f7 --- /dev/null +++ b/src/Draw/TKXSDRAWDE/XSDRAWDE/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for XSDRAWDE package +set(OCCT_XSDRAWDE_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XSDRAWDE_FILES + XSDRAWDE.cxx + XSDRAWDE.hxx +) diff --git a/src/XSDRAWDE/XSDRAWDE.cxx b/src/Draw/TKXSDRAWDE/XSDRAWDE/XSDRAWDE.cxx similarity index 100% rename from src/XSDRAWDE/XSDRAWDE.cxx rename to src/Draw/TKXSDRAWDE/XSDRAWDE/XSDRAWDE.cxx diff --git a/src/XSDRAWDE/XSDRAWDE.hxx b/src/Draw/TKXSDRAWDE/XSDRAWDE/XSDRAWDE.hxx similarity index 100% rename from src/XSDRAWDE/XSDRAWDE.hxx rename to src/Draw/TKXSDRAWDE/XSDRAWDE/XSDRAWDE.hxx diff --git a/src/TKXSDRAWGLTF/CMakeLists.txt b/src/Draw/TKXSDRAWGLTF/CMakeLists.txt similarity index 100% rename from src/TKXSDRAWGLTF/CMakeLists.txt rename to src/Draw/TKXSDRAWGLTF/CMakeLists.txt diff --git a/src/Draw/TKXSDRAWGLTF/EXTERNLIB.cmake b/src/Draw/TKXSDRAWGLTF/EXTERNLIB.cmake new file mode 100644 index 0000000000..96f2859789 --- /dev/null +++ b/src/Draw/TKXSDRAWGLTF/EXTERNLIB.cmake @@ -0,0 +1,24 @@ +# External dependencies for TKXSDRAWGLTF +set(OCCT_TKXSDRAWGLTF_EXTERNAL_LIBS + TKBRep + TKV3d + TKMath + TKernel + TKService + TKXSBase + TKMeshVS + TKG3d + TKViewerTest + TKG2d + TKTopAlgo + TKGeomBase + TKGeomAlgo + TKMesh + TKDraw + TKLCAF + TKDCAF + TKXCAF + TKRWMesh + TKDEGLTF + TKXSDRAW +) diff --git a/src/Draw/TKXSDRAWGLTF/FILES.cmake b/src/Draw/TKXSDRAWGLTF/FILES.cmake new file mode 100644 index 0000000000..e1372b1a95 --- /dev/null +++ b/src/Draw/TKXSDRAWGLTF/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKXSDRAWGLTF +set(OCCT_TKXSDRAWGLTF_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKXSDRAWGLTF_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/Draw/TKXSDRAWGLTF/PACKAGES.cmake b/src/Draw/TKXSDRAWGLTF/PACKAGES.cmake new file mode 100644 index 0000000000..b9957c0198 --- /dev/null +++ b/src/Draw/TKXSDRAWGLTF/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKXSDRAWGLTF toolkit +set(OCCT_TKXSDRAWGLTF_LIST_OF_PACKAGES + XSDRAWGLTF +) diff --git a/src/Draw/TKXSDRAWGLTF/XSDRAWGLTF/FILES.cmake b/src/Draw/TKXSDRAWGLTF/XSDRAWGLTF/FILES.cmake new file mode 100644 index 0000000000..de7fba0c17 --- /dev/null +++ b/src/Draw/TKXSDRAWGLTF/XSDRAWGLTF/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for XSDRAWGLTF package +set(OCCT_XSDRAWGLTF_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XSDRAWGLTF_FILES + XSDRAWGLTF.cxx + XSDRAWGLTF.hxx +) diff --git a/src/XSDRAWGLTF/XSDRAWGLTF.cxx b/src/Draw/TKXSDRAWGLTF/XSDRAWGLTF/XSDRAWGLTF.cxx similarity index 100% rename from src/XSDRAWGLTF/XSDRAWGLTF.cxx rename to src/Draw/TKXSDRAWGLTF/XSDRAWGLTF/XSDRAWGLTF.cxx diff --git a/src/XSDRAWGLTF/XSDRAWGLTF.hxx b/src/Draw/TKXSDRAWGLTF/XSDRAWGLTF/XSDRAWGLTF.hxx similarity index 100% rename from src/XSDRAWGLTF/XSDRAWGLTF.hxx rename to src/Draw/TKXSDRAWGLTF/XSDRAWGLTF/XSDRAWGLTF.hxx diff --git a/src/TKXSDRAWIGES/CMakeLists.txt b/src/Draw/TKXSDRAWIGES/CMakeLists.txt similarity index 100% rename from src/TKXSDRAWIGES/CMakeLists.txt rename to src/Draw/TKXSDRAWIGES/CMakeLists.txt diff --git a/src/Draw/TKXSDRAWIGES/EXTERNLIB.cmake b/src/Draw/TKXSDRAWIGES/EXTERNLIB.cmake new file mode 100644 index 0000000000..e3a40ae28c --- /dev/null +++ b/src/Draw/TKXSDRAWIGES/EXTERNLIB.cmake @@ -0,0 +1,24 @@ +# External dependencies for TKXSDRAWIGES +set(OCCT_TKXSDRAWIGES_EXTERNAL_LIBS + TKBRep + TKV3d + TKMath + TKernel + TKService + TKXSBase + TKMeshVS + TKG3d + TKViewerTest + TKG2d + TKTopAlgo + TKGeomBase + TKGeomAlgo + TKMesh + TKDraw + TKLCAF + TKDCAF + TKXCAF + TKXSBase + TKDEIGES + TKXSDRAW +) diff --git a/src/Draw/TKXSDRAWIGES/FILES.cmake b/src/Draw/TKXSDRAWIGES/FILES.cmake new file mode 100644 index 0000000000..9249644275 --- /dev/null +++ b/src/Draw/TKXSDRAWIGES/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKXSDRAWIGES +set(OCCT_TKXSDRAWIGES_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKXSDRAWIGES_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/Draw/TKXSDRAWIGES/PACKAGES.cmake b/src/Draw/TKXSDRAWIGES/PACKAGES.cmake new file mode 100644 index 0000000000..5c01b35512 --- /dev/null +++ b/src/Draw/TKXSDRAWIGES/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKXSDRAWIGES toolkit +set(OCCT_TKXSDRAWIGES_LIST_OF_PACKAGES + XSDRAWIGES +) diff --git a/src/Draw/TKXSDRAWIGES/XSDRAWIGES/FILES.cmake b/src/Draw/TKXSDRAWIGES/XSDRAWIGES/FILES.cmake new file mode 100644 index 0000000000..951b3075b1 --- /dev/null +++ b/src/Draw/TKXSDRAWIGES/XSDRAWIGES/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for XSDRAWIGES package +set(OCCT_XSDRAWIGES_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XSDRAWIGES_FILES + XSDRAWIGES.cxx + XSDRAWIGES.hxx +) diff --git a/src/XSDRAWIGES/XSDRAWIGES.cxx b/src/Draw/TKXSDRAWIGES/XSDRAWIGES/XSDRAWIGES.cxx similarity index 100% rename from src/XSDRAWIGES/XSDRAWIGES.cxx rename to src/Draw/TKXSDRAWIGES/XSDRAWIGES/XSDRAWIGES.cxx diff --git a/src/XSDRAWIGES/XSDRAWIGES.hxx b/src/Draw/TKXSDRAWIGES/XSDRAWIGES/XSDRAWIGES.hxx similarity index 100% rename from src/XSDRAWIGES/XSDRAWIGES.hxx rename to src/Draw/TKXSDRAWIGES/XSDRAWIGES/XSDRAWIGES.hxx diff --git a/src/TKXSDRAWOBJ/CMakeLists.txt b/src/Draw/TKXSDRAWOBJ/CMakeLists.txt similarity index 100% rename from src/TKXSDRAWOBJ/CMakeLists.txt rename to src/Draw/TKXSDRAWOBJ/CMakeLists.txt diff --git a/src/Draw/TKXSDRAWOBJ/EXTERNLIB.cmake b/src/Draw/TKXSDRAWOBJ/EXTERNLIB.cmake new file mode 100644 index 0000000000..8e68d1192e --- /dev/null +++ b/src/Draw/TKXSDRAWOBJ/EXTERNLIB.cmake @@ -0,0 +1,24 @@ +# External dependencies for TKXSDRAWOBJ +set(OCCT_TKXSDRAWOBJ_EXTERNAL_LIBS + TKBRep + TKV3d + TKMath + TKernel + TKService + TKXSBase + TKMeshVS + TKG3d + TKViewerTest + TKG2d + TKTopAlgo + TKGeomBase + TKGeomAlgo + TKMesh + TKDraw + TKLCAF + TKDCAF + TKXCAF + TKRWMesh + TKDEOBJ + TKXSDRAW +) diff --git a/src/Draw/TKXSDRAWOBJ/FILES.cmake b/src/Draw/TKXSDRAWOBJ/FILES.cmake new file mode 100644 index 0000000000..f5e2c6e6c2 --- /dev/null +++ b/src/Draw/TKXSDRAWOBJ/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKXSDRAWOBJ +set(OCCT_TKXSDRAWOBJ_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKXSDRAWOBJ_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/Draw/TKXSDRAWOBJ/PACKAGES.cmake b/src/Draw/TKXSDRAWOBJ/PACKAGES.cmake new file mode 100644 index 0000000000..cf93950e56 --- /dev/null +++ b/src/Draw/TKXSDRAWOBJ/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKXSDRAWOBJ toolkit +set(OCCT_TKXSDRAWOBJ_LIST_OF_PACKAGES + XSDRAWOBJ +) diff --git a/src/Draw/TKXSDRAWOBJ/XSDRAWOBJ/FILES.cmake b/src/Draw/TKXSDRAWOBJ/XSDRAWOBJ/FILES.cmake new file mode 100644 index 0000000000..11d92640c7 --- /dev/null +++ b/src/Draw/TKXSDRAWOBJ/XSDRAWOBJ/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for XSDRAWOBJ package +set(OCCT_XSDRAWOBJ_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XSDRAWOBJ_FILES + XSDRAWOBJ.cxx + XSDRAWOBJ.hxx +) diff --git a/src/XSDRAWOBJ/XSDRAWOBJ.cxx b/src/Draw/TKXSDRAWOBJ/XSDRAWOBJ/XSDRAWOBJ.cxx similarity index 100% rename from src/XSDRAWOBJ/XSDRAWOBJ.cxx rename to src/Draw/TKXSDRAWOBJ/XSDRAWOBJ/XSDRAWOBJ.cxx diff --git a/src/XSDRAWOBJ/XSDRAWOBJ.hxx b/src/Draw/TKXSDRAWOBJ/XSDRAWOBJ/XSDRAWOBJ.hxx similarity index 100% rename from src/XSDRAWOBJ/XSDRAWOBJ.hxx rename to src/Draw/TKXSDRAWOBJ/XSDRAWOBJ/XSDRAWOBJ.hxx diff --git a/src/TKXSDRAWPLY/CMakeLists.txt b/src/Draw/TKXSDRAWPLY/CMakeLists.txt similarity index 100% rename from src/TKXSDRAWPLY/CMakeLists.txt rename to src/Draw/TKXSDRAWPLY/CMakeLists.txt diff --git a/src/Draw/TKXSDRAWPLY/EXTERNLIB.cmake b/src/Draw/TKXSDRAWPLY/EXTERNLIB.cmake new file mode 100644 index 0000000000..2e25378eea --- /dev/null +++ b/src/Draw/TKXSDRAWPLY/EXTERNLIB.cmake @@ -0,0 +1,24 @@ +# External dependencies for TKXSDRAWPLY +set(OCCT_TKXSDRAWPLY_EXTERNAL_LIBS + TKBRep + TKV3d + TKMath + TKernel + TKService + TKXSBase + TKMeshVS + TKG3d + TKViewerTest + TKG2d + TKTopAlgo + TKGeomBase + TKGeomAlgo + TKMesh + TKDraw + TKLCAF + TKDCAF + TKXCAF + TKRWMesh + TKDEPLY + TKXSDRAW +) diff --git a/src/Draw/TKXSDRAWPLY/FILES.cmake b/src/Draw/TKXSDRAWPLY/FILES.cmake new file mode 100644 index 0000000000..814ca88821 --- /dev/null +++ b/src/Draw/TKXSDRAWPLY/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKXSDRAWPLY +set(OCCT_TKXSDRAWPLY_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKXSDRAWPLY_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/Draw/TKXSDRAWPLY/PACKAGES.cmake b/src/Draw/TKXSDRAWPLY/PACKAGES.cmake new file mode 100644 index 0000000000..bbe107b3e5 --- /dev/null +++ b/src/Draw/TKXSDRAWPLY/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKXSDRAWPLY toolkit +set(OCCT_TKXSDRAWPLY_LIST_OF_PACKAGES + XSDRAWPLY +) diff --git a/src/Draw/TKXSDRAWPLY/XSDRAWPLY/FILES.cmake b/src/Draw/TKXSDRAWPLY/XSDRAWPLY/FILES.cmake new file mode 100644 index 0000000000..52e28c0738 --- /dev/null +++ b/src/Draw/TKXSDRAWPLY/XSDRAWPLY/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for XSDRAWPLY package +set(OCCT_XSDRAWPLY_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XSDRAWPLY_FILES + XSDRAWPLY.cxx + XSDRAWPLY.hxx +) diff --git a/src/XSDRAWPLY/XSDRAWPLY.cxx b/src/Draw/TKXSDRAWPLY/XSDRAWPLY/XSDRAWPLY.cxx similarity index 100% rename from src/XSDRAWPLY/XSDRAWPLY.cxx rename to src/Draw/TKXSDRAWPLY/XSDRAWPLY/XSDRAWPLY.cxx diff --git a/src/XSDRAWPLY/XSDRAWPLY.hxx b/src/Draw/TKXSDRAWPLY/XSDRAWPLY/XSDRAWPLY.hxx similarity index 100% rename from src/XSDRAWPLY/XSDRAWPLY.hxx rename to src/Draw/TKXSDRAWPLY/XSDRAWPLY/XSDRAWPLY.hxx diff --git a/src/TKXSDRAWSTEP/CMakeLists.txt b/src/Draw/TKXSDRAWSTEP/CMakeLists.txt similarity index 100% rename from src/TKXSDRAWSTEP/CMakeLists.txt rename to src/Draw/TKXSDRAWSTEP/CMakeLists.txt diff --git a/src/Draw/TKXSDRAWSTEP/EXTERNLIB.cmake b/src/Draw/TKXSDRAWSTEP/EXTERNLIB.cmake new file mode 100644 index 0000000000..be70dbded8 --- /dev/null +++ b/src/Draw/TKXSDRAWSTEP/EXTERNLIB.cmake @@ -0,0 +1,25 @@ +# External dependencies for TKXSDRAWSTEP +set(OCCT_TKXSDRAWSTEP_EXTERNAL_LIBS + TKBRep + TKV3d + TKMath + TKernel + TKService + TKXSBase + TKMeshVS + TKG3d + TKViewerTest + TKG2d + TKTopAlgo + TKGeomBase + TKGeomAlgo + TKMesh + TKDraw + TKLCAF + TKDCAF + TKXCAF + TKRWMesh + TKXSBase + TKDESTEP + TKXSDRAW +) diff --git a/src/Draw/TKXSDRAWSTEP/FILES.cmake b/src/Draw/TKXSDRAWSTEP/FILES.cmake new file mode 100644 index 0000000000..3174d41341 --- /dev/null +++ b/src/Draw/TKXSDRAWSTEP/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKXSDRAWSTEP +set(OCCT_TKXSDRAWSTEP_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKXSDRAWSTEP_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/Draw/TKXSDRAWSTEP/PACKAGES.cmake b/src/Draw/TKXSDRAWSTEP/PACKAGES.cmake new file mode 100644 index 0000000000..109a14c3c8 --- /dev/null +++ b/src/Draw/TKXSDRAWSTEP/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKXSDRAWSTEP toolkit +set(OCCT_TKXSDRAWSTEP_LIST_OF_PACKAGES + XSDRAWSTEP +) diff --git a/src/Draw/TKXSDRAWSTEP/XSDRAWSTEP/FILES.cmake b/src/Draw/TKXSDRAWSTEP/XSDRAWSTEP/FILES.cmake new file mode 100644 index 0000000000..345992d5d6 --- /dev/null +++ b/src/Draw/TKXSDRAWSTEP/XSDRAWSTEP/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for XSDRAWSTEP package +set(OCCT_XSDRAWSTEP_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XSDRAWSTEP_FILES + XSDRAWSTEP.cxx + XSDRAWSTEP.hxx +) diff --git a/src/XSDRAWSTEP/XSDRAWSTEP.cxx b/src/Draw/TKXSDRAWSTEP/XSDRAWSTEP/XSDRAWSTEP.cxx similarity index 100% rename from src/XSDRAWSTEP/XSDRAWSTEP.cxx rename to src/Draw/TKXSDRAWSTEP/XSDRAWSTEP/XSDRAWSTEP.cxx diff --git a/src/XSDRAWSTEP/XSDRAWSTEP.hxx b/src/Draw/TKXSDRAWSTEP/XSDRAWSTEP/XSDRAWSTEP.hxx similarity index 100% rename from src/XSDRAWSTEP/XSDRAWSTEP.hxx rename to src/Draw/TKXSDRAWSTEP/XSDRAWSTEP/XSDRAWSTEP.hxx diff --git a/src/TKXSDRAWSTL/CMakeLists.txt b/src/Draw/TKXSDRAWSTL/CMakeLists.txt similarity index 100% rename from src/TKXSDRAWSTL/CMakeLists.txt rename to src/Draw/TKXSDRAWSTL/CMakeLists.txt diff --git a/src/Draw/TKXSDRAWSTL/EXTERNLIB.cmake b/src/Draw/TKXSDRAWSTL/EXTERNLIB.cmake new file mode 100644 index 0000000000..dc16149e01 --- /dev/null +++ b/src/Draw/TKXSDRAWSTL/EXTERNLIB.cmake @@ -0,0 +1,24 @@ +# External dependencies for TKXSDRAWSTL +set(OCCT_TKXSDRAWSTL_EXTERNAL_LIBS + TKBRep + TKV3d + TKMath + TKernel + TKService + TKXSBase + TKMeshVS + TKG3d + TKViewerTest + TKG2d + TKTopAlgo + TKGeomBase + TKGeomAlgo + TKMesh + TKDraw + TKLCAF + TKDCAF + TKXCAF + TKRWMesh + TKDESTL + TKXSDRAW +) diff --git a/src/Draw/TKXSDRAWSTL/FILES.cmake b/src/Draw/TKXSDRAWSTL/FILES.cmake new file mode 100644 index 0000000000..d616405c07 --- /dev/null +++ b/src/Draw/TKXSDRAWSTL/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKXSDRAWSTL +set(OCCT_TKXSDRAWSTL_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKXSDRAWSTL_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/Draw/TKXSDRAWSTL/PACKAGES.cmake b/src/Draw/TKXSDRAWSTL/PACKAGES.cmake new file mode 100644 index 0000000000..79017d32b2 --- /dev/null +++ b/src/Draw/TKXSDRAWSTL/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKXSDRAWSTL toolkit +set(OCCT_TKXSDRAWSTL_LIST_OF_PACKAGES + XSDRAWSTL +) diff --git a/src/Draw/TKXSDRAWSTL/XSDRAWSTL/FILES.cmake b/src/Draw/TKXSDRAWSTL/XSDRAWSTL/FILES.cmake new file mode 100644 index 0000000000..ef443e8bc2 --- /dev/null +++ b/src/Draw/TKXSDRAWSTL/XSDRAWSTL/FILES.cmake @@ -0,0 +1,13 @@ +# Source files for XSDRAWSTL package +set(OCCT_XSDRAWSTL_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XSDRAWSTL_FILES + XSDRAWSTL.cxx + XSDRAWSTL.hxx + XSDRAWSTL_DataSource.cxx + XSDRAWSTL_DataSource.hxx + XSDRAWSTL_DataSource3D.cxx + XSDRAWSTL_DataSource3D.hxx + XSDRAWSTL_DrawableMesh.cxx + XSDRAWSTL_DrawableMesh.hxx +) diff --git a/src/XSDRAWSTL/XSDRAWSTL.cxx b/src/Draw/TKXSDRAWSTL/XSDRAWSTL/XSDRAWSTL.cxx similarity index 100% rename from src/XSDRAWSTL/XSDRAWSTL.cxx rename to src/Draw/TKXSDRAWSTL/XSDRAWSTL/XSDRAWSTL.cxx diff --git a/src/XSDRAWSTL/XSDRAWSTL.hxx b/src/Draw/TKXSDRAWSTL/XSDRAWSTL/XSDRAWSTL.hxx similarity index 100% rename from src/XSDRAWSTL/XSDRAWSTL.hxx rename to src/Draw/TKXSDRAWSTL/XSDRAWSTL/XSDRAWSTL.hxx diff --git a/src/XSDRAWSTL/XSDRAWSTL_DataSource.cxx b/src/Draw/TKXSDRAWSTL/XSDRAWSTL/XSDRAWSTL_DataSource.cxx similarity index 100% rename from src/XSDRAWSTL/XSDRAWSTL_DataSource.cxx rename to src/Draw/TKXSDRAWSTL/XSDRAWSTL/XSDRAWSTL_DataSource.cxx diff --git a/src/XSDRAWSTL/XSDRAWSTL_DataSource.hxx b/src/Draw/TKXSDRAWSTL/XSDRAWSTL/XSDRAWSTL_DataSource.hxx similarity index 100% rename from src/XSDRAWSTL/XSDRAWSTL_DataSource.hxx rename to src/Draw/TKXSDRAWSTL/XSDRAWSTL/XSDRAWSTL_DataSource.hxx diff --git a/src/XSDRAWSTL/XSDRAWSTL_DataSource3D.cxx b/src/Draw/TKXSDRAWSTL/XSDRAWSTL/XSDRAWSTL_DataSource3D.cxx similarity index 100% rename from src/XSDRAWSTL/XSDRAWSTL_DataSource3D.cxx rename to src/Draw/TKXSDRAWSTL/XSDRAWSTL/XSDRAWSTL_DataSource3D.cxx diff --git a/src/XSDRAWSTL/XSDRAWSTL_DataSource3D.hxx b/src/Draw/TKXSDRAWSTL/XSDRAWSTL/XSDRAWSTL_DataSource3D.hxx similarity index 100% rename from src/XSDRAWSTL/XSDRAWSTL_DataSource3D.hxx rename to src/Draw/TKXSDRAWSTL/XSDRAWSTL/XSDRAWSTL_DataSource3D.hxx diff --git a/src/XSDRAWSTL/XSDRAWSTL_DrawableMesh.cxx b/src/Draw/TKXSDRAWSTL/XSDRAWSTL/XSDRAWSTL_DrawableMesh.cxx similarity index 100% rename from src/XSDRAWSTL/XSDRAWSTL_DrawableMesh.cxx rename to src/Draw/TKXSDRAWSTL/XSDRAWSTL/XSDRAWSTL_DrawableMesh.cxx diff --git a/src/XSDRAWSTL/XSDRAWSTL_DrawableMesh.hxx b/src/Draw/TKXSDRAWSTL/XSDRAWSTL/XSDRAWSTL_DrawableMesh.hxx similarity index 100% rename from src/XSDRAWSTL/XSDRAWSTL_DrawableMesh.hxx rename to src/Draw/TKXSDRAWSTL/XSDRAWSTL/XSDRAWSTL_DrawableMesh.hxx diff --git a/src/TKXSDRAWVRML/CMakeLists.txt b/src/Draw/TKXSDRAWVRML/CMakeLists.txt similarity index 100% rename from src/TKXSDRAWVRML/CMakeLists.txt rename to src/Draw/TKXSDRAWVRML/CMakeLists.txt diff --git a/src/Draw/TKXSDRAWVRML/EXTERNLIB.cmake b/src/Draw/TKXSDRAWVRML/EXTERNLIB.cmake new file mode 100644 index 0000000000..9c1b24e046 --- /dev/null +++ b/src/Draw/TKXSDRAWVRML/EXTERNLIB.cmake @@ -0,0 +1,24 @@ +# External dependencies for TKXSDRAWVRML +set(OCCT_TKXSDRAWVRML_EXTERNAL_LIBS + TKBRep + TKV3d + TKMath + TKernel + TKService + TKXSBase + TKMeshVS + TKG3d + TKViewerTest + TKG2d + TKTopAlgo + TKGeomBase + TKGeomAlgo + TKMesh + TKDraw + TKLCAF + TKDCAF + TKXCAF + TKRWMesh + TKDEVRML + TKXSDRAW +) diff --git a/src/Draw/TKXSDRAWVRML/FILES.cmake b/src/Draw/TKXSDRAWVRML/FILES.cmake new file mode 100644 index 0000000000..e9708d5d58 --- /dev/null +++ b/src/Draw/TKXSDRAWVRML/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKXSDRAWVRML +set(OCCT_TKXSDRAWVRML_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKXSDRAWVRML_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/Draw/TKXSDRAWVRML/PACKAGES.cmake b/src/Draw/TKXSDRAWVRML/PACKAGES.cmake new file mode 100644 index 0000000000..bc788a10ab --- /dev/null +++ b/src/Draw/TKXSDRAWVRML/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKXSDRAWVRML toolkit +set(OCCT_TKXSDRAWVRML_LIST_OF_PACKAGES + XSDRAWVRML +) diff --git a/src/Draw/TKXSDRAWVRML/XSDRAWVRML/FILES.cmake b/src/Draw/TKXSDRAWVRML/XSDRAWVRML/FILES.cmake new file mode 100644 index 0000000000..b1c4bf3344 --- /dev/null +++ b/src/Draw/TKXSDRAWVRML/XSDRAWVRML/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for XSDRAWVRML package +set(OCCT_XSDRAWVRML_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XSDRAWVRML_FILES + XSDRAWVRML.cxx + XSDRAWVRML.hxx +) diff --git a/src/XSDRAWVRML/XSDRAWVRML.cxx b/src/Draw/TKXSDRAWVRML/XSDRAWVRML/XSDRAWVRML.cxx similarity index 100% rename from src/XSDRAWVRML/XSDRAWVRML.cxx rename to src/Draw/TKXSDRAWVRML/XSDRAWVRML/XSDRAWVRML.cxx diff --git a/src/XSDRAWVRML/XSDRAWVRML.hxx b/src/Draw/TKXSDRAWVRML/XSDRAWVRML/XSDRAWVRML.hxx similarity index 100% rename from src/XSDRAWVRML/XSDRAWVRML.hxx rename to src/Draw/TKXSDRAWVRML/XSDRAWVRML/XSDRAWVRML.hxx diff --git a/src/Draw/TOOLKITS.cmake b/src/Draw/TOOLKITS.cmake new file mode 100644 index 0000000000..cdc5dbbb91 --- /dev/null +++ b/src/Draw/TOOLKITS.cmake @@ -0,0 +1,24 @@ +# Auto-generated list of toolkits for Draw module +set(OCCT_Draw_LIST_OF_TOOLKITS + TKDraw + TKTopTest + TKOpenGlTest + TKOpenGlesTest + TKD3DHostTest + TKViewerTest + TKXSDRAW + TKDCAF + TKXDEDRAW + TKTObjDRAW + TKQADraw + TKIVtkDraw + DRAWEXE + TKXSDRAWDE + TKXSDRAWGLTF + TKXSDRAWIGES + TKXSDRAWOBJ + TKXSDRAWPLY + TKXSDRAWSTEP + TKXSDRAWSTL + TKXSDRAWVRML +) diff --git a/src/DrawDim/FILES b/src/DrawDim/FILES deleted file mode 100755 index 18ba6c2084..0000000000 --- a/src/DrawDim/FILES +++ /dev/null @@ -1,21 +0,0 @@ -DrawDim.cxx -DrawDim.hxx -DrawDim_Angle.cxx -DrawDim_Angle.hxx -DrawDim_Dimension.cxx -DrawDim_Dimension.hxx -DrawDim_Distance.cxx -DrawDim_Distance.hxx -DrawDim_PlanarAngle.cxx -DrawDim_PlanarAngle.hxx -DrawDim_PlanarDiameter.cxx -DrawDim_PlanarDiameter.hxx -DrawDim_PlanarDimension.cxx -DrawDim_PlanarDimension.hxx -DrawDim_PlanarDimensionCommands.cxx -DrawDim_PlanarDistance.cxx -DrawDim_PlanarDistance.hxx -DrawDim_PlanarRadius.cxx -DrawDim_PlanarRadius.hxx -DrawDim_Radius.cxx -DrawDim_Radius.hxx diff --git a/src/DrawFairCurve/FILES b/src/DrawFairCurve/FILES deleted file mode 100644 index baf223f61c..0000000000 --- a/src/DrawFairCurve/FILES +++ /dev/null @@ -1,4 +0,0 @@ -DrawFairCurve_Batten.cxx -DrawFairCurve_Batten.hxx -DrawFairCurve_MinimalVariation.cxx -DrawFairCurve_MinimalVariation.hxx diff --git a/src/DrawTrSurf/FILES b/src/DrawTrSurf/FILES deleted file mode 100755 index 0e228d2044..0000000000 --- a/src/DrawTrSurf/FILES +++ /dev/null @@ -1,34 +0,0 @@ -DrawTrSurf.cxx -DrawTrSurf.hxx -DrawTrSurf_BezierCurve.cxx -DrawTrSurf_BezierCurve.hxx -DrawTrSurf_BezierCurve2d.cxx -DrawTrSurf_BezierCurve2d.hxx -DrawTrSurf_BezierSurface.cxx -DrawTrSurf_BezierSurface.hxx -DrawTrSurf_BSplineCurve.cxx -DrawTrSurf_BSplineCurve.hxx -DrawTrSurf_BSplineCurve2d.cxx -DrawTrSurf_BSplineCurve2d.hxx -DrawTrSurf_BSplineSurface.cxx -DrawTrSurf_BSplineSurface.hxx -DrawTrSurf_Curve.cxx -DrawTrSurf_Curve.hxx -DrawTrSurf_Curve2d.cxx -DrawTrSurf_Curve2d.hxx -DrawTrSurf_Debug.cxx -DrawTrSurf_Drawable.cxx -DrawTrSurf_Drawable.hxx -DrawTrSurf_Params.hxx -DrawTrSurf_Point.cxx -DrawTrSurf_Point.hxx -DrawTrSurf_Polygon2D.cxx -DrawTrSurf_Polygon2D.hxx -DrawTrSurf_Polygon3D.cxx -DrawTrSurf_Polygon3D.hxx -DrawTrSurf_Surface.cxx -DrawTrSurf_Surface.hxx -DrawTrSurf_Triangulation.cxx -DrawTrSurf_Triangulation.hxx -DrawTrSurf_Triangulation2D.cxx -DrawTrSurf_Triangulation2D.hxx diff --git a/src/DsgPrs/FILES b/src/DsgPrs/FILES deleted file mode 100644 index b71d8cee4e..0000000000 --- a/src/DsgPrs/FILES +++ /dev/null @@ -1,51 +0,0 @@ -DsgPrs.cxx -DsgPrs.hxx -DsgPrs_AnglePresentation.cxx -DsgPrs_AnglePresentation.hxx -DsgPrs_ArrowSide.hxx -DsgPrs_Chamf2dPresentation.cxx -DsgPrs_Chamf2dPresentation.hxx -DsgPrs_ConcentricPresentation.cxx -DsgPrs_ConcentricPresentation.hxx -DsgPrs_DatumPrs.cxx -DsgPrs_DatumPrs.hxx -DsgPrs_DiameterPresentation.cxx -DsgPrs_DiameterPresentation.hxx -DsgPrs_EllipseRadiusPresentation.cxx -DsgPrs_EllipseRadiusPresentation.hxx -DsgPrs_EqualDistancePresentation.cxx -DsgPrs_EqualDistancePresentation.hxx -DsgPrs_EqualRadiusPresentation.cxx -DsgPrs_EqualRadiusPresentation.hxx -DsgPrs_FilletRadiusPresentation.cxx -DsgPrs_FilletRadiusPresentation.hxx -DsgPrs_FixPresentation.cxx -DsgPrs_FixPresentation.hxx -DsgPrs_IdenticPresentation.cxx -DsgPrs_IdenticPresentation.hxx -DsgPrs_LengthPresentation.cxx -DsgPrs_LengthPresentation.hxx -DsgPrs_MidPointPresentation.cxx -DsgPrs_MidPointPresentation.hxx -DsgPrs_OffsetPresentation.cxx -DsgPrs_OffsetPresentation.hxx -DsgPrs_ParalPresentation.cxx -DsgPrs_ParalPresentation.hxx -DsgPrs_PerpenPresentation.cxx -DsgPrs_PerpenPresentation.hxx -DsgPrs_RadiusPresentation.cxx -DsgPrs_RadiusPresentation.hxx -DsgPrs_ShadedPlanePresentation.cxx -DsgPrs_ShadedPlanePresentation.hxx -DsgPrs_ShapeDirPresentation.cxx -DsgPrs_ShapeDirPresentation.hxx -DsgPrs_SymbPresentation.cxx -DsgPrs_SymbPresentation.hxx -DsgPrs_SymmetricPresentation.cxx -DsgPrs_SymmetricPresentation.hxx -DsgPrs_TangentPresentation.cxx -DsgPrs_TangentPresentation.hxx -DsgPrs_XYZAxisPresentation.cxx -DsgPrs_XYZAxisPresentation.hxx -DsgPrs_XYZPlanePresentation.cxx -DsgPrs_XYZPlanePresentation.hxx diff --git a/src/ElCLib/FILES b/src/ElCLib/FILES deleted file mode 100644 index aeaa1d440a..0000000000 --- a/src/ElCLib/FILES +++ /dev/null @@ -1,3 +0,0 @@ -ElCLib.cxx -ElCLib.hxx -ElCLib.lxx diff --git a/src/ElSLib/FILES b/src/ElSLib/FILES deleted file mode 100644 index 5292bc5f70..0000000000 --- a/src/ElSLib/FILES +++ /dev/null @@ -1,3 +0,0 @@ -ElSLib.cxx -ElSLib.hxx -ElSLib.lxx diff --git a/src/Expr/FILES b/src/Expr/FILES deleted file mode 100755 index 579349a9f7..0000000000 --- a/src/Expr/FILES +++ /dev/null @@ -1,123 +0,0 @@ -Expr.cxx -Expr.hxx -Expr_Absolute.cxx -Expr_Absolute.hxx -Expr_ArcCosine.cxx -Expr_ArcCosine.hxx -Expr_ArcSine.cxx -Expr_ArcSine.hxx -Expr_ArcTangent.cxx -Expr_ArcTangent.hxx -Expr_ArgCosh.cxx -Expr_ArgCosh.hxx -Expr_ArgSinh.cxx -Expr_ArgSinh.hxx -Expr_ArgTanh.cxx -Expr_ArgTanh.hxx -Expr_Array1OfGeneralExpression.hxx -Expr_Array1OfNamedUnknown.hxx -Expr_Array1OfSingleRelation.hxx -Expr_BinaryExpression.cxx -Expr_BinaryExpression.hxx -Expr_BinaryExpression.lxx -Expr_BinaryFunction.cxx -Expr_BinaryFunction.hxx -Expr_Cosh.cxx -Expr_Cosh.hxx -Expr_Cosine.cxx -Expr_Cosine.hxx -Expr_Difference.cxx -Expr_Difference.hxx -Expr_Different.cxx -Expr_Different.hxx -Expr_Division.cxx -Expr_Division.hxx -Expr_Equal.cxx -Expr_Equal.hxx -Expr_Exponential.cxx -Expr_Exponential.hxx -Expr_Exponentiate.cxx -Expr_Exponentiate.hxx -Expr_ExprFailure.hxx -Expr_FunctionDerivative.cxx -Expr_FunctionDerivative.hxx -Expr_GeneralExpression.cxx -Expr_GeneralExpression.hxx -Expr_GeneralFunction.cxx -Expr_GeneralFunction.hxx -Expr_GeneralRelation.cxx -Expr_GeneralRelation.hxx -Expr_GreaterThan.cxx -Expr_GreaterThan.hxx -Expr_GreaterThanOrEqual.cxx -Expr_GreaterThanOrEqual.hxx -Expr_InvalidAssignment.hxx -Expr_InvalidFunction.hxx -Expr_InvalidOperand.hxx -Expr_LessThan.cxx -Expr_LessThan.hxx -Expr_LessThanOrEqual.cxx -Expr_LessThanOrEqual.hxx -Expr_LogOf10.cxx -Expr_LogOf10.hxx -Expr_LogOfe.cxx -Expr_LogOfe.hxx -Expr_MapOfNamedUnknown.hxx -Expr_NamedConstant.cxx -Expr_NamedConstant.hxx -Expr_NamedConstant.lxx -Expr_NamedExpression.cxx -Expr_NamedExpression.hxx -Expr_NamedFunction.cxx -Expr_NamedFunction.hxx -Expr_NamedUnknown.cxx -Expr_NamedUnknown.hxx -Expr_NamedUnknown.lxx -Expr_NotAssigned.hxx -Expr_NotEvaluable.hxx -Expr_NumericValue.cxx -Expr_NumericValue.hxx -Expr_Operators.cxx -Expr_Operators.hxx -Expr_PolyExpression.cxx -Expr_PolyExpression.hxx -Expr_PolyExpression.lxx -Expr_PolyFunction.cxx -Expr_PolyFunction.hxx -Expr_Product.cxx -Expr_Product.hxx -Expr_RelationIterator.cxx -Expr_RelationIterator.hxx -Expr_RUIterator.cxx -Expr_RUIterator.hxx -Expr_SequenceOfGeneralExpression.hxx -Expr_SequenceOfGeneralRelation.hxx -Expr_Sign.cxx -Expr_Sign.hxx -Expr_Sine.cxx -Expr_Sine.hxx -Expr_SingleRelation.cxx -Expr_SingleRelation.hxx -Expr_Sinh.cxx -Expr_Sinh.hxx -Expr_Square.cxx -Expr_Square.hxx -Expr_SquareRoot.cxx -Expr_SquareRoot.hxx -Expr_Sum.cxx -Expr_Sum.hxx -Expr_SystemRelation.cxx -Expr_SystemRelation.hxx -Expr_Tangent.cxx -Expr_Tangent.hxx -Expr_Tanh.cxx -Expr_Tanh.hxx -Expr_UnaryExpression.cxx -Expr_UnaryExpression.hxx -Expr_UnaryExpression.lxx -Expr_UnaryFunction.cxx -Expr_UnaryFunction.hxx -Expr_UnaryMinus.cxx -Expr_UnaryMinus.hxx -Expr_UnknownIterator.cxx -Expr_UnknownIterator.hxx diff --git a/src/ExprIntrp/FILES b/src/ExprIntrp/FILES deleted file mode 100755 index eec6c4ce3b..0000000000 --- a/src/ExprIntrp/FILES +++ /dev/null @@ -1,30 +0,0 @@ -ExprIntrp.cxx -ExprIntrp.hxx -ExprIntrp.lex -ExprIntrp.tab.c -ExprIntrp.tab.h -ExprIntrp.yacc -ExprIntrp_Analysis.cxx -ExprIntrp_Analysis.hxx -ExprIntrp_Generator.cxx -ExprIntrp_Generator.hxx -ExprIntrp_GenExp.cxx -ExprIntrp_GenExp.hxx -ExprIntrp_GenFct.cxx -ExprIntrp_GenFct.hxx -ExprIntrp_GenRel.cxx -ExprIntrp_GenRel.hxx -ExprIntrp_ListIteratorOfStackOfGeneralExpression.hxx -ExprIntrp_ListIteratorOfStackOfGeneralFunction.hxx -ExprIntrp_ListIteratorOfStackOfGeneralRelation.hxx -ExprIntrp_SequenceOfNamedExpression.hxx -ExprIntrp_SequenceOfNamedFunction.hxx -ExprIntrp_StackOfGeneralExpression.hxx -ExprIntrp_StackOfGeneralFunction.hxx -ExprIntrp_StackOfGeneralRelation.hxx -ExprIntrp_SyntaxError.hxx -ExprIntrp_yaccanal.hxx -ExprIntrp_yaccintrf.cxx -ExprIntrp_yaccintrf.hxx -ExprIntrp_yacclex.cxx -lex.ExprIntrp.c diff --git a/src/Extrema/FILES b/src/Extrema/FILES deleted file mode 100644 index 5f3d2ed048..0000000000 --- a/src/Extrema/FILES +++ /dev/null @@ -1,154 +0,0 @@ -Extrema_Array1OfPOnCurv.hxx -Extrema_Array1OfPOnCurv2d.hxx -Extrema_Array1OfPOnSurf.hxx -Extrema_Array2OfPOnCurv.hxx -Extrema_Array2OfPOnCurv2d.hxx -Extrema_Array2OfPOnSurf.hxx -Extrema_Array2OfPOnSurfParams.hxx -Extrema_CCLocFOfLocECC.hxx -Extrema_CCLocFOfLocECC2d.hxx -Extrema_CCLocFOfLocECC2d_0.cxx -Extrema_CCLocFOfLocECC_0.cxx -Extrema_Curve2dTool.cxx -Extrema_Curve2dTool.hxx -Extrema_Curve2dTool.lxx -Extrema_CurveLocator.gxx -Extrema_CurveTool.cxx -Extrema_CurveTool.hxx -Extrema_CurveTool.lxx -Extrema_ECC.hxx -Extrema_ECC2d.hxx -Extrema_ECC2d_0.cxx -Extrema_ECC_0.cxx -Extrema_ElementType.hxx -Extrema_ELPCOfLocateExtPC.hxx -Extrema_ELPCOfLocateExtPC2d.hxx -Extrema_ELPCOfLocateExtPC2d_0.cxx -Extrema_ELPCOfLocateExtPC_0.cxx -Extrema_EPCOfELPCOfLocateExtPC.hxx -Extrema_EPCOfELPCOfLocateExtPC2d.hxx -Extrema_EPCOfELPCOfLocateExtPC2d_0.cxx -Extrema_EPCOfELPCOfLocateExtPC_0.cxx -Extrema_EPCOfExtPC.hxx -Extrema_EPCOfExtPC2d.hxx -Extrema_EPCOfExtPC2d_0.cxx -Extrema_EPCOfExtPC_0.cxx -Extrema_ExtAlgo.hxx -Extrema_ExtCC.cxx -Extrema_ExtCC.hxx -Extrema_ExtCC2d.cxx -Extrema_ExtCC2d.hxx -Extrema_ExtCS.cxx -Extrema_ExtCS.hxx -Extrema_ExtElC.cxx -Extrema_ExtElC.hxx -Extrema_ExtElC2d.cxx -Extrema_ExtElC2d.hxx -Extrema_ExtElCS.cxx -Extrema_ExtElCS.hxx -Extrema_ExtElSS.cxx -Extrema_ExtElSS.hxx -Extrema_ExtFlag.hxx -Extrema_ExtPC.hxx -Extrema_ExtPC2d.hxx -Extrema_ExtPC2d_0.cxx -Extrema_ExtPC_0.cxx -Extrema_ExtPElC.cxx -Extrema_ExtPElC.hxx -Extrema_ExtPElC2d.cxx -Extrema_ExtPElC2d.hxx -Extrema_ExtPElS.cxx -Extrema_ExtPElS.hxx -Extrema_ExtPExtS.cxx -Extrema_ExtPExtS.hxx -Extrema_ExtPRevS.cxx -Extrema_ExtPRevS.hxx -Extrema_ExtPS.cxx -Extrema_ExtPS.hxx -Extrema_ExtSS.cxx -Extrema_ExtSS.hxx -Extrema_FuncExtCC.gxx -Extrema_FuncExtCC.lxx -Extrema_FuncExtCS.cxx -Extrema_FuncExtCS.hxx -Extrema_FuncExtPC.gxx -Extrema_FuncPSNorm.cxx -Extrema_FuncPSNorm.hxx -Extrema_FuncPSDist.cxx -Extrema_FuncPSDist.hxx -Extrema_FuncExtSS.cxx -Extrema_FuncExtSS.hxx -Extrema_GenExtCC.gxx -Extrema_GenExtCS.cxx -Extrema_GenExtCS.hxx -Extrema_GenExtPC.gxx -Extrema_GenExtPS.cxx -Extrema_GenExtPS.hxx -Extrema_GenExtSS.cxx -Extrema_GenExtSS.hxx -Extrema_GenLocateExtCC.gxx -Extrema_GenLocateExtCS.cxx -Extrema_GenLocateExtCS.hxx -Extrema_GenLocateExtPC.gxx -Extrema_GenLocateExtPS.cxx -Extrema_GenLocateExtPS.hxx -Extrema_GenLocateExtSS.cxx -Extrema_GenLocateExtSS.hxx -Extrema_GExtPC.gxx -Extrema_GlobOptFuncCC.cxx -Extrema_GlobOptFuncCC.hxx -Extrema_GlobOptFuncCS.cxx -Extrema_GlobOptFuncCS.hxx -Extrema_GlobOptFuncConicS.cxx -Extrema_GlobOptFuncConicS.hxx -Extrema_GlobOptFuncCQuadric.cxx -Extrema_GlobOptFuncCQuadric.hxx -Extrema_GLocateExtPC.gxx -Extrema_HArray1OfPOnCurv.hxx -Extrema_HArray1OfPOnCurv2d.hxx -Extrema_HArray1OfPOnSurf.hxx -Extrema_HArray2OfPOnCurv.hxx -Extrema_HArray2OfPOnCurv2d.hxx -Extrema_HArray2OfPOnSurf.hxx -Extrema_HUBTreeOfSphere.hxx -Extrema_LocateExtCC.cxx -Extrema_LocateExtCC.hxx -Extrema_LocateExtCC2d.cxx -Extrema_LocateExtCC2d.hxx -Extrema_LocateExtPC.hxx -Extrema_LocateExtPC2d.hxx -Extrema_LocateExtPC2d_0.cxx -Extrema_LocateExtPC_0.cxx -Extrema_LocECC.hxx -Extrema_LocECC2d.hxx -Extrema_LocECC2d_0.cxx -Extrema_LocECC_0.cxx -Extrema_LocEPCOfLocateExtPC.hxx -Extrema_LocEPCOfLocateExtPC2d.hxx -Extrema_LocEPCOfLocateExtPC2d_0.cxx -Extrema_LocEPCOfLocateExtPC_0.cxx -Extrema_PCFOfEPCOfELPCOfLocateExtPC.hxx -Extrema_PCFOfEPCOfELPCOfLocateExtPC2d.hxx -Extrema_PCFOfEPCOfELPCOfLocateExtPC2d_0.cxx -Extrema_PCFOfEPCOfELPCOfLocateExtPC_0.cxx -Extrema_PCFOfEPCOfExtPC.hxx -Extrema_PCFOfEPCOfExtPC2d.hxx -Extrema_PCFOfEPCOfExtPC2d_0.cxx -Extrema_PCFOfEPCOfExtPC_0.cxx -Extrema_PCLocFOfLocEPCOfLocateExtPC.hxx -Extrema_PCLocFOfLocEPCOfLocateExtPC2d.hxx -Extrema_PCLocFOfLocEPCOfLocateExtPC2d_0.cxx -Extrema_PCLocFOfLocEPCOfLocateExtPC_0.cxx -Extrema_Point.gxx -Extrema_Point.lxx -Extrema_POnCurv.hxx -Extrema_POnCurv2d.hxx -Extrema_POnCurv2d_0.cxx -Extrema_POnCurv_0.cxx -Extrema_POnSurf.hxx -Extrema_POnSurf.lxx -Extrema_POnSurfParams.hxx -Extrema_POnSurfParams.lxx -Extrema_SequenceOfPOnCurv.hxx -Extrema_SequenceOfPOnCurv2d.hxx -Extrema_SequenceOfPOnSurf.hxx diff --git a/src/FEmTool/FILES b/src/FEmTool/FILES deleted file mode 100644 index 91d64d0f3f..0000000000 --- a/src/FEmTool/FILES +++ /dev/null @@ -1,23 +0,0 @@ -FEmTool_Assembly.cxx -FEmTool_Assembly.hxx -FEmTool_AssemblyTable.hxx -FEmTool_Curve.cxx -FEmTool_Curve.hxx -FEmTool_ElementaryCriterion.cxx -FEmTool_ElementaryCriterion.hxx -FEmTool_ElementsOfRefMatrix.cxx -FEmTool_ElementsOfRefMatrix.hxx -FEmTool_HAssemblyTable.hxx -FEmTool_LinearFlexion.cxx -FEmTool_LinearFlexion.hxx -FEmTool_LinearJerk.cxx -FEmTool_LinearJerk.hxx -FEmTool_LinearTension.cxx -FEmTool_LinearTension.hxx -FEmTool_ListIteratorOfListOfVectors.hxx -FEmTool_ListOfVectors.hxx -FEmTool_ProfileMatrix.cxx -FEmTool_ProfileMatrix.hxx -FEmTool_SeqOfLinConstr.hxx -FEmTool_SparseMatrix.cxx -FEmTool_SparseMatrix.hxx diff --git a/src/FSD/FILES b/src/FSD/FILES deleted file mode 100755 index 11df58edb3..0000000000 --- a/src/FSD/FILES +++ /dev/null @@ -1,12 +0,0 @@ -FILES -FSD_Base64.cxx -FSD_Base64.hxx -FSD_BinaryFile.cxx -FSD_BinaryFile.hxx -FSD_BStream.hxx -FSD_CmpFile.cxx -FSD_CmpFile.hxx -FSD_File.cxx -FSD_File.hxx -FSD_FileHeader.hxx -FSD_FStream.hxx diff --git a/src/FairCurve/FILES b/src/FairCurve/FILES deleted file mode 100644 index 2fe69666cb..0000000000 --- a/src/FairCurve/FILES +++ /dev/null @@ -1,30 +0,0 @@ -FairCurve_AnalysisCode.hxx -FairCurve_Batten.cxx -FairCurve_Batten.hxx -FairCurve_Batten.lxx -FairCurve_BattenLaw.cxx -FairCurve_BattenLaw.hxx -FairCurve_BattenLaw.lxx -FairCurve_DistributionOfEnergy.cxx -FairCurve_DistributionOfEnergy.hxx -FairCurve_DistributionOfJerk.cxx -FairCurve_DistributionOfJerk.hxx -FairCurve_DistributionOfSagging.cxx -FairCurve_DistributionOfSagging.hxx -FairCurve_DistributionOfTension.cxx -FairCurve_DistributionOfTension.hxx -FairCurve_DistributionOfTension.lxx -FairCurve_Energy.cxx -FairCurve_Energy.hxx -FairCurve_Energy.lxx -FairCurve_EnergyOfBatten.cxx -FairCurve_EnergyOfBatten.hxx -FairCurve_EnergyOfBatten.lxx -FairCurve_EnergyOfMVC.cxx -FairCurve_EnergyOfMVC.hxx -FairCurve_EnergyOfMVC.lxx -FairCurve_MinimalVariation.cxx -FairCurve_MinimalVariation.hxx -FairCurve_MinimalVariation.lxx -FairCurve_Newton.cxx -FairCurve_Newton.hxx diff --git a/src/FilletSurf/FILES b/src/FilletSurf/FILES deleted file mode 100644 index a609bf5648..0000000000 --- a/src/FilletSurf/FILES +++ /dev/null @@ -1,7 +0,0 @@ -FilletSurf_Builder.cxx -FilletSurf_Builder.hxx -FilletSurf_ErrorTypeStatus.hxx -FilletSurf_InternalBuilder.cxx -FilletSurf_InternalBuilder.hxx -FilletSurf_StatusDone.hxx -FilletSurf_StatusType.hxx diff --git a/src/FlexLexer/FILES b/src/FlexLexer/FILES deleted file mode 100644 index 254a004963..0000000000 --- a/src/FlexLexer/FILES +++ /dev/null @@ -1 +0,0 @@ -FlexLexer.h diff --git a/src/Font/FILES b/src/Font/FILES deleted file mode 100644 index 968a807a2d..0000000000 --- a/src/Font/FILES +++ /dev/null @@ -1,20 +0,0 @@ -Font_BRepFont.hxx -Font_BRepTextBuilder.hxx -Font_FontAspect.hxx -Font_FontMgr.cxx -Font_FontMgr.hxx -Font_FTFont.cxx -Font_FTFont.hxx -Font_FTLibrary.cxx -Font_FTLibrary.hxx -Font_Hinting.hxx -Font_NameOfFont.hxx -Font_NListOfSystemFont.hxx -Font_Rect.hxx -Font_StrictLevel.hxx -Font_SystemFont.cxx -Font_SystemFont.hxx -Font_TextFormatter.hxx -Font_TextFormatter.cxx -Font_UnicodeSubset.hxx -Font_DejavuSans_Latin_woff.pxx diff --git a/src/BSplCLib/BSplCLib.cxx b/src/FoundationClasses/TKMath/BSplCLib/BSplCLib.cxx similarity index 100% rename from src/BSplCLib/BSplCLib.cxx rename to src/FoundationClasses/TKMath/BSplCLib/BSplCLib.cxx diff --git a/src/BSplCLib/BSplCLib.hxx b/src/FoundationClasses/TKMath/BSplCLib/BSplCLib.hxx similarity index 100% rename from src/BSplCLib/BSplCLib.hxx rename to src/FoundationClasses/TKMath/BSplCLib/BSplCLib.hxx diff --git a/src/BSplCLib/BSplCLib.lxx b/src/FoundationClasses/TKMath/BSplCLib/BSplCLib.lxx similarity index 100% rename from src/BSplCLib/BSplCLib.lxx rename to src/FoundationClasses/TKMath/BSplCLib/BSplCLib.lxx diff --git a/src/BSplCLib/BSplCLib_1.cxx b/src/FoundationClasses/TKMath/BSplCLib/BSplCLib_1.cxx similarity index 100% rename from src/BSplCLib/BSplCLib_1.cxx rename to src/FoundationClasses/TKMath/BSplCLib/BSplCLib_1.cxx diff --git a/src/BSplCLib/BSplCLib_2.cxx b/src/FoundationClasses/TKMath/BSplCLib/BSplCLib_2.cxx similarity index 100% rename from src/BSplCLib/BSplCLib_2.cxx rename to src/FoundationClasses/TKMath/BSplCLib/BSplCLib_2.cxx diff --git a/src/BSplCLib/BSplCLib_3.cxx b/src/FoundationClasses/TKMath/BSplCLib/BSplCLib_3.cxx similarity index 100% rename from src/BSplCLib/BSplCLib_3.cxx rename to src/FoundationClasses/TKMath/BSplCLib/BSplCLib_3.cxx diff --git a/src/BSplCLib/BSplCLib_BzSyntaxes.cxx b/src/FoundationClasses/TKMath/BSplCLib/BSplCLib_BzSyntaxes.cxx similarity index 100% rename from src/BSplCLib/BSplCLib_BzSyntaxes.cxx rename to src/FoundationClasses/TKMath/BSplCLib/BSplCLib_BzSyntaxes.cxx diff --git a/src/BSplCLib/BSplCLib_Cache.cxx b/src/FoundationClasses/TKMath/BSplCLib/BSplCLib_Cache.cxx similarity index 100% rename from src/BSplCLib/BSplCLib_Cache.cxx rename to src/FoundationClasses/TKMath/BSplCLib/BSplCLib_Cache.cxx diff --git a/src/BSplCLib/BSplCLib_Cache.hxx b/src/FoundationClasses/TKMath/BSplCLib/BSplCLib_Cache.hxx similarity index 100% rename from src/BSplCLib/BSplCLib_Cache.hxx rename to src/FoundationClasses/TKMath/BSplCLib/BSplCLib_Cache.hxx diff --git a/src/BSplCLib/BSplCLib_CacheParams.hxx b/src/FoundationClasses/TKMath/BSplCLib/BSplCLib_CacheParams.hxx similarity index 100% rename from src/BSplCLib/BSplCLib_CacheParams.hxx rename to src/FoundationClasses/TKMath/BSplCLib/BSplCLib_CacheParams.hxx diff --git a/src/BSplCLib/BSplCLib_CurveComputation.gxx b/src/FoundationClasses/TKMath/BSplCLib/BSplCLib_CurveComputation.gxx similarity index 100% rename from src/BSplCLib/BSplCLib_CurveComputation.gxx rename to src/FoundationClasses/TKMath/BSplCLib/BSplCLib_CurveComputation.gxx diff --git a/src/BSplCLib/BSplCLib_EvaluatorFunction.hxx b/src/FoundationClasses/TKMath/BSplCLib/BSplCLib_EvaluatorFunction.hxx similarity index 100% rename from src/BSplCLib/BSplCLib_EvaluatorFunction.hxx rename to src/FoundationClasses/TKMath/BSplCLib/BSplCLib_EvaluatorFunction.hxx diff --git a/src/BSplCLib/BSplCLib_KnotDistribution.hxx b/src/FoundationClasses/TKMath/BSplCLib/BSplCLib_KnotDistribution.hxx similarity index 100% rename from src/BSplCLib/BSplCLib_KnotDistribution.hxx rename to src/FoundationClasses/TKMath/BSplCLib/BSplCLib_KnotDistribution.hxx diff --git a/src/BSplCLib/BSplCLib_MultDistribution.hxx b/src/FoundationClasses/TKMath/BSplCLib/BSplCLib_MultDistribution.hxx similarity index 100% rename from src/BSplCLib/BSplCLib_MultDistribution.hxx rename to src/FoundationClasses/TKMath/BSplCLib/BSplCLib_MultDistribution.hxx diff --git a/src/FoundationClasses/TKMath/BSplCLib/FILES.cmake b/src/FoundationClasses/TKMath/BSplCLib/FILES.cmake new file mode 100644 index 0000000000..7fac5f8d8f --- /dev/null +++ b/src/FoundationClasses/TKMath/BSplCLib/FILES.cmake @@ -0,0 +1,19 @@ +# Source files for BSplCLib package +set(OCCT_BSplCLib_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BSplCLib_FILES + BSplCLib.cxx + BSplCLib.hxx + BSplCLib.lxx + BSplCLib_1.cxx + BSplCLib_2.cxx + BSplCLib_3.cxx + BSplCLib_BzSyntaxes.cxx + BSplCLib_Cache.cxx + BSplCLib_Cache.hxx + BSplCLib_CacheParams.hxx + BSplCLib_CurveComputation.gxx + BSplCLib_EvaluatorFunction.hxx + BSplCLib_KnotDistribution.hxx + BSplCLib_MultDistribution.hxx +) diff --git a/src/BSplSLib/BSplSLib.cxx b/src/FoundationClasses/TKMath/BSplSLib/BSplSLib.cxx similarity index 100% rename from src/BSplSLib/BSplSLib.cxx rename to src/FoundationClasses/TKMath/BSplSLib/BSplSLib.cxx diff --git a/src/BSplSLib/BSplSLib.hxx b/src/FoundationClasses/TKMath/BSplSLib/BSplSLib.hxx similarity index 100% rename from src/BSplSLib/BSplSLib.hxx rename to src/FoundationClasses/TKMath/BSplSLib/BSplSLib.hxx diff --git a/src/BSplSLib/BSplSLib.lxx b/src/FoundationClasses/TKMath/BSplSLib/BSplSLib.lxx similarity index 100% rename from src/BSplSLib/BSplSLib.lxx rename to src/FoundationClasses/TKMath/BSplSLib/BSplSLib.lxx diff --git a/src/BSplSLib/BSplSLib_BzSyntaxes.cxx b/src/FoundationClasses/TKMath/BSplSLib/BSplSLib_BzSyntaxes.cxx similarity index 100% rename from src/BSplSLib/BSplSLib_BzSyntaxes.cxx rename to src/FoundationClasses/TKMath/BSplSLib/BSplSLib_BzSyntaxes.cxx diff --git a/src/BSplSLib/BSplSLib_Cache.cxx b/src/FoundationClasses/TKMath/BSplSLib/BSplSLib_Cache.cxx similarity index 100% rename from src/BSplSLib/BSplSLib_Cache.cxx rename to src/FoundationClasses/TKMath/BSplSLib/BSplSLib_Cache.cxx diff --git a/src/BSplSLib/BSplSLib_Cache.hxx b/src/FoundationClasses/TKMath/BSplSLib/BSplSLib_Cache.hxx similarity index 100% rename from src/BSplSLib/BSplSLib_Cache.hxx rename to src/FoundationClasses/TKMath/BSplSLib/BSplSLib_Cache.hxx diff --git a/src/BSplSLib/BSplSLib_EvaluatorFunction.hxx b/src/FoundationClasses/TKMath/BSplSLib/BSplSLib_EvaluatorFunction.hxx similarity index 100% rename from src/BSplSLib/BSplSLib_EvaluatorFunction.hxx rename to src/FoundationClasses/TKMath/BSplSLib/BSplSLib_EvaluatorFunction.hxx diff --git a/src/FoundationClasses/TKMath/BSplSLib/FILES.cmake b/src/FoundationClasses/TKMath/BSplSLib/FILES.cmake new file mode 100644 index 0000000000..8b3f897ab6 --- /dev/null +++ b/src/FoundationClasses/TKMath/BSplSLib/FILES.cmake @@ -0,0 +1,12 @@ +# Source files for BSplSLib package +set(OCCT_BSplSLib_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BSplSLib_FILES + BSplSLib.cxx + BSplSLib.hxx + BSplSLib.lxx + BSplSLib_BzSyntaxes.cxx + BSplSLib_Cache.cxx + BSplSLib_Cache.hxx + BSplSLib_EvaluatorFunction.hxx +) diff --git a/src/BVH/BVH.cxx b/src/FoundationClasses/TKMath/BVH/BVH.cxx similarity index 100% rename from src/BVH/BVH.cxx rename to src/FoundationClasses/TKMath/BVH/BVH.cxx diff --git a/src/BVH/BVH_BinaryTree.hxx b/src/FoundationClasses/TKMath/BVH/BVH_BinaryTree.hxx similarity index 100% rename from src/BVH/BVH_BinaryTree.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_BinaryTree.hxx diff --git a/src/BVH/BVH_BinnedBuilder.hxx b/src/FoundationClasses/TKMath/BVH/BVH_BinnedBuilder.hxx similarity index 100% rename from src/BVH/BVH_BinnedBuilder.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_BinnedBuilder.hxx diff --git a/src/BVH/BVH_Box.hxx b/src/FoundationClasses/TKMath/BVH/BVH_Box.hxx similarity index 100% rename from src/BVH/BVH_Box.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_Box.hxx diff --git a/src/BVH/BVH_BoxSet.hxx b/src/FoundationClasses/TKMath/BVH/BVH_BoxSet.hxx similarity index 100% rename from src/BVH/BVH_BoxSet.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_BoxSet.hxx diff --git a/src/BVH/BVH_BuildQueue.cxx b/src/FoundationClasses/TKMath/BVH/BVH_BuildQueue.cxx similarity index 100% rename from src/BVH/BVH_BuildQueue.cxx rename to src/FoundationClasses/TKMath/BVH/BVH_BuildQueue.cxx diff --git a/src/BVH/BVH_BuildQueue.hxx b/src/FoundationClasses/TKMath/BVH/BVH_BuildQueue.hxx similarity index 100% rename from src/BVH/BVH_BuildQueue.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_BuildQueue.hxx diff --git a/src/BVH/BVH_BuildThread.cxx b/src/FoundationClasses/TKMath/BVH/BVH_BuildThread.cxx similarity index 100% rename from src/BVH/BVH_BuildThread.cxx rename to src/FoundationClasses/TKMath/BVH/BVH_BuildThread.cxx diff --git a/src/BVH/BVH_BuildThread.hxx b/src/FoundationClasses/TKMath/BVH/BVH_BuildThread.hxx similarity index 100% rename from src/BVH/BVH_BuildThread.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_BuildThread.hxx diff --git a/src/BVH/BVH_Builder.hxx b/src/FoundationClasses/TKMath/BVH/BVH_Builder.hxx similarity index 100% rename from src/BVH/BVH_Builder.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_Builder.hxx diff --git a/src/BVH/BVH_Builder3d.hxx b/src/FoundationClasses/TKMath/BVH/BVH_Builder3d.hxx similarity index 100% rename from src/BVH/BVH_Builder3d.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_Builder3d.hxx diff --git a/src/BVH/BVH_Constants.hxx b/src/FoundationClasses/TKMath/BVH/BVH_Constants.hxx similarity index 100% rename from src/BVH/BVH_Constants.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_Constants.hxx diff --git a/src/BVH/BVH_Distance.hxx b/src/FoundationClasses/TKMath/BVH/BVH_Distance.hxx similarity index 100% rename from src/BVH/BVH_Distance.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_Distance.hxx diff --git a/src/BVH/BVH_DistanceField.hxx b/src/FoundationClasses/TKMath/BVH/BVH_DistanceField.hxx similarity index 100% rename from src/BVH/BVH_DistanceField.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_DistanceField.hxx diff --git a/src/BVH/BVH_DistanceField.lxx b/src/FoundationClasses/TKMath/BVH/BVH_DistanceField.lxx similarity index 100% rename from src/BVH/BVH_DistanceField.lxx rename to src/FoundationClasses/TKMath/BVH/BVH_DistanceField.lxx diff --git a/src/BVH/BVH_Geometry.hxx b/src/FoundationClasses/TKMath/BVH/BVH_Geometry.hxx similarity index 100% rename from src/BVH/BVH_Geometry.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_Geometry.hxx diff --git a/src/BVH/BVH_IndexedBoxSet.hxx b/src/FoundationClasses/TKMath/BVH/BVH_IndexedBoxSet.hxx similarity index 100% rename from src/BVH/BVH_IndexedBoxSet.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_IndexedBoxSet.hxx diff --git a/src/BVH/BVH_LinearBuilder.hxx b/src/FoundationClasses/TKMath/BVH/BVH_LinearBuilder.hxx similarity index 100% rename from src/BVH/BVH_LinearBuilder.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_LinearBuilder.hxx diff --git a/src/BVH/BVH_Object.hxx b/src/FoundationClasses/TKMath/BVH/BVH_Object.hxx similarity index 100% rename from src/BVH/BVH_Object.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_Object.hxx diff --git a/src/BVH/BVH_ObjectSet.hxx b/src/FoundationClasses/TKMath/BVH/BVH_ObjectSet.hxx similarity index 100% rename from src/BVH/BVH_ObjectSet.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_ObjectSet.hxx diff --git a/src/BVH/BVH_PairDistance.hxx b/src/FoundationClasses/TKMath/BVH/BVH_PairDistance.hxx similarity index 100% rename from src/BVH/BVH_PairDistance.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_PairDistance.hxx diff --git a/src/BVH/BVH_PrimitiveSet.hxx b/src/FoundationClasses/TKMath/BVH/BVH_PrimitiveSet.hxx similarity index 100% rename from src/BVH/BVH_PrimitiveSet.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_PrimitiveSet.hxx diff --git a/src/BVH/BVH_PrimitiveSet3d.hxx b/src/FoundationClasses/TKMath/BVH/BVH_PrimitiveSet3d.hxx similarity index 100% rename from src/BVH/BVH_PrimitiveSet3d.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_PrimitiveSet3d.hxx diff --git a/src/BVH/BVH_Properties.cxx b/src/FoundationClasses/TKMath/BVH/BVH_Properties.cxx similarity index 100% rename from src/BVH/BVH_Properties.cxx rename to src/FoundationClasses/TKMath/BVH/BVH_Properties.cxx diff --git a/src/BVH/BVH_Properties.hxx b/src/FoundationClasses/TKMath/BVH/BVH_Properties.hxx similarity index 100% rename from src/BVH/BVH_Properties.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_Properties.hxx diff --git a/src/BVH/BVH_QuadTree.hxx b/src/FoundationClasses/TKMath/BVH/BVH_QuadTree.hxx similarity index 100% rename from src/BVH/BVH_QuadTree.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_QuadTree.hxx diff --git a/src/BVH/BVH_QueueBuilder.hxx b/src/FoundationClasses/TKMath/BVH/BVH_QueueBuilder.hxx similarity index 100% rename from src/BVH/BVH_QueueBuilder.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_QueueBuilder.hxx diff --git a/src/BVH/BVH_QuickSorter.hxx b/src/FoundationClasses/TKMath/BVH/BVH_QuickSorter.hxx similarity index 100% rename from src/BVH/BVH_QuickSorter.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_QuickSorter.hxx diff --git a/src/BVH/BVH_RadixSorter.hxx b/src/FoundationClasses/TKMath/BVH/BVH_RadixSorter.hxx similarity index 100% rename from src/BVH/BVH_RadixSorter.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_RadixSorter.hxx diff --git a/src/BVH/BVH_Ray.hxx b/src/FoundationClasses/TKMath/BVH/BVH_Ray.hxx similarity index 100% rename from src/BVH/BVH_Ray.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_Ray.hxx diff --git a/src/BVH/BVH_Set.hxx b/src/FoundationClasses/TKMath/BVH/BVH_Set.hxx similarity index 100% rename from src/BVH/BVH_Set.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_Set.hxx diff --git a/src/BVH/BVH_Sorter.hxx b/src/FoundationClasses/TKMath/BVH/BVH_Sorter.hxx similarity index 100% rename from src/BVH/BVH_Sorter.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_Sorter.hxx diff --git a/src/BVH/BVH_SpatialMedianBuilder.hxx b/src/FoundationClasses/TKMath/BVH/BVH_SpatialMedianBuilder.hxx similarity index 100% rename from src/BVH/BVH_SpatialMedianBuilder.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_SpatialMedianBuilder.hxx diff --git a/src/BVH/BVH_SweepPlaneBuilder.hxx b/src/FoundationClasses/TKMath/BVH/BVH_SweepPlaneBuilder.hxx similarity index 100% rename from src/BVH/BVH_SweepPlaneBuilder.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_SweepPlaneBuilder.hxx diff --git a/src/BVH/BVH_Tools.hxx b/src/FoundationClasses/TKMath/BVH/BVH_Tools.hxx similarity index 100% rename from src/BVH/BVH_Tools.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_Tools.hxx diff --git a/src/BVH/BVH_Traverse.hxx b/src/FoundationClasses/TKMath/BVH/BVH_Traverse.hxx similarity index 100% rename from src/BVH/BVH_Traverse.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_Traverse.hxx diff --git a/src/BVH/BVH_Traverse.lxx b/src/FoundationClasses/TKMath/BVH/BVH_Traverse.lxx similarity index 100% rename from src/BVH/BVH_Traverse.lxx rename to src/FoundationClasses/TKMath/BVH/BVH_Traverse.lxx diff --git a/src/BVH/BVH_Tree.hxx b/src/FoundationClasses/TKMath/BVH/BVH_Tree.hxx similarity index 100% rename from src/BVH/BVH_Tree.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_Tree.hxx diff --git a/src/BVH/BVH_Triangulation.hxx b/src/FoundationClasses/TKMath/BVH/BVH_Triangulation.hxx similarity index 100% rename from src/BVH/BVH_Triangulation.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_Triangulation.hxx diff --git a/src/BVH/BVH_Types.hxx b/src/FoundationClasses/TKMath/BVH/BVH_Types.hxx similarity index 100% rename from src/BVH/BVH_Types.hxx rename to src/FoundationClasses/TKMath/BVH/BVH_Types.hxx diff --git a/src/FoundationClasses/TKMath/BVH/FILES.cmake b/src/FoundationClasses/TKMath/BVH/FILES.cmake new file mode 100644 index 0000000000..5276ccdad9 --- /dev/null +++ b/src/FoundationClasses/TKMath/BVH/FILES.cmake @@ -0,0 +1,45 @@ +# Source files for BVH package +set(OCCT_BVH_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BVH_FILES + BVH.cxx + BVH_BinnedBuilder.hxx + BVH_Box.hxx + BVH_BoxSet.hxx + BVH_Builder.hxx + BVH_Builder3d.hxx + BVH_BuildQueue.hxx + BVH_BuildQueue.cxx + BVH_BuildThread.hxx + BVH_BuildThread.cxx + BVH_Constants.hxx + BVH_Distance.hxx + BVH_DistanceField.hxx + BVH_DistanceField.lxx + BVH_Geometry.hxx + BVH_IndexedBoxSet.hxx + BVH_LinearBuilder.hxx + BVH_Object.hxx + BVH_ObjectSet.hxx + BVH_PairDistance.hxx + BVH_PrimitiveSet.hxx + BVH_PrimitiveSet3d.hxx + BVH_Properties.cxx + BVH_Properties.hxx + BVH_QueueBuilder.hxx + BVH_Ray.hxx + BVH_Set.hxx + BVH_Sorter.hxx + BVH_QuickSorter.hxx + BVH_RadixSorter.hxx + BVH_SpatialMedianBuilder.hxx + BVH_SweepPlaneBuilder.hxx + BVH_Tools.hxx + BVH_Traverse.hxx + BVH_Traverse.lxx + BVH_Tree.hxx + BVH_BinaryTree.hxx + BVH_QuadTree.hxx + BVH_Triangulation.hxx + BVH_Types.hxx +) diff --git a/src/Bnd/Bnd_Array1OfBox.hxx b/src/FoundationClasses/TKMath/Bnd/Bnd_Array1OfBox.hxx similarity index 100% rename from src/Bnd/Bnd_Array1OfBox.hxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_Array1OfBox.hxx diff --git a/src/Bnd/Bnd_Array1OfBox2d.hxx b/src/FoundationClasses/TKMath/Bnd/Bnd_Array1OfBox2d.hxx similarity index 100% rename from src/Bnd/Bnd_Array1OfBox2d.hxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_Array1OfBox2d.hxx diff --git a/src/Bnd/Bnd_Array1OfSphere.hxx b/src/FoundationClasses/TKMath/Bnd/Bnd_Array1OfSphere.hxx similarity index 100% rename from src/Bnd/Bnd_Array1OfSphere.hxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_Array1OfSphere.hxx diff --git a/src/Bnd/Bnd_B2d.hxx b/src/FoundationClasses/TKMath/Bnd/Bnd_B2d.hxx similarity index 100% rename from src/Bnd/Bnd_B2d.hxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_B2d.hxx diff --git a/src/Bnd/Bnd_B2d_0.cxx b/src/FoundationClasses/TKMath/Bnd/Bnd_B2d_0.cxx similarity index 100% rename from src/Bnd/Bnd_B2d_0.cxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_B2d_0.cxx diff --git a/src/Bnd/Bnd_B2f.hxx b/src/FoundationClasses/TKMath/Bnd/Bnd_B2f.hxx similarity index 100% rename from src/Bnd/Bnd_B2f.hxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_B2f.hxx diff --git a/src/Bnd/Bnd_B2f_0.cxx b/src/FoundationClasses/TKMath/Bnd/Bnd_B2f_0.cxx similarity index 100% rename from src/Bnd/Bnd_B2f_0.cxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_B2f_0.cxx diff --git a/src/Bnd/Bnd_B2x.gxx b/src/FoundationClasses/TKMath/Bnd/Bnd_B2x.gxx similarity index 100% rename from src/Bnd/Bnd_B2x.gxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_B2x.gxx diff --git a/src/Bnd/Bnd_B2x.lxx b/src/FoundationClasses/TKMath/Bnd/Bnd_B2x.lxx similarity index 100% rename from src/Bnd/Bnd_B2x.lxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_B2x.lxx diff --git a/src/Bnd/Bnd_B3d.hxx b/src/FoundationClasses/TKMath/Bnd/Bnd_B3d.hxx similarity index 100% rename from src/Bnd/Bnd_B3d.hxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_B3d.hxx diff --git a/src/Bnd/Bnd_B3d_0.cxx b/src/FoundationClasses/TKMath/Bnd/Bnd_B3d_0.cxx similarity index 100% rename from src/Bnd/Bnd_B3d_0.cxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_B3d_0.cxx diff --git a/src/Bnd/Bnd_B3f.hxx b/src/FoundationClasses/TKMath/Bnd/Bnd_B3f.hxx similarity index 100% rename from src/Bnd/Bnd_B3f.hxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_B3f.hxx diff --git a/src/Bnd/Bnd_B3f_0.cxx b/src/FoundationClasses/TKMath/Bnd/Bnd_B3f_0.cxx similarity index 100% rename from src/Bnd/Bnd_B3f_0.cxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_B3f_0.cxx diff --git a/src/Bnd/Bnd_B3x.gxx b/src/FoundationClasses/TKMath/Bnd/Bnd_B3x.gxx similarity index 100% rename from src/Bnd/Bnd_B3x.gxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_B3x.gxx diff --git a/src/Bnd/Bnd_B3x.lxx b/src/FoundationClasses/TKMath/Bnd/Bnd_B3x.lxx similarity index 100% rename from src/Bnd/Bnd_B3x.lxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_B3x.lxx diff --git a/src/Bnd/Bnd_BoundSortBox.cxx b/src/FoundationClasses/TKMath/Bnd/Bnd_BoundSortBox.cxx similarity index 100% rename from src/Bnd/Bnd_BoundSortBox.cxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_BoundSortBox.cxx diff --git a/src/Bnd/Bnd_BoundSortBox.hxx b/src/FoundationClasses/TKMath/Bnd/Bnd_BoundSortBox.hxx similarity index 100% rename from src/Bnd/Bnd_BoundSortBox.hxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_BoundSortBox.hxx diff --git a/src/Bnd/Bnd_Box.cxx b/src/FoundationClasses/TKMath/Bnd/Bnd_Box.cxx similarity index 100% rename from src/Bnd/Bnd_Box.cxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_Box.cxx diff --git a/src/Bnd/Bnd_Box.hxx b/src/FoundationClasses/TKMath/Bnd/Bnd_Box.hxx similarity index 100% rename from src/Bnd/Bnd_Box.hxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_Box.hxx diff --git a/src/Bnd/Bnd_Box2d.cxx b/src/FoundationClasses/TKMath/Bnd/Bnd_Box2d.cxx similarity index 100% rename from src/Bnd/Bnd_Box2d.cxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_Box2d.cxx diff --git a/src/Bnd/Bnd_Box2d.hxx b/src/FoundationClasses/TKMath/Bnd/Bnd_Box2d.hxx similarity index 100% rename from src/Bnd/Bnd_Box2d.hxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_Box2d.hxx diff --git a/src/Bnd/Bnd_HArray1OfBox.hxx b/src/FoundationClasses/TKMath/Bnd/Bnd_HArray1OfBox.hxx similarity index 100% rename from src/Bnd/Bnd_HArray1OfBox.hxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_HArray1OfBox.hxx diff --git a/src/Bnd/Bnd_HArray1OfBox2d.hxx b/src/FoundationClasses/TKMath/Bnd/Bnd_HArray1OfBox2d.hxx similarity index 100% rename from src/Bnd/Bnd_HArray1OfBox2d.hxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_HArray1OfBox2d.hxx diff --git a/src/Bnd/Bnd_HArray1OfSphere.hxx b/src/FoundationClasses/TKMath/Bnd/Bnd_HArray1OfSphere.hxx similarity index 100% rename from src/Bnd/Bnd_HArray1OfSphere.hxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_HArray1OfSphere.hxx diff --git a/src/Bnd/Bnd_OBB.cxx b/src/FoundationClasses/TKMath/Bnd/Bnd_OBB.cxx similarity index 100% rename from src/Bnd/Bnd_OBB.cxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_OBB.cxx diff --git a/src/Bnd/Bnd_OBB.hxx b/src/FoundationClasses/TKMath/Bnd/Bnd_OBB.hxx similarity index 100% rename from src/Bnd/Bnd_OBB.hxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_OBB.hxx diff --git a/src/Bnd/Bnd_Range.cxx b/src/FoundationClasses/TKMath/Bnd/Bnd_Range.cxx similarity index 100% rename from src/Bnd/Bnd_Range.cxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_Range.cxx diff --git a/src/Bnd/Bnd_Range.hxx b/src/FoundationClasses/TKMath/Bnd/Bnd_Range.hxx similarity index 100% rename from src/Bnd/Bnd_Range.hxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_Range.hxx diff --git a/src/Bnd/Bnd_Sphere.cxx b/src/FoundationClasses/TKMath/Bnd/Bnd_Sphere.cxx similarity index 100% rename from src/Bnd/Bnd_Sphere.cxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_Sphere.cxx diff --git a/src/Bnd/Bnd_Sphere.hxx b/src/FoundationClasses/TKMath/Bnd/Bnd_Sphere.hxx similarity index 100% rename from src/Bnd/Bnd_Sphere.hxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_Sphere.hxx diff --git a/src/Bnd/Bnd_Sphere.lxx b/src/FoundationClasses/TKMath/Bnd/Bnd_Sphere.lxx similarity index 100% rename from src/Bnd/Bnd_Sphere.lxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_Sphere.lxx diff --git a/src/Bnd/Bnd_Tools.hxx b/src/FoundationClasses/TKMath/Bnd/Bnd_Tools.hxx similarity index 100% rename from src/Bnd/Bnd_Tools.hxx rename to src/FoundationClasses/TKMath/Bnd/Bnd_Tools.hxx diff --git a/src/FoundationClasses/TKMath/Bnd/FILES.cmake b/src/FoundationClasses/TKMath/Bnd/FILES.cmake new file mode 100644 index 0000000000..22e3058e99 --- /dev/null +++ b/src/FoundationClasses/TKMath/Bnd/FILES.cmake @@ -0,0 +1,37 @@ +# Source files for Bnd package +set(OCCT_Bnd_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Bnd_FILES + Bnd_Array1OfBox.hxx + Bnd_Array1OfBox2d.hxx + Bnd_Array1OfSphere.hxx + Bnd_B2d.hxx + Bnd_B2d_0.cxx + Bnd_B2f.hxx + Bnd_B2f_0.cxx + Bnd_B2x.gxx + Bnd_B2x.lxx + Bnd_B3d.hxx + Bnd_B3d_0.cxx + Bnd_B3f.hxx + Bnd_B3f_0.cxx + Bnd_B3x.gxx + Bnd_B3x.lxx + Bnd_BoundSortBox.cxx + Bnd_BoundSortBox.hxx + Bnd_Box.cxx + Bnd_Box.hxx + Bnd_Box2d.cxx + Bnd_Box2d.hxx + Bnd_HArray1OfBox.hxx + Bnd_HArray1OfBox2d.hxx + Bnd_HArray1OfSphere.hxx + Bnd_OBB.cxx + Bnd_OBB.hxx + Bnd_Range.cxx + Bnd_Range.hxx + Bnd_Sphere.cxx + Bnd_Sphere.hxx + Bnd_Sphere.lxx + Bnd_Tools.hxx +) diff --git a/src/TKMath/CMakeLists.txt b/src/FoundationClasses/TKMath/CMakeLists.txt similarity index 100% rename from src/TKMath/CMakeLists.txt rename to src/FoundationClasses/TKMath/CMakeLists.txt diff --git a/src/CSLib/CSLib.cxx b/src/FoundationClasses/TKMath/CSLib/CSLib.cxx similarity index 100% rename from src/CSLib/CSLib.cxx rename to src/FoundationClasses/TKMath/CSLib/CSLib.cxx diff --git a/src/CSLib/CSLib.hxx b/src/FoundationClasses/TKMath/CSLib/CSLib.hxx similarity index 100% rename from src/CSLib/CSLib.hxx rename to src/FoundationClasses/TKMath/CSLib/CSLib.hxx diff --git a/src/CSLib/CSLib_Class2d.cxx b/src/FoundationClasses/TKMath/CSLib/CSLib_Class2d.cxx similarity index 100% rename from src/CSLib/CSLib_Class2d.cxx rename to src/FoundationClasses/TKMath/CSLib/CSLib_Class2d.cxx diff --git a/src/CSLib/CSLib_Class2d.hxx b/src/FoundationClasses/TKMath/CSLib/CSLib_Class2d.hxx similarity index 100% rename from src/CSLib/CSLib_Class2d.hxx rename to src/FoundationClasses/TKMath/CSLib/CSLib_Class2d.hxx diff --git a/src/CSLib/CSLib_DerivativeStatus.hxx b/src/FoundationClasses/TKMath/CSLib/CSLib_DerivativeStatus.hxx similarity index 100% rename from src/CSLib/CSLib_DerivativeStatus.hxx rename to src/FoundationClasses/TKMath/CSLib/CSLib_DerivativeStatus.hxx diff --git a/src/CSLib/CSLib_NormalPolyDef.cxx b/src/FoundationClasses/TKMath/CSLib/CSLib_NormalPolyDef.cxx similarity index 100% rename from src/CSLib/CSLib_NormalPolyDef.cxx rename to src/FoundationClasses/TKMath/CSLib/CSLib_NormalPolyDef.cxx diff --git a/src/CSLib/CSLib_NormalPolyDef.hxx b/src/FoundationClasses/TKMath/CSLib/CSLib_NormalPolyDef.hxx similarity index 100% rename from src/CSLib/CSLib_NormalPolyDef.hxx rename to src/FoundationClasses/TKMath/CSLib/CSLib_NormalPolyDef.hxx diff --git a/src/CSLib/CSLib_NormalStatus.hxx b/src/FoundationClasses/TKMath/CSLib/CSLib_NormalStatus.hxx similarity index 100% rename from src/CSLib/CSLib_NormalStatus.hxx rename to src/FoundationClasses/TKMath/CSLib/CSLib_NormalStatus.hxx diff --git a/src/FoundationClasses/TKMath/CSLib/FILES.cmake b/src/FoundationClasses/TKMath/CSLib/FILES.cmake new file mode 100644 index 0000000000..764d0e8d1d --- /dev/null +++ b/src/FoundationClasses/TKMath/CSLib/FILES.cmake @@ -0,0 +1,13 @@ +# Source files for CSLib package +set(OCCT_CSLib_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_CSLib_FILES + CSLib.cxx + CSLib.hxx + CSLib_Class2d.cxx + CSLib_Class2d.hxx + CSLib_DerivativeStatus.hxx + CSLib_NormalPolyDef.cxx + CSLib_NormalPolyDef.hxx + CSLib_NormalStatus.hxx +) diff --git a/src/Convert/Convert_CircleToBSplineCurve.cxx b/src/FoundationClasses/TKMath/Convert/Convert_CircleToBSplineCurve.cxx similarity index 100% rename from src/Convert/Convert_CircleToBSplineCurve.cxx rename to src/FoundationClasses/TKMath/Convert/Convert_CircleToBSplineCurve.cxx diff --git a/src/Convert/Convert_CircleToBSplineCurve.hxx b/src/FoundationClasses/TKMath/Convert/Convert_CircleToBSplineCurve.hxx similarity index 100% rename from src/Convert/Convert_CircleToBSplineCurve.hxx rename to src/FoundationClasses/TKMath/Convert/Convert_CircleToBSplineCurve.hxx diff --git a/src/Convert/Convert_CompBezierCurves2dToBSplineCurve2d.cxx b/src/FoundationClasses/TKMath/Convert/Convert_CompBezierCurves2dToBSplineCurve2d.cxx similarity index 100% rename from src/Convert/Convert_CompBezierCurves2dToBSplineCurve2d.cxx rename to src/FoundationClasses/TKMath/Convert/Convert_CompBezierCurves2dToBSplineCurve2d.cxx diff --git a/src/Convert/Convert_CompBezierCurves2dToBSplineCurve2d.hxx b/src/FoundationClasses/TKMath/Convert/Convert_CompBezierCurves2dToBSplineCurve2d.hxx similarity index 100% rename from src/Convert/Convert_CompBezierCurves2dToBSplineCurve2d.hxx rename to src/FoundationClasses/TKMath/Convert/Convert_CompBezierCurves2dToBSplineCurve2d.hxx diff --git a/src/Convert/Convert_CompBezierCurvesToBSplineCurve.cxx b/src/FoundationClasses/TKMath/Convert/Convert_CompBezierCurvesToBSplineCurve.cxx similarity index 100% rename from src/Convert/Convert_CompBezierCurvesToBSplineCurve.cxx rename to src/FoundationClasses/TKMath/Convert/Convert_CompBezierCurvesToBSplineCurve.cxx diff --git a/src/Convert/Convert_CompBezierCurvesToBSplineCurve.hxx b/src/FoundationClasses/TKMath/Convert/Convert_CompBezierCurvesToBSplineCurve.hxx similarity index 100% rename from src/Convert/Convert_CompBezierCurvesToBSplineCurve.hxx rename to src/FoundationClasses/TKMath/Convert/Convert_CompBezierCurvesToBSplineCurve.hxx diff --git a/src/Convert/Convert_CompPolynomialToPoles.cxx b/src/FoundationClasses/TKMath/Convert/Convert_CompPolynomialToPoles.cxx similarity index 100% rename from src/Convert/Convert_CompPolynomialToPoles.cxx rename to src/FoundationClasses/TKMath/Convert/Convert_CompPolynomialToPoles.cxx diff --git a/src/Convert/Convert_CompPolynomialToPoles.hxx b/src/FoundationClasses/TKMath/Convert/Convert_CompPolynomialToPoles.hxx similarity index 100% rename from src/Convert/Convert_CompPolynomialToPoles.hxx rename to src/FoundationClasses/TKMath/Convert/Convert_CompPolynomialToPoles.hxx diff --git a/src/Convert/Convert_ConeToBSplineSurface.cxx b/src/FoundationClasses/TKMath/Convert/Convert_ConeToBSplineSurface.cxx similarity index 100% rename from src/Convert/Convert_ConeToBSplineSurface.cxx rename to src/FoundationClasses/TKMath/Convert/Convert_ConeToBSplineSurface.cxx diff --git a/src/Convert/Convert_ConeToBSplineSurface.hxx b/src/FoundationClasses/TKMath/Convert/Convert_ConeToBSplineSurface.hxx similarity index 100% rename from src/Convert/Convert_ConeToBSplineSurface.hxx rename to src/FoundationClasses/TKMath/Convert/Convert_ConeToBSplineSurface.hxx diff --git a/src/Convert/Convert_ConicToBSplineCurve.cxx b/src/FoundationClasses/TKMath/Convert/Convert_ConicToBSplineCurve.cxx similarity index 100% rename from src/Convert/Convert_ConicToBSplineCurve.cxx rename to src/FoundationClasses/TKMath/Convert/Convert_ConicToBSplineCurve.cxx diff --git a/src/Convert/Convert_ConicToBSplineCurve.hxx b/src/FoundationClasses/TKMath/Convert/Convert_ConicToBSplineCurve.hxx similarity index 100% rename from src/Convert/Convert_ConicToBSplineCurve.hxx rename to src/FoundationClasses/TKMath/Convert/Convert_ConicToBSplineCurve.hxx diff --git a/src/Convert/Convert_CosAndSinEvalFunction.hxx b/src/FoundationClasses/TKMath/Convert/Convert_CosAndSinEvalFunction.hxx similarity index 100% rename from src/Convert/Convert_CosAndSinEvalFunction.hxx rename to src/FoundationClasses/TKMath/Convert/Convert_CosAndSinEvalFunction.hxx diff --git a/src/Convert/Convert_CylinderToBSplineSurface.cxx b/src/FoundationClasses/TKMath/Convert/Convert_CylinderToBSplineSurface.cxx similarity index 100% rename from src/Convert/Convert_CylinderToBSplineSurface.cxx rename to src/FoundationClasses/TKMath/Convert/Convert_CylinderToBSplineSurface.cxx diff --git a/src/Convert/Convert_CylinderToBSplineSurface.hxx b/src/FoundationClasses/TKMath/Convert/Convert_CylinderToBSplineSurface.hxx similarity index 100% rename from src/Convert/Convert_CylinderToBSplineSurface.hxx rename to src/FoundationClasses/TKMath/Convert/Convert_CylinderToBSplineSurface.hxx diff --git a/src/Convert/Convert_ElementarySurfaceToBSplineSurface.cxx b/src/FoundationClasses/TKMath/Convert/Convert_ElementarySurfaceToBSplineSurface.cxx similarity index 100% rename from src/Convert/Convert_ElementarySurfaceToBSplineSurface.cxx rename to src/FoundationClasses/TKMath/Convert/Convert_ElementarySurfaceToBSplineSurface.cxx diff --git a/src/Convert/Convert_ElementarySurfaceToBSplineSurface.hxx b/src/FoundationClasses/TKMath/Convert/Convert_ElementarySurfaceToBSplineSurface.hxx similarity index 100% rename from src/Convert/Convert_ElementarySurfaceToBSplineSurface.hxx rename to src/FoundationClasses/TKMath/Convert/Convert_ElementarySurfaceToBSplineSurface.hxx diff --git a/src/Convert/Convert_EllipseToBSplineCurve.cxx b/src/FoundationClasses/TKMath/Convert/Convert_EllipseToBSplineCurve.cxx similarity index 100% rename from src/Convert/Convert_EllipseToBSplineCurve.cxx rename to src/FoundationClasses/TKMath/Convert/Convert_EllipseToBSplineCurve.cxx diff --git a/src/Convert/Convert_EllipseToBSplineCurve.hxx b/src/FoundationClasses/TKMath/Convert/Convert_EllipseToBSplineCurve.hxx similarity index 100% rename from src/Convert/Convert_EllipseToBSplineCurve.hxx rename to src/FoundationClasses/TKMath/Convert/Convert_EllipseToBSplineCurve.hxx diff --git a/src/Convert/Convert_GridPolynomialToPoles.cxx b/src/FoundationClasses/TKMath/Convert/Convert_GridPolynomialToPoles.cxx similarity index 100% rename from src/Convert/Convert_GridPolynomialToPoles.cxx rename to src/FoundationClasses/TKMath/Convert/Convert_GridPolynomialToPoles.cxx diff --git a/src/Convert/Convert_GridPolynomialToPoles.hxx b/src/FoundationClasses/TKMath/Convert/Convert_GridPolynomialToPoles.hxx similarity index 100% rename from src/Convert/Convert_GridPolynomialToPoles.hxx rename to src/FoundationClasses/TKMath/Convert/Convert_GridPolynomialToPoles.hxx diff --git a/src/Convert/Convert_HyperbolaToBSplineCurve.cxx b/src/FoundationClasses/TKMath/Convert/Convert_HyperbolaToBSplineCurve.cxx similarity index 100% rename from src/Convert/Convert_HyperbolaToBSplineCurve.cxx rename to src/FoundationClasses/TKMath/Convert/Convert_HyperbolaToBSplineCurve.cxx diff --git a/src/Convert/Convert_HyperbolaToBSplineCurve.hxx b/src/FoundationClasses/TKMath/Convert/Convert_HyperbolaToBSplineCurve.hxx similarity index 100% rename from src/Convert/Convert_HyperbolaToBSplineCurve.hxx rename to src/FoundationClasses/TKMath/Convert/Convert_HyperbolaToBSplineCurve.hxx diff --git a/src/Convert/Convert_ParabolaToBSplineCurve.cxx b/src/FoundationClasses/TKMath/Convert/Convert_ParabolaToBSplineCurve.cxx similarity index 100% rename from src/Convert/Convert_ParabolaToBSplineCurve.cxx rename to src/FoundationClasses/TKMath/Convert/Convert_ParabolaToBSplineCurve.cxx diff --git a/src/Convert/Convert_ParabolaToBSplineCurve.hxx b/src/FoundationClasses/TKMath/Convert/Convert_ParabolaToBSplineCurve.hxx similarity index 100% rename from src/Convert/Convert_ParabolaToBSplineCurve.hxx rename to src/FoundationClasses/TKMath/Convert/Convert_ParabolaToBSplineCurve.hxx diff --git a/src/Convert/Convert_ParameterisationType.hxx b/src/FoundationClasses/TKMath/Convert/Convert_ParameterisationType.hxx similarity index 100% rename from src/Convert/Convert_ParameterisationType.hxx rename to src/FoundationClasses/TKMath/Convert/Convert_ParameterisationType.hxx diff --git a/src/Convert/Convert_PolynomialCosAndSin.cxx b/src/FoundationClasses/TKMath/Convert/Convert_PolynomialCosAndSin.cxx similarity index 100% rename from src/Convert/Convert_PolynomialCosAndSin.cxx rename to src/FoundationClasses/TKMath/Convert/Convert_PolynomialCosAndSin.cxx diff --git a/src/Convert/Convert_PolynomialCosAndSin.hxx b/src/FoundationClasses/TKMath/Convert/Convert_PolynomialCosAndSin.hxx similarity index 100% rename from src/Convert/Convert_PolynomialCosAndSin.hxx rename to src/FoundationClasses/TKMath/Convert/Convert_PolynomialCosAndSin.hxx diff --git a/src/Convert/Convert_SequenceOfArray1OfPoles.hxx b/src/FoundationClasses/TKMath/Convert/Convert_SequenceOfArray1OfPoles.hxx similarity index 100% rename from src/Convert/Convert_SequenceOfArray1OfPoles.hxx rename to src/FoundationClasses/TKMath/Convert/Convert_SequenceOfArray1OfPoles.hxx diff --git a/src/Convert/Convert_SequenceOfArray1OfPoles2d.hxx b/src/FoundationClasses/TKMath/Convert/Convert_SequenceOfArray1OfPoles2d.hxx similarity index 100% rename from src/Convert/Convert_SequenceOfArray1OfPoles2d.hxx rename to src/FoundationClasses/TKMath/Convert/Convert_SequenceOfArray1OfPoles2d.hxx diff --git a/src/Convert/Convert_SphereToBSplineSurface.cxx b/src/FoundationClasses/TKMath/Convert/Convert_SphereToBSplineSurface.cxx similarity index 100% rename from src/Convert/Convert_SphereToBSplineSurface.cxx rename to src/FoundationClasses/TKMath/Convert/Convert_SphereToBSplineSurface.cxx diff --git a/src/Convert/Convert_SphereToBSplineSurface.hxx b/src/FoundationClasses/TKMath/Convert/Convert_SphereToBSplineSurface.hxx similarity index 100% rename from src/Convert/Convert_SphereToBSplineSurface.hxx rename to src/FoundationClasses/TKMath/Convert/Convert_SphereToBSplineSurface.hxx diff --git a/src/Convert/Convert_TorusToBSplineSurface.cxx b/src/FoundationClasses/TKMath/Convert/Convert_TorusToBSplineSurface.cxx similarity index 100% rename from src/Convert/Convert_TorusToBSplineSurface.cxx rename to src/FoundationClasses/TKMath/Convert/Convert_TorusToBSplineSurface.cxx diff --git a/src/Convert/Convert_TorusToBSplineSurface.hxx b/src/FoundationClasses/TKMath/Convert/Convert_TorusToBSplineSurface.hxx similarity index 100% rename from src/Convert/Convert_TorusToBSplineSurface.hxx rename to src/FoundationClasses/TKMath/Convert/Convert_TorusToBSplineSurface.hxx diff --git a/src/FoundationClasses/TKMath/Convert/FILES.cmake b/src/FoundationClasses/TKMath/Convert/FILES.cmake new file mode 100644 index 0000000000..1948679cea --- /dev/null +++ b/src/FoundationClasses/TKMath/Convert/FILES.cmake @@ -0,0 +1,39 @@ +# Source files for Convert package +set(OCCT_Convert_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Convert_FILES + Convert_CircleToBSplineCurve.cxx + Convert_CircleToBSplineCurve.hxx + Convert_CompBezierCurves2dToBSplineCurve2d.cxx + Convert_CompBezierCurves2dToBSplineCurve2d.hxx + Convert_CompBezierCurvesToBSplineCurve.cxx + Convert_CompBezierCurvesToBSplineCurve.hxx + Convert_CompPolynomialToPoles.cxx + Convert_CompPolynomialToPoles.hxx + Convert_ConeToBSplineSurface.cxx + Convert_ConeToBSplineSurface.hxx + Convert_ConicToBSplineCurve.cxx + Convert_ConicToBSplineCurve.hxx + Convert_CosAndSinEvalFunction.hxx + Convert_CylinderToBSplineSurface.cxx + Convert_CylinderToBSplineSurface.hxx + Convert_ElementarySurfaceToBSplineSurface.cxx + Convert_ElementarySurfaceToBSplineSurface.hxx + Convert_EllipseToBSplineCurve.cxx + Convert_EllipseToBSplineCurve.hxx + Convert_GridPolynomialToPoles.cxx + Convert_GridPolynomialToPoles.hxx + Convert_HyperbolaToBSplineCurve.cxx + Convert_HyperbolaToBSplineCurve.hxx + Convert_ParabolaToBSplineCurve.cxx + Convert_ParabolaToBSplineCurve.hxx + Convert_ParameterisationType.hxx + Convert_PolynomialCosAndSin.cxx + Convert_PolynomialCosAndSin.hxx + Convert_SequenceOfArray1OfPoles.hxx + Convert_SequenceOfArray1OfPoles2d.hxx + Convert_SphereToBSplineSurface.cxx + Convert_SphereToBSplineSurface.hxx + Convert_TorusToBSplineSurface.cxx + Convert_TorusToBSplineSurface.hxx +) diff --git a/src/FoundationClasses/TKMath/EXTERNLIB.cmake b/src/FoundationClasses/TKMath/EXTERNLIB.cmake new file mode 100644 index 0000000000..e216837519 --- /dev/null +++ b/src/FoundationClasses/TKMath/EXTERNLIB.cmake @@ -0,0 +1,5 @@ +# External dependencies for TKMath +set(OCCT_TKMath_EXTERNAL_LIBS + TKernel + CSF_TBB +) diff --git a/src/ElCLib/ElCLib.cxx b/src/FoundationClasses/TKMath/ElCLib/ElCLib.cxx similarity index 100% rename from src/ElCLib/ElCLib.cxx rename to src/FoundationClasses/TKMath/ElCLib/ElCLib.cxx diff --git a/src/ElCLib/ElCLib.hxx b/src/FoundationClasses/TKMath/ElCLib/ElCLib.hxx similarity index 100% rename from src/ElCLib/ElCLib.hxx rename to src/FoundationClasses/TKMath/ElCLib/ElCLib.hxx diff --git a/src/ElCLib/ElCLib.lxx b/src/FoundationClasses/TKMath/ElCLib/ElCLib.lxx similarity index 100% rename from src/ElCLib/ElCLib.lxx rename to src/FoundationClasses/TKMath/ElCLib/ElCLib.lxx diff --git a/src/FoundationClasses/TKMath/ElCLib/FILES.cmake b/src/FoundationClasses/TKMath/ElCLib/FILES.cmake new file mode 100644 index 0000000000..e4c6fb5489 --- /dev/null +++ b/src/FoundationClasses/TKMath/ElCLib/FILES.cmake @@ -0,0 +1,8 @@ +# Source files for ElCLib package +set(OCCT_ElCLib_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_ElCLib_FILES + ElCLib.cxx + ElCLib.hxx + ElCLib.lxx +) diff --git a/src/ElSLib/ElSLib.cxx b/src/FoundationClasses/TKMath/ElSLib/ElSLib.cxx similarity index 100% rename from src/ElSLib/ElSLib.cxx rename to src/FoundationClasses/TKMath/ElSLib/ElSLib.cxx diff --git a/src/ElSLib/ElSLib.hxx b/src/FoundationClasses/TKMath/ElSLib/ElSLib.hxx similarity index 100% rename from src/ElSLib/ElSLib.hxx rename to src/FoundationClasses/TKMath/ElSLib/ElSLib.hxx diff --git a/src/ElSLib/ElSLib.lxx b/src/FoundationClasses/TKMath/ElSLib/ElSLib.lxx similarity index 100% rename from src/ElSLib/ElSLib.lxx rename to src/FoundationClasses/TKMath/ElSLib/ElSLib.lxx diff --git a/src/FoundationClasses/TKMath/ElSLib/FILES.cmake b/src/FoundationClasses/TKMath/ElSLib/FILES.cmake new file mode 100644 index 0000000000..99af3f6574 --- /dev/null +++ b/src/FoundationClasses/TKMath/ElSLib/FILES.cmake @@ -0,0 +1,8 @@ +# Source files for ElSLib package +set(OCCT_ElSLib_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_ElSLib_FILES + ElSLib.cxx + ElSLib.hxx + ElSLib.lxx +) diff --git a/src/FoundationClasses/TKMath/FILES.cmake b/src/FoundationClasses/TKMath/FILES.cmake new file mode 100644 index 0000000000..9b4ac17628 --- /dev/null +++ b/src/FoundationClasses/TKMath/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKMath +set(OCCT_TKMath_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKMath_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/FoundationClasses/TKMath/GeomAbs/FILES.cmake b/src/FoundationClasses/TKMath/GeomAbs/FILES.cmake new file mode 100644 index 0000000000..2bb2459d4e --- /dev/null +++ b/src/FoundationClasses/TKMath/GeomAbs/FILES.cmake @@ -0,0 +1,11 @@ +# Source files for GeomAbs package +set(OCCT_GeomAbs_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_GeomAbs_FILES + GeomAbs_BSplKnotDistribution.hxx + GeomAbs_CurveType.hxx + GeomAbs_IsoType.hxx + GeomAbs_JoinType.hxx + GeomAbs_Shape.hxx + GeomAbs_SurfaceType.hxx +) diff --git a/src/GeomAbs/GeomAbs_BSplKnotDistribution.hxx b/src/FoundationClasses/TKMath/GeomAbs/GeomAbs_BSplKnotDistribution.hxx similarity index 100% rename from src/GeomAbs/GeomAbs_BSplKnotDistribution.hxx rename to src/FoundationClasses/TKMath/GeomAbs/GeomAbs_BSplKnotDistribution.hxx diff --git a/src/GeomAbs/GeomAbs_CurveType.hxx b/src/FoundationClasses/TKMath/GeomAbs/GeomAbs_CurveType.hxx similarity index 100% rename from src/GeomAbs/GeomAbs_CurveType.hxx rename to src/FoundationClasses/TKMath/GeomAbs/GeomAbs_CurveType.hxx diff --git a/src/GeomAbs/GeomAbs_IsoType.hxx b/src/FoundationClasses/TKMath/GeomAbs/GeomAbs_IsoType.hxx similarity index 100% rename from src/GeomAbs/GeomAbs_IsoType.hxx rename to src/FoundationClasses/TKMath/GeomAbs/GeomAbs_IsoType.hxx diff --git a/src/GeomAbs/GeomAbs_JoinType.hxx b/src/FoundationClasses/TKMath/GeomAbs/GeomAbs_JoinType.hxx similarity index 100% rename from src/GeomAbs/GeomAbs_JoinType.hxx rename to src/FoundationClasses/TKMath/GeomAbs/GeomAbs_JoinType.hxx diff --git a/src/GeomAbs/GeomAbs_Shape.hxx b/src/FoundationClasses/TKMath/GeomAbs/GeomAbs_Shape.hxx similarity index 100% rename from src/GeomAbs/GeomAbs_Shape.hxx rename to src/FoundationClasses/TKMath/GeomAbs/GeomAbs_Shape.hxx diff --git a/src/GeomAbs/GeomAbs_SurfaceType.hxx b/src/FoundationClasses/TKMath/GeomAbs/GeomAbs_SurfaceType.hxx similarity index 100% rename from src/GeomAbs/GeomAbs_SurfaceType.hxx rename to src/FoundationClasses/TKMath/GeomAbs/GeomAbs_SurfaceType.hxx diff --git a/src/FoundationClasses/TKMath/PACKAGES.cmake b/src/FoundationClasses/TKMath/PACKAGES.cmake new file mode 100644 index 0000000000..5f44acdbbc --- /dev/null +++ b/src/FoundationClasses/TKMath/PACKAGES.cmake @@ -0,0 +1,18 @@ +# Auto-generated list of packages for TKMath toolkit +set(OCCT_TKMath_LIST_OF_PACKAGES + math + ElCLib + ElSLib + BSplCLib + BSplSLib + PLib + GeomAbs + Poly + CSLib + Convert + Bnd + BVH + gp + TColgp + TopLoc +) diff --git a/src/FoundationClasses/TKMath/PLib/FILES.cmake b/src/FoundationClasses/TKMath/PLib/FILES.cmake new file mode 100644 index 0000000000..baa74cfc5a --- /dev/null +++ b/src/FoundationClasses/TKMath/PLib/FILES.cmake @@ -0,0 +1,19 @@ +# Source files for PLib package +set(OCCT_PLib_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_PLib_FILES + PLib.cxx + PLib.hxx + PLib_Base.cxx + PLib_Base.hxx + PLib_DoubleJacobiPolynomial.cxx + PLib_DoubleJacobiPolynomial.hxx + PLib_DoubleJacobiPolynomial.lxx + PLib_HermitJacobi.cxx + PLib_HermitJacobi.hxx + PLib_HermitJacobi.lxx + PLib_JacobiPolynomial.cxx + PLib_JacobiPolynomial.hxx + PLib_JacobiPolynomial.lxx + PLib_JacobiPolynomial_Data.pxx +) diff --git a/src/PLib/PLib.cxx b/src/FoundationClasses/TKMath/PLib/PLib.cxx similarity index 100% rename from src/PLib/PLib.cxx rename to src/FoundationClasses/TKMath/PLib/PLib.cxx diff --git a/src/PLib/PLib.hxx b/src/FoundationClasses/TKMath/PLib/PLib.hxx similarity index 100% rename from src/PLib/PLib.hxx rename to src/FoundationClasses/TKMath/PLib/PLib.hxx diff --git a/src/PLib/PLib_Base.cxx b/src/FoundationClasses/TKMath/PLib/PLib_Base.cxx similarity index 100% rename from src/PLib/PLib_Base.cxx rename to src/FoundationClasses/TKMath/PLib/PLib_Base.cxx diff --git a/src/PLib/PLib_Base.hxx b/src/FoundationClasses/TKMath/PLib/PLib_Base.hxx similarity index 100% rename from src/PLib/PLib_Base.hxx rename to src/FoundationClasses/TKMath/PLib/PLib_Base.hxx diff --git a/src/PLib/PLib_DoubleJacobiPolynomial.cxx b/src/FoundationClasses/TKMath/PLib/PLib_DoubleJacobiPolynomial.cxx similarity index 100% rename from src/PLib/PLib_DoubleJacobiPolynomial.cxx rename to src/FoundationClasses/TKMath/PLib/PLib_DoubleJacobiPolynomial.cxx diff --git a/src/PLib/PLib_DoubleJacobiPolynomial.hxx b/src/FoundationClasses/TKMath/PLib/PLib_DoubleJacobiPolynomial.hxx similarity index 100% rename from src/PLib/PLib_DoubleJacobiPolynomial.hxx rename to src/FoundationClasses/TKMath/PLib/PLib_DoubleJacobiPolynomial.hxx diff --git a/src/PLib/PLib_DoubleJacobiPolynomial.lxx b/src/FoundationClasses/TKMath/PLib/PLib_DoubleJacobiPolynomial.lxx similarity index 100% rename from src/PLib/PLib_DoubleJacobiPolynomial.lxx rename to src/FoundationClasses/TKMath/PLib/PLib_DoubleJacobiPolynomial.lxx diff --git a/src/PLib/PLib_HermitJacobi.cxx b/src/FoundationClasses/TKMath/PLib/PLib_HermitJacobi.cxx similarity index 100% rename from src/PLib/PLib_HermitJacobi.cxx rename to src/FoundationClasses/TKMath/PLib/PLib_HermitJacobi.cxx diff --git a/src/PLib/PLib_HermitJacobi.hxx b/src/FoundationClasses/TKMath/PLib/PLib_HermitJacobi.hxx similarity index 100% rename from src/PLib/PLib_HermitJacobi.hxx rename to src/FoundationClasses/TKMath/PLib/PLib_HermitJacobi.hxx diff --git a/src/PLib/PLib_HermitJacobi.lxx b/src/FoundationClasses/TKMath/PLib/PLib_HermitJacobi.lxx similarity index 100% rename from src/PLib/PLib_HermitJacobi.lxx rename to src/FoundationClasses/TKMath/PLib/PLib_HermitJacobi.lxx diff --git a/src/PLib/PLib_JacobiPolynomial.cxx b/src/FoundationClasses/TKMath/PLib/PLib_JacobiPolynomial.cxx similarity index 100% rename from src/PLib/PLib_JacobiPolynomial.cxx rename to src/FoundationClasses/TKMath/PLib/PLib_JacobiPolynomial.cxx diff --git a/src/PLib/PLib_JacobiPolynomial.hxx b/src/FoundationClasses/TKMath/PLib/PLib_JacobiPolynomial.hxx similarity index 100% rename from src/PLib/PLib_JacobiPolynomial.hxx rename to src/FoundationClasses/TKMath/PLib/PLib_JacobiPolynomial.hxx diff --git a/src/PLib/PLib_JacobiPolynomial.lxx b/src/FoundationClasses/TKMath/PLib/PLib_JacobiPolynomial.lxx similarity index 100% rename from src/PLib/PLib_JacobiPolynomial.lxx rename to src/FoundationClasses/TKMath/PLib/PLib_JacobiPolynomial.lxx diff --git a/src/PLib/PLib_JacobiPolynomial_Data.pxx b/src/FoundationClasses/TKMath/PLib/PLib_JacobiPolynomial_Data.pxx similarity index 100% rename from src/PLib/PLib_JacobiPolynomial_Data.pxx rename to src/FoundationClasses/TKMath/PLib/PLib_JacobiPolynomial_Data.pxx diff --git a/src/FoundationClasses/TKMath/Poly/FILES.cmake b/src/FoundationClasses/TKMath/Poly/FILES.cmake new file mode 100644 index 0000000000..41217e9e1e --- /dev/null +++ b/src/FoundationClasses/TKMath/Poly/FILES.cmake @@ -0,0 +1,42 @@ +# Source files for Poly package +set(OCCT_Poly_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Poly_FILES + Poly.cxx + Poly.hxx + Poly_Array1OfTriangle.hxx + Poly_ArrayOfNodes.cxx + Poly_ArrayOfNodes.hxx + Poly_ArrayOfUVNodes.cxx + Poly_ArrayOfUVNodes.hxx + Poly_CoherentLink.cxx + Poly_CoherentLink.hxx + Poly_CoherentNode.cxx + Poly_CoherentNode.hxx + Poly_CoherentTriangle.cxx + Poly_CoherentTriangle.hxx + Poly_CoherentTriangulation.cxx + Poly_CoherentTriangulation.hxx + Poly_CoherentTriPtr.cxx + Poly_CoherentTriPtr.hxx + Poly_Connect.cxx + Poly_Connect.hxx + Poly_HArray1OfTriangle.hxx + Poly_ListOfTriangulation.hxx + Poly_MakeLoops.cxx + Poly_MakeLoops.hxx + Poly_MeshPurpose.hxx + Poly_MergeNodesTool.cxx + Poly_MergeNodesTool.hxx + Poly_Polygon2D.cxx + Poly_Polygon2D.hxx + Poly_Polygon3D.cxx + Poly_Polygon3D.hxx + Poly_PolygonOnTriangulation.cxx + Poly_PolygonOnTriangulation.hxx + Poly_Triangle.hxx + Poly_TriangulationParameters.hxx + Poly_TriangulationParameters.cxx + Poly_Triangulation.cxx + Poly_Triangulation.hxx +) diff --git a/src/Poly/Poly.cxx b/src/FoundationClasses/TKMath/Poly/Poly.cxx similarity index 100% rename from src/Poly/Poly.cxx rename to src/FoundationClasses/TKMath/Poly/Poly.cxx diff --git a/src/Poly/Poly.hxx b/src/FoundationClasses/TKMath/Poly/Poly.hxx similarity index 100% rename from src/Poly/Poly.hxx rename to src/FoundationClasses/TKMath/Poly/Poly.hxx diff --git a/src/Poly/Poly_Array1OfTriangle.hxx b/src/FoundationClasses/TKMath/Poly/Poly_Array1OfTriangle.hxx similarity index 100% rename from src/Poly/Poly_Array1OfTriangle.hxx rename to src/FoundationClasses/TKMath/Poly/Poly_Array1OfTriangle.hxx diff --git a/src/Poly/Poly_ArrayOfNodes.cxx b/src/FoundationClasses/TKMath/Poly/Poly_ArrayOfNodes.cxx similarity index 100% rename from src/Poly/Poly_ArrayOfNodes.cxx rename to src/FoundationClasses/TKMath/Poly/Poly_ArrayOfNodes.cxx diff --git a/src/Poly/Poly_ArrayOfNodes.hxx b/src/FoundationClasses/TKMath/Poly/Poly_ArrayOfNodes.hxx similarity index 100% rename from src/Poly/Poly_ArrayOfNodes.hxx rename to src/FoundationClasses/TKMath/Poly/Poly_ArrayOfNodes.hxx diff --git a/src/Poly/Poly_ArrayOfUVNodes.cxx b/src/FoundationClasses/TKMath/Poly/Poly_ArrayOfUVNodes.cxx similarity index 100% rename from src/Poly/Poly_ArrayOfUVNodes.cxx rename to src/FoundationClasses/TKMath/Poly/Poly_ArrayOfUVNodes.cxx diff --git a/src/Poly/Poly_ArrayOfUVNodes.hxx b/src/FoundationClasses/TKMath/Poly/Poly_ArrayOfUVNodes.hxx similarity index 100% rename from src/Poly/Poly_ArrayOfUVNodes.hxx rename to src/FoundationClasses/TKMath/Poly/Poly_ArrayOfUVNodes.hxx diff --git a/src/Poly/Poly_CoherentLink.cxx b/src/FoundationClasses/TKMath/Poly/Poly_CoherentLink.cxx similarity index 100% rename from src/Poly/Poly_CoherentLink.cxx rename to src/FoundationClasses/TKMath/Poly/Poly_CoherentLink.cxx diff --git a/src/Poly/Poly_CoherentLink.hxx b/src/FoundationClasses/TKMath/Poly/Poly_CoherentLink.hxx similarity index 100% rename from src/Poly/Poly_CoherentLink.hxx rename to src/FoundationClasses/TKMath/Poly/Poly_CoherentLink.hxx diff --git a/src/Poly/Poly_CoherentNode.cxx b/src/FoundationClasses/TKMath/Poly/Poly_CoherentNode.cxx similarity index 100% rename from src/Poly/Poly_CoherentNode.cxx rename to src/FoundationClasses/TKMath/Poly/Poly_CoherentNode.cxx diff --git a/src/Poly/Poly_CoherentNode.hxx b/src/FoundationClasses/TKMath/Poly/Poly_CoherentNode.hxx similarity index 100% rename from src/Poly/Poly_CoherentNode.hxx rename to src/FoundationClasses/TKMath/Poly/Poly_CoherentNode.hxx diff --git a/src/Poly/Poly_CoherentTriPtr.cxx b/src/FoundationClasses/TKMath/Poly/Poly_CoherentTriPtr.cxx similarity index 100% rename from src/Poly/Poly_CoherentTriPtr.cxx rename to src/FoundationClasses/TKMath/Poly/Poly_CoherentTriPtr.cxx diff --git a/src/Poly/Poly_CoherentTriPtr.hxx b/src/FoundationClasses/TKMath/Poly/Poly_CoherentTriPtr.hxx similarity index 100% rename from src/Poly/Poly_CoherentTriPtr.hxx rename to src/FoundationClasses/TKMath/Poly/Poly_CoherentTriPtr.hxx diff --git a/src/Poly/Poly_CoherentTriangle.cxx b/src/FoundationClasses/TKMath/Poly/Poly_CoherentTriangle.cxx similarity index 100% rename from src/Poly/Poly_CoherentTriangle.cxx rename to src/FoundationClasses/TKMath/Poly/Poly_CoherentTriangle.cxx diff --git a/src/Poly/Poly_CoherentTriangle.hxx b/src/FoundationClasses/TKMath/Poly/Poly_CoherentTriangle.hxx similarity index 100% rename from src/Poly/Poly_CoherentTriangle.hxx rename to src/FoundationClasses/TKMath/Poly/Poly_CoherentTriangle.hxx diff --git a/src/Poly/Poly_CoherentTriangulation.cxx b/src/FoundationClasses/TKMath/Poly/Poly_CoherentTriangulation.cxx similarity index 100% rename from src/Poly/Poly_CoherentTriangulation.cxx rename to src/FoundationClasses/TKMath/Poly/Poly_CoherentTriangulation.cxx diff --git a/src/Poly/Poly_CoherentTriangulation.hxx b/src/FoundationClasses/TKMath/Poly/Poly_CoherentTriangulation.hxx similarity index 100% rename from src/Poly/Poly_CoherentTriangulation.hxx rename to src/FoundationClasses/TKMath/Poly/Poly_CoherentTriangulation.hxx diff --git a/src/Poly/Poly_Connect.cxx b/src/FoundationClasses/TKMath/Poly/Poly_Connect.cxx similarity index 100% rename from src/Poly/Poly_Connect.cxx rename to src/FoundationClasses/TKMath/Poly/Poly_Connect.cxx diff --git a/src/Poly/Poly_Connect.hxx b/src/FoundationClasses/TKMath/Poly/Poly_Connect.hxx similarity index 100% rename from src/Poly/Poly_Connect.hxx rename to src/FoundationClasses/TKMath/Poly/Poly_Connect.hxx diff --git a/src/Poly/Poly_HArray1OfTriangle.hxx b/src/FoundationClasses/TKMath/Poly/Poly_HArray1OfTriangle.hxx similarity index 100% rename from src/Poly/Poly_HArray1OfTriangle.hxx rename to src/FoundationClasses/TKMath/Poly/Poly_HArray1OfTriangle.hxx diff --git a/src/Poly/Poly_ListOfTriangulation.hxx b/src/FoundationClasses/TKMath/Poly/Poly_ListOfTriangulation.hxx similarity index 100% rename from src/Poly/Poly_ListOfTriangulation.hxx rename to src/FoundationClasses/TKMath/Poly/Poly_ListOfTriangulation.hxx diff --git a/src/Poly/Poly_MakeLoops.cxx b/src/FoundationClasses/TKMath/Poly/Poly_MakeLoops.cxx similarity index 100% rename from src/Poly/Poly_MakeLoops.cxx rename to src/FoundationClasses/TKMath/Poly/Poly_MakeLoops.cxx diff --git a/src/Poly/Poly_MakeLoops.hxx b/src/FoundationClasses/TKMath/Poly/Poly_MakeLoops.hxx similarity index 100% rename from src/Poly/Poly_MakeLoops.hxx rename to src/FoundationClasses/TKMath/Poly/Poly_MakeLoops.hxx diff --git a/src/Poly/Poly_MergeNodesTool.cxx b/src/FoundationClasses/TKMath/Poly/Poly_MergeNodesTool.cxx similarity index 100% rename from src/Poly/Poly_MergeNodesTool.cxx rename to src/FoundationClasses/TKMath/Poly/Poly_MergeNodesTool.cxx diff --git a/src/Poly/Poly_MergeNodesTool.hxx b/src/FoundationClasses/TKMath/Poly/Poly_MergeNodesTool.hxx similarity index 100% rename from src/Poly/Poly_MergeNodesTool.hxx rename to src/FoundationClasses/TKMath/Poly/Poly_MergeNodesTool.hxx diff --git a/src/Poly/Poly_MeshPurpose.hxx b/src/FoundationClasses/TKMath/Poly/Poly_MeshPurpose.hxx similarity index 100% rename from src/Poly/Poly_MeshPurpose.hxx rename to src/FoundationClasses/TKMath/Poly/Poly_MeshPurpose.hxx diff --git a/src/Poly/Poly_Polygon2D.cxx b/src/FoundationClasses/TKMath/Poly/Poly_Polygon2D.cxx similarity index 100% rename from src/Poly/Poly_Polygon2D.cxx rename to src/FoundationClasses/TKMath/Poly/Poly_Polygon2D.cxx diff --git a/src/Poly/Poly_Polygon2D.hxx b/src/FoundationClasses/TKMath/Poly/Poly_Polygon2D.hxx similarity index 100% rename from src/Poly/Poly_Polygon2D.hxx rename to src/FoundationClasses/TKMath/Poly/Poly_Polygon2D.hxx diff --git a/src/Poly/Poly_Polygon3D.cxx b/src/FoundationClasses/TKMath/Poly/Poly_Polygon3D.cxx similarity index 100% rename from src/Poly/Poly_Polygon3D.cxx rename to src/FoundationClasses/TKMath/Poly/Poly_Polygon3D.cxx diff --git a/src/Poly/Poly_Polygon3D.hxx b/src/FoundationClasses/TKMath/Poly/Poly_Polygon3D.hxx similarity index 100% rename from src/Poly/Poly_Polygon3D.hxx rename to src/FoundationClasses/TKMath/Poly/Poly_Polygon3D.hxx diff --git a/src/Poly/Poly_PolygonOnTriangulation.cxx b/src/FoundationClasses/TKMath/Poly/Poly_PolygonOnTriangulation.cxx similarity index 100% rename from src/Poly/Poly_PolygonOnTriangulation.cxx rename to src/FoundationClasses/TKMath/Poly/Poly_PolygonOnTriangulation.cxx diff --git a/src/Poly/Poly_PolygonOnTriangulation.hxx b/src/FoundationClasses/TKMath/Poly/Poly_PolygonOnTriangulation.hxx similarity index 100% rename from src/Poly/Poly_PolygonOnTriangulation.hxx rename to src/FoundationClasses/TKMath/Poly/Poly_PolygonOnTriangulation.hxx diff --git a/src/Poly/Poly_Triangle.hxx b/src/FoundationClasses/TKMath/Poly/Poly_Triangle.hxx similarity index 100% rename from src/Poly/Poly_Triangle.hxx rename to src/FoundationClasses/TKMath/Poly/Poly_Triangle.hxx diff --git a/src/Poly/Poly_Triangulation.cxx b/src/FoundationClasses/TKMath/Poly/Poly_Triangulation.cxx similarity index 100% rename from src/Poly/Poly_Triangulation.cxx rename to src/FoundationClasses/TKMath/Poly/Poly_Triangulation.cxx diff --git a/src/Poly/Poly_Triangulation.hxx b/src/FoundationClasses/TKMath/Poly/Poly_Triangulation.hxx similarity index 100% rename from src/Poly/Poly_Triangulation.hxx rename to src/FoundationClasses/TKMath/Poly/Poly_Triangulation.hxx diff --git a/src/Poly/Poly_TriangulationParameters.cxx b/src/FoundationClasses/TKMath/Poly/Poly_TriangulationParameters.cxx similarity index 100% rename from src/Poly/Poly_TriangulationParameters.cxx rename to src/FoundationClasses/TKMath/Poly/Poly_TriangulationParameters.cxx diff --git a/src/Poly/Poly_TriangulationParameters.hxx b/src/FoundationClasses/TKMath/Poly/Poly_TriangulationParameters.hxx similarity index 100% rename from src/Poly/Poly_TriangulationParameters.hxx rename to src/FoundationClasses/TKMath/Poly/Poly_TriangulationParameters.hxx diff --git a/src/FoundationClasses/TKMath/TColgp/FILES.cmake b/src/FoundationClasses/TKMath/TColgp/FILES.cmake new file mode 100644 index 0000000000..61f47748e0 --- /dev/null +++ b/src/FoundationClasses/TKMath/TColgp/FILES.cmake @@ -0,0 +1,63 @@ +# Source files for TColgp package +set(OCCT_TColgp_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TColgp_FILES + TColgp_Array1OfCirc2d.hxx + TColgp_Array1OfDir.hxx + TColgp_Array1OfDir2d.hxx + TColgp_Array1OfLin2d.hxx + TColgp_Array1OfPnt.hxx + TColgp_Array1OfPnt2d.hxx + TColgp_Array1OfVec.hxx + TColgp_Array1OfVec2d.hxx + TColgp_Array1OfXY.hxx + TColgp_Array1OfXYZ.hxx + TColgp_Array2OfCirc2d.hxx + TColgp_Array2OfDir.hxx + TColgp_Array2OfDir2d.hxx + TColgp_Array2OfLin2d.hxx + TColgp_Array2OfPnt.hxx + TColgp_Array2OfPnt2d.hxx + TColgp_Array2OfVec.hxx + TColgp_Array2OfVec2d.hxx + TColgp_Array2OfXY.hxx + TColgp_Array2OfXYZ.hxx + TColgp_HArray1OfCirc2d.hxx + TColgp_HArray1OfDir.hxx + TColgp_HArray1OfDir2d.hxx + TColgp_HArray1OfLin2d.hxx + TColgp_HArray1OfPnt.hxx + TColgp_HArray1OfPnt2d.hxx + TColgp_HArray1OfVec.hxx + TColgp_HArray1OfVec2d.hxx + TColgp_HArray1OfXY.hxx + TColgp_HArray1OfXYZ.hxx + TColgp_HArray2OfCirc2d.hxx + TColgp_HArray2OfDir.hxx + TColgp_HArray2OfDir2d.hxx + TColgp_HArray2OfLin2d.hxx + TColgp_HArray2OfPnt.hxx + TColgp_HArray2OfPnt2d.hxx + TColgp_HArray2OfVec.hxx + TColgp_HArray2OfVec2d.hxx + TColgp_HArray2OfXY.hxx + TColgp_HArray2OfXYZ.hxx + TColgp_HSequenceOfDir.hxx + TColgp_HSequenceOfDir2d.hxx + TColgp_HSequenceOfPnt.hxx + TColgp_HSequenceOfPnt2d.hxx + TColgp_HSequenceOfVec.hxx + TColgp_HSequenceOfVec2d.hxx + TColgp_HSequenceOfXY.hxx + TColgp_HSequenceOfXYZ.hxx + TColgp_SequenceOfArray1OfPnt2d.hxx + TColgp_SequenceOfAx1.hxx + TColgp_SequenceOfDir.hxx + TColgp_SequenceOfDir2d.hxx + TColgp_SequenceOfPnt.hxx + TColgp_SequenceOfPnt2d.hxx + TColgp_SequenceOfVec.hxx + TColgp_SequenceOfVec2d.hxx + TColgp_SequenceOfXY.hxx + TColgp_SequenceOfXYZ.hxx +) diff --git a/src/TColgp/TColgp_Array1OfCirc2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_Array1OfCirc2d.hxx similarity index 100% rename from src/TColgp/TColgp_Array1OfCirc2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_Array1OfCirc2d.hxx diff --git a/src/TColgp/TColgp_Array1OfDir.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_Array1OfDir.hxx similarity index 100% rename from src/TColgp/TColgp_Array1OfDir.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_Array1OfDir.hxx diff --git a/src/TColgp/TColgp_Array1OfDir2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_Array1OfDir2d.hxx similarity index 100% rename from src/TColgp/TColgp_Array1OfDir2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_Array1OfDir2d.hxx diff --git a/src/TColgp/TColgp_Array1OfLin2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_Array1OfLin2d.hxx similarity index 100% rename from src/TColgp/TColgp_Array1OfLin2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_Array1OfLin2d.hxx diff --git a/src/TColgp/TColgp_Array1OfPnt.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_Array1OfPnt.hxx similarity index 100% rename from src/TColgp/TColgp_Array1OfPnt.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_Array1OfPnt.hxx diff --git a/src/TColgp/TColgp_Array1OfPnt2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_Array1OfPnt2d.hxx similarity index 100% rename from src/TColgp/TColgp_Array1OfPnt2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_Array1OfPnt2d.hxx diff --git a/src/TColgp/TColgp_Array1OfVec.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_Array1OfVec.hxx similarity index 100% rename from src/TColgp/TColgp_Array1OfVec.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_Array1OfVec.hxx diff --git a/src/TColgp/TColgp_Array1OfVec2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_Array1OfVec2d.hxx similarity index 100% rename from src/TColgp/TColgp_Array1OfVec2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_Array1OfVec2d.hxx diff --git a/src/TColgp/TColgp_Array1OfXY.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_Array1OfXY.hxx similarity index 100% rename from src/TColgp/TColgp_Array1OfXY.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_Array1OfXY.hxx diff --git a/src/TColgp/TColgp_Array1OfXYZ.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_Array1OfXYZ.hxx similarity index 100% rename from src/TColgp/TColgp_Array1OfXYZ.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_Array1OfXYZ.hxx diff --git a/src/TColgp/TColgp_Array2OfCirc2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_Array2OfCirc2d.hxx similarity index 100% rename from src/TColgp/TColgp_Array2OfCirc2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_Array2OfCirc2d.hxx diff --git a/src/TColgp/TColgp_Array2OfDir.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_Array2OfDir.hxx similarity index 100% rename from src/TColgp/TColgp_Array2OfDir.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_Array2OfDir.hxx diff --git a/src/TColgp/TColgp_Array2OfDir2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_Array2OfDir2d.hxx similarity index 100% rename from src/TColgp/TColgp_Array2OfDir2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_Array2OfDir2d.hxx diff --git a/src/TColgp/TColgp_Array2OfLin2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_Array2OfLin2d.hxx similarity index 100% rename from src/TColgp/TColgp_Array2OfLin2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_Array2OfLin2d.hxx diff --git a/src/TColgp/TColgp_Array2OfPnt.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_Array2OfPnt.hxx similarity index 100% rename from src/TColgp/TColgp_Array2OfPnt.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_Array2OfPnt.hxx diff --git a/src/TColgp/TColgp_Array2OfPnt2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_Array2OfPnt2d.hxx similarity index 100% rename from src/TColgp/TColgp_Array2OfPnt2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_Array2OfPnt2d.hxx diff --git a/src/TColgp/TColgp_Array2OfVec.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_Array2OfVec.hxx similarity index 100% rename from src/TColgp/TColgp_Array2OfVec.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_Array2OfVec.hxx diff --git a/src/TColgp/TColgp_Array2OfVec2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_Array2OfVec2d.hxx similarity index 100% rename from src/TColgp/TColgp_Array2OfVec2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_Array2OfVec2d.hxx diff --git a/src/TColgp/TColgp_Array2OfXY.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_Array2OfXY.hxx similarity index 100% rename from src/TColgp/TColgp_Array2OfXY.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_Array2OfXY.hxx diff --git a/src/TColgp/TColgp_Array2OfXYZ.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_Array2OfXYZ.hxx similarity index 100% rename from src/TColgp/TColgp_Array2OfXYZ.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_Array2OfXYZ.hxx diff --git a/src/TColgp/TColgp_HArray1OfCirc2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HArray1OfCirc2d.hxx similarity index 100% rename from src/TColgp/TColgp_HArray1OfCirc2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HArray1OfCirc2d.hxx diff --git a/src/TColgp/TColgp_HArray1OfDir.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HArray1OfDir.hxx similarity index 100% rename from src/TColgp/TColgp_HArray1OfDir.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HArray1OfDir.hxx diff --git a/src/TColgp/TColgp_HArray1OfDir2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HArray1OfDir2d.hxx similarity index 100% rename from src/TColgp/TColgp_HArray1OfDir2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HArray1OfDir2d.hxx diff --git a/src/TColgp/TColgp_HArray1OfLin2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HArray1OfLin2d.hxx similarity index 100% rename from src/TColgp/TColgp_HArray1OfLin2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HArray1OfLin2d.hxx diff --git a/src/TColgp/TColgp_HArray1OfPnt.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HArray1OfPnt.hxx similarity index 100% rename from src/TColgp/TColgp_HArray1OfPnt.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HArray1OfPnt.hxx diff --git a/src/TColgp/TColgp_HArray1OfPnt2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HArray1OfPnt2d.hxx similarity index 100% rename from src/TColgp/TColgp_HArray1OfPnt2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HArray1OfPnt2d.hxx diff --git a/src/TColgp/TColgp_HArray1OfVec.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HArray1OfVec.hxx similarity index 100% rename from src/TColgp/TColgp_HArray1OfVec.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HArray1OfVec.hxx diff --git a/src/TColgp/TColgp_HArray1OfVec2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HArray1OfVec2d.hxx similarity index 100% rename from src/TColgp/TColgp_HArray1OfVec2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HArray1OfVec2d.hxx diff --git a/src/TColgp/TColgp_HArray1OfXY.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HArray1OfXY.hxx similarity index 100% rename from src/TColgp/TColgp_HArray1OfXY.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HArray1OfXY.hxx diff --git a/src/TColgp/TColgp_HArray1OfXYZ.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HArray1OfXYZ.hxx similarity index 100% rename from src/TColgp/TColgp_HArray1OfXYZ.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HArray1OfXYZ.hxx diff --git a/src/TColgp/TColgp_HArray2OfCirc2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HArray2OfCirc2d.hxx similarity index 100% rename from src/TColgp/TColgp_HArray2OfCirc2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HArray2OfCirc2d.hxx diff --git a/src/TColgp/TColgp_HArray2OfDir.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HArray2OfDir.hxx similarity index 100% rename from src/TColgp/TColgp_HArray2OfDir.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HArray2OfDir.hxx diff --git a/src/TColgp/TColgp_HArray2OfDir2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HArray2OfDir2d.hxx similarity index 100% rename from src/TColgp/TColgp_HArray2OfDir2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HArray2OfDir2d.hxx diff --git a/src/TColgp/TColgp_HArray2OfLin2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HArray2OfLin2d.hxx similarity index 100% rename from src/TColgp/TColgp_HArray2OfLin2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HArray2OfLin2d.hxx diff --git a/src/TColgp/TColgp_HArray2OfPnt.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HArray2OfPnt.hxx similarity index 100% rename from src/TColgp/TColgp_HArray2OfPnt.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HArray2OfPnt.hxx diff --git a/src/TColgp/TColgp_HArray2OfPnt2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HArray2OfPnt2d.hxx similarity index 100% rename from src/TColgp/TColgp_HArray2OfPnt2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HArray2OfPnt2d.hxx diff --git a/src/TColgp/TColgp_HArray2OfVec.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HArray2OfVec.hxx similarity index 100% rename from src/TColgp/TColgp_HArray2OfVec.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HArray2OfVec.hxx diff --git a/src/TColgp/TColgp_HArray2OfVec2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HArray2OfVec2d.hxx similarity index 100% rename from src/TColgp/TColgp_HArray2OfVec2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HArray2OfVec2d.hxx diff --git a/src/TColgp/TColgp_HArray2OfXY.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HArray2OfXY.hxx similarity index 100% rename from src/TColgp/TColgp_HArray2OfXY.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HArray2OfXY.hxx diff --git a/src/TColgp/TColgp_HArray2OfXYZ.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HArray2OfXYZ.hxx similarity index 100% rename from src/TColgp/TColgp_HArray2OfXYZ.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HArray2OfXYZ.hxx diff --git a/src/TColgp/TColgp_HSequenceOfDir.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HSequenceOfDir.hxx similarity index 100% rename from src/TColgp/TColgp_HSequenceOfDir.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HSequenceOfDir.hxx diff --git a/src/TColgp/TColgp_HSequenceOfDir2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HSequenceOfDir2d.hxx similarity index 100% rename from src/TColgp/TColgp_HSequenceOfDir2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HSequenceOfDir2d.hxx diff --git a/src/TColgp/TColgp_HSequenceOfPnt.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HSequenceOfPnt.hxx similarity index 100% rename from src/TColgp/TColgp_HSequenceOfPnt.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HSequenceOfPnt.hxx diff --git a/src/TColgp/TColgp_HSequenceOfPnt2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HSequenceOfPnt2d.hxx similarity index 100% rename from src/TColgp/TColgp_HSequenceOfPnt2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HSequenceOfPnt2d.hxx diff --git a/src/TColgp/TColgp_HSequenceOfVec.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HSequenceOfVec.hxx similarity index 100% rename from src/TColgp/TColgp_HSequenceOfVec.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HSequenceOfVec.hxx diff --git a/src/TColgp/TColgp_HSequenceOfVec2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HSequenceOfVec2d.hxx similarity index 100% rename from src/TColgp/TColgp_HSequenceOfVec2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HSequenceOfVec2d.hxx diff --git a/src/TColgp/TColgp_HSequenceOfXY.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HSequenceOfXY.hxx similarity index 100% rename from src/TColgp/TColgp_HSequenceOfXY.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HSequenceOfXY.hxx diff --git a/src/TColgp/TColgp_HSequenceOfXYZ.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_HSequenceOfXYZ.hxx similarity index 100% rename from src/TColgp/TColgp_HSequenceOfXYZ.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_HSequenceOfXYZ.hxx diff --git a/src/TColgp/TColgp_SequenceOfArray1OfPnt2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_SequenceOfArray1OfPnt2d.hxx similarity index 100% rename from src/TColgp/TColgp_SequenceOfArray1OfPnt2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_SequenceOfArray1OfPnt2d.hxx diff --git a/src/TColgp/TColgp_SequenceOfAx1.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_SequenceOfAx1.hxx similarity index 100% rename from src/TColgp/TColgp_SequenceOfAx1.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_SequenceOfAx1.hxx diff --git a/src/TColgp/TColgp_SequenceOfDir.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_SequenceOfDir.hxx similarity index 100% rename from src/TColgp/TColgp_SequenceOfDir.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_SequenceOfDir.hxx diff --git a/src/TColgp/TColgp_SequenceOfDir2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_SequenceOfDir2d.hxx similarity index 100% rename from src/TColgp/TColgp_SequenceOfDir2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_SequenceOfDir2d.hxx diff --git a/src/TColgp/TColgp_SequenceOfPnt.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_SequenceOfPnt.hxx similarity index 100% rename from src/TColgp/TColgp_SequenceOfPnt.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_SequenceOfPnt.hxx diff --git a/src/TColgp/TColgp_SequenceOfPnt2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_SequenceOfPnt2d.hxx similarity index 100% rename from src/TColgp/TColgp_SequenceOfPnt2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_SequenceOfPnt2d.hxx diff --git a/src/TColgp/TColgp_SequenceOfVec.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_SequenceOfVec.hxx similarity index 100% rename from src/TColgp/TColgp_SequenceOfVec.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_SequenceOfVec.hxx diff --git a/src/TColgp/TColgp_SequenceOfVec2d.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_SequenceOfVec2d.hxx similarity index 100% rename from src/TColgp/TColgp_SequenceOfVec2d.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_SequenceOfVec2d.hxx diff --git a/src/TColgp/TColgp_SequenceOfXY.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_SequenceOfXY.hxx similarity index 100% rename from src/TColgp/TColgp_SequenceOfXY.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_SequenceOfXY.hxx diff --git a/src/TColgp/TColgp_SequenceOfXYZ.hxx b/src/FoundationClasses/TKMath/TColgp/TColgp_SequenceOfXYZ.hxx similarity index 100% rename from src/TColgp/TColgp_SequenceOfXYZ.hxx rename to src/FoundationClasses/TKMath/TColgp/TColgp_SequenceOfXYZ.hxx diff --git a/src/TKMath/TKMath_pch.hxx b/src/FoundationClasses/TKMath/TKMath_pch.hxx similarity index 100% rename from src/TKMath/TKMath_pch.hxx rename to src/FoundationClasses/TKMath/TKMath_pch.hxx diff --git a/src/FoundationClasses/TKMath/TopLoc/FILES.cmake b/src/FoundationClasses/TKMath/TopLoc/FILES.cmake new file mode 100644 index 0000000000..44593cb6e0 --- /dev/null +++ b/src/FoundationClasses/TKMath/TopLoc/FILES.cmake @@ -0,0 +1,20 @@ +# Source files for TopLoc package +set(OCCT_TopLoc_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TopLoc_FILES + TopLoc_Datum3D.cxx + TopLoc_Datum3D.hxx + TopLoc_IndexedMapOfLocation.hxx + TopLoc_ItemLocation.cxx + TopLoc_ItemLocation.hxx + TopLoc_Location.cxx + TopLoc_Location.hxx + TopLoc_Location.lxx + TopLoc_MapIteratorOfMapOfLocation.hxx + TopLoc_MapOfLocation.hxx + TopLoc_SListNodeOfItemLocation.cxx + TopLoc_SListNodeOfItemLocation.hxx + TopLoc_SListNodeOfItemLocation.lxx + TopLoc_SListOfItemLocation.cxx + TopLoc_SListOfItemLocation.hxx +) diff --git a/src/TopLoc/TopLoc_Datum3D.cxx b/src/FoundationClasses/TKMath/TopLoc/TopLoc_Datum3D.cxx similarity index 100% rename from src/TopLoc/TopLoc_Datum3D.cxx rename to src/FoundationClasses/TKMath/TopLoc/TopLoc_Datum3D.cxx diff --git a/src/TopLoc/TopLoc_Datum3D.hxx b/src/FoundationClasses/TKMath/TopLoc/TopLoc_Datum3D.hxx similarity index 100% rename from src/TopLoc/TopLoc_Datum3D.hxx rename to src/FoundationClasses/TKMath/TopLoc/TopLoc_Datum3D.hxx diff --git a/src/TopLoc/TopLoc_IndexedMapOfLocation.hxx b/src/FoundationClasses/TKMath/TopLoc/TopLoc_IndexedMapOfLocation.hxx similarity index 100% rename from src/TopLoc/TopLoc_IndexedMapOfLocation.hxx rename to src/FoundationClasses/TKMath/TopLoc/TopLoc_IndexedMapOfLocation.hxx diff --git a/src/TopLoc/TopLoc_ItemLocation.cxx b/src/FoundationClasses/TKMath/TopLoc/TopLoc_ItemLocation.cxx similarity index 100% rename from src/TopLoc/TopLoc_ItemLocation.cxx rename to src/FoundationClasses/TKMath/TopLoc/TopLoc_ItemLocation.cxx diff --git a/src/TopLoc/TopLoc_ItemLocation.hxx b/src/FoundationClasses/TKMath/TopLoc/TopLoc_ItemLocation.hxx similarity index 100% rename from src/TopLoc/TopLoc_ItemLocation.hxx rename to src/FoundationClasses/TKMath/TopLoc/TopLoc_ItemLocation.hxx diff --git a/src/TopLoc/TopLoc_Location.cxx b/src/FoundationClasses/TKMath/TopLoc/TopLoc_Location.cxx similarity index 100% rename from src/TopLoc/TopLoc_Location.cxx rename to src/FoundationClasses/TKMath/TopLoc/TopLoc_Location.cxx diff --git a/src/TopLoc/TopLoc_Location.hxx b/src/FoundationClasses/TKMath/TopLoc/TopLoc_Location.hxx similarity index 100% rename from src/TopLoc/TopLoc_Location.hxx rename to src/FoundationClasses/TKMath/TopLoc/TopLoc_Location.hxx diff --git a/src/TopLoc/TopLoc_Location.lxx b/src/FoundationClasses/TKMath/TopLoc/TopLoc_Location.lxx similarity index 100% rename from src/TopLoc/TopLoc_Location.lxx rename to src/FoundationClasses/TKMath/TopLoc/TopLoc_Location.lxx diff --git a/src/TopLoc/TopLoc_MapIteratorOfMapOfLocation.hxx b/src/FoundationClasses/TKMath/TopLoc/TopLoc_MapIteratorOfMapOfLocation.hxx similarity index 100% rename from src/TopLoc/TopLoc_MapIteratorOfMapOfLocation.hxx rename to src/FoundationClasses/TKMath/TopLoc/TopLoc_MapIteratorOfMapOfLocation.hxx diff --git a/src/TopLoc/TopLoc_MapOfLocation.hxx b/src/FoundationClasses/TKMath/TopLoc/TopLoc_MapOfLocation.hxx similarity index 100% rename from src/TopLoc/TopLoc_MapOfLocation.hxx rename to src/FoundationClasses/TKMath/TopLoc/TopLoc_MapOfLocation.hxx diff --git a/src/TopLoc/TopLoc_SListNodeOfItemLocation.cxx b/src/FoundationClasses/TKMath/TopLoc/TopLoc_SListNodeOfItemLocation.cxx similarity index 100% rename from src/TopLoc/TopLoc_SListNodeOfItemLocation.cxx rename to src/FoundationClasses/TKMath/TopLoc/TopLoc_SListNodeOfItemLocation.cxx diff --git a/src/TopLoc/TopLoc_SListNodeOfItemLocation.hxx b/src/FoundationClasses/TKMath/TopLoc/TopLoc_SListNodeOfItemLocation.hxx similarity index 100% rename from src/TopLoc/TopLoc_SListNodeOfItemLocation.hxx rename to src/FoundationClasses/TKMath/TopLoc/TopLoc_SListNodeOfItemLocation.hxx diff --git a/src/TopLoc/TopLoc_SListNodeOfItemLocation.lxx b/src/FoundationClasses/TKMath/TopLoc/TopLoc_SListNodeOfItemLocation.lxx similarity index 100% rename from src/TopLoc/TopLoc_SListNodeOfItemLocation.lxx rename to src/FoundationClasses/TKMath/TopLoc/TopLoc_SListNodeOfItemLocation.lxx diff --git a/src/TopLoc/TopLoc_SListOfItemLocation.cxx b/src/FoundationClasses/TKMath/TopLoc/TopLoc_SListOfItemLocation.cxx similarity index 100% rename from src/TopLoc/TopLoc_SListOfItemLocation.cxx rename to src/FoundationClasses/TKMath/TopLoc/TopLoc_SListOfItemLocation.cxx diff --git a/src/TopLoc/TopLoc_SListOfItemLocation.hxx b/src/FoundationClasses/TKMath/TopLoc/TopLoc_SListOfItemLocation.hxx similarity index 100% rename from src/TopLoc/TopLoc_SListOfItemLocation.hxx rename to src/FoundationClasses/TKMath/TopLoc/TopLoc_SListOfItemLocation.hxx diff --git a/src/FoundationClasses/TKMath/gp/FILES.cmake b/src/FoundationClasses/TKMath/gp/FILES.cmake new file mode 100644 index 0000000000..c56542a066 --- /dev/null +++ b/src/FoundationClasses/TKMath/gp/FILES.cmake @@ -0,0 +1,85 @@ +# Source files for gp package +set(OCCT_gp_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_gp_FILES + gp.cxx + gp.hxx + gp_Ax1.cxx + gp_Ax1.hxx + gp_Ax2.cxx + gp_Ax2.hxx + gp_Ax2d.cxx + gp_Ax2d.hxx + gp_Ax3.cxx + gp_Ax3.hxx + gp_Ax22d.cxx + gp_Ax22d.hxx + gp_Circ.cxx + gp_Circ.hxx + gp_Circ2d.cxx + gp_Circ2d.hxx + gp_Cone.cxx + gp_Cone.hxx + gp_Cylinder.cxx + gp_Cylinder.hxx + gp_Dir.cxx + gp_Dir.hxx + gp_Dir2d.cxx + gp_Dir2d.hxx + gp_Elips.cxx + gp_Elips.hxx + gp_Elips2d.cxx + gp_Elips2d.hxx + gp_EulerSequence.hxx + gp_GTrsf.cxx + gp_GTrsf.hxx + gp_GTrsf2d.cxx + gp_GTrsf2d.hxx + gp_Hypr.cxx + gp_Hypr.hxx + gp_Hypr2d.cxx + gp_Hypr2d.hxx + gp_Lin.cxx + gp_Lin.hxx + gp_Lin2d.cxx + gp_Lin2d.hxx + gp_Mat.cxx + gp_Mat.hxx + gp_Mat2d.cxx + gp_Mat2d.hxx + gp_Parab.cxx + gp_Parab.hxx + gp_Parab2d.cxx + gp_Parab2d.hxx + gp_Pln.cxx + gp_Pln.hxx + gp_Pnt.cxx + gp_Pnt.hxx + gp_Pnt2d.cxx + gp_Pnt2d.hxx + gp_Quaternion.cxx + gp_Quaternion.hxx + gp_QuaternionNLerp.hxx + gp_QuaternionSLerp.hxx + gp_Sphere.cxx + gp_Sphere.hxx + gp_Torus.cxx + gp_Torus.hxx + gp_Trsf.cxx + gp_Trsf.hxx + gp_Trsf2d.cxx + gp_Trsf2d.hxx + gp_TrsfForm.hxx + gp_TrsfNLerp.hxx + gp_Vec.cxx + gp_Vec.hxx + gp_Vec2d.cxx + gp_Vec2d.hxx + gp_Vec2f.hxx + gp_Vec3f.hxx + gp_VectorWithNullMagnitude.hxx + gp_XY.cxx + gp_XY.hxx + gp_XYZ.cxx + gp_XYZ.hxx +) diff --git a/src/gp/gp.cxx b/src/FoundationClasses/TKMath/gp/gp.cxx similarity index 100% rename from src/gp/gp.cxx rename to src/FoundationClasses/TKMath/gp/gp.cxx diff --git a/src/gp/gp.hxx b/src/FoundationClasses/TKMath/gp/gp.hxx similarity index 100% rename from src/gp/gp.hxx rename to src/FoundationClasses/TKMath/gp/gp.hxx diff --git a/src/gp/gp_Ax1.cxx b/src/FoundationClasses/TKMath/gp/gp_Ax1.cxx similarity index 100% rename from src/gp/gp_Ax1.cxx rename to src/FoundationClasses/TKMath/gp/gp_Ax1.cxx diff --git a/src/gp/gp_Ax1.hxx b/src/FoundationClasses/TKMath/gp/gp_Ax1.hxx similarity index 100% rename from src/gp/gp_Ax1.hxx rename to src/FoundationClasses/TKMath/gp/gp_Ax1.hxx diff --git a/src/gp/gp_Ax2.cxx b/src/FoundationClasses/TKMath/gp/gp_Ax2.cxx similarity index 100% rename from src/gp/gp_Ax2.cxx rename to src/FoundationClasses/TKMath/gp/gp_Ax2.cxx diff --git a/src/gp/gp_Ax2.hxx b/src/FoundationClasses/TKMath/gp/gp_Ax2.hxx similarity index 100% rename from src/gp/gp_Ax2.hxx rename to src/FoundationClasses/TKMath/gp/gp_Ax2.hxx diff --git a/src/gp/gp_Ax22d.cxx b/src/FoundationClasses/TKMath/gp/gp_Ax22d.cxx similarity index 100% rename from src/gp/gp_Ax22d.cxx rename to src/FoundationClasses/TKMath/gp/gp_Ax22d.cxx diff --git a/src/gp/gp_Ax22d.hxx b/src/FoundationClasses/TKMath/gp/gp_Ax22d.hxx similarity index 100% rename from src/gp/gp_Ax22d.hxx rename to src/FoundationClasses/TKMath/gp/gp_Ax22d.hxx diff --git a/src/gp/gp_Ax2d.cxx b/src/FoundationClasses/TKMath/gp/gp_Ax2d.cxx similarity index 100% rename from src/gp/gp_Ax2d.cxx rename to src/FoundationClasses/TKMath/gp/gp_Ax2d.cxx diff --git a/src/gp/gp_Ax2d.hxx b/src/FoundationClasses/TKMath/gp/gp_Ax2d.hxx similarity index 100% rename from src/gp/gp_Ax2d.hxx rename to src/FoundationClasses/TKMath/gp/gp_Ax2d.hxx diff --git a/src/gp/gp_Ax3.cxx b/src/FoundationClasses/TKMath/gp/gp_Ax3.cxx similarity index 100% rename from src/gp/gp_Ax3.cxx rename to src/FoundationClasses/TKMath/gp/gp_Ax3.cxx diff --git a/src/gp/gp_Ax3.hxx b/src/FoundationClasses/TKMath/gp/gp_Ax3.hxx similarity index 100% rename from src/gp/gp_Ax3.hxx rename to src/FoundationClasses/TKMath/gp/gp_Ax3.hxx diff --git a/src/gp/gp_Circ.cxx b/src/FoundationClasses/TKMath/gp/gp_Circ.cxx similarity index 100% rename from src/gp/gp_Circ.cxx rename to src/FoundationClasses/TKMath/gp/gp_Circ.cxx diff --git a/src/gp/gp_Circ.hxx b/src/FoundationClasses/TKMath/gp/gp_Circ.hxx similarity index 100% rename from src/gp/gp_Circ.hxx rename to src/FoundationClasses/TKMath/gp/gp_Circ.hxx diff --git a/src/gp/gp_Circ2d.cxx b/src/FoundationClasses/TKMath/gp/gp_Circ2d.cxx similarity index 100% rename from src/gp/gp_Circ2d.cxx rename to src/FoundationClasses/TKMath/gp/gp_Circ2d.cxx diff --git a/src/gp/gp_Circ2d.hxx b/src/FoundationClasses/TKMath/gp/gp_Circ2d.hxx similarity index 100% rename from src/gp/gp_Circ2d.hxx rename to src/FoundationClasses/TKMath/gp/gp_Circ2d.hxx diff --git a/src/gp/gp_Cone.cxx b/src/FoundationClasses/TKMath/gp/gp_Cone.cxx similarity index 100% rename from src/gp/gp_Cone.cxx rename to src/FoundationClasses/TKMath/gp/gp_Cone.cxx diff --git a/src/gp/gp_Cone.hxx b/src/FoundationClasses/TKMath/gp/gp_Cone.hxx similarity index 100% rename from src/gp/gp_Cone.hxx rename to src/FoundationClasses/TKMath/gp/gp_Cone.hxx diff --git a/src/gp/gp_Cylinder.cxx b/src/FoundationClasses/TKMath/gp/gp_Cylinder.cxx similarity index 100% rename from src/gp/gp_Cylinder.cxx rename to src/FoundationClasses/TKMath/gp/gp_Cylinder.cxx diff --git a/src/gp/gp_Cylinder.hxx b/src/FoundationClasses/TKMath/gp/gp_Cylinder.hxx similarity index 100% rename from src/gp/gp_Cylinder.hxx rename to src/FoundationClasses/TKMath/gp/gp_Cylinder.hxx diff --git a/src/gp/gp_Dir.cxx b/src/FoundationClasses/TKMath/gp/gp_Dir.cxx similarity index 100% rename from src/gp/gp_Dir.cxx rename to src/FoundationClasses/TKMath/gp/gp_Dir.cxx diff --git a/src/gp/gp_Dir.hxx b/src/FoundationClasses/TKMath/gp/gp_Dir.hxx similarity index 100% rename from src/gp/gp_Dir.hxx rename to src/FoundationClasses/TKMath/gp/gp_Dir.hxx diff --git a/src/gp/gp_Dir2d.cxx b/src/FoundationClasses/TKMath/gp/gp_Dir2d.cxx similarity index 100% rename from src/gp/gp_Dir2d.cxx rename to src/FoundationClasses/TKMath/gp/gp_Dir2d.cxx diff --git a/src/gp/gp_Dir2d.hxx b/src/FoundationClasses/TKMath/gp/gp_Dir2d.hxx similarity index 100% rename from src/gp/gp_Dir2d.hxx rename to src/FoundationClasses/TKMath/gp/gp_Dir2d.hxx diff --git a/src/gp/gp_Elips.cxx b/src/FoundationClasses/TKMath/gp/gp_Elips.cxx similarity index 100% rename from src/gp/gp_Elips.cxx rename to src/FoundationClasses/TKMath/gp/gp_Elips.cxx diff --git a/src/gp/gp_Elips.hxx b/src/FoundationClasses/TKMath/gp/gp_Elips.hxx similarity index 100% rename from src/gp/gp_Elips.hxx rename to src/FoundationClasses/TKMath/gp/gp_Elips.hxx diff --git a/src/gp/gp_Elips2d.cxx b/src/FoundationClasses/TKMath/gp/gp_Elips2d.cxx similarity index 100% rename from src/gp/gp_Elips2d.cxx rename to src/FoundationClasses/TKMath/gp/gp_Elips2d.cxx diff --git a/src/gp/gp_Elips2d.hxx b/src/FoundationClasses/TKMath/gp/gp_Elips2d.hxx similarity index 100% rename from src/gp/gp_Elips2d.hxx rename to src/FoundationClasses/TKMath/gp/gp_Elips2d.hxx diff --git a/src/gp/gp_EulerSequence.hxx b/src/FoundationClasses/TKMath/gp/gp_EulerSequence.hxx similarity index 100% rename from src/gp/gp_EulerSequence.hxx rename to src/FoundationClasses/TKMath/gp/gp_EulerSequence.hxx diff --git a/src/gp/gp_GTrsf.cxx b/src/FoundationClasses/TKMath/gp/gp_GTrsf.cxx similarity index 100% rename from src/gp/gp_GTrsf.cxx rename to src/FoundationClasses/TKMath/gp/gp_GTrsf.cxx diff --git a/src/gp/gp_GTrsf.hxx b/src/FoundationClasses/TKMath/gp/gp_GTrsf.hxx similarity index 100% rename from src/gp/gp_GTrsf.hxx rename to src/FoundationClasses/TKMath/gp/gp_GTrsf.hxx diff --git a/src/gp/gp_GTrsf2d.cxx b/src/FoundationClasses/TKMath/gp/gp_GTrsf2d.cxx similarity index 100% rename from src/gp/gp_GTrsf2d.cxx rename to src/FoundationClasses/TKMath/gp/gp_GTrsf2d.cxx diff --git a/src/gp/gp_GTrsf2d.hxx b/src/FoundationClasses/TKMath/gp/gp_GTrsf2d.hxx similarity index 100% rename from src/gp/gp_GTrsf2d.hxx rename to src/FoundationClasses/TKMath/gp/gp_GTrsf2d.hxx diff --git a/src/gp/gp_Hypr.cxx b/src/FoundationClasses/TKMath/gp/gp_Hypr.cxx similarity index 100% rename from src/gp/gp_Hypr.cxx rename to src/FoundationClasses/TKMath/gp/gp_Hypr.cxx diff --git a/src/gp/gp_Hypr.hxx b/src/FoundationClasses/TKMath/gp/gp_Hypr.hxx similarity index 100% rename from src/gp/gp_Hypr.hxx rename to src/FoundationClasses/TKMath/gp/gp_Hypr.hxx diff --git a/src/gp/gp_Hypr2d.cxx b/src/FoundationClasses/TKMath/gp/gp_Hypr2d.cxx similarity index 100% rename from src/gp/gp_Hypr2d.cxx rename to src/FoundationClasses/TKMath/gp/gp_Hypr2d.cxx diff --git a/src/gp/gp_Hypr2d.hxx b/src/FoundationClasses/TKMath/gp/gp_Hypr2d.hxx similarity index 100% rename from src/gp/gp_Hypr2d.hxx rename to src/FoundationClasses/TKMath/gp/gp_Hypr2d.hxx diff --git a/src/gp/gp_Lin.cxx b/src/FoundationClasses/TKMath/gp/gp_Lin.cxx similarity index 100% rename from src/gp/gp_Lin.cxx rename to src/FoundationClasses/TKMath/gp/gp_Lin.cxx diff --git a/src/gp/gp_Lin.hxx b/src/FoundationClasses/TKMath/gp/gp_Lin.hxx similarity index 100% rename from src/gp/gp_Lin.hxx rename to src/FoundationClasses/TKMath/gp/gp_Lin.hxx diff --git a/src/gp/gp_Lin2d.cxx b/src/FoundationClasses/TKMath/gp/gp_Lin2d.cxx similarity index 100% rename from src/gp/gp_Lin2d.cxx rename to src/FoundationClasses/TKMath/gp/gp_Lin2d.cxx diff --git a/src/gp/gp_Lin2d.hxx b/src/FoundationClasses/TKMath/gp/gp_Lin2d.hxx similarity index 100% rename from src/gp/gp_Lin2d.hxx rename to src/FoundationClasses/TKMath/gp/gp_Lin2d.hxx diff --git a/src/gp/gp_Mat.cxx b/src/FoundationClasses/TKMath/gp/gp_Mat.cxx similarity index 100% rename from src/gp/gp_Mat.cxx rename to src/FoundationClasses/TKMath/gp/gp_Mat.cxx diff --git a/src/gp/gp_Mat.hxx b/src/FoundationClasses/TKMath/gp/gp_Mat.hxx similarity index 100% rename from src/gp/gp_Mat.hxx rename to src/FoundationClasses/TKMath/gp/gp_Mat.hxx diff --git a/src/gp/gp_Mat2d.cxx b/src/FoundationClasses/TKMath/gp/gp_Mat2d.cxx similarity index 100% rename from src/gp/gp_Mat2d.cxx rename to src/FoundationClasses/TKMath/gp/gp_Mat2d.cxx diff --git a/src/gp/gp_Mat2d.hxx b/src/FoundationClasses/TKMath/gp/gp_Mat2d.hxx similarity index 100% rename from src/gp/gp_Mat2d.hxx rename to src/FoundationClasses/TKMath/gp/gp_Mat2d.hxx diff --git a/src/gp/gp_Parab.cxx b/src/FoundationClasses/TKMath/gp/gp_Parab.cxx similarity index 100% rename from src/gp/gp_Parab.cxx rename to src/FoundationClasses/TKMath/gp/gp_Parab.cxx diff --git a/src/gp/gp_Parab.hxx b/src/FoundationClasses/TKMath/gp/gp_Parab.hxx similarity index 100% rename from src/gp/gp_Parab.hxx rename to src/FoundationClasses/TKMath/gp/gp_Parab.hxx diff --git a/src/gp/gp_Parab2d.cxx b/src/FoundationClasses/TKMath/gp/gp_Parab2d.cxx similarity index 100% rename from src/gp/gp_Parab2d.cxx rename to src/FoundationClasses/TKMath/gp/gp_Parab2d.cxx diff --git a/src/gp/gp_Parab2d.hxx b/src/FoundationClasses/TKMath/gp/gp_Parab2d.hxx similarity index 100% rename from src/gp/gp_Parab2d.hxx rename to src/FoundationClasses/TKMath/gp/gp_Parab2d.hxx diff --git a/src/gp/gp_Pln.cxx b/src/FoundationClasses/TKMath/gp/gp_Pln.cxx similarity index 100% rename from src/gp/gp_Pln.cxx rename to src/FoundationClasses/TKMath/gp/gp_Pln.cxx diff --git a/src/gp/gp_Pln.hxx b/src/FoundationClasses/TKMath/gp/gp_Pln.hxx similarity index 100% rename from src/gp/gp_Pln.hxx rename to src/FoundationClasses/TKMath/gp/gp_Pln.hxx diff --git a/src/gp/gp_Pnt.cxx b/src/FoundationClasses/TKMath/gp/gp_Pnt.cxx similarity index 100% rename from src/gp/gp_Pnt.cxx rename to src/FoundationClasses/TKMath/gp/gp_Pnt.cxx diff --git a/src/gp/gp_Pnt.hxx b/src/FoundationClasses/TKMath/gp/gp_Pnt.hxx similarity index 100% rename from src/gp/gp_Pnt.hxx rename to src/FoundationClasses/TKMath/gp/gp_Pnt.hxx diff --git a/src/gp/gp_Pnt2d.cxx b/src/FoundationClasses/TKMath/gp/gp_Pnt2d.cxx similarity index 100% rename from src/gp/gp_Pnt2d.cxx rename to src/FoundationClasses/TKMath/gp/gp_Pnt2d.cxx diff --git a/src/gp/gp_Pnt2d.hxx b/src/FoundationClasses/TKMath/gp/gp_Pnt2d.hxx similarity index 100% rename from src/gp/gp_Pnt2d.hxx rename to src/FoundationClasses/TKMath/gp/gp_Pnt2d.hxx diff --git a/src/gp/gp_Quaternion.cxx b/src/FoundationClasses/TKMath/gp/gp_Quaternion.cxx similarity index 100% rename from src/gp/gp_Quaternion.cxx rename to src/FoundationClasses/TKMath/gp/gp_Quaternion.cxx diff --git a/src/gp/gp_Quaternion.hxx b/src/FoundationClasses/TKMath/gp/gp_Quaternion.hxx similarity index 100% rename from src/gp/gp_Quaternion.hxx rename to src/FoundationClasses/TKMath/gp/gp_Quaternion.hxx diff --git a/src/gp/gp_QuaternionNLerp.hxx b/src/FoundationClasses/TKMath/gp/gp_QuaternionNLerp.hxx similarity index 100% rename from src/gp/gp_QuaternionNLerp.hxx rename to src/FoundationClasses/TKMath/gp/gp_QuaternionNLerp.hxx diff --git a/src/gp/gp_QuaternionSLerp.hxx b/src/FoundationClasses/TKMath/gp/gp_QuaternionSLerp.hxx similarity index 100% rename from src/gp/gp_QuaternionSLerp.hxx rename to src/FoundationClasses/TKMath/gp/gp_QuaternionSLerp.hxx diff --git a/src/gp/gp_Sphere.cxx b/src/FoundationClasses/TKMath/gp/gp_Sphere.cxx similarity index 100% rename from src/gp/gp_Sphere.cxx rename to src/FoundationClasses/TKMath/gp/gp_Sphere.cxx diff --git a/src/gp/gp_Sphere.hxx b/src/FoundationClasses/TKMath/gp/gp_Sphere.hxx similarity index 100% rename from src/gp/gp_Sphere.hxx rename to src/FoundationClasses/TKMath/gp/gp_Sphere.hxx diff --git a/src/gp/gp_Torus.cxx b/src/FoundationClasses/TKMath/gp/gp_Torus.cxx similarity index 100% rename from src/gp/gp_Torus.cxx rename to src/FoundationClasses/TKMath/gp/gp_Torus.cxx diff --git a/src/gp/gp_Torus.hxx b/src/FoundationClasses/TKMath/gp/gp_Torus.hxx similarity index 100% rename from src/gp/gp_Torus.hxx rename to src/FoundationClasses/TKMath/gp/gp_Torus.hxx diff --git a/src/gp/gp_Trsf.cxx b/src/FoundationClasses/TKMath/gp/gp_Trsf.cxx similarity index 100% rename from src/gp/gp_Trsf.cxx rename to src/FoundationClasses/TKMath/gp/gp_Trsf.cxx diff --git a/src/gp/gp_Trsf.hxx b/src/FoundationClasses/TKMath/gp/gp_Trsf.hxx similarity index 100% rename from src/gp/gp_Trsf.hxx rename to src/FoundationClasses/TKMath/gp/gp_Trsf.hxx diff --git a/src/gp/gp_Trsf2d.cxx b/src/FoundationClasses/TKMath/gp/gp_Trsf2d.cxx similarity index 100% rename from src/gp/gp_Trsf2d.cxx rename to src/FoundationClasses/TKMath/gp/gp_Trsf2d.cxx diff --git a/src/gp/gp_Trsf2d.hxx b/src/FoundationClasses/TKMath/gp/gp_Trsf2d.hxx similarity index 100% rename from src/gp/gp_Trsf2d.hxx rename to src/FoundationClasses/TKMath/gp/gp_Trsf2d.hxx diff --git a/src/gp/gp_TrsfForm.hxx b/src/FoundationClasses/TKMath/gp/gp_TrsfForm.hxx similarity index 100% rename from src/gp/gp_TrsfForm.hxx rename to src/FoundationClasses/TKMath/gp/gp_TrsfForm.hxx diff --git a/src/gp/gp_TrsfNLerp.hxx b/src/FoundationClasses/TKMath/gp/gp_TrsfNLerp.hxx similarity index 100% rename from src/gp/gp_TrsfNLerp.hxx rename to src/FoundationClasses/TKMath/gp/gp_TrsfNLerp.hxx diff --git a/src/gp/gp_Vec.cxx b/src/FoundationClasses/TKMath/gp/gp_Vec.cxx similarity index 100% rename from src/gp/gp_Vec.cxx rename to src/FoundationClasses/TKMath/gp/gp_Vec.cxx diff --git a/src/gp/gp_Vec.hxx b/src/FoundationClasses/TKMath/gp/gp_Vec.hxx similarity index 100% rename from src/gp/gp_Vec.hxx rename to src/FoundationClasses/TKMath/gp/gp_Vec.hxx diff --git a/src/gp/gp_Vec2d.cxx b/src/FoundationClasses/TKMath/gp/gp_Vec2d.cxx similarity index 100% rename from src/gp/gp_Vec2d.cxx rename to src/FoundationClasses/TKMath/gp/gp_Vec2d.cxx diff --git a/src/gp/gp_Vec2d.hxx b/src/FoundationClasses/TKMath/gp/gp_Vec2d.hxx similarity index 100% rename from src/gp/gp_Vec2d.hxx rename to src/FoundationClasses/TKMath/gp/gp_Vec2d.hxx diff --git a/src/gp/gp_Vec2f.hxx b/src/FoundationClasses/TKMath/gp/gp_Vec2f.hxx similarity index 100% rename from src/gp/gp_Vec2f.hxx rename to src/FoundationClasses/TKMath/gp/gp_Vec2f.hxx diff --git a/src/gp/gp_Vec3f.hxx b/src/FoundationClasses/TKMath/gp/gp_Vec3f.hxx similarity index 100% rename from src/gp/gp_Vec3f.hxx rename to src/FoundationClasses/TKMath/gp/gp_Vec3f.hxx diff --git a/src/gp/gp_VectorWithNullMagnitude.hxx b/src/FoundationClasses/TKMath/gp/gp_VectorWithNullMagnitude.hxx similarity index 100% rename from src/gp/gp_VectorWithNullMagnitude.hxx rename to src/FoundationClasses/TKMath/gp/gp_VectorWithNullMagnitude.hxx diff --git a/src/gp/gp_XY.cxx b/src/FoundationClasses/TKMath/gp/gp_XY.cxx similarity index 100% rename from src/gp/gp_XY.cxx rename to src/FoundationClasses/TKMath/gp/gp_XY.cxx diff --git a/src/gp/gp_XY.hxx b/src/FoundationClasses/TKMath/gp/gp_XY.hxx similarity index 100% rename from src/gp/gp_XY.hxx rename to src/FoundationClasses/TKMath/gp/gp_XY.hxx diff --git a/src/gp/gp_XYZ.cxx b/src/FoundationClasses/TKMath/gp/gp_XYZ.cxx similarity index 100% rename from src/gp/gp_XYZ.cxx rename to src/FoundationClasses/TKMath/gp/gp_XYZ.cxx diff --git a/src/gp/gp_XYZ.hxx b/src/FoundationClasses/TKMath/gp/gp_XYZ.hxx similarity index 100% rename from src/gp/gp_XYZ.hxx rename to src/FoundationClasses/TKMath/gp/gp_XYZ.hxx diff --git a/src/FoundationClasses/TKMath/math/FILES.cmake b/src/FoundationClasses/TKMath/math/FILES.cmake new file mode 100644 index 0000000000..31f30cffde --- /dev/null +++ b/src/FoundationClasses/TKMath/math/FILES.cmake @@ -0,0 +1,131 @@ +# Source files for math package +set(OCCT_math_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_math_FILES + math.cxx + math.hxx + math_Array1OfValueAndWeight.hxx + math_BFGS.cxx + math_BFGS.hxx + math_BFGS.lxx + math_BissecNewton.cxx + math_BissecNewton.hxx + math_BissecNewton.lxx + math_BracketedRoot.cxx + math_BracketedRoot.hxx + math_BracketedRoot.lxx + math_BracketMinimum.cxx + math_BracketMinimum.hxx + math_BracketMinimum.lxx + math_BrentMinimum.cxx + math_BrentMinimum.hxx + math_BrentMinimum.lxx + math_BullardGenerator.hxx + math_ComputeGaussPointsAndWeights.cxx + math_ComputeGaussPointsAndWeights.hxx + math_ComputeKronrodPointsAndWeights.cxx + math_ComputeKronrodPointsAndWeights.hxx + math_Crout.cxx + math_Crout.hxx + math_Crout.lxx + math_DirectPolynomialRoots.cxx + math_DirectPolynomialRoots.hxx + math_DirectPolynomialRoots.lxx + math_DoubleTab.cxx + math_DoubleTab.hxx + math_DoubleTab.lxx + math_EigenValuesSearcher.cxx + math_EigenValuesSearcher.hxx + math_FRPR.cxx + math_FRPR.hxx + math_FRPR.lxx + math_Function.cxx + math_Function.hxx + math_FunctionAllRoots.cxx + math_FunctionAllRoots.hxx + math_FunctionAllRoots.lxx + math_FunctionRoot.cxx + math_FunctionRoot.hxx + math_FunctionRoot.lxx + math_FunctionRoots.cxx + math_FunctionRoots.hxx + math_FunctionRoots.lxx + math_FunctionSample.cxx + math_FunctionSample.hxx + math_FunctionSet.cxx + math_FunctionSet.hxx + math_FunctionSetRoot.cxx + math_FunctionSetRoot.hxx + math_FunctionSetWithDerivatives.hxx + math_FunctionWithDerivative.cxx + math_FunctionWithDerivative.hxx + math_Gauss.cxx + math_Gauss.hxx + math_GaussLeastSquare.cxx + math_GaussLeastSquare.hxx + math_GaussLeastSquare.lxx + math_GaussMultipleIntegration.cxx + math_GaussMultipleIntegration.hxx + math_GaussMultipleIntegration.lxx + math_GaussSetIntegration.cxx + math_GaussSetIntegration.hxx + math_GaussSetIntegration.lxx + math_GaussSingleIntegration.cxx + math_GaussSingleIntegration.hxx + math_GaussSingleIntegration.lxx + math_GlobOptMin.cxx + math_GlobOptMin.hxx + math_Householder.cxx + math_Householder.hxx + math_Householder.lxx + math_IntegerVector.hxx + math_Jacobi.cxx + math_Jacobi.hxx + math_Jacobi.lxx + math_Kronrod.cxx + math_KronrodSingleIntegration.cxx + math_KronrodSingleIntegration.hxx + math_KronrodSingleIntegration.lxx + math_Matrix.cxx + math_Matrix.hxx + math_Matrix.lxx + math_MultipleVarFunction.cxx + math_MultipleVarFunction.hxx + math_MultipleVarFunctionWithGradient.hxx + math_MultipleVarFunctionWithHessian.hxx + math_NewtonFunctionRoot.cxx + math_NewtonFunctionRoot.hxx + math_NewtonFunctionRoot.lxx + math_NewtonFunctionSetRoot.cxx + math_NewtonFunctionSetRoot.hxx + math_NewtonFunctionSetRoot.lxx + math_NewtonMinimum.cxx + math_NewtonMinimum.hxx + math_NewtonMinimum.lxx + math_NotSquare.hxx + math_Powell.cxx + math_Powell.hxx + math_Powell.lxx + math_PSO.cxx + math_PSO.hxx + math_PSOParticlesPool.cxx + math_PSOParticlesPool.hxx + math_Recipes.cxx + math_Recipes.hxx + math_SingularMatrix.hxx + math_Status.hxx + math_SVD.cxx + math_SVD.hxx + math_SVD.lxx + math_TrigonometricFunctionRoots.cxx + math_TrigonometricFunctionRoots.hxx + math_TrigonometricFunctionRoots.lxx + math_TrigonometricEquationFunction.hxx + math_Uzawa.cxx + math_Uzawa.hxx + math_Uzawa.lxx + math_ValueAndWeight.hxx + math_VectorBase.hxx + math_VectorBase.lxx + math_Vector.hxx +) diff --git a/src/math/math.cxx b/src/FoundationClasses/TKMath/math/math.cxx similarity index 100% rename from src/math/math.cxx rename to src/FoundationClasses/TKMath/math/math.cxx diff --git a/src/math/math.hxx b/src/FoundationClasses/TKMath/math/math.hxx similarity index 100% rename from src/math/math.hxx rename to src/FoundationClasses/TKMath/math/math.hxx diff --git a/src/math/math_Array1OfValueAndWeight.hxx b/src/FoundationClasses/TKMath/math/math_Array1OfValueAndWeight.hxx similarity index 100% rename from src/math/math_Array1OfValueAndWeight.hxx rename to src/FoundationClasses/TKMath/math/math_Array1OfValueAndWeight.hxx diff --git a/src/math/math_BFGS.cxx b/src/FoundationClasses/TKMath/math/math_BFGS.cxx similarity index 100% rename from src/math/math_BFGS.cxx rename to src/FoundationClasses/TKMath/math/math_BFGS.cxx diff --git a/src/math/math_BFGS.hxx b/src/FoundationClasses/TKMath/math/math_BFGS.hxx similarity index 100% rename from src/math/math_BFGS.hxx rename to src/FoundationClasses/TKMath/math/math_BFGS.hxx diff --git a/src/math/math_BFGS.lxx b/src/FoundationClasses/TKMath/math/math_BFGS.lxx similarity index 100% rename from src/math/math_BFGS.lxx rename to src/FoundationClasses/TKMath/math/math_BFGS.lxx diff --git a/src/math/math_BissecNewton.cxx b/src/FoundationClasses/TKMath/math/math_BissecNewton.cxx similarity index 100% rename from src/math/math_BissecNewton.cxx rename to src/FoundationClasses/TKMath/math/math_BissecNewton.cxx diff --git a/src/math/math_BissecNewton.hxx b/src/FoundationClasses/TKMath/math/math_BissecNewton.hxx similarity index 100% rename from src/math/math_BissecNewton.hxx rename to src/FoundationClasses/TKMath/math/math_BissecNewton.hxx diff --git a/src/math/math_BissecNewton.lxx b/src/FoundationClasses/TKMath/math/math_BissecNewton.lxx similarity index 100% rename from src/math/math_BissecNewton.lxx rename to src/FoundationClasses/TKMath/math/math_BissecNewton.lxx diff --git a/src/math/math_BracketMinimum.cxx b/src/FoundationClasses/TKMath/math/math_BracketMinimum.cxx similarity index 100% rename from src/math/math_BracketMinimum.cxx rename to src/FoundationClasses/TKMath/math/math_BracketMinimum.cxx diff --git a/src/math/math_BracketMinimum.hxx b/src/FoundationClasses/TKMath/math/math_BracketMinimum.hxx similarity index 100% rename from src/math/math_BracketMinimum.hxx rename to src/FoundationClasses/TKMath/math/math_BracketMinimum.hxx diff --git a/src/math/math_BracketMinimum.lxx b/src/FoundationClasses/TKMath/math/math_BracketMinimum.lxx similarity index 100% rename from src/math/math_BracketMinimum.lxx rename to src/FoundationClasses/TKMath/math/math_BracketMinimum.lxx diff --git a/src/math/math_BracketedRoot.cxx b/src/FoundationClasses/TKMath/math/math_BracketedRoot.cxx similarity index 100% rename from src/math/math_BracketedRoot.cxx rename to src/FoundationClasses/TKMath/math/math_BracketedRoot.cxx diff --git a/src/math/math_BracketedRoot.hxx b/src/FoundationClasses/TKMath/math/math_BracketedRoot.hxx similarity index 100% rename from src/math/math_BracketedRoot.hxx rename to src/FoundationClasses/TKMath/math/math_BracketedRoot.hxx diff --git a/src/math/math_BracketedRoot.lxx b/src/FoundationClasses/TKMath/math/math_BracketedRoot.lxx similarity index 100% rename from src/math/math_BracketedRoot.lxx rename to src/FoundationClasses/TKMath/math/math_BracketedRoot.lxx diff --git a/src/math/math_BrentMinimum.cxx b/src/FoundationClasses/TKMath/math/math_BrentMinimum.cxx similarity index 100% rename from src/math/math_BrentMinimum.cxx rename to src/FoundationClasses/TKMath/math/math_BrentMinimum.cxx diff --git a/src/math/math_BrentMinimum.hxx b/src/FoundationClasses/TKMath/math/math_BrentMinimum.hxx similarity index 100% rename from src/math/math_BrentMinimum.hxx rename to src/FoundationClasses/TKMath/math/math_BrentMinimum.hxx diff --git a/src/math/math_BrentMinimum.lxx b/src/FoundationClasses/TKMath/math/math_BrentMinimum.lxx similarity index 100% rename from src/math/math_BrentMinimum.lxx rename to src/FoundationClasses/TKMath/math/math_BrentMinimum.lxx diff --git a/src/math/math_BullardGenerator.hxx b/src/FoundationClasses/TKMath/math/math_BullardGenerator.hxx similarity index 100% rename from src/math/math_BullardGenerator.hxx rename to src/FoundationClasses/TKMath/math/math_BullardGenerator.hxx diff --git a/src/math/math_ComputeGaussPointsAndWeights.cxx b/src/FoundationClasses/TKMath/math/math_ComputeGaussPointsAndWeights.cxx similarity index 100% rename from src/math/math_ComputeGaussPointsAndWeights.cxx rename to src/FoundationClasses/TKMath/math/math_ComputeGaussPointsAndWeights.cxx diff --git a/src/math/math_ComputeGaussPointsAndWeights.hxx b/src/FoundationClasses/TKMath/math/math_ComputeGaussPointsAndWeights.hxx similarity index 100% rename from src/math/math_ComputeGaussPointsAndWeights.hxx rename to src/FoundationClasses/TKMath/math/math_ComputeGaussPointsAndWeights.hxx diff --git a/src/math/math_ComputeKronrodPointsAndWeights.cxx b/src/FoundationClasses/TKMath/math/math_ComputeKronrodPointsAndWeights.cxx similarity index 100% rename from src/math/math_ComputeKronrodPointsAndWeights.cxx rename to src/FoundationClasses/TKMath/math/math_ComputeKronrodPointsAndWeights.cxx diff --git a/src/math/math_ComputeKronrodPointsAndWeights.hxx b/src/FoundationClasses/TKMath/math/math_ComputeKronrodPointsAndWeights.hxx similarity index 100% rename from src/math/math_ComputeKronrodPointsAndWeights.hxx rename to src/FoundationClasses/TKMath/math/math_ComputeKronrodPointsAndWeights.hxx diff --git a/src/math/math_Crout.cxx b/src/FoundationClasses/TKMath/math/math_Crout.cxx similarity index 100% rename from src/math/math_Crout.cxx rename to src/FoundationClasses/TKMath/math/math_Crout.cxx diff --git a/src/math/math_Crout.hxx b/src/FoundationClasses/TKMath/math/math_Crout.hxx similarity index 100% rename from src/math/math_Crout.hxx rename to src/FoundationClasses/TKMath/math/math_Crout.hxx diff --git a/src/math/math_Crout.lxx b/src/FoundationClasses/TKMath/math/math_Crout.lxx similarity index 100% rename from src/math/math_Crout.lxx rename to src/FoundationClasses/TKMath/math/math_Crout.lxx diff --git a/src/math/math_DirectPolynomialRoots.cxx b/src/FoundationClasses/TKMath/math/math_DirectPolynomialRoots.cxx similarity index 100% rename from src/math/math_DirectPolynomialRoots.cxx rename to src/FoundationClasses/TKMath/math/math_DirectPolynomialRoots.cxx diff --git a/src/math/math_DirectPolynomialRoots.hxx b/src/FoundationClasses/TKMath/math/math_DirectPolynomialRoots.hxx similarity index 100% rename from src/math/math_DirectPolynomialRoots.hxx rename to src/FoundationClasses/TKMath/math/math_DirectPolynomialRoots.hxx diff --git a/src/math/math_DirectPolynomialRoots.lxx b/src/FoundationClasses/TKMath/math/math_DirectPolynomialRoots.lxx similarity index 100% rename from src/math/math_DirectPolynomialRoots.lxx rename to src/FoundationClasses/TKMath/math/math_DirectPolynomialRoots.lxx diff --git a/src/math/math_DoubleTab.cxx b/src/FoundationClasses/TKMath/math/math_DoubleTab.cxx similarity index 100% rename from src/math/math_DoubleTab.cxx rename to src/FoundationClasses/TKMath/math/math_DoubleTab.cxx diff --git a/src/math/math_DoubleTab.hxx b/src/FoundationClasses/TKMath/math/math_DoubleTab.hxx similarity index 100% rename from src/math/math_DoubleTab.hxx rename to src/FoundationClasses/TKMath/math/math_DoubleTab.hxx diff --git a/src/math/math_DoubleTab.lxx b/src/FoundationClasses/TKMath/math/math_DoubleTab.lxx similarity index 100% rename from src/math/math_DoubleTab.lxx rename to src/FoundationClasses/TKMath/math/math_DoubleTab.lxx diff --git a/src/math/math_EigenValuesSearcher.cxx b/src/FoundationClasses/TKMath/math/math_EigenValuesSearcher.cxx similarity index 100% rename from src/math/math_EigenValuesSearcher.cxx rename to src/FoundationClasses/TKMath/math/math_EigenValuesSearcher.cxx diff --git a/src/math/math_EigenValuesSearcher.hxx b/src/FoundationClasses/TKMath/math/math_EigenValuesSearcher.hxx similarity index 100% rename from src/math/math_EigenValuesSearcher.hxx rename to src/FoundationClasses/TKMath/math/math_EigenValuesSearcher.hxx diff --git a/src/math/math_FRPR.cxx b/src/FoundationClasses/TKMath/math/math_FRPR.cxx similarity index 100% rename from src/math/math_FRPR.cxx rename to src/FoundationClasses/TKMath/math/math_FRPR.cxx diff --git a/src/math/math_FRPR.hxx b/src/FoundationClasses/TKMath/math/math_FRPR.hxx similarity index 100% rename from src/math/math_FRPR.hxx rename to src/FoundationClasses/TKMath/math/math_FRPR.hxx diff --git a/src/math/math_FRPR.lxx b/src/FoundationClasses/TKMath/math/math_FRPR.lxx similarity index 100% rename from src/math/math_FRPR.lxx rename to src/FoundationClasses/TKMath/math/math_FRPR.lxx diff --git a/src/math/math_Function.cxx b/src/FoundationClasses/TKMath/math/math_Function.cxx similarity index 100% rename from src/math/math_Function.cxx rename to src/FoundationClasses/TKMath/math/math_Function.cxx diff --git a/src/math/math_Function.hxx b/src/FoundationClasses/TKMath/math/math_Function.hxx similarity index 100% rename from src/math/math_Function.hxx rename to src/FoundationClasses/TKMath/math/math_Function.hxx diff --git a/src/math/math_FunctionAllRoots.cxx b/src/FoundationClasses/TKMath/math/math_FunctionAllRoots.cxx similarity index 100% rename from src/math/math_FunctionAllRoots.cxx rename to src/FoundationClasses/TKMath/math/math_FunctionAllRoots.cxx diff --git a/src/math/math_FunctionAllRoots.hxx b/src/FoundationClasses/TKMath/math/math_FunctionAllRoots.hxx similarity index 100% rename from src/math/math_FunctionAllRoots.hxx rename to src/FoundationClasses/TKMath/math/math_FunctionAllRoots.hxx diff --git a/src/math/math_FunctionAllRoots.lxx b/src/FoundationClasses/TKMath/math/math_FunctionAllRoots.lxx similarity index 100% rename from src/math/math_FunctionAllRoots.lxx rename to src/FoundationClasses/TKMath/math/math_FunctionAllRoots.lxx diff --git a/src/math/math_FunctionRoot.cxx b/src/FoundationClasses/TKMath/math/math_FunctionRoot.cxx similarity index 100% rename from src/math/math_FunctionRoot.cxx rename to src/FoundationClasses/TKMath/math/math_FunctionRoot.cxx diff --git a/src/math/math_FunctionRoot.hxx b/src/FoundationClasses/TKMath/math/math_FunctionRoot.hxx similarity index 100% rename from src/math/math_FunctionRoot.hxx rename to src/FoundationClasses/TKMath/math/math_FunctionRoot.hxx diff --git a/src/math/math_FunctionRoot.lxx b/src/FoundationClasses/TKMath/math/math_FunctionRoot.lxx similarity index 100% rename from src/math/math_FunctionRoot.lxx rename to src/FoundationClasses/TKMath/math/math_FunctionRoot.lxx diff --git a/src/math/math_FunctionRoots.cxx b/src/FoundationClasses/TKMath/math/math_FunctionRoots.cxx similarity index 100% rename from src/math/math_FunctionRoots.cxx rename to src/FoundationClasses/TKMath/math/math_FunctionRoots.cxx diff --git a/src/math/math_FunctionRoots.hxx b/src/FoundationClasses/TKMath/math/math_FunctionRoots.hxx similarity index 100% rename from src/math/math_FunctionRoots.hxx rename to src/FoundationClasses/TKMath/math/math_FunctionRoots.hxx diff --git a/src/math/math_FunctionRoots.lxx b/src/FoundationClasses/TKMath/math/math_FunctionRoots.lxx similarity index 100% rename from src/math/math_FunctionRoots.lxx rename to src/FoundationClasses/TKMath/math/math_FunctionRoots.lxx diff --git a/src/math/math_FunctionSample.cxx b/src/FoundationClasses/TKMath/math/math_FunctionSample.cxx similarity index 100% rename from src/math/math_FunctionSample.cxx rename to src/FoundationClasses/TKMath/math/math_FunctionSample.cxx diff --git a/src/math/math_FunctionSample.hxx b/src/FoundationClasses/TKMath/math/math_FunctionSample.hxx similarity index 100% rename from src/math/math_FunctionSample.hxx rename to src/FoundationClasses/TKMath/math/math_FunctionSample.hxx diff --git a/src/math/math_FunctionSet.cxx b/src/FoundationClasses/TKMath/math/math_FunctionSet.cxx similarity index 100% rename from src/math/math_FunctionSet.cxx rename to src/FoundationClasses/TKMath/math/math_FunctionSet.cxx diff --git a/src/math/math_FunctionSet.hxx b/src/FoundationClasses/TKMath/math/math_FunctionSet.hxx similarity index 100% rename from src/math/math_FunctionSet.hxx rename to src/FoundationClasses/TKMath/math/math_FunctionSet.hxx diff --git a/src/math/math_FunctionSetRoot.cxx b/src/FoundationClasses/TKMath/math/math_FunctionSetRoot.cxx similarity index 100% rename from src/math/math_FunctionSetRoot.cxx rename to src/FoundationClasses/TKMath/math/math_FunctionSetRoot.cxx diff --git a/src/math/math_FunctionSetRoot.hxx b/src/FoundationClasses/TKMath/math/math_FunctionSetRoot.hxx similarity index 100% rename from src/math/math_FunctionSetRoot.hxx rename to src/FoundationClasses/TKMath/math/math_FunctionSetRoot.hxx diff --git a/src/math/math_FunctionSetWithDerivatives.hxx b/src/FoundationClasses/TKMath/math/math_FunctionSetWithDerivatives.hxx similarity index 100% rename from src/math/math_FunctionSetWithDerivatives.hxx rename to src/FoundationClasses/TKMath/math/math_FunctionSetWithDerivatives.hxx diff --git a/src/math/math_FunctionWithDerivative.cxx b/src/FoundationClasses/TKMath/math/math_FunctionWithDerivative.cxx similarity index 100% rename from src/math/math_FunctionWithDerivative.cxx rename to src/FoundationClasses/TKMath/math/math_FunctionWithDerivative.cxx diff --git a/src/math/math_FunctionWithDerivative.hxx b/src/FoundationClasses/TKMath/math/math_FunctionWithDerivative.hxx similarity index 100% rename from src/math/math_FunctionWithDerivative.hxx rename to src/FoundationClasses/TKMath/math/math_FunctionWithDerivative.hxx diff --git a/src/math/math_Gauss.cxx b/src/FoundationClasses/TKMath/math/math_Gauss.cxx similarity index 100% rename from src/math/math_Gauss.cxx rename to src/FoundationClasses/TKMath/math/math_Gauss.cxx diff --git a/src/math/math_Gauss.hxx b/src/FoundationClasses/TKMath/math/math_Gauss.hxx similarity index 100% rename from src/math/math_Gauss.hxx rename to src/FoundationClasses/TKMath/math/math_Gauss.hxx diff --git a/src/math/math_GaussLeastSquare.cxx b/src/FoundationClasses/TKMath/math/math_GaussLeastSquare.cxx similarity index 100% rename from src/math/math_GaussLeastSquare.cxx rename to src/FoundationClasses/TKMath/math/math_GaussLeastSquare.cxx diff --git a/src/math/math_GaussLeastSquare.hxx b/src/FoundationClasses/TKMath/math/math_GaussLeastSquare.hxx similarity index 100% rename from src/math/math_GaussLeastSquare.hxx rename to src/FoundationClasses/TKMath/math/math_GaussLeastSquare.hxx diff --git a/src/math/math_GaussLeastSquare.lxx b/src/FoundationClasses/TKMath/math/math_GaussLeastSquare.lxx similarity index 100% rename from src/math/math_GaussLeastSquare.lxx rename to src/FoundationClasses/TKMath/math/math_GaussLeastSquare.lxx diff --git a/src/math/math_GaussMultipleIntegration.cxx b/src/FoundationClasses/TKMath/math/math_GaussMultipleIntegration.cxx similarity index 100% rename from src/math/math_GaussMultipleIntegration.cxx rename to src/FoundationClasses/TKMath/math/math_GaussMultipleIntegration.cxx diff --git a/src/math/math_GaussMultipleIntegration.hxx b/src/FoundationClasses/TKMath/math/math_GaussMultipleIntegration.hxx similarity index 100% rename from src/math/math_GaussMultipleIntegration.hxx rename to src/FoundationClasses/TKMath/math/math_GaussMultipleIntegration.hxx diff --git a/src/math/math_GaussMultipleIntegration.lxx b/src/FoundationClasses/TKMath/math/math_GaussMultipleIntegration.lxx similarity index 100% rename from src/math/math_GaussMultipleIntegration.lxx rename to src/FoundationClasses/TKMath/math/math_GaussMultipleIntegration.lxx diff --git a/src/math/math_GaussSetIntegration.cxx b/src/FoundationClasses/TKMath/math/math_GaussSetIntegration.cxx similarity index 100% rename from src/math/math_GaussSetIntegration.cxx rename to src/FoundationClasses/TKMath/math/math_GaussSetIntegration.cxx diff --git a/src/math/math_GaussSetIntegration.hxx b/src/FoundationClasses/TKMath/math/math_GaussSetIntegration.hxx similarity index 100% rename from src/math/math_GaussSetIntegration.hxx rename to src/FoundationClasses/TKMath/math/math_GaussSetIntegration.hxx diff --git a/src/math/math_GaussSetIntegration.lxx b/src/FoundationClasses/TKMath/math/math_GaussSetIntegration.lxx similarity index 100% rename from src/math/math_GaussSetIntegration.lxx rename to src/FoundationClasses/TKMath/math/math_GaussSetIntegration.lxx diff --git a/src/math/math_GaussSingleIntegration.cxx b/src/FoundationClasses/TKMath/math/math_GaussSingleIntegration.cxx similarity index 100% rename from src/math/math_GaussSingleIntegration.cxx rename to src/FoundationClasses/TKMath/math/math_GaussSingleIntegration.cxx diff --git a/src/math/math_GaussSingleIntegration.hxx b/src/FoundationClasses/TKMath/math/math_GaussSingleIntegration.hxx similarity index 100% rename from src/math/math_GaussSingleIntegration.hxx rename to src/FoundationClasses/TKMath/math/math_GaussSingleIntegration.hxx diff --git a/src/math/math_GaussSingleIntegration.lxx b/src/FoundationClasses/TKMath/math/math_GaussSingleIntegration.lxx similarity index 100% rename from src/math/math_GaussSingleIntegration.lxx rename to src/FoundationClasses/TKMath/math/math_GaussSingleIntegration.lxx diff --git a/src/math/math_GlobOptMin.cxx b/src/FoundationClasses/TKMath/math/math_GlobOptMin.cxx similarity index 100% rename from src/math/math_GlobOptMin.cxx rename to src/FoundationClasses/TKMath/math/math_GlobOptMin.cxx diff --git a/src/math/math_GlobOptMin.hxx b/src/FoundationClasses/TKMath/math/math_GlobOptMin.hxx similarity index 100% rename from src/math/math_GlobOptMin.hxx rename to src/FoundationClasses/TKMath/math/math_GlobOptMin.hxx diff --git a/src/math/math_Householder.cxx b/src/FoundationClasses/TKMath/math/math_Householder.cxx similarity index 100% rename from src/math/math_Householder.cxx rename to src/FoundationClasses/TKMath/math/math_Householder.cxx diff --git a/src/math/math_Householder.hxx b/src/FoundationClasses/TKMath/math/math_Householder.hxx similarity index 100% rename from src/math/math_Householder.hxx rename to src/FoundationClasses/TKMath/math/math_Householder.hxx diff --git a/src/math/math_Householder.lxx b/src/FoundationClasses/TKMath/math/math_Householder.lxx similarity index 100% rename from src/math/math_Householder.lxx rename to src/FoundationClasses/TKMath/math/math_Householder.lxx diff --git a/src/math/math_IntegerVector.hxx b/src/FoundationClasses/TKMath/math/math_IntegerVector.hxx similarity index 100% rename from src/math/math_IntegerVector.hxx rename to src/FoundationClasses/TKMath/math/math_IntegerVector.hxx diff --git a/src/math/math_Jacobi.cxx b/src/FoundationClasses/TKMath/math/math_Jacobi.cxx similarity index 100% rename from src/math/math_Jacobi.cxx rename to src/FoundationClasses/TKMath/math/math_Jacobi.cxx diff --git a/src/math/math_Jacobi.hxx b/src/FoundationClasses/TKMath/math/math_Jacobi.hxx similarity index 100% rename from src/math/math_Jacobi.hxx rename to src/FoundationClasses/TKMath/math/math_Jacobi.hxx diff --git a/src/math/math_Jacobi.lxx b/src/FoundationClasses/TKMath/math/math_Jacobi.lxx similarity index 100% rename from src/math/math_Jacobi.lxx rename to src/FoundationClasses/TKMath/math/math_Jacobi.lxx diff --git a/src/math/math_Kronrod.cxx b/src/FoundationClasses/TKMath/math/math_Kronrod.cxx similarity index 100% rename from src/math/math_Kronrod.cxx rename to src/FoundationClasses/TKMath/math/math_Kronrod.cxx diff --git a/src/math/math_KronrodSingleIntegration.cxx b/src/FoundationClasses/TKMath/math/math_KronrodSingleIntegration.cxx similarity index 100% rename from src/math/math_KronrodSingleIntegration.cxx rename to src/FoundationClasses/TKMath/math/math_KronrodSingleIntegration.cxx diff --git a/src/math/math_KronrodSingleIntegration.hxx b/src/FoundationClasses/TKMath/math/math_KronrodSingleIntegration.hxx similarity index 100% rename from src/math/math_KronrodSingleIntegration.hxx rename to src/FoundationClasses/TKMath/math/math_KronrodSingleIntegration.hxx diff --git a/src/math/math_KronrodSingleIntegration.lxx b/src/FoundationClasses/TKMath/math/math_KronrodSingleIntegration.lxx similarity index 100% rename from src/math/math_KronrodSingleIntegration.lxx rename to src/FoundationClasses/TKMath/math/math_KronrodSingleIntegration.lxx diff --git a/src/math/math_Matrix.cxx b/src/FoundationClasses/TKMath/math/math_Matrix.cxx similarity index 100% rename from src/math/math_Matrix.cxx rename to src/FoundationClasses/TKMath/math/math_Matrix.cxx diff --git a/src/math/math_Matrix.hxx b/src/FoundationClasses/TKMath/math/math_Matrix.hxx similarity index 100% rename from src/math/math_Matrix.hxx rename to src/FoundationClasses/TKMath/math/math_Matrix.hxx diff --git a/src/math/math_Matrix.lxx b/src/FoundationClasses/TKMath/math/math_Matrix.lxx similarity index 100% rename from src/math/math_Matrix.lxx rename to src/FoundationClasses/TKMath/math/math_Matrix.lxx diff --git a/src/math/math_MultipleVarFunction.cxx b/src/FoundationClasses/TKMath/math/math_MultipleVarFunction.cxx similarity index 100% rename from src/math/math_MultipleVarFunction.cxx rename to src/FoundationClasses/TKMath/math/math_MultipleVarFunction.cxx diff --git a/src/math/math_MultipleVarFunction.hxx b/src/FoundationClasses/TKMath/math/math_MultipleVarFunction.hxx similarity index 100% rename from src/math/math_MultipleVarFunction.hxx rename to src/FoundationClasses/TKMath/math/math_MultipleVarFunction.hxx diff --git a/src/math/math_MultipleVarFunctionWithGradient.hxx b/src/FoundationClasses/TKMath/math/math_MultipleVarFunctionWithGradient.hxx similarity index 100% rename from src/math/math_MultipleVarFunctionWithGradient.hxx rename to src/FoundationClasses/TKMath/math/math_MultipleVarFunctionWithGradient.hxx diff --git a/src/math/math_MultipleVarFunctionWithHessian.hxx b/src/FoundationClasses/TKMath/math/math_MultipleVarFunctionWithHessian.hxx similarity index 100% rename from src/math/math_MultipleVarFunctionWithHessian.hxx rename to src/FoundationClasses/TKMath/math/math_MultipleVarFunctionWithHessian.hxx diff --git a/src/math/math_NewtonFunctionRoot.cxx b/src/FoundationClasses/TKMath/math/math_NewtonFunctionRoot.cxx similarity index 100% rename from src/math/math_NewtonFunctionRoot.cxx rename to src/FoundationClasses/TKMath/math/math_NewtonFunctionRoot.cxx diff --git a/src/math/math_NewtonFunctionRoot.hxx b/src/FoundationClasses/TKMath/math/math_NewtonFunctionRoot.hxx similarity index 100% rename from src/math/math_NewtonFunctionRoot.hxx rename to src/FoundationClasses/TKMath/math/math_NewtonFunctionRoot.hxx diff --git a/src/math/math_NewtonFunctionRoot.lxx b/src/FoundationClasses/TKMath/math/math_NewtonFunctionRoot.lxx similarity index 100% rename from src/math/math_NewtonFunctionRoot.lxx rename to src/FoundationClasses/TKMath/math/math_NewtonFunctionRoot.lxx diff --git a/src/math/math_NewtonFunctionSetRoot.cxx b/src/FoundationClasses/TKMath/math/math_NewtonFunctionSetRoot.cxx similarity index 100% rename from src/math/math_NewtonFunctionSetRoot.cxx rename to src/FoundationClasses/TKMath/math/math_NewtonFunctionSetRoot.cxx diff --git a/src/math/math_NewtonFunctionSetRoot.hxx b/src/FoundationClasses/TKMath/math/math_NewtonFunctionSetRoot.hxx similarity index 100% rename from src/math/math_NewtonFunctionSetRoot.hxx rename to src/FoundationClasses/TKMath/math/math_NewtonFunctionSetRoot.hxx diff --git a/src/math/math_NewtonFunctionSetRoot.lxx b/src/FoundationClasses/TKMath/math/math_NewtonFunctionSetRoot.lxx similarity index 100% rename from src/math/math_NewtonFunctionSetRoot.lxx rename to src/FoundationClasses/TKMath/math/math_NewtonFunctionSetRoot.lxx diff --git a/src/math/math_NewtonMinimum.cxx b/src/FoundationClasses/TKMath/math/math_NewtonMinimum.cxx similarity index 100% rename from src/math/math_NewtonMinimum.cxx rename to src/FoundationClasses/TKMath/math/math_NewtonMinimum.cxx diff --git a/src/math/math_NewtonMinimum.hxx b/src/FoundationClasses/TKMath/math/math_NewtonMinimum.hxx similarity index 100% rename from src/math/math_NewtonMinimum.hxx rename to src/FoundationClasses/TKMath/math/math_NewtonMinimum.hxx diff --git a/src/math/math_NewtonMinimum.lxx b/src/FoundationClasses/TKMath/math/math_NewtonMinimum.lxx similarity index 100% rename from src/math/math_NewtonMinimum.lxx rename to src/FoundationClasses/TKMath/math/math_NewtonMinimum.lxx diff --git a/src/math/math_NotSquare.hxx b/src/FoundationClasses/TKMath/math/math_NotSquare.hxx similarity index 100% rename from src/math/math_NotSquare.hxx rename to src/FoundationClasses/TKMath/math/math_NotSquare.hxx diff --git a/src/math/math_PSO.cxx b/src/FoundationClasses/TKMath/math/math_PSO.cxx similarity index 100% rename from src/math/math_PSO.cxx rename to src/FoundationClasses/TKMath/math/math_PSO.cxx diff --git a/src/math/math_PSO.hxx b/src/FoundationClasses/TKMath/math/math_PSO.hxx similarity index 100% rename from src/math/math_PSO.hxx rename to src/FoundationClasses/TKMath/math/math_PSO.hxx diff --git a/src/math/math_PSOParticlesPool.cxx b/src/FoundationClasses/TKMath/math/math_PSOParticlesPool.cxx similarity index 100% rename from src/math/math_PSOParticlesPool.cxx rename to src/FoundationClasses/TKMath/math/math_PSOParticlesPool.cxx diff --git a/src/math/math_PSOParticlesPool.hxx b/src/FoundationClasses/TKMath/math/math_PSOParticlesPool.hxx similarity index 100% rename from src/math/math_PSOParticlesPool.hxx rename to src/FoundationClasses/TKMath/math/math_PSOParticlesPool.hxx diff --git a/src/math/math_Powell.cxx b/src/FoundationClasses/TKMath/math/math_Powell.cxx similarity index 100% rename from src/math/math_Powell.cxx rename to src/FoundationClasses/TKMath/math/math_Powell.cxx diff --git a/src/math/math_Powell.hxx b/src/FoundationClasses/TKMath/math/math_Powell.hxx similarity index 100% rename from src/math/math_Powell.hxx rename to src/FoundationClasses/TKMath/math/math_Powell.hxx diff --git a/src/math/math_Powell.lxx b/src/FoundationClasses/TKMath/math/math_Powell.lxx similarity index 100% rename from src/math/math_Powell.lxx rename to src/FoundationClasses/TKMath/math/math_Powell.lxx diff --git a/src/math/math_Recipes.cxx b/src/FoundationClasses/TKMath/math/math_Recipes.cxx similarity index 100% rename from src/math/math_Recipes.cxx rename to src/FoundationClasses/TKMath/math/math_Recipes.cxx diff --git a/src/math/math_Recipes.hxx b/src/FoundationClasses/TKMath/math/math_Recipes.hxx similarity index 100% rename from src/math/math_Recipes.hxx rename to src/FoundationClasses/TKMath/math/math_Recipes.hxx diff --git a/src/math/math_SVD.cxx b/src/FoundationClasses/TKMath/math/math_SVD.cxx similarity index 100% rename from src/math/math_SVD.cxx rename to src/FoundationClasses/TKMath/math/math_SVD.cxx diff --git a/src/math/math_SVD.hxx b/src/FoundationClasses/TKMath/math/math_SVD.hxx similarity index 100% rename from src/math/math_SVD.hxx rename to src/FoundationClasses/TKMath/math/math_SVD.hxx diff --git a/src/math/math_SVD.lxx b/src/FoundationClasses/TKMath/math/math_SVD.lxx similarity index 100% rename from src/math/math_SVD.lxx rename to src/FoundationClasses/TKMath/math/math_SVD.lxx diff --git a/src/math/math_SingularMatrix.hxx b/src/FoundationClasses/TKMath/math/math_SingularMatrix.hxx similarity index 100% rename from src/math/math_SingularMatrix.hxx rename to src/FoundationClasses/TKMath/math/math_SingularMatrix.hxx diff --git a/src/math/math_Status.hxx b/src/FoundationClasses/TKMath/math/math_Status.hxx similarity index 100% rename from src/math/math_Status.hxx rename to src/FoundationClasses/TKMath/math/math_Status.hxx diff --git a/src/math/math_TrigonometricEquationFunction.hxx b/src/FoundationClasses/TKMath/math/math_TrigonometricEquationFunction.hxx similarity index 100% rename from src/math/math_TrigonometricEquationFunction.hxx rename to src/FoundationClasses/TKMath/math/math_TrigonometricEquationFunction.hxx diff --git a/src/math/math_TrigonometricFunctionRoots.cxx b/src/FoundationClasses/TKMath/math/math_TrigonometricFunctionRoots.cxx similarity index 100% rename from src/math/math_TrigonometricFunctionRoots.cxx rename to src/FoundationClasses/TKMath/math/math_TrigonometricFunctionRoots.cxx diff --git a/src/math/math_TrigonometricFunctionRoots.hxx b/src/FoundationClasses/TKMath/math/math_TrigonometricFunctionRoots.hxx similarity index 100% rename from src/math/math_TrigonometricFunctionRoots.hxx rename to src/FoundationClasses/TKMath/math/math_TrigonometricFunctionRoots.hxx diff --git a/src/math/math_TrigonometricFunctionRoots.lxx b/src/FoundationClasses/TKMath/math/math_TrigonometricFunctionRoots.lxx similarity index 100% rename from src/math/math_TrigonometricFunctionRoots.lxx rename to src/FoundationClasses/TKMath/math/math_TrigonometricFunctionRoots.lxx diff --git a/src/math/math_Uzawa.cxx b/src/FoundationClasses/TKMath/math/math_Uzawa.cxx similarity index 100% rename from src/math/math_Uzawa.cxx rename to src/FoundationClasses/TKMath/math/math_Uzawa.cxx diff --git a/src/math/math_Uzawa.hxx b/src/FoundationClasses/TKMath/math/math_Uzawa.hxx similarity index 100% rename from src/math/math_Uzawa.hxx rename to src/FoundationClasses/TKMath/math/math_Uzawa.hxx diff --git a/src/math/math_Uzawa.lxx b/src/FoundationClasses/TKMath/math/math_Uzawa.lxx similarity index 100% rename from src/math/math_Uzawa.lxx rename to src/FoundationClasses/TKMath/math/math_Uzawa.lxx diff --git a/src/math/math_ValueAndWeight.hxx b/src/FoundationClasses/TKMath/math/math_ValueAndWeight.hxx similarity index 100% rename from src/math/math_ValueAndWeight.hxx rename to src/FoundationClasses/TKMath/math/math_ValueAndWeight.hxx diff --git a/src/math/math_Vector.hxx b/src/FoundationClasses/TKMath/math/math_Vector.hxx similarity index 100% rename from src/math/math_Vector.hxx rename to src/FoundationClasses/TKMath/math/math_Vector.hxx diff --git a/src/math/math_VectorBase.hxx b/src/FoundationClasses/TKMath/math/math_VectorBase.hxx similarity index 100% rename from src/math/math_VectorBase.hxx rename to src/FoundationClasses/TKMath/math/math_VectorBase.hxx diff --git a/src/math/math_VectorBase.lxx b/src/FoundationClasses/TKMath/math/math_VectorBase.lxx similarity index 100% rename from src/math/math_VectorBase.lxx rename to src/FoundationClasses/TKMath/math/math_VectorBase.lxx diff --git a/src/TKernel/CMakeLists.txt b/src/FoundationClasses/TKernel/CMakeLists.txt similarity index 100% rename from src/TKernel/CMakeLists.txt rename to src/FoundationClasses/TKernel/CMakeLists.txt diff --git a/src/FoundationClasses/TKernel/EXTERNLIB.cmake b/src/FoundationClasses/TKernel/EXTERNLIB.cmake new file mode 100644 index 0000000000..d9f796e230 --- /dev/null +++ b/src/FoundationClasses/TKernel/EXTERNLIB.cmake @@ -0,0 +1,13 @@ +# External dependencies for TKernel +set(OCCT_TKernel_EXTERNAL_LIBS + CSF_ThreadLibs + CSF_advapi32 + CSF_gdi32 + CSF_user32 + CSF_TBB + CSF_dl + CSF_wsock32 + CSF_psapi + CSF_androidlog + CSF_MMGR +) diff --git a/src/FoundationClasses/TKernel/FILES.cmake b/src/FoundationClasses/TKernel/FILES.cmake new file mode 100644 index 0000000000..b20e9306a1 --- /dev/null +++ b/src/FoundationClasses/TKernel/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKernel +set(OCCT_TKernel_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKernel_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/FoundationClasses/TKernel/FSD/FILES.cmake b/src/FoundationClasses/TKernel/FSD/FILES.cmake new file mode 100644 index 0000000000..b49df3ab99 --- /dev/null +++ b/src/FoundationClasses/TKernel/FSD/FILES.cmake @@ -0,0 +1,17 @@ +# Source files for FSD package +set(OCCT_FSD_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_FSD_FILES + FILES + FSD_Base64.cxx + FSD_Base64.hxx + FSD_BinaryFile.cxx + FSD_BinaryFile.hxx + FSD_BStream.hxx + FSD_CmpFile.cxx + FSD_CmpFile.hxx + FSD_File.cxx + FSD_File.hxx + FSD_FileHeader.hxx + FSD_FStream.hxx +) diff --git a/src/FSD/FSD_BStream.hxx b/src/FoundationClasses/TKernel/FSD/FSD_BStream.hxx similarity index 100% rename from src/FSD/FSD_BStream.hxx rename to src/FoundationClasses/TKernel/FSD/FSD_BStream.hxx diff --git a/src/FSD/FSD_Base64.cxx b/src/FoundationClasses/TKernel/FSD/FSD_Base64.cxx similarity index 100% rename from src/FSD/FSD_Base64.cxx rename to src/FoundationClasses/TKernel/FSD/FSD_Base64.cxx diff --git a/src/FSD/FSD_Base64.hxx b/src/FoundationClasses/TKernel/FSD/FSD_Base64.hxx similarity index 100% rename from src/FSD/FSD_Base64.hxx rename to src/FoundationClasses/TKernel/FSD/FSD_Base64.hxx diff --git a/src/FSD/FSD_BinaryFile.cxx b/src/FoundationClasses/TKernel/FSD/FSD_BinaryFile.cxx similarity index 100% rename from src/FSD/FSD_BinaryFile.cxx rename to src/FoundationClasses/TKernel/FSD/FSD_BinaryFile.cxx diff --git a/src/FSD/FSD_BinaryFile.hxx b/src/FoundationClasses/TKernel/FSD/FSD_BinaryFile.hxx similarity index 100% rename from src/FSD/FSD_BinaryFile.hxx rename to src/FoundationClasses/TKernel/FSD/FSD_BinaryFile.hxx diff --git a/src/FSD/FSD_CmpFile.cxx b/src/FoundationClasses/TKernel/FSD/FSD_CmpFile.cxx similarity index 100% rename from src/FSD/FSD_CmpFile.cxx rename to src/FoundationClasses/TKernel/FSD/FSD_CmpFile.cxx diff --git a/src/FSD/FSD_CmpFile.hxx b/src/FoundationClasses/TKernel/FSD/FSD_CmpFile.hxx similarity index 100% rename from src/FSD/FSD_CmpFile.hxx rename to src/FoundationClasses/TKernel/FSD/FSD_CmpFile.hxx diff --git a/src/FSD/FSD_FStream.hxx b/src/FoundationClasses/TKernel/FSD/FSD_FStream.hxx similarity index 100% rename from src/FSD/FSD_FStream.hxx rename to src/FoundationClasses/TKernel/FSD/FSD_FStream.hxx diff --git a/src/FSD/FSD_File.cxx b/src/FoundationClasses/TKernel/FSD/FSD_File.cxx similarity index 100% rename from src/FSD/FSD_File.cxx rename to src/FoundationClasses/TKernel/FSD/FSD_File.cxx diff --git a/src/FSD/FSD_File.hxx b/src/FoundationClasses/TKernel/FSD/FSD_File.hxx similarity index 100% rename from src/FSD/FSD_File.hxx rename to src/FoundationClasses/TKernel/FSD/FSD_File.hxx diff --git a/src/FSD/FSD_FileHeader.hxx b/src/FoundationClasses/TKernel/FSD/FSD_FileHeader.hxx similarity index 100% rename from src/FSD/FSD_FileHeader.hxx rename to src/FoundationClasses/TKernel/FSD/FSD_FileHeader.hxx diff --git a/src/FoundationClasses/TKernel/FlexLexer/FILES.cmake b/src/FoundationClasses/TKernel/FlexLexer/FILES.cmake new file mode 100644 index 0000000000..b7868839af --- /dev/null +++ b/src/FoundationClasses/TKernel/FlexLexer/FILES.cmake @@ -0,0 +1,6 @@ +# Source files for FlexLexer package +set(OCCT_FlexLexer_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_FlexLexer_FILES + FlexLexer.h +) diff --git a/src/FlexLexer/FlexLexer.h b/src/FoundationClasses/TKernel/FlexLexer/FlexLexer.h similarity index 100% rename from src/FlexLexer/FlexLexer.h rename to src/FoundationClasses/TKernel/FlexLexer/FlexLexer.h diff --git a/src/FoundationClasses/TKernel/Message/FILES.cmake b/src/FoundationClasses/TKernel/Message/FILES.cmake new file mode 100644 index 0000000000..7ad520af6f --- /dev/null +++ b/src/FoundationClasses/TKernel/Message/FILES.cmake @@ -0,0 +1,60 @@ +# Source files for Message package +set(OCCT_Message_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Message_FILES + Message.cxx + Message.hxx + Message_Alert.cxx + Message_Alert.hxx + Message_AlertExtended.cxx + Message_AlertExtended.hxx + Message_Algorithm.cxx + Message_Algorithm.hxx + Message_Algorithm.lxx + Message_ConsoleColor.hxx + Message_Attribute.cxx + Message_Attribute.hxx + Message_AttributeMeter.cxx + Message_AttributeMeter.hxx + Message_AttributeObject.cxx + Message_AttributeObject.hxx + Message_AttributeStream.cxx + Message_AttributeStream.hxx + Message_CompositeAlerts.cxx + Message_CompositeAlerts.hxx + Message_ExecStatus.hxx + Message_Gravity.hxx + Message_HArrayOfMsg.hxx + Message_LazyProgressScope.hxx + Message_Level.cxx + Message_Level.hxx + Message_ListIteratorOfListOfMsg.hxx + Message_ListOfMsg.hxx + Message_Messenger.cxx + Message_Messenger.hxx + Message_MetricType.hxx + Message_Msg.cxx + Message_Msg.hxx + Message_Msg.lxx + Message_MsgFile.cxx + Message_MsgFile.hxx + Message_Printer.cxx + Message_Printer.hxx + Message_PrinterOStream.cxx + Message_PrinterOStream.hxx + Message_PrinterSystemLog.cxx + Message_PrinterSystemLog.hxx + Message_PrinterToReport.cxx + Message_PrinterToReport.hxx + Message_ProgressIndicator.cxx + Message_ProgressIndicator.hxx + Message_ProgressRange.hxx + Message_ProgressScope.hxx + Message_ProgressSentry.hxx + Message_SequenceOfPrinters.hxx + Message_Status.hxx + Message_StatusType.hxx + Message_ListOfAlert.hxx + Message_Report.cxx + Message_Report.hxx +) diff --git a/src/Message/Message.cxx b/src/FoundationClasses/TKernel/Message/Message.cxx similarity index 100% rename from src/Message/Message.cxx rename to src/FoundationClasses/TKernel/Message/Message.cxx diff --git a/src/Message/Message.hxx b/src/FoundationClasses/TKernel/Message/Message.hxx similarity index 100% rename from src/Message/Message.hxx rename to src/FoundationClasses/TKernel/Message/Message.hxx diff --git a/src/Message/Message_Alert.cxx b/src/FoundationClasses/TKernel/Message/Message_Alert.cxx similarity index 100% rename from src/Message/Message_Alert.cxx rename to src/FoundationClasses/TKernel/Message/Message_Alert.cxx diff --git a/src/Message/Message_Alert.hxx b/src/FoundationClasses/TKernel/Message/Message_Alert.hxx similarity index 100% rename from src/Message/Message_Alert.hxx rename to src/FoundationClasses/TKernel/Message/Message_Alert.hxx diff --git a/src/Message/Message_AlertExtended.cxx b/src/FoundationClasses/TKernel/Message/Message_AlertExtended.cxx similarity index 100% rename from src/Message/Message_AlertExtended.cxx rename to src/FoundationClasses/TKernel/Message/Message_AlertExtended.cxx diff --git a/src/Message/Message_AlertExtended.hxx b/src/FoundationClasses/TKernel/Message/Message_AlertExtended.hxx similarity index 100% rename from src/Message/Message_AlertExtended.hxx rename to src/FoundationClasses/TKernel/Message/Message_AlertExtended.hxx diff --git a/src/Message/Message_Algorithm.cxx b/src/FoundationClasses/TKernel/Message/Message_Algorithm.cxx similarity index 100% rename from src/Message/Message_Algorithm.cxx rename to src/FoundationClasses/TKernel/Message/Message_Algorithm.cxx diff --git a/src/Message/Message_Algorithm.hxx b/src/FoundationClasses/TKernel/Message/Message_Algorithm.hxx similarity index 100% rename from src/Message/Message_Algorithm.hxx rename to src/FoundationClasses/TKernel/Message/Message_Algorithm.hxx diff --git a/src/Message/Message_Algorithm.lxx b/src/FoundationClasses/TKernel/Message/Message_Algorithm.lxx similarity index 100% rename from src/Message/Message_Algorithm.lxx rename to src/FoundationClasses/TKernel/Message/Message_Algorithm.lxx diff --git a/src/Message/Message_Attribute.cxx b/src/FoundationClasses/TKernel/Message/Message_Attribute.cxx similarity index 100% rename from src/Message/Message_Attribute.cxx rename to src/FoundationClasses/TKernel/Message/Message_Attribute.cxx diff --git a/src/Message/Message_Attribute.hxx b/src/FoundationClasses/TKernel/Message/Message_Attribute.hxx similarity index 100% rename from src/Message/Message_Attribute.hxx rename to src/FoundationClasses/TKernel/Message/Message_Attribute.hxx diff --git a/src/Message/Message_AttributeMeter.cxx b/src/FoundationClasses/TKernel/Message/Message_AttributeMeter.cxx similarity index 100% rename from src/Message/Message_AttributeMeter.cxx rename to src/FoundationClasses/TKernel/Message/Message_AttributeMeter.cxx diff --git a/src/Message/Message_AttributeMeter.hxx b/src/FoundationClasses/TKernel/Message/Message_AttributeMeter.hxx similarity index 100% rename from src/Message/Message_AttributeMeter.hxx rename to src/FoundationClasses/TKernel/Message/Message_AttributeMeter.hxx diff --git a/src/Message/Message_AttributeObject.cxx b/src/FoundationClasses/TKernel/Message/Message_AttributeObject.cxx similarity index 100% rename from src/Message/Message_AttributeObject.cxx rename to src/FoundationClasses/TKernel/Message/Message_AttributeObject.cxx diff --git a/src/Message/Message_AttributeObject.hxx b/src/FoundationClasses/TKernel/Message/Message_AttributeObject.hxx similarity index 100% rename from src/Message/Message_AttributeObject.hxx rename to src/FoundationClasses/TKernel/Message/Message_AttributeObject.hxx diff --git a/src/Message/Message_AttributeStream.cxx b/src/FoundationClasses/TKernel/Message/Message_AttributeStream.cxx similarity index 100% rename from src/Message/Message_AttributeStream.cxx rename to src/FoundationClasses/TKernel/Message/Message_AttributeStream.cxx diff --git a/src/Message/Message_AttributeStream.hxx b/src/FoundationClasses/TKernel/Message/Message_AttributeStream.hxx similarity index 100% rename from src/Message/Message_AttributeStream.hxx rename to src/FoundationClasses/TKernel/Message/Message_AttributeStream.hxx diff --git a/src/Message/Message_CompositeAlerts.cxx b/src/FoundationClasses/TKernel/Message/Message_CompositeAlerts.cxx similarity index 100% rename from src/Message/Message_CompositeAlerts.cxx rename to src/FoundationClasses/TKernel/Message/Message_CompositeAlerts.cxx diff --git a/src/Message/Message_CompositeAlerts.hxx b/src/FoundationClasses/TKernel/Message/Message_CompositeAlerts.hxx similarity index 100% rename from src/Message/Message_CompositeAlerts.hxx rename to src/FoundationClasses/TKernel/Message/Message_CompositeAlerts.hxx diff --git a/src/Message/Message_ConsoleColor.hxx b/src/FoundationClasses/TKernel/Message/Message_ConsoleColor.hxx similarity index 100% rename from src/Message/Message_ConsoleColor.hxx rename to src/FoundationClasses/TKernel/Message/Message_ConsoleColor.hxx diff --git a/src/Message/Message_ExecStatus.hxx b/src/FoundationClasses/TKernel/Message/Message_ExecStatus.hxx similarity index 100% rename from src/Message/Message_ExecStatus.hxx rename to src/FoundationClasses/TKernel/Message/Message_ExecStatus.hxx diff --git a/src/Message/Message_Gravity.hxx b/src/FoundationClasses/TKernel/Message/Message_Gravity.hxx similarity index 100% rename from src/Message/Message_Gravity.hxx rename to src/FoundationClasses/TKernel/Message/Message_Gravity.hxx diff --git a/src/Message/Message_HArrayOfMsg.hxx b/src/FoundationClasses/TKernel/Message/Message_HArrayOfMsg.hxx similarity index 100% rename from src/Message/Message_HArrayOfMsg.hxx rename to src/FoundationClasses/TKernel/Message/Message_HArrayOfMsg.hxx diff --git a/src/Message/Message_LazyProgressScope.hxx b/src/FoundationClasses/TKernel/Message/Message_LazyProgressScope.hxx similarity index 100% rename from src/Message/Message_LazyProgressScope.hxx rename to src/FoundationClasses/TKernel/Message/Message_LazyProgressScope.hxx diff --git a/src/Message/Message_Level.cxx b/src/FoundationClasses/TKernel/Message/Message_Level.cxx similarity index 100% rename from src/Message/Message_Level.cxx rename to src/FoundationClasses/TKernel/Message/Message_Level.cxx diff --git a/src/Message/Message_Level.hxx b/src/FoundationClasses/TKernel/Message/Message_Level.hxx similarity index 100% rename from src/Message/Message_Level.hxx rename to src/FoundationClasses/TKernel/Message/Message_Level.hxx diff --git a/src/Message/Message_ListIteratorOfListOfMsg.hxx b/src/FoundationClasses/TKernel/Message/Message_ListIteratorOfListOfMsg.hxx similarity index 100% rename from src/Message/Message_ListIteratorOfListOfMsg.hxx rename to src/FoundationClasses/TKernel/Message/Message_ListIteratorOfListOfMsg.hxx diff --git a/src/Message/Message_ListOfAlert.hxx b/src/FoundationClasses/TKernel/Message/Message_ListOfAlert.hxx similarity index 100% rename from src/Message/Message_ListOfAlert.hxx rename to src/FoundationClasses/TKernel/Message/Message_ListOfAlert.hxx diff --git a/src/Message/Message_ListOfMsg.hxx b/src/FoundationClasses/TKernel/Message/Message_ListOfMsg.hxx similarity index 100% rename from src/Message/Message_ListOfMsg.hxx rename to src/FoundationClasses/TKernel/Message/Message_ListOfMsg.hxx diff --git a/src/Message/Message_Messenger.cxx b/src/FoundationClasses/TKernel/Message/Message_Messenger.cxx similarity index 100% rename from src/Message/Message_Messenger.cxx rename to src/FoundationClasses/TKernel/Message/Message_Messenger.cxx diff --git a/src/Message/Message_Messenger.hxx b/src/FoundationClasses/TKernel/Message/Message_Messenger.hxx similarity index 100% rename from src/Message/Message_Messenger.hxx rename to src/FoundationClasses/TKernel/Message/Message_Messenger.hxx diff --git a/src/Message/Message_MetricType.hxx b/src/FoundationClasses/TKernel/Message/Message_MetricType.hxx similarity index 100% rename from src/Message/Message_MetricType.hxx rename to src/FoundationClasses/TKernel/Message/Message_MetricType.hxx diff --git a/src/Message/Message_Msg.cxx b/src/FoundationClasses/TKernel/Message/Message_Msg.cxx similarity index 100% rename from src/Message/Message_Msg.cxx rename to src/FoundationClasses/TKernel/Message/Message_Msg.cxx diff --git a/src/Message/Message_Msg.hxx b/src/FoundationClasses/TKernel/Message/Message_Msg.hxx similarity index 100% rename from src/Message/Message_Msg.hxx rename to src/FoundationClasses/TKernel/Message/Message_Msg.hxx diff --git a/src/Message/Message_Msg.lxx b/src/FoundationClasses/TKernel/Message/Message_Msg.lxx similarity index 100% rename from src/Message/Message_Msg.lxx rename to src/FoundationClasses/TKernel/Message/Message_Msg.lxx diff --git a/src/Message/Message_MsgFile.cxx b/src/FoundationClasses/TKernel/Message/Message_MsgFile.cxx similarity index 100% rename from src/Message/Message_MsgFile.cxx rename to src/FoundationClasses/TKernel/Message/Message_MsgFile.cxx diff --git a/src/Message/Message_MsgFile.hxx b/src/FoundationClasses/TKernel/Message/Message_MsgFile.hxx similarity index 100% rename from src/Message/Message_MsgFile.hxx rename to src/FoundationClasses/TKernel/Message/Message_MsgFile.hxx diff --git a/src/Message/Message_Printer.cxx b/src/FoundationClasses/TKernel/Message/Message_Printer.cxx similarity index 100% rename from src/Message/Message_Printer.cxx rename to src/FoundationClasses/TKernel/Message/Message_Printer.cxx diff --git a/src/Message/Message_Printer.hxx b/src/FoundationClasses/TKernel/Message/Message_Printer.hxx similarity index 100% rename from src/Message/Message_Printer.hxx rename to src/FoundationClasses/TKernel/Message/Message_Printer.hxx diff --git a/src/Message/Message_PrinterOStream.cxx b/src/FoundationClasses/TKernel/Message/Message_PrinterOStream.cxx similarity index 100% rename from src/Message/Message_PrinterOStream.cxx rename to src/FoundationClasses/TKernel/Message/Message_PrinterOStream.cxx diff --git a/src/Message/Message_PrinterOStream.hxx b/src/FoundationClasses/TKernel/Message/Message_PrinterOStream.hxx similarity index 100% rename from src/Message/Message_PrinterOStream.hxx rename to src/FoundationClasses/TKernel/Message/Message_PrinterOStream.hxx diff --git a/src/Message/Message_PrinterSystemLog.cxx b/src/FoundationClasses/TKernel/Message/Message_PrinterSystemLog.cxx similarity index 100% rename from src/Message/Message_PrinterSystemLog.cxx rename to src/FoundationClasses/TKernel/Message/Message_PrinterSystemLog.cxx diff --git a/src/Message/Message_PrinterSystemLog.hxx b/src/FoundationClasses/TKernel/Message/Message_PrinterSystemLog.hxx similarity index 100% rename from src/Message/Message_PrinterSystemLog.hxx rename to src/FoundationClasses/TKernel/Message/Message_PrinterSystemLog.hxx diff --git a/src/Message/Message_PrinterToReport.cxx b/src/FoundationClasses/TKernel/Message/Message_PrinterToReport.cxx similarity index 100% rename from src/Message/Message_PrinterToReport.cxx rename to src/FoundationClasses/TKernel/Message/Message_PrinterToReport.cxx diff --git a/src/Message/Message_PrinterToReport.hxx b/src/FoundationClasses/TKernel/Message/Message_PrinterToReport.hxx similarity index 100% rename from src/Message/Message_PrinterToReport.hxx rename to src/FoundationClasses/TKernel/Message/Message_PrinterToReport.hxx diff --git a/src/Message/Message_ProgressIndicator.cxx b/src/FoundationClasses/TKernel/Message/Message_ProgressIndicator.cxx similarity index 100% rename from src/Message/Message_ProgressIndicator.cxx rename to src/FoundationClasses/TKernel/Message/Message_ProgressIndicator.cxx diff --git a/src/Message/Message_ProgressIndicator.hxx b/src/FoundationClasses/TKernel/Message/Message_ProgressIndicator.hxx similarity index 100% rename from src/Message/Message_ProgressIndicator.hxx rename to src/FoundationClasses/TKernel/Message/Message_ProgressIndicator.hxx diff --git a/src/Message/Message_ProgressRange.hxx b/src/FoundationClasses/TKernel/Message/Message_ProgressRange.hxx similarity index 100% rename from src/Message/Message_ProgressRange.hxx rename to src/FoundationClasses/TKernel/Message/Message_ProgressRange.hxx diff --git a/src/Message/Message_ProgressScope.hxx b/src/FoundationClasses/TKernel/Message/Message_ProgressScope.hxx similarity index 100% rename from src/Message/Message_ProgressScope.hxx rename to src/FoundationClasses/TKernel/Message/Message_ProgressScope.hxx diff --git a/src/Message/Message_ProgressSentry.hxx b/src/FoundationClasses/TKernel/Message/Message_ProgressSentry.hxx similarity index 100% rename from src/Message/Message_ProgressSentry.hxx rename to src/FoundationClasses/TKernel/Message/Message_ProgressSentry.hxx diff --git a/src/Message/Message_Report.cxx b/src/FoundationClasses/TKernel/Message/Message_Report.cxx similarity index 100% rename from src/Message/Message_Report.cxx rename to src/FoundationClasses/TKernel/Message/Message_Report.cxx diff --git a/src/Message/Message_Report.hxx b/src/FoundationClasses/TKernel/Message/Message_Report.hxx similarity index 100% rename from src/Message/Message_Report.hxx rename to src/FoundationClasses/TKernel/Message/Message_Report.hxx diff --git a/src/Message/Message_SequenceOfPrinters.hxx b/src/FoundationClasses/TKernel/Message/Message_SequenceOfPrinters.hxx similarity index 100% rename from src/Message/Message_SequenceOfPrinters.hxx rename to src/FoundationClasses/TKernel/Message/Message_SequenceOfPrinters.hxx diff --git a/src/Message/Message_Status.hxx b/src/FoundationClasses/TKernel/Message/Message_Status.hxx similarity index 100% rename from src/Message/Message_Status.hxx rename to src/FoundationClasses/TKernel/Message/Message_Status.hxx diff --git a/src/Message/Message_StatusType.hxx b/src/FoundationClasses/TKernel/Message/Message_StatusType.hxx similarity index 100% rename from src/Message/Message_StatusType.hxx rename to src/FoundationClasses/TKernel/Message/Message_StatusType.hxx diff --git a/src/FoundationClasses/TKernel/NCollection/FILES.cmake b/src/FoundationClasses/TKernel/NCollection/FILES.cmake new file mode 100644 index 0000000000..42f4f77310 --- /dev/null +++ b/src/FoundationClasses/TKernel/NCollection/FILES.cmake @@ -0,0 +1,82 @@ +# Source files for NCollection package +set(OCCT_NCollection_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_NCollection_FILES + NCollection_AccAllocator.cxx + NCollection_AccAllocator.hxx + NCollection_AliasedArray.hxx + NCollection_AlignedAllocator.cxx + NCollection_AlignedAllocator.hxx + NCollection_Allocator.hxx + NCollection_Array1.hxx + NCollection_Array2.hxx + NCollection_BaseAllocator.cxx + NCollection_BaseAllocator.hxx + NCollection_BaseList.cxx + NCollection_BaseList.hxx + NCollection_BaseMap.cxx + NCollection_BaseMap.hxx + NCollection_BasePointerVector.cxx + NCollection_BasePointerVector.hxx + NCollection_BaseSequence.cxx + NCollection_BaseSequence.hxx + NCollection_Buffer.hxx + NCollection_CellFilter.hxx + NCollection_DataMap.hxx + NCollection_DefaultHasher.hxx + NCollection_DefineAlloc.hxx + NCollection_DefineHArray1.hxx + NCollection_DefineHArray2.hxx + NCollection_DefineHasher.hxx + NCollection_DefineHSequence.hxx + NCollection_DoubleMap.hxx + NCollection_DynamicArray.hxx + NCollection_EBTree.hxx + NCollection_Haft.h + NCollection_Handle.hxx + NCollection_HArray1.hxx + NCollection_HArray2.hxx + NCollection_HeapAllocator.cxx + NCollection_HeapAllocator.hxx + NCollection_HSequence.hxx + NCollection_IncAllocator.cxx + NCollection_IncAllocator.hxx + NCollection_IndexedDataMap.hxx + NCollection_IndexedIterator.hxx + NCollection_IndexedMap.hxx + NCollection_Iterator.hxx + NCollection_Lerp.hxx + NCollection_List.hxx + NCollection_ListNode.hxx + NCollection_LocalArray.hxx + NCollection_Map.hxx + NCollection_MapAlgo.hxx + NCollection_Mat3.hxx + NCollection_Mat4.hxx + NCollection_OccAllocator.hxx + NCollection_Primes.cxx + NCollection_Primes.hxx + NCollection_Sequence.hxx + NCollection_Shared.hxx + NCollection_SparseArray.hxx + NCollection_SparseArrayBase.cxx + NCollection_SparseArrayBase.hxx + NCollection_StlIterator.hxx + NCollection_String.hxx + NCollection_TListIterator.hxx + NCollection_TListNode.hxx + NCollection_TypeDef.hxx + NCollection_UBTree.hxx + NCollection_UBTreeFiller.hxx + NCollection_UtfIterator.hxx + NCollection_UtfIterator.lxx + NCollection_UtfString.hxx + NCollection_UtfString.lxx + NCollection_UtfString.cxx + NCollection_Vec2.hxx + NCollection_Vec3.hxx + NCollection_Vec4.hxx + NCollection_Vector.hxx + NCollection_WinHeapAllocator.cxx + NCollection_WinHeapAllocator.hxx +) diff --git a/src/NCollection/NCollection_AccAllocator.cxx b/src/FoundationClasses/TKernel/NCollection/NCollection_AccAllocator.cxx similarity index 100% rename from src/NCollection/NCollection_AccAllocator.cxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_AccAllocator.cxx diff --git a/src/NCollection/NCollection_AccAllocator.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_AccAllocator.hxx similarity index 100% rename from src/NCollection/NCollection_AccAllocator.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_AccAllocator.hxx diff --git a/src/NCollection/NCollection_AliasedArray.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_AliasedArray.hxx similarity index 100% rename from src/NCollection/NCollection_AliasedArray.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_AliasedArray.hxx diff --git a/src/NCollection/NCollection_AlignedAllocator.cxx b/src/FoundationClasses/TKernel/NCollection/NCollection_AlignedAllocator.cxx similarity index 100% rename from src/NCollection/NCollection_AlignedAllocator.cxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_AlignedAllocator.cxx diff --git a/src/NCollection/NCollection_AlignedAllocator.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_AlignedAllocator.hxx similarity index 100% rename from src/NCollection/NCollection_AlignedAllocator.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_AlignedAllocator.hxx diff --git a/src/NCollection/NCollection_Allocator.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_Allocator.hxx similarity index 100% rename from src/NCollection/NCollection_Allocator.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_Allocator.hxx diff --git a/src/NCollection/NCollection_Array1.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_Array1.hxx similarity index 100% rename from src/NCollection/NCollection_Array1.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_Array1.hxx diff --git a/src/NCollection/NCollection_Array2.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_Array2.hxx similarity index 100% rename from src/NCollection/NCollection_Array2.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_Array2.hxx diff --git a/src/NCollection/NCollection_BaseAllocator.cxx b/src/FoundationClasses/TKernel/NCollection/NCollection_BaseAllocator.cxx similarity index 100% rename from src/NCollection/NCollection_BaseAllocator.cxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_BaseAllocator.cxx diff --git a/src/NCollection/NCollection_BaseAllocator.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_BaseAllocator.hxx similarity index 100% rename from src/NCollection/NCollection_BaseAllocator.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_BaseAllocator.hxx diff --git a/src/NCollection/NCollection_BaseList.cxx b/src/FoundationClasses/TKernel/NCollection/NCollection_BaseList.cxx similarity index 100% rename from src/NCollection/NCollection_BaseList.cxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_BaseList.cxx diff --git a/src/NCollection/NCollection_BaseList.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_BaseList.hxx similarity index 100% rename from src/NCollection/NCollection_BaseList.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_BaseList.hxx diff --git a/src/NCollection/NCollection_BaseMap.cxx b/src/FoundationClasses/TKernel/NCollection/NCollection_BaseMap.cxx similarity index 100% rename from src/NCollection/NCollection_BaseMap.cxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_BaseMap.cxx diff --git a/src/NCollection/NCollection_BaseMap.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_BaseMap.hxx similarity index 100% rename from src/NCollection/NCollection_BaseMap.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_BaseMap.hxx diff --git a/src/NCollection/NCollection_BasePointerVector.cxx b/src/FoundationClasses/TKernel/NCollection/NCollection_BasePointerVector.cxx similarity index 100% rename from src/NCollection/NCollection_BasePointerVector.cxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_BasePointerVector.cxx diff --git a/src/NCollection/NCollection_BasePointerVector.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_BasePointerVector.hxx similarity index 100% rename from src/NCollection/NCollection_BasePointerVector.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_BasePointerVector.hxx diff --git a/src/NCollection/NCollection_BaseSequence.cxx b/src/FoundationClasses/TKernel/NCollection/NCollection_BaseSequence.cxx similarity index 100% rename from src/NCollection/NCollection_BaseSequence.cxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_BaseSequence.cxx diff --git a/src/NCollection/NCollection_BaseSequence.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_BaseSequence.hxx similarity index 100% rename from src/NCollection/NCollection_BaseSequence.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_BaseSequence.hxx diff --git a/src/NCollection/NCollection_Buffer.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_Buffer.hxx similarity index 100% rename from src/NCollection/NCollection_Buffer.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_Buffer.hxx diff --git a/src/NCollection/NCollection_CellFilter.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_CellFilter.hxx similarity index 100% rename from src/NCollection/NCollection_CellFilter.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_CellFilter.hxx diff --git a/src/NCollection/NCollection_DataMap.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_DataMap.hxx similarity index 100% rename from src/NCollection/NCollection_DataMap.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_DataMap.hxx diff --git a/src/NCollection/NCollection_DefaultHasher.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_DefaultHasher.hxx similarity index 100% rename from src/NCollection/NCollection_DefaultHasher.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_DefaultHasher.hxx diff --git a/src/NCollection/NCollection_DefineAlloc.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_DefineAlloc.hxx similarity index 100% rename from src/NCollection/NCollection_DefineAlloc.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_DefineAlloc.hxx diff --git a/src/NCollection/NCollection_DefineHArray1.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_DefineHArray1.hxx similarity index 100% rename from src/NCollection/NCollection_DefineHArray1.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_DefineHArray1.hxx diff --git a/src/NCollection/NCollection_DefineHArray2.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_DefineHArray2.hxx similarity index 100% rename from src/NCollection/NCollection_DefineHArray2.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_DefineHArray2.hxx diff --git a/src/NCollection/NCollection_DefineHSequence.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_DefineHSequence.hxx similarity index 100% rename from src/NCollection/NCollection_DefineHSequence.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_DefineHSequence.hxx diff --git a/src/NCollection/NCollection_DefineHasher.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_DefineHasher.hxx similarity index 100% rename from src/NCollection/NCollection_DefineHasher.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_DefineHasher.hxx diff --git a/src/NCollection/NCollection_DoubleMap.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_DoubleMap.hxx similarity index 100% rename from src/NCollection/NCollection_DoubleMap.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_DoubleMap.hxx diff --git a/src/NCollection/NCollection_DynamicArray.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_DynamicArray.hxx similarity index 100% rename from src/NCollection/NCollection_DynamicArray.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_DynamicArray.hxx diff --git a/src/NCollection/NCollection_EBTree.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_EBTree.hxx similarity index 100% rename from src/NCollection/NCollection_EBTree.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_EBTree.hxx diff --git a/src/NCollection/NCollection_HArray1.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_HArray1.hxx similarity index 100% rename from src/NCollection/NCollection_HArray1.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_HArray1.hxx diff --git a/src/NCollection/NCollection_HArray2.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_HArray2.hxx similarity index 100% rename from src/NCollection/NCollection_HArray2.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_HArray2.hxx diff --git a/src/NCollection/NCollection_HSequence.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_HSequence.hxx similarity index 100% rename from src/NCollection/NCollection_HSequence.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_HSequence.hxx diff --git a/src/NCollection/NCollection_Haft.h b/src/FoundationClasses/TKernel/NCollection/NCollection_Haft.h similarity index 100% rename from src/NCollection/NCollection_Haft.h rename to src/FoundationClasses/TKernel/NCollection/NCollection_Haft.h diff --git a/src/NCollection/NCollection_Handle.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_Handle.hxx similarity index 100% rename from src/NCollection/NCollection_Handle.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_Handle.hxx diff --git a/src/NCollection/NCollection_HeapAllocator.cxx b/src/FoundationClasses/TKernel/NCollection/NCollection_HeapAllocator.cxx similarity index 100% rename from src/NCollection/NCollection_HeapAllocator.cxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_HeapAllocator.cxx diff --git a/src/NCollection/NCollection_HeapAllocator.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_HeapAllocator.hxx similarity index 100% rename from src/NCollection/NCollection_HeapAllocator.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_HeapAllocator.hxx diff --git a/src/NCollection/NCollection_IncAllocator.cxx b/src/FoundationClasses/TKernel/NCollection/NCollection_IncAllocator.cxx similarity index 100% rename from src/NCollection/NCollection_IncAllocator.cxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_IncAllocator.cxx diff --git a/src/NCollection/NCollection_IncAllocator.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_IncAllocator.hxx similarity index 100% rename from src/NCollection/NCollection_IncAllocator.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_IncAllocator.hxx diff --git a/src/NCollection/NCollection_IndexedDataMap.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_IndexedDataMap.hxx similarity index 100% rename from src/NCollection/NCollection_IndexedDataMap.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_IndexedDataMap.hxx diff --git a/src/NCollection/NCollection_IndexedIterator.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_IndexedIterator.hxx similarity index 100% rename from src/NCollection/NCollection_IndexedIterator.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_IndexedIterator.hxx diff --git a/src/NCollection/NCollection_IndexedMap.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_IndexedMap.hxx similarity index 100% rename from src/NCollection/NCollection_IndexedMap.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_IndexedMap.hxx diff --git a/src/NCollection/NCollection_Iterator.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_Iterator.hxx similarity index 100% rename from src/NCollection/NCollection_Iterator.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_Iterator.hxx diff --git a/src/NCollection/NCollection_Lerp.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_Lerp.hxx similarity index 100% rename from src/NCollection/NCollection_Lerp.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_Lerp.hxx diff --git a/src/NCollection/NCollection_List.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_List.hxx similarity index 100% rename from src/NCollection/NCollection_List.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_List.hxx diff --git a/src/NCollection/NCollection_ListNode.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_ListNode.hxx similarity index 100% rename from src/NCollection/NCollection_ListNode.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_ListNode.hxx diff --git a/src/NCollection/NCollection_LocalArray.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_LocalArray.hxx similarity index 100% rename from src/NCollection/NCollection_LocalArray.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_LocalArray.hxx diff --git a/src/NCollection/NCollection_Map.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_Map.hxx similarity index 100% rename from src/NCollection/NCollection_Map.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_Map.hxx diff --git a/src/NCollection/NCollection_MapAlgo.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_MapAlgo.hxx similarity index 100% rename from src/NCollection/NCollection_MapAlgo.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_MapAlgo.hxx diff --git a/src/NCollection/NCollection_Mat3.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_Mat3.hxx similarity index 100% rename from src/NCollection/NCollection_Mat3.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_Mat3.hxx diff --git a/src/NCollection/NCollection_Mat4.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_Mat4.hxx similarity index 100% rename from src/NCollection/NCollection_Mat4.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_Mat4.hxx diff --git a/src/NCollection/NCollection_OccAllocator.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_OccAllocator.hxx similarity index 100% rename from src/NCollection/NCollection_OccAllocator.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_OccAllocator.hxx diff --git a/src/NCollection/NCollection_Primes.cxx b/src/FoundationClasses/TKernel/NCollection/NCollection_Primes.cxx similarity index 100% rename from src/NCollection/NCollection_Primes.cxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_Primes.cxx diff --git a/src/NCollection/NCollection_Primes.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_Primes.hxx similarity index 100% rename from src/NCollection/NCollection_Primes.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_Primes.hxx diff --git a/src/NCollection/NCollection_Sequence.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_Sequence.hxx similarity index 100% rename from src/NCollection/NCollection_Sequence.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_Sequence.hxx diff --git a/src/NCollection/NCollection_Shared.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_Shared.hxx similarity index 100% rename from src/NCollection/NCollection_Shared.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_Shared.hxx diff --git a/src/NCollection/NCollection_SparseArray.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_SparseArray.hxx similarity index 100% rename from src/NCollection/NCollection_SparseArray.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_SparseArray.hxx diff --git a/src/NCollection/NCollection_SparseArrayBase.cxx b/src/FoundationClasses/TKernel/NCollection/NCollection_SparseArrayBase.cxx similarity index 100% rename from src/NCollection/NCollection_SparseArrayBase.cxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_SparseArrayBase.cxx diff --git a/src/NCollection/NCollection_SparseArrayBase.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_SparseArrayBase.hxx similarity index 100% rename from src/NCollection/NCollection_SparseArrayBase.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_SparseArrayBase.hxx diff --git a/src/NCollection/NCollection_StlIterator.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_StlIterator.hxx similarity index 100% rename from src/NCollection/NCollection_StlIterator.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_StlIterator.hxx diff --git a/src/NCollection/NCollection_String.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_String.hxx similarity index 100% rename from src/NCollection/NCollection_String.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_String.hxx diff --git a/src/NCollection/NCollection_TListIterator.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_TListIterator.hxx similarity index 100% rename from src/NCollection/NCollection_TListIterator.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_TListIterator.hxx diff --git a/src/NCollection/NCollection_TListNode.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_TListNode.hxx similarity index 100% rename from src/NCollection/NCollection_TListNode.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_TListNode.hxx diff --git a/src/NCollection/NCollection_TypeDef.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_TypeDef.hxx similarity index 100% rename from src/NCollection/NCollection_TypeDef.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_TypeDef.hxx diff --git a/src/NCollection/NCollection_UBTree.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_UBTree.hxx similarity index 100% rename from src/NCollection/NCollection_UBTree.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_UBTree.hxx diff --git a/src/NCollection/NCollection_UBTreeFiller.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_UBTreeFiller.hxx similarity index 100% rename from src/NCollection/NCollection_UBTreeFiller.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_UBTreeFiller.hxx diff --git a/src/NCollection/NCollection_UtfIterator.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_UtfIterator.hxx similarity index 100% rename from src/NCollection/NCollection_UtfIterator.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_UtfIterator.hxx diff --git a/src/NCollection/NCollection_UtfIterator.lxx b/src/FoundationClasses/TKernel/NCollection/NCollection_UtfIterator.lxx similarity index 100% rename from src/NCollection/NCollection_UtfIterator.lxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_UtfIterator.lxx diff --git a/src/NCollection/NCollection_UtfString.cxx b/src/FoundationClasses/TKernel/NCollection/NCollection_UtfString.cxx similarity index 100% rename from src/NCollection/NCollection_UtfString.cxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_UtfString.cxx diff --git a/src/NCollection/NCollection_UtfString.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_UtfString.hxx similarity index 100% rename from src/NCollection/NCollection_UtfString.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_UtfString.hxx diff --git a/src/NCollection/NCollection_UtfString.lxx b/src/FoundationClasses/TKernel/NCollection/NCollection_UtfString.lxx similarity index 100% rename from src/NCollection/NCollection_UtfString.lxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_UtfString.lxx diff --git a/src/NCollection/NCollection_Vec2.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_Vec2.hxx similarity index 100% rename from src/NCollection/NCollection_Vec2.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_Vec2.hxx diff --git a/src/NCollection/NCollection_Vec3.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_Vec3.hxx similarity index 100% rename from src/NCollection/NCollection_Vec3.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_Vec3.hxx diff --git a/src/NCollection/NCollection_Vec4.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_Vec4.hxx similarity index 100% rename from src/NCollection/NCollection_Vec4.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_Vec4.hxx diff --git a/src/NCollection/NCollection_Vector.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_Vector.hxx similarity index 100% rename from src/NCollection/NCollection_Vector.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_Vector.hxx diff --git a/src/NCollection/NCollection_WinHeapAllocator.cxx b/src/FoundationClasses/TKernel/NCollection/NCollection_WinHeapAllocator.cxx similarity index 100% rename from src/NCollection/NCollection_WinHeapAllocator.cxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_WinHeapAllocator.cxx diff --git a/src/NCollection/NCollection_WinHeapAllocator.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_WinHeapAllocator.hxx similarity index 100% rename from src/NCollection/NCollection_WinHeapAllocator.hxx rename to src/FoundationClasses/TKernel/NCollection/NCollection_WinHeapAllocator.hxx diff --git a/src/FoundationClasses/TKernel/OSD/FILES.cmake b/src/FoundationClasses/TKernel/OSD/FILES.cmake new file mode 100644 index 0000000000..60d7d10b0a --- /dev/null +++ b/src/FoundationClasses/TKernel/OSD/FILES.cmake @@ -0,0 +1,102 @@ +# Source files for OSD package +set(OCCT_OSD_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_OSD_FILES + OSD.cxx + OSD.hxx + OSD_CachedFileSystem.cxx + OSD_CachedFileSystem.hxx + OSD_Chronometer.cxx + OSD_Chronometer.hxx + OSD_Directory.cxx + OSD_Directory.hxx + OSD_DirectoryIterator.cxx + OSD_DirectoryIterator.hxx + OSD_Disk.cxx + OSD_Disk.hxx + OSD_Environment.cxx + OSD_Environment.hxx + OSD_Error.cxx + OSD_Error.hxx + OSD_ErrorList.hxx + OSD_Exception.hxx + OSD_Exception_ACCESS_VIOLATION.hxx + OSD_Exception_ARRAY_BOUNDS_EXCEEDED.hxx + OSD_Exception_CTRL_BREAK.hxx + OSD_Exception_ILLEGAL_INSTRUCTION.hxx + OSD_Exception_IN_PAGE_ERROR.hxx + OSD_Exception_INT_OVERFLOW.hxx + OSD_Exception_INVALID_DISPOSITION.hxx + OSD_Exception_NONCONTINUABLE_EXCEPTION.hxx + OSD_Exception_PRIV_INSTRUCTION.hxx + OSD_Exception_STACK_OVERFLOW.hxx + OSD_Exception_STATUS_NO_MEMORY.hxx + OSD_File.cxx + OSD_File.hxx + OSD_FileIterator.cxx + OSD_FileIterator.hxx + OSD_FileNode.cxx + OSD_FileNode.hxx + OSD_FileSystem.cxx + OSD_FileSystem.hxx + OSD_FileSystemSelector.cxx + OSD_FileSystemSelector.hxx + OSD_FromWhere.hxx + OSD_Function.hxx + OSD_Host.cxx + OSD_Host.hxx + OSD_KindFile.hxx + OSD_LoadMode.hxx + OSD_LocalFileSystem.cxx + OSD_LocalFileSystem.hxx + OSD_LockType.hxx + OSD_MAllocHook.cxx + OSD_MAllocHook.hxx + OSD_MemInfo.cxx + OSD_MemInfo.hxx + OSD_OEMType.hxx + OSD_OpenFile.cxx + OSD_OpenFile.hxx + OSD_OpenMode.hxx + OSD_OSDError.hxx + OSD_Parallel.cxx + OSD_Parallel.hxx + OSD_Parallel_TBB.cxx + OSD_Parallel_Threads.cxx + OSD_Path.cxx + OSD_Path.hxx + OSD_PerfMeter.cxx + OSD_PerfMeter.h + OSD_PerfMeter.hxx + OSD_Process.cxx + OSD_Process.hxx + OSD_Protection.cxx + OSD_Protection.hxx + OSD_PThread.hxx + OSD_SharedLibrary.cxx + OSD_SharedLibrary.hxx + OSD_SIGBUS.hxx + OSD_SIGHUP.hxx + OSD_SIGILL.hxx + OSD_SIGINT.hxx + OSD_SIGKILL.hxx + OSD_signal.cxx + OSD_Signal.hxx + OSD_SIGQUIT.hxx + OSD_SIGSEGV.hxx + OSD_SIGSYS.hxx + OSD_SingleProtection.hxx + OSD_StreamBuffer.hxx + OSD_SysType.hxx + OSD_Thread.cxx + OSD_Thread.hxx + OSD_ThreadPool.cxx + OSD_ThreadPool.hxx + OSD_ThreadFunction.hxx + OSD_Timer.cxx + OSD_Timer.hxx + OSD_WhoAmI.hxx + OSD_WNT.cxx + OSD_WNT.hxx + OSD_SignalMode.hxx +) diff --git a/src/OSD/OSD.cxx b/src/FoundationClasses/TKernel/OSD/OSD.cxx similarity index 100% rename from src/OSD/OSD.cxx rename to src/FoundationClasses/TKernel/OSD/OSD.cxx diff --git a/src/OSD/OSD.hxx b/src/FoundationClasses/TKernel/OSD/OSD.hxx similarity index 100% rename from src/OSD/OSD.hxx rename to src/FoundationClasses/TKernel/OSD/OSD.hxx diff --git a/src/OSD/OSD_CachedFileSystem.cxx b/src/FoundationClasses/TKernel/OSD/OSD_CachedFileSystem.cxx similarity index 100% rename from src/OSD/OSD_CachedFileSystem.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_CachedFileSystem.cxx diff --git a/src/OSD/OSD_CachedFileSystem.hxx b/src/FoundationClasses/TKernel/OSD/OSD_CachedFileSystem.hxx similarity index 100% rename from src/OSD/OSD_CachedFileSystem.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_CachedFileSystem.hxx diff --git a/src/OSD/OSD_Chronometer.cxx b/src/FoundationClasses/TKernel/OSD/OSD_Chronometer.cxx similarity index 100% rename from src/OSD/OSD_Chronometer.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_Chronometer.cxx diff --git a/src/OSD/OSD_Chronometer.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Chronometer.hxx similarity index 100% rename from src/OSD/OSD_Chronometer.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Chronometer.hxx diff --git a/src/OSD/OSD_Directory.cxx b/src/FoundationClasses/TKernel/OSD/OSD_Directory.cxx similarity index 100% rename from src/OSD/OSD_Directory.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_Directory.cxx diff --git a/src/OSD/OSD_Directory.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Directory.hxx similarity index 100% rename from src/OSD/OSD_Directory.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Directory.hxx diff --git a/src/OSD/OSD_DirectoryIterator.cxx b/src/FoundationClasses/TKernel/OSD/OSD_DirectoryIterator.cxx similarity index 100% rename from src/OSD/OSD_DirectoryIterator.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_DirectoryIterator.cxx diff --git a/src/OSD/OSD_DirectoryIterator.hxx b/src/FoundationClasses/TKernel/OSD/OSD_DirectoryIterator.hxx similarity index 100% rename from src/OSD/OSD_DirectoryIterator.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_DirectoryIterator.hxx diff --git a/src/OSD/OSD_Disk.cxx b/src/FoundationClasses/TKernel/OSD/OSD_Disk.cxx similarity index 100% rename from src/OSD/OSD_Disk.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_Disk.cxx diff --git a/src/OSD/OSD_Disk.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Disk.hxx similarity index 100% rename from src/OSD/OSD_Disk.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Disk.hxx diff --git a/src/OSD/OSD_Environment.cxx b/src/FoundationClasses/TKernel/OSD/OSD_Environment.cxx similarity index 100% rename from src/OSD/OSD_Environment.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_Environment.cxx diff --git a/src/OSD/OSD_Environment.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Environment.hxx similarity index 100% rename from src/OSD/OSD_Environment.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Environment.hxx diff --git a/src/OSD/OSD_Error.cxx b/src/FoundationClasses/TKernel/OSD/OSD_Error.cxx similarity index 100% rename from src/OSD/OSD_Error.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_Error.cxx diff --git a/src/OSD/OSD_Error.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Error.hxx similarity index 100% rename from src/OSD/OSD_Error.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Error.hxx diff --git a/src/OSD/OSD_ErrorList.hxx b/src/FoundationClasses/TKernel/OSD/OSD_ErrorList.hxx similarity index 100% rename from src/OSD/OSD_ErrorList.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_ErrorList.hxx diff --git a/src/OSD/OSD_Exception.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Exception.hxx similarity index 100% rename from src/OSD/OSD_Exception.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Exception.hxx diff --git a/src/OSD/OSD_Exception_ACCESS_VIOLATION.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Exception_ACCESS_VIOLATION.hxx similarity index 100% rename from src/OSD/OSD_Exception_ACCESS_VIOLATION.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Exception_ACCESS_VIOLATION.hxx diff --git a/src/OSD/OSD_Exception_ARRAY_BOUNDS_EXCEEDED.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Exception_ARRAY_BOUNDS_EXCEEDED.hxx similarity index 100% rename from src/OSD/OSD_Exception_ARRAY_BOUNDS_EXCEEDED.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Exception_ARRAY_BOUNDS_EXCEEDED.hxx diff --git a/src/OSD/OSD_Exception_CTRL_BREAK.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Exception_CTRL_BREAK.hxx similarity index 100% rename from src/OSD/OSD_Exception_CTRL_BREAK.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Exception_CTRL_BREAK.hxx diff --git a/src/OSD/OSD_Exception_ILLEGAL_INSTRUCTION.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Exception_ILLEGAL_INSTRUCTION.hxx similarity index 100% rename from src/OSD/OSD_Exception_ILLEGAL_INSTRUCTION.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Exception_ILLEGAL_INSTRUCTION.hxx diff --git a/src/OSD/OSD_Exception_INT_OVERFLOW.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Exception_INT_OVERFLOW.hxx similarity index 100% rename from src/OSD/OSD_Exception_INT_OVERFLOW.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Exception_INT_OVERFLOW.hxx diff --git a/src/OSD/OSD_Exception_INVALID_DISPOSITION.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Exception_INVALID_DISPOSITION.hxx similarity index 100% rename from src/OSD/OSD_Exception_INVALID_DISPOSITION.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Exception_INVALID_DISPOSITION.hxx diff --git a/src/OSD/OSD_Exception_IN_PAGE_ERROR.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Exception_IN_PAGE_ERROR.hxx similarity index 100% rename from src/OSD/OSD_Exception_IN_PAGE_ERROR.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Exception_IN_PAGE_ERROR.hxx diff --git a/src/OSD/OSD_Exception_NONCONTINUABLE_EXCEPTION.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Exception_NONCONTINUABLE_EXCEPTION.hxx similarity index 100% rename from src/OSD/OSD_Exception_NONCONTINUABLE_EXCEPTION.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Exception_NONCONTINUABLE_EXCEPTION.hxx diff --git a/src/OSD/OSD_Exception_PRIV_INSTRUCTION.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Exception_PRIV_INSTRUCTION.hxx similarity index 100% rename from src/OSD/OSD_Exception_PRIV_INSTRUCTION.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Exception_PRIV_INSTRUCTION.hxx diff --git a/src/OSD/OSD_Exception_STACK_OVERFLOW.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Exception_STACK_OVERFLOW.hxx similarity index 100% rename from src/OSD/OSD_Exception_STACK_OVERFLOW.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Exception_STACK_OVERFLOW.hxx diff --git a/src/OSD/OSD_Exception_STATUS_NO_MEMORY.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Exception_STATUS_NO_MEMORY.hxx similarity index 100% rename from src/OSD/OSD_Exception_STATUS_NO_MEMORY.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Exception_STATUS_NO_MEMORY.hxx diff --git a/src/OSD/OSD_File.cxx b/src/FoundationClasses/TKernel/OSD/OSD_File.cxx similarity index 100% rename from src/OSD/OSD_File.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_File.cxx diff --git a/src/OSD/OSD_File.hxx b/src/FoundationClasses/TKernel/OSD/OSD_File.hxx similarity index 100% rename from src/OSD/OSD_File.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_File.hxx diff --git a/src/OSD/OSD_FileIterator.cxx b/src/FoundationClasses/TKernel/OSD/OSD_FileIterator.cxx similarity index 100% rename from src/OSD/OSD_FileIterator.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_FileIterator.cxx diff --git a/src/OSD/OSD_FileIterator.hxx b/src/FoundationClasses/TKernel/OSD/OSD_FileIterator.hxx similarity index 100% rename from src/OSD/OSD_FileIterator.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_FileIterator.hxx diff --git a/src/OSD/OSD_FileNode.cxx b/src/FoundationClasses/TKernel/OSD/OSD_FileNode.cxx similarity index 100% rename from src/OSD/OSD_FileNode.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_FileNode.cxx diff --git a/src/OSD/OSD_FileNode.hxx b/src/FoundationClasses/TKernel/OSD/OSD_FileNode.hxx similarity index 100% rename from src/OSD/OSD_FileNode.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_FileNode.hxx diff --git a/src/OSD/OSD_FileSystem.cxx b/src/FoundationClasses/TKernel/OSD/OSD_FileSystem.cxx similarity index 100% rename from src/OSD/OSD_FileSystem.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_FileSystem.cxx diff --git a/src/OSD/OSD_FileSystem.hxx b/src/FoundationClasses/TKernel/OSD/OSD_FileSystem.hxx similarity index 100% rename from src/OSD/OSD_FileSystem.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_FileSystem.hxx diff --git a/src/OSD/OSD_FileSystemSelector.cxx b/src/FoundationClasses/TKernel/OSD/OSD_FileSystemSelector.cxx similarity index 100% rename from src/OSD/OSD_FileSystemSelector.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_FileSystemSelector.cxx diff --git a/src/OSD/OSD_FileSystemSelector.hxx b/src/FoundationClasses/TKernel/OSD/OSD_FileSystemSelector.hxx similarity index 100% rename from src/OSD/OSD_FileSystemSelector.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_FileSystemSelector.hxx diff --git a/src/OSD/OSD_FromWhere.hxx b/src/FoundationClasses/TKernel/OSD/OSD_FromWhere.hxx similarity index 100% rename from src/OSD/OSD_FromWhere.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_FromWhere.hxx diff --git a/src/OSD/OSD_Function.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Function.hxx similarity index 100% rename from src/OSD/OSD_Function.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Function.hxx diff --git a/src/OSD/OSD_Host.cxx b/src/FoundationClasses/TKernel/OSD/OSD_Host.cxx similarity index 100% rename from src/OSD/OSD_Host.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_Host.cxx diff --git a/src/OSD/OSD_Host.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Host.hxx similarity index 100% rename from src/OSD/OSD_Host.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Host.hxx diff --git a/src/OSD/OSD_KindFile.hxx b/src/FoundationClasses/TKernel/OSD/OSD_KindFile.hxx similarity index 100% rename from src/OSD/OSD_KindFile.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_KindFile.hxx diff --git a/src/OSD/OSD_LoadMode.hxx b/src/FoundationClasses/TKernel/OSD/OSD_LoadMode.hxx similarity index 100% rename from src/OSD/OSD_LoadMode.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_LoadMode.hxx diff --git a/src/OSD/OSD_LocalFileSystem.cxx b/src/FoundationClasses/TKernel/OSD/OSD_LocalFileSystem.cxx similarity index 100% rename from src/OSD/OSD_LocalFileSystem.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_LocalFileSystem.cxx diff --git a/src/OSD/OSD_LocalFileSystem.hxx b/src/FoundationClasses/TKernel/OSD/OSD_LocalFileSystem.hxx similarity index 100% rename from src/OSD/OSD_LocalFileSystem.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_LocalFileSystem.hxx diff --git a/src/OSD/OSD_LockType.hxx b/src/FoundationClasses/TKernel/OSD/OSD_LockType.hxx similarity index 100% rename from src/OSD/OSD_LockType.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_LockType.hxx diff --git a/src/OSD/OSD_MAllocHook.cxx b/src/FoundationClasses/TKernel/OSD/OSD_MAllocHook.cxx similarity index 100% rename from src/OSD/OSD_MAllocHook.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_MAllocHook.cxx diff --git a/src/OSD/OSD_MAllocHook.hxx b/src/FoundationClasses/TKernel/OSD/OSD_MAllocHook.hxx similarity index 100% rename from src/OSD/OSD_MAllocHook.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_MAllocHook.hxx diff --git a/src/OSD/OSD_MemInfo.cxx b/src/FoundationClasses/TKernel/OSD/OSD_MemInfo.cxx similarity index 100% rename from src/OSD/OSD_MemInfo.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_MemInfo.cxx diff --git a/src/OSD/OSD_MemInfo.hxx b/src/FoundationClasses/TKernel/OSD/OSD_MemInfo.hxx similarity index 100% rename from src/OSD/OSD_MemInfo.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_MemInfo.hxx diff --git a/src/OSD/OSD_OEMType.hxx b/src/FoundationClasses/TKernel/OSD/OSD_OEMType.hxx similarity index 100% rename from src/OSD/OSD_OEMType.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_OEMType.hxx diff --git a/src/OSD/OSD_OSDError.hxx b/src/FoundationClasses/TKernel/OSD/OSD_OSDError.hxx similarity index 100% rename from src/OSD/OSD_OSDError.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_OSDError.hxx diff --git a/src/OSD/OSD_OpenFile.cxx b/src/FoundationClasses/TKernel/OSD/OSD_OpenFile.cxx similarity index 100% rename from src/OSD/OSD_OpenFile.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_OpenFile.cxx diff --git a/src/OSD/OSD_OpenFile.hxx b/src/FoundationClasses/TKernel/OSD/OSD_OpenFile.hxx similarity index 100% rename from src/OSD/OSD_OpenFile.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_OpenFile.hxx diff --git a/src/OSD/OSD_OpenMode.hxx b/src/FoundationClasses/TKernel/OSD/OSD_OpenMode.hxx similarity index 100% rename from src/OSD/OSD_OpenMode.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_OpenMode.hxx diff --git a/src/OSD/OSD_PThread.hxx b/src/FoundationClasses/TKernel/OSD/OSD_PThread.hxx similarity index 100% rename from src/OSD/OSD_PThread.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_PThread.hxx diff --git a/src/OSD/OSD_Parallel.cxx b/src/FoundationClasses/TKernel/OSD/OSD_Parallel.cxx similarity index 100% rename from src/OSD/OSD_Parallel.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_Parallel.cxx diff --git a/src/OSD/OSD_Parallel.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Parallel.hxx similarity index 100% rename from src/OSD/OSD_Parallel.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Parallel.hxx diff --git a/src/OSD/OSD_Parallel_TBB.cxx b/src/FoundationClasses/TKernel/OSD/OSD_Parallel_TBB.cxx similarity index 100% rename from src/OSD/OSD_Parallel_TBB.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_Parallel_TBB.cxx diff --git a/src/OSD/OSD_Parallel_Threads.cxx b/src/FoundationClasses/TKernel/OSD/OSD_Parallel_Threads.cxx similarity index 100% rename from src/OSD/OSD_Parallel_Threads.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_Parallel_Threads.cxx diff --git a/src/OSD/OSD_Path.cxx b/src/FoundationClasses/TKernel/OSD/OSD_Path.cxx similarity index 100% rename from src/OSD/OSD_Path.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_Path.cxx diff --git a/src/OSD/OSD_Path.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Path.hxx similarity index 100% rename from src/OSD/OSD_Path.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Path.hxx diff --git a/src/OSD/OSD_PerfMeter.cxx b/src/FoundationClasses/TKernel/OSD/OSD_PerfMeter.cxx similarity index 100% rename from src/OSD/OSD_PerfMeter.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_PerfMeter.cxx diff --git a/src/OSD/OSD_PerfMeter.h b/src/FoundationClasses/TKernel/OSD/OSD_PerfMeter.h similarity index 100% rename from src/OSD/OSD_PerfMeter.h rename to src/FoundationClasses/TKernel/OSD/OSD_PerfMeter.h diff --git a/src/OSD/OSD_PerfMeter.hxx b/src/FoundationClasses/TKernel/OSD/OSD_PerfMeter.hxx similarity index 100% rename from src/OSD/OSD_PerfMeter.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_PerfMeter.hxx diff --git a/src/OSD/OSD_Process.cxx b/src/FoundationClasses/TKernel/OSD/OSD_Process.cxx similarity index 100% rename from src/OSD/OSD_Process.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_Process.cxx diff --git a/src/OSD/OSD_Process.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Process.hxx similarity index 100% rename from src/OSD/OSD_Process.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Process.hxx diff --git a/src/OSD/OSD_Protection.cxx b/src/FoundationClasses/TKernel/OSD/OSD_Protection.cxx similarity index 100% rename from src/OSD/OSD_Protection.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_Protection.cxx diff --git a/src/OSD/OSD_Protection.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Protection.hxx similarity index 100% rename from src/OSD/OSD_Protection.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Protection.hxx diff --git a/src/OSD/OSD_SIGBUS.hxx b/src/FoundationClasses/TKernel/OSD/OSD_SIGBUS.hxx similarity index 100% rename from src/OSD/OSD_SIGBUS.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_SIGBUS.hxx diff --git a/src/OSD/OSD_SIGHUP.hxx b/src/FoundationClasses/TKernel/OSD/OSD_SIGHUP.hxx similarity index 100% rename from src/OSD/OSD_SIGHUP.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_SIGHUP.hxx diff --git a/src/OSD/OSD_SIGILL.hxx b/src/FoundationClasses/TKernel/OSD/OSD_SIGILL.hxx similarity index 100% rename from src/OSD/OSD_SIGILL.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_SIGILL.hxx diff --git a/src/OSD/OSD_SIGINT.hxx b/src/FoundationClasses/TKernel/OSD/OSD_SIGINT.hxx similarity index 100% rename from src/OSD/OSD_SIGINT.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_SIGINT.hxx diff --git a/src/OSD/OSD_SIGKILL.hxx b/src/FoundationClasses/TKernel/OSD/OSD_SIGKILL.hxx similarity index 100% rename from src/OSD/OSD_SIGKILL.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_SIGKILL.hxx diff --git a/src/OSD/OSD_SIGQUIT.hxx b/src/FoundationClasses/TKernel/OSD/OSD_SIGQUIT.hxx similarity index 100% rename from src/OSD/OSD_SIGQUIT.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_SIGQUIT.hxx diff --git a/src/OSD/OSD_SIGSEGV.hxx b/src/FoundationClasses/TKernel/OSD/OSD_SIGSEGV.hxx similarity index 100% rename from src/OSD/OSD_SIGSEGV.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_SIGSEGV.hxx diff --git a/src/OSD/OSD_SIGSYS.hxx b/src/FoundationClasses/TKernel/OSD/OSD_SIGSYS.hxx similarity index 100% rename from src/OSD/OSD_SIGSYS.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_SIGSYS.hxx diff --git a/src/OSD/OSD_SharedLibrary.cxx b/src/FoundationClasses/TKernel/OSD/OSD_SharedLibrary.cxx similarity index 100% rename from src/OSD/OSD_SharedLibrary.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_SharedLibrary.cxx diff --git a/src/OSD/OSD_SharedLibrary.hxx b/src/FoundationClasses/TKernel/OSD/OSD_SharedLibrary.hxx similarity index 100% rename from src/OSD/OSD_SharedLibrary.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_SharedLibrary.hxx diff --git a/src/OSD/OSD_Signal.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Signal.hxx similarity index 100% rename from src/OSD/OSD_Signal.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Signal.hxx diff --git a/src/OSD/OSD_SignalMode.hxx b/src/FoundationClasses/TKernel/OSD/OSD_SignalMode.hxx similarity index 100% rename from src/OSD/OSD_SignalMode.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_SignalMode.hxx diff --git a/src/OSD/OSD_SingleProtection.hxx b/src/FoundationClasses/TKernel/OSD/OSD_SingleProtection.hxx similarity index 100% rename from src/OSD/OSD_SingleProtection.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_SingleProtection.hxx diff --git a/src/OSD/OSD_StreamBuffer.hxx b/src/FoundationClasses/TKernel/OSD/OSD_StreamBuffer.hxx similarity index 100% rename from src/OSD/OSD_StreamBuffer.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_StreamBuffer.hxx diff --git a/src/OSD/OSD_SysType.hxx b/src/FoundationClasses/TKernel/OSD/OSD_SysType.hxx similarity index 100% rename from src/OSD/OSD_SysType.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_SysType.hxx diff --git a/src/OSD/OSD_Thread.cxx b/src/FoundationClasses/TKernel/OSD/OSD_Thread.cxx similarity index 100% rename from src/OSD/OSD_Thread.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_Thread.cxx diff --git a/src/OSD/OSD_Thread.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Thread.hxx similarity index 100% rename from src/OSD/OSD_Thread.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Thread.hxx diff --git a/src/OSD/OSD_ThreadFunction.hxx b/src/FoundationClasses/TKernel/OSD/OSD_ThreadFunction.hxx similarity index 100% rename from src/OSD/OSD_ThreadFunction.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_ThreadFunction.hxx diff --git a/src/OSD/OSD_ThreadPool.cxx b/src/FoundationClasses/TKernel/OSD/OSD_ThreadPool.cxx similarity index 100% rename from src/OSD/OSD_ThreadPool.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_ThreadPool.cxx diff --git a/src/OSD/OSD_ThreadPool.hxx b/src/FoundationClasses/TKernel/OSD/OSD_ThreadPool.hxx similarity index 100% rename from src/OSD/OSD_ThreadPool.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_ThreadPool.hxx diff --git a/src/OSD/OSD_Timer.cxx b/src/FoundationClasses/TKernel/OSD/OSD_Timer.cxx similarity index 100% rename from src/OSD/OSD_Timer.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_Timer.cxx diff --git a/src/OSD/OSD_Timer.hxx b/src/FoundationClasses/TKernel/OSD/OSD_Timer.hxx similarity index 100% rename from src/OSD/OSD_Timer.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_Timer.hxx diff --git a/src/OSD/OSD_WNT.cxx b/src/FoundationClasses/TKernel/OSD/OSD_WNT.cxx similarity index 100% rename from src/OSD/OSD_WNT.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_WNT.cxx diff --git a/src/OSD/OSD_WNT.hxx b/src/FoundationClasses/TKernel/OSD/OSD_WNT.hxx similarity index 100% rename from src/OSD/OSD_WNT.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_WNT.hxx diff --git a/src/OSD/OSD_WhoAmI.hxx b/src/FoundationClasses/TKernel/OSD/OSD_WhoAmI.hxx similarity index 100% rename from src/OSD/OSD_WhoAmI.hxx rename to src/FoundationClasses/TKernel/OSD/OSD_WhoAmI.hxx diff --git a/src/OSD/OSD_signal.cxx b/src/FoundationClasses/TKernel/OSD/OSD_signal.cxx similarity index 100% rename from src/OSD/OSD_signal.cxx rename to src/FoundationClasses/TKernel/OSD/OSD_signal.cxx diff --git a/src/FoundationClasses/TKernel/PACKAGES.cmake b/src/FoundationClasses/TKernel/PACKAGES.cmake new file mode 100644 index 0000000000..e3cefab2aa --- /dev/null +++ b/src/FoundationClasses/TKernel/PACKAGES.cmake @@ -0,0 +1,21 @@ +# Auto-generated list of packages for TKernel toolkit +set(OCCT_TKernel_LIST_OF_PACKAGES + FSD + OSD + Plugin + Quantity + Resource + Standard + StdFail + Storage + TColStd + TCollection + TShort + Units + UnitsAPI + UnitsMethods + NCollection + Message + FlexLexer + Precision +) diff --git a/src/FoundationClasses/TKernel/Plugin/FILES.cmake b/src/FoundationClasses/TKernel/Plugin/FILES.cmake new file mode 100644 index 0000000000..e9b43ef4e7 --- /dev/null +++ b/src/FoundationClasses/TKernel/Plugin/FILES.cmake @@ -0,0 +1,11 @@ +# Source files for Plugin package +set(OCCT_Plugin_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Plugin_FILES + Plugin.cxx + Plugin.hxx + Plugin_DataMapIteratorOfMapOfFunctions.hxx + Plugin_Failure.hxx + Plugin_Macro.hxx + Plugin_MapOfFunctions.hxx +) diff --git a/src/Plugin/Plugin.cxx b/src/FoundationClasses/TKernel/Plugin/Plugin.cxx similarity index 100% rename from src/Plugin/Plugin.cxx rename to src/FoundationClasses/TKernel/Plugin/Plugin.cxx diff --git a/src/Plugin/Plugin.hxx b/src/FoundationClasses/TKernel/Plugin/Plugin.hxx similarity index 100% rename from src/Plugin/Plugin.hxx rename to src/FoundationClasses/TKernel/Plugin/Plugin.hxx diff --git a/src/Plugin/Plugin_DataMapIteratorOfMapOfFunctions.hxx b/src/FoundationClasses/TKernel/Plugin/Plugin_DataMapIteratorOfMapOfFunctions.hxx similarity index 100% rename from src/Plugin/Plugin_DataMapIteratorOfMapOfFunctions.hxx rename to src/FoundationClasses/TKernel/Plugin/Plugin_DataMapIteratorOfMapOfFunctions.hxx diff --git a/src/Plugin/Plugin_Failure.hxx b/src/FoundationClasses/TKernel/Plugin/Plugin_Failure.hxx similarity index 100% rename from src/Plugin/Plugin_Failure.hxx rename to src/FoundationClasses/TKernel/Plugin/Plugin_Failure.hxx diff --git a/src/Plugin/Plugin_Macro.hxx b/src/FoundationClasses/TKernel/Plugin/Plugin_Macro.hxx similarity index 100% rename from src/Plugin/Plugin_Macro.hxx rename to src/FoundationClasses/TKernel/Plugin/Plugin_Macro.hxx diff --git a/src/Plugin/Plugin_MapOfFunctions.hxx b/src/FoundationClasses/TKernel/Plugin/Plugin_MapOfFunctions.hxx similarity index 100% rename from src/Plugin/Plugin_MapOfFunctions.hxx rename to src/FoundationClasses/TKernel/Plugin/Plugin_MapOfFunctions.hxx diff --git a/src/FoundationClasses/TKernel/Precision/FILES.cmake b/src/FoundationClasses/TKernel/Precision/FILES.cmake new file mode 100644 index 0000000000..150b38d30b --- /dev/null +++ b/src/FoundationClasses/TKernel/Precision/FILES.cmake @@ -0,0 +1,6 @@ +# Source files for Precision package +set(OCCT_Precision_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Precision_FILES + Precision.hxx +) diff --git a/src/Precision/Precision.hxx b/src/FoundationClasses/TKernel/Precision/Precision.hxx similarity index 100% rename from src/Precision/Precision.hxx rename to src/FoundationClasses/TKernel/Precision/Precision.hxx diff --git a/src/FoundationClasses/TKernel/Quantity/FILES.cmake b/src/FoundationClasses/TKernel/Quantity/FILES.cmake new file mode 100644 index 0000000000..5eaf343912 --- /dev/null +++ b/src/FoundationClasses/TKernel/Quantity/FILES.cmake @@ -0,0 +1,20 @@ +# Source files for Quantity package +set(OCCT_Quantity_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Quantity_FILES + Quantity_Array1OfColor.hxx + Quantity_Color.cxx + Quantity_Color.hxx + Quantity_ColorTable.pxx + Quantity_ColorRGBA.cxx + Quantity_ColorRGBA.hxx + Quantity_Date.cxx + Quantity_Date.hxx + Quantity_DateDefinitionError.hxx + Quantity_HArray1OfColor.hxx + Quantity_NameOfColor.hxx + Quantity_Period.cxx + Quantity_Period.hxx + Quantity_PeriodDefinitionError.hxx + Quantity_TypeOfColor.hxx +) diff --git a/src/Quantity/Quantity_Array1OfColor.hxx b/src/FoundationClasses/TKernel/Quantity/Quantity_Array1OfColor.hxx similarity index 100% rename from src/Quantity/Quantity_Array1OfColor.hxx rename to src/FoundationClasses/TKernel/Quantity/Quantity_Array1OfColor.hxx diff --git a/src/Quantity/Quantity_Color.cxx b/src/FoundationClasses/TKernel/Quantity/Quantity_Color.cxx similarity index 100% rename from src/Quantity/Quantity_Color.cxx rename to src/FoundationClasses/TKernel/Quantity/Quantity_Color.cxx diff --git a/src/Quantity/Quantity_Color.hxx b/src/FoundationClasses/TKernel/Quantity/Quantity_Color.hxx similarity index 100% rename from src/Quantity/Quantity_Color.hxx rename to src/FoundationClasses/TKernel/Quantity/Quantity_Color.hxx diff --git a/src/Quantity/Quantity_ColorRGBA.cxx b/src/FoundationClasses/TKernel/Quantity/Quantity_ColorRGBA.cxx similarity index 100% rename from src/Quantity/Quantity_ColorRGBA.cxx rename to src/FoundationClasses/TKernel/Quantity/Quantity_ColorRGBA.cxx diff --git a/src/Quantity/Quantity_ColorRGBA.hxx b/src/FoundationClasses/TKernel/Quantity/Quantity_ColorRGBA.hxx similarity index 100% rename from src/Quantity/Quantity_ColorRGBA.hxx rename to src/FoundationClasses/TKernel/Quantity/Quantity_ColorRGBA.hxx diff --git a/src/Quantity/Quantity_ColorTable.pxx b/src/FoundationClasses/TKernel/Quantity/Quantity_ColorTable.pxx similarity index 100% rename from src/Quantity/Quantity_ColorTable.pxx rename to src/FoundationClasses/TKernel/Quantity/Quantity_ColorTable.pxx diff --git a/src/Quantity/Quantity_Date.cxx b/src/FoundationClasses/TKernel/Quantity/Quantity_Date.cxx similarity index 100% rename from src/Quantity/Quantity_Date.cxx rename to src/FoundationClasses/TKernel/Quantity/Quantity_Date.cxx diff --git a/src/Quantity/Quantity_Date.hxx b/src/FoundationClasses/TKernel/Quantity/Quantity_Date.hxx similarity index 100% rename from src/Quantity/Quantity_Date.hxx rename to src/FoundationClasses/TKernel/Quantity/Quantity_Date.hxx diff --git a/src/Quantity/Quantity_DateDefinitionError.hxx b/src/FoundationClasses/TKernel/Quantity/Quantity_DateDefinitionError.hxx similarity index 100% rename from src/Quantity/Quantity_DateDefinitionError.hxx rename to src/FoundationClasses/TKernel/Quantity/Quantity_DateDefinitionError.hxx diff --git a/src/Quantity/Quantity_HArray1OfColor.hxx b/src/FoundationClasses/TKernel/Quantity/Quantity_HArray1OfColor.hxx similarity index 100% rename from src/Quantity/Quantity_HArray1OfColor.hxx rename to src/FoundationClasses/TKernel/Quantity/Quantity_HArray1OfColor.hxx diff --git a/src/Quantity/Quantity_NameOfColor.hxx b/src/FoundationClasses/TKernel/Quantity/Quantity_NameOfColor.hxx similarity index 100% rename from src/Quantity/Quantity_NameOfColor.hxx rename to src/FoundationClasses/TKernel/Quantity/Quantity_NameOfColor.hxx diff --git a/src/Quantity/Quantity_Period.cxx b/src/FoundationClasses/TKernel/Quantity/Quantity_Period.cxx similarity index 100% rename from src/Quantity/Quantity_Period.cxx rename to src/FoundationClasses/TKernel/Quantity/Quantity_Period.cxx diff --git a/src/Quantity/Quantity_Period.hxx b/src/FoundationClasses/TKernel/Quantity/Quantity_Period.hxx similarity index 100% rename from src/Quantity/Quantity_Period.hxx rename to src/FoundationClasses/TKernel/Quantity/Quantity_Period.hxx diff --git a/src/Quantity/Quantity_PeriodDefinitionError.hxx b/src/FoundationClasses/TKernel/Quantity/Quantity_PeriodDefinitionError.hxx similarity index 100% rename from src/Quantity/Quantity_PeriodDefinitionError.hxx rename to src/FoundationClasses/TKernel/Quantity/Quantity_PeriodDefinitionError.hxx diff --git a/src/Quantity/Quantity_TypeOfColor.hxx b/src/FoundationClasses/TKernel/Quantity/Quantity_TypeOfColor.hxx similarity index 100% rename from src/Quantity/Quantity_TypeOfColor.hxx rename to src/FoundationClasses/TKernel/Quantity/Quantity_TypeOfColor.hxx diff --git a/src/FoundationClasses/TKernel/Resource/FILES.cmake b/src/FoundationClasses/TKernel/Resource/FILES.cmake new file mode 100644 index 0000000000..e1e152b978 --- /dev/null +++ b/src/FoundationClasses/TKernel/Resource/FILES.cmake @@ -0,0 +1,22 @@ +# Source files for Resource package +set(OCCT_Resource_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Resource_FILES + Resource_Big5.pxx + Resource_CodePages.pxx + Resource_ConvertUnicode.c + Resource_ConvertUnicode.hxx + Resource_DataMapOfAsciiStringAsciiString.hxx + Resource_DataMapOfAsciiStringExtendedString.hxx + Resource_FormatType.hxx + Resource_GB2312.pxx + Resource_GBK.pxx + Resource_LexicalCompare.cxx + Resource_LexicalCompare.hxx + Resource_Manager.cxx + Resource_Manager.hxx + Resource_NoSuchResource.hxx + Resource_Shiftjis.pxx + Resource_Unicode.cxx + Resource_Unicode.hxx +) diff --git a/src/Resource/Resource_Big5.pxx b/src/FoundationClasses/TKernel/Resource/Resource_Big5.pxx similarity index 100% rename from src/Resource/Resource_Big5.pxx rename to src/FoundationClasses/TKernel/Resource/Resource_Big5.pxx diff --git a/src/Resource/Resource_CodePages.pxx b/src/FoundationClasses/TKernel/Resource/Resource_CodePages.pxx similarity index 100% rename from src/Resource/Resource_CodePages.pxx rename to src/FoundationClasses/TKernel/Resource/Resource_CodePages.pxx diff --git a/src/Resource/Resource_ConvertUnicode.c b/src/FoundationClasses/TKernel/Resource/Resource_ConvertUnicode.c similarity index 100% rename from src/Resource/Resource_ConvertUnicode.c rename to src/FoundationClasses/TKernel/Resource/Resource_ConvertUnicode.c diff --git a/src/Resource/Resource_ConvertUnicode.hxx b/src/FoundationClasses/TKernel/Resource/Resource_ConvertUnicode.hxx similarity index 100% rename from src/Resource/Resource_ConvertUnicode.hxx rename to src/FoundationClasses/TKernel/Resource/Resource_ConvertUnicode.hxx diff --git a/src/Resource/Resource_DataMapOfAsciiStringAsciiString.hxx b/src/FoundationClasses/TKernel/Resource/Resource_DataMapOfAsciiStringAsciiString.hxx similarity index 100% rename from src/Resource/Resource_DataMapOfAsciiStringAsciiString.hxx rename to src/FoundationClasses/TKernel/Resource/Resource_DataMapOfAsciiStringAsciiString.hxx diff --git a/src/Resource/Resource_DataMapOfAsciiStringExtendedString.hxx b/src/FoundationClasses/TKernel/Resource/Resource_DataMapOfAsciiStringExtendedString.hxx similarity index 100% rename from src/Resource/Resource_DataMapOfAsciiStringExtendedString.hxx rename to src/FoundationClasses/TKernel/Resource/Resource_DataMapOfAsciiStringExtendedString.hxx diff --git a/src/Resource/Resource_FormatType.hxx b/src/FoundationClasses/TKernel/Resource/Resource_FormatType.hxx similarity index 100% rename from src/Resource/Resource_FormatType.hxx rename to src/FoundationClasses/TKernel/Resource/Resource_FormatType.hxx diff --git a/src/Resource/Resource_GB2312.pxx b/src/FoundationClasses/TKernel/Resource/Resource_GB2312.pxx similarity index 100% rename from src/Resource/Resource_GB2312.pxx rename to src/FoundationClasses/TKernel/Resource/Resource_GB2312.pxx diff --git a/src/Resource/Resource_GBK.pxx b/src/FoundationClasses/TKernel/Resource/Resource_GBK.pxx similarity index 100% rename from src/Resource/Resource_GBK.pxx rename to src/FoundationClasses/TKernel/Resource/Resource_GBK.pxx diff --git a/src/Resource/Resource_LexicalCompare.cxx b/src/FoundationClasses/TKernel/Resource/Resource_LexicalCompare.cxx similarity index 100% rename from src/Resource/Resource_LexicalCompare.cxx rename to src/FoundationClasses/TKernel/Resource/Resource_LexicalCompare.cxx diff --git a/src/Resource/Resource_LexicalCompare.hxx b/src/FoundationClasses/TKernel/Resource/Resource_LexicalCompare.hxx similarity index 100% rename from src/Resource/Resource_LexicalCompare.hxx rename to src/FoundationClasses/TKernel/Resource/Resource_LexicalCompare.hxx diff --git a/src/Resource/Resource_Manager.cxx b/src/FoundationClasses/TKernel/Resource/Resource_Manager.cxx similarity index 100% rename from src/Resource/Resource_Manager.cxx rename to src/FoundationClasses/TKernel/Resource/Resource_Manager.cxx diff --git a/src/Resource/Resource_Manager.hxx b/src/FoundationClasses/TKernel/Resource/Resource_Manager.hxx similarity index 100% rename from src/Resource/Resource_Manager.hxx rename to src/FoundationClasses/TKernel/Resource/Resource_Manager.hxx diff --git a/src/Resource/Resource_NoSuchResource.hxx b/src/FoundationClasses/TKernel/Resource/Resource_NoSuchResource.hxx similarity index 100% rename from src/Resource/Resource_NoSuchResource.hxx rename to src/FoundationClasses/TKernel/Resource/Resource_NoSuchResource.hxx diff --git a/src/Resource/Resource_Shiftjis.pxx b/src/FoundationClasses/TKernel/Resource/Resource_Shiftjis.pxx similarity index 100% rename from src/Resource/Resource_Shiftjis.pxx rename to src/FoundationClasses/TKernel/Resource/Resource_Shiftjis.pxx diff --git a/src/Resource/Resource_Unicode.cxx b/src/FoundationClasses/TKernel/Resource/Resource_Unicode.cxx similarity index 100% rename from src/Resource/Resource_Unicode.cxx rename to src/FoundationClasses/TKernel/Resource/Resource_Unicode.cxx diff --git a/src/Resource/Resource_Unicode.hxx b/src/FoundationClasses/TKernel/Resource/Resource_Unicode.hxx similarity index 100% rename from src/Resource/Resource_Unicode.hxx rename to src/FoundationClasses/TKernel/Resource/Resource_Unicode.hxx diff --git a/src/FoundationClasses/TKernel/Standard/FILES.cmake b/src/FoundationClasses/TKernel/Standard/FILES.cmake new file mode 100644 index 0000000000..c9c3505db3 --- /dev/null +++ b/src/FoundationClasses/TKernel/Standard/FILES.cmake @@ -0,0 +1,104 @@ +# Source files for Standard package +set(OCCT_Standard_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Standard_FILES + Standard.cxx + Standard.hxx + Standard_AbortiveTransaction.hxx + Standard_ArrayStreamBuffer.hxx + Standard_ArrayStreamBuffer.cxx + Standard_Assert.hxx + Standard_Atomic.hxx + Standard_Boolean.hxx + Standard_Byte.hxx + Standard_Character.hxx + Standard_CLocaleSentry.cxx + Standard_CLocaleSentry.hxx + Standard_Condition.cxx + Standard_Condition.hxx + Standard_ConstructionError.hxx + Standard_CString.cxx + Standard_CString.hxx + Standard_CStringHasher.hxx + Standard_DefineAlloc.hxx + Standard_DefineException.hxx + Standard_DefineHandle.hxx + Standard_DimensionError.hxx + Standard_DimensionMismatch.hxx + Standard_DivideByZero.hxx + Standard_DomainError.hxx + Standard_Dump.cxx + Standard_Dump.hxx + Standard_ErrorHandler.cxx + Standard_ErrorHandler.hxx + Standard_ExtCharacter.hxx + Standard_Failure.cxx + Standard_Failure.hxx + Standard_WarningDisableFunctionCast.hxx + Standard_GUID.cxx + Standard_GUID.hxx + Standard_Handle.hxx + Standard_HandlerStatus.hxx + Standard_HashUtils.hxx + Standard_HashUtils.lxx + Standard_ImmutableObject.hxx + Standard_Integer.hxx + Standard_IStream.hxx + Standard_JmpBuf.hxx + Standard_LicenseError.hxx + Standard_LicenseNotFound.hxx + Standard_Macro.hxx + Standard_MemoryUtils.hxx + Standard_MMgrOpt.cxx + Standard_MMgrOpt.hxx + Standard_MMgrRoot.cxx + Standard_MMgrRoot.hxx + Standard_MultiplyDefined.hxx + Standard_Mutex.cxx + Standard_Mutex.hxx + Standard_NegativeValue.hxx + Standard_NoMoreObject.hxx + Standard_NoSuchObject.hxx + Standard_NotImplemented.hxx + Standard_NullObject.hxx + Standard_NullValue.hxx + Standard_NumericError.hxx + Standard_OStream.hxx + Standard_OutOfMemory.cxx + Standard_OutOfMemory.hxx + Standard_OutOfRange.hxx + Standard_Overflow.hxx + Standard_PByte.hxx + Standard_PCharacter.hxx + Standard_PErrorHandler.hxx + Standard_Persistent.cxx + Standard_Persistent.hxx + Standard_PExtCharacter.hxx + Standard_PrimitiveTypes.hxx + Standard_ProgramError.hxx + Standard_RangeError.hxx + Standard_ReadBuffer.hxx + Standard_ReadLineBuffer.hxx + Standard_Real.cxx + Standard_Real.hxx + Standard_ShortReal.hxx + Standard_SStream.hxx + Standard_StackTrace.cxx + Standard_Std.hxx + Standard_Stream.hxx + Standard_Strtod.cxx + Standard_ThreadId.hxx + Standard_Time.hxx + Standard_Transient.cxx + Standard_Transient.hxx + Standard_Type.cxx + Standard_Type.hxx + Standard_TypeDef.hxx + Standard_TypeMismatch.hxx + Standard_Underflow.hxx + Standard_UUID.hxx + Standard_VersionInfo.cxx + Standard_VersionInfo.hxx + Standard_WarningsDisable.hxx + Standard_WarningsRestore.hxx +) diff --git a/src/Standard/Standard.cxx b/src/FoundationClasses/TKernel/Standard/Standard.cxx similarity index 100% rename from src/Standard/Standard.cxx rename to src/FoundationClasses/TKernel/Standard/Standard.cxx diff --git a/src/Standard/Standard.hxx b/src/FoundationClasses/TKernel/Standard/Standard.hxx similarity index 100% rename from src/Standard/Standard.hxx rename to src/FoundationClasses/TKernel/Standard/Standard.hxx diff --git a/src/Standard/Standard_AbortiveTransaction.hxx b/src/FoundationClasses/TKernel/Standard/Standard_AbortiveTransaction.hxx similarity index 100% rename from src/Standard/Standard_AbortiveTransaction.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_AbortiveTransaction.hxx diff --git a/src/Standard/Standard_ArrayStreamBuffer.cxx b/src/FoundationClasses/TKernel/Standard/Standard_ArrayStreamBuffer.cxx similarity index 100% rename from src/Standard/Standard_ArrayStreamBuffer.cxx rename to src/FoundationClasses/TKernel/Standard/Standard_ArrayStreamBuffer.cxx diff --git a/src/Standard/Standard_ArrayStreamBuffer.hxx b/src/FoundationClasses/TKernel/Standard/Standard_ArrayStreamBuffer.hxx similarity index 100% rename from src/Standard/Standard_ArrayStreamBuffer.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_ArrayStreamBuffer.hxx diff --git a/src/Standard/Standard_Assert.hxx b/src/FoundationClasses/TKernel/Standard/Standard_Assert.hxx similarity index 100% rename from src/Standard/Standard_Assert.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_Assert.hxx diff --git a/src/Standard/Standard_Atomic.hxx b/src/FoundationClasses/TKernel/Standard/Standard_Atomic.hxx similarity index 100% rename from src/Standard/Standard_Atomic.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_Atomic.hxx diff --git a/src/Standard/Standard_Boolean.hxx b/src/FoundationClasses/TKernel/Standard/Standard_Boolean.hxx similarity index 100% rename from src/Standard/Standard_Boolean.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_Boolean.hxx diff --git a/src/Standard/Standard_Byte.hxx b/src/FoundationClasses/TKernel/Standard/Standard_Byte.hxx similarity index 100% rename from src/Standard/Standard_Byte.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_Byte.hxx diff --git a/src/Standard/Standard_CLocaleSentry.cxx b/src/FoundationClasses/TKernel/Standard/Standard_CLocaleSentry.cxx similarity index 100% rename from src/Standard/Standard_CLocaleSentry.cxx rename to src/FoundationClasses/TKernel/Standard/Standard_CLocaleSentry.cxx diff --git a/src/Standard/Standard_CLocaleSentry.hxx b/src/FoundationClasses/TKernel/Standard/Standard_CLocaleSentry.hxx similarity index 100% rename from src/Standard/Standard_CLocaleSentry.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_CLocaleSentry.hxx diff --git a/src/Standard/Standard_CString.cxx b/src/FoundationClasses/TKernel/Standard/Standard_CString.cxx similarity index 100% rename from src/Standard/Standard_CString.cxx rename to src/FoundationClasses/TKernel/Standard/Standard_CString.cxx diff --git a/src/Standard/Standard_CString.hxx b/src/FoundationClasses/TKernel/Standard/Standard_CString.hxx similarity index 100% rename from src/Standard/Standard_CString.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_CString.hxx diff --git a/src/Standard/Standard_CStringHasher.hxx b/src/FoundationClasses/TKernel/Standard/Standard_CStringHasher.hxx similarity index 100% rename from src/Standard/Standard_CStringHasher.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_CStringHasher.hxx diff --git a/src/Standard/Standard_Character.hxx b/src/FoundationClasses/TKernel/Standard/Standard_Character.hxx similarity index 100% rename from src/Standard/Standard_Character.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_Character.hxx diff --git a/src/Standard/Standard_Condition.cxx b/src/FoundationClasses/TKernel/Standard/Standard_Condition.cxx similarity index 100% rename from src/Standard/Standard_Condition.cxx rename to src/FoundationClasses/TKernel/Standard/Standard_Condition.cxx diff --git a/src/Standard/Standard_Condition.hxx b/src/FoundationClasses/TKernel/Standard/Standard_Condition.hxx similarity index 100% rename from src/Standard/Standard_Condition.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_Condition.hxx diff --git a/src/Standard/Standard_ConstructionError.hxx b/src/FoundationClasses/TKernel/Standard/Standard_ConstructionError.hxx similarity index 100% rename from src/Standard/Standard_ConstructionError.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_ConstructionError.hxx diff --git a/src/Standard/Standard_DefineAlloc.hxx b/src/FoundationClasses/TKernel/Standard/Standard_DefineAlloc.hxx similarity index 100% rename from src/Standard/Standard_DefineAlloc.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_DefineAlloc.hxx diff --git a/src/Standard/Standard_DefineException.hxx b/src/FoundationClasses/TKernel/Standard/Standard_DefineException.hxx similarity index 100% rename from src/Standard/Standard_DefineException.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_DefineException.hxx diff --git a/src/Standard/Standard_DefineHandle.hxx b/src/FoundationClasses/TKernel/Standard/Standard_DefineHandle.hxx similarity index 100% rename from src/Standard/Standard_DefineHandle.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_DefineHandle.hxx diff --git a/src/Standard/Standard_DimensionError.hxx b/src/FoundationClasses/TKernel/Standard/Standard_DimensionError.hxx similarity index 100% rename from src/Standard/Standard_DimensionError.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_DimensionError.hxx diff --git a/src/Standard/Standard_DimensionMismatch.hxx b/src/FoundationClasses/TKernel/Standard/Standard_DimensionMismatch.hxx similarity index 100% rename from src/Standard/Standard_DimensionMismatch.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_DimensionMismatch.hxx diff --git a/src/Standard/Standard_DivideByZero.hxx b/src/FoundationClasses/TKernel/Standard/Standard_DivideByZero.hxx similarity index 100% rename from src/Standard/Standard_DivideByZero.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_DivideByZero.hxx diff --git a/src/Standard/Standard_DomainError.hxx b/src/FoundationClasses/TKernel/Standard/Standard_DomainError.hxx similarity index 100% rename from src/Standard/Standard_DomainError.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_DomainError.hxx diff --git a/src/Standard/Standard_Dump.cxx b/src/FoundationClasses/TKernel/Standard/Standard_Dump.cxx similarity index 100% rename from src/Standard/Standard_Dump.cxx rename to src/FoundationClasses/TKernel/Standard/Standard_Dump.cxx diff --git a/src/Standard/Standard_Dump.hxx b/src/FoundationClasses/TKernel/Standard/Standard_Dump.hxx similarity index 100% rename from src/Standard/Standard_Dump.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_Dump.hxx diff --git a/src/Standard/Standard_ErrorHandler.cxx b/src/FoundationClasses/TKernel/Standard/Standard_ErrorHandler.cxx similarity index 100% rename from src/Standard/Standard_ErrorHandler.cxx rename to src/FoundationClasses/TKernel/Standard/Standard_ErrorHandler.cxx diff --git a/src/Standard/Standard_ErrorHandler.hxx b/src/FoundationClasses/TKernel/Standard/Standard_ErrorHandler.hxx similarity index 100% rename from src/Standard/Standard_ErrorHandler.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_ErrorHandler.hxx diff --git a/src/Standard/Standard_ExtCharacter.hxx b/src/FoundationClasses/TKernel/Standard/Standard_ExtCharacter.hxx similarity index 100% rename from src/Standard/Standard_ExtCharacter.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_ExtCharacter.hxx diff --git a/src/Standard/Standard_Failure.cxx b/src/FoundationClasses/TKernel/Standard/Standard_Failure.cxx similarity index 100% rename from src/Standard/Standard_Failure.cxx rename to src/FoundationClasses/TKernel/Standard/Standard_Failure.cxx diff --git a/src/Standard/Standard_Failure.hxx b/src/FoundationClasses/TKernel/Standard/Standard_Failure.hxx similarity index 100% rename from src/Standard/Standard_Failure.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_Failure.hxx diff --git a/src/Standard/Standard_GUID.cxx b/src/FoundationClasses/TKernel/Standard/Standard_GUID.cxx similarity index 100% rename from src/Standard/Standard_GUID.cxx rename to src/FoundationClasses/TKernel/Standard/Standard_GUID.cxx diff --git a/src/Standard/Standard_GUID.hxx b/src/FoundationClasses/TKernel/Standard/Standard_GUID.hxx similarity index 100% rename from src/Standard/Standard_GUID.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_GUID.hxx diff --git a/src/Standard/Standard_Handle.hxx b/src/FoundationClasses/TKernel/Standard/Standard_Handle.hxx similarity index 100% rename from src/Standard/Standard_Handle.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_Handle.hxx diff --git a/src/Standard/Standard_HandlerStatus.hxx b/src/FoundationClasses/TKernel/Standard/Standard_HandlerStatus.hxx similarity index 100% rename from src/Standard/Standard_HandlerStatus.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_HandlerStatus.hxx diff --git a/src/Standard/Standard_HashUtils.hxx b/src/FoundationClasses/TKernel/Standard/Standard_HashUtils.hxx similarity index 100% rename from src/Standard/Standard_HashUtils.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_HashUtils.hxx diff --git a/src/Standard/Standard_HashUtils.lxx b/src/FoundationClasses/TKernel/Standard/Standard_HashUtils.lxx similarity index 100% rename from src/Standard/Standard_HashUtils.lxx rename to src/FoundationClasses/TKernel/Standard/Standard_HashUtils.lxx diff --git a/src/Standard/Standard_IStream.hxx b/src/FoundationClasses/TKernel/Standard/Standard_IStream.hxx similarity index 100% rename from src/Standard/Standard_IStream.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_IStream.hxx diff --git a/src/Standard/Standard_ImmutableObject.hxx b/src/FoundationClasses/TKernel/Standard/Standard_ImmutableObject.hxx similarity index 100% rename from src/Standard/Standard_ImmutableObject.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_ImmutableObject.hxx diff --git a/src/Standard/Standard_Integer.hxx b/src/FoundationClasses/TKernel/Standard/Standard_Integer.hxx similarity index 100% rename from src/Standard/Standard_Integer.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_Integer.hxx diff --git a/src/Standard/Standard_JmpBuf.hxx b/src/FoundationClasses/TKernel/Standard/Standard_JmpBuf.hxx similarity index 100% rename from src/Standard/Standard_JmpBuf.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_JmpBuf.hxx diff --git a/src/Standard/Standard_LicenseError.hxx b/src/FoundationClasses/TKernel/Standard/Standard_LicenseError.hxx similarity index 100% rename from src/Standard/Standard_LicenseError.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_LicenseError.hxx diff --git a/src/Standard/Standard_LicenseNotFound.hxx b/src/FoundationClasses/TKernel/Standard/Standard_LicenseNotFound.hxx similarity index 100% rename from src/Standard/Standard_LicenseNotFound.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_LicenseNotFound.hxx diff --git a/src/Standard/Standard_MMgrOpt.cxx b/src/FoundationClasses/TKernel/Standard/Standard_MMgrOpt.cxx similarity index 100% rename from src/Standard/Standard_MMgrOpt.cxx rename to src/FoundationClasses/TKernel/Standard/Standard_MMgrOpt.cxx diff --git a/src/Standard/Standard_MMgrOpt.hxx b/src/FoundationClasses/TKernel/Standard/Standard_MMgrOpt.hxx similarity index 100% rename from src/Standard/Standard_MMgrOpt.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_MMgrOpt.hxx diff --git a/src/Standard/Standard_MMgrRoot.cxx b/src/FoundationClasses/TKernel/Standard/Standard_MMgrRoot.cxx similarity index 100% rename from src/Standard/Standard_MMgrRoot.cxx rename to src/FoundationClasses/TKernel/Standard/Standard_MMgrRoot.cxx diff --git a/src/Standard/Standard_MMgrRoot.hxx b/src/FoundationClasses/TKernel/Standard/Standard_MMgrRoot.hxx similarity index 100% rename from src/Standard/Standard_MMgrRoot.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_MMgrRoot.hxx diff --git a/src/Standard/Standard_Macro.hxx b/src/FoundationClasses/TKernel/Standard/Standard_Macro.hxx similarity index 100% rename from src/Standard/Standard_Macro.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_Macro.hxx diff --git a/src/Standard/Standard_MemoryUtils.hxx b/src/FoundationClasses/TKernel/Standard/Standard_MemoryUtils.hxx similarity index 100% rename from src/Standard/Standard_MemoryUtils.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_MemoryUtils.hxx diff --git a/src/Standard/Standard_MultiplyDefined.hxx b/src/FoundationClasses/TKernel/Standard/Standard_MultiplyDefined.hxx similarity index 100% rename from src/Standard/Standard_MultiplyDefined.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_MultiplyDefined.hxx diff --git a/src/Standard/Standard_Mutex.cxx b/src/FoundationClasses/TKernel/Standard/Standard_Mutex.cxx similarity index 100% rename from src/Standard/Standard_Mutex.cxx rename to src/FoundationClasses/TKernel/Standard/Standard_Mutex.cxx diff --git a/src/Standard/Standard_Mutex.hxx b/src/FoundationClasses/TKernel/Standard/Standard_Mutex.hxx similarity index 100% rename from src/Standard/Standard_Mutex.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_Mutex.hxx diff --git a/src/Standard/Standard_NegativeValue.hxx b/src/FoundationClasses/TKernel/Standard/Standard_NegativeValue.hxx similarity index 100% rename from src/Standard/Standard_NegativeValue.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_NegativeValue.hxx diff --git a/src/Standard/Standard_NoMoreObject.hxx b/src/FoundationClasses/TKernel/Standard/Standard_NoMoreObject.hxx similarity index 100% rename from src/Standard/Standard_NoMoreObject.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_NoMoreObject.hxx diff --git a/src/Standard/Standard_NoSuchObject.hxx b/src/FoundationClasses/TKernel/Standard/Standard_NoSuchObject.hxx similarity index 100% rename from src/Standard/Standard_NoSuchObject.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_NoSuchObject.hxx diff --git a/src/Standard/Standard_NotImplemented.hxx b/src/FoundationClasses/TKernel/Standard/Standard_NotImplemented.hxx similarity index 100% rename from src/Standard/Standard_NotImplemented.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_NotImplemented.hxx diff --git a/src/Standard/Standard_NullObject.hxx b/src/FoundationClasses/TKernel/Standard/Standard_NullObject.hxx similarity index 100% rename from src/Standard/Standard_NullObject.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_NullObject.hxx diff --git a/src/Standard/Standard_NullValue.hxx b/src/FoundationClasses/TKernel/Standard/Standard_NullValue.hxx similarity index 100% rename from src/Standard/Standard_NullValue.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_NullValue.hxx diff --git a/src/Standard/Standard_NumericError.hxx b/src/FoundationClasses/TKernel/Standard/Standard_NumericError.hxx similarity index 100% rename from src/Standard/Standard_NumericError.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_NumericError.hxx diff --git a/src/Standard/Standard_OStream.hxx b/src/FoundationClasses/TKernel/Standard/Standard_OStream.hxx similarity index 100% rename from src/Standard/Standard_OStream.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_OStream.hxx diff --git a/src/Standard/Standard_OutOfMemory.cxx b/src/FoundationClasses/TKernel/Standard/Standard_OutOfMemory.cxx similarity index 100% rename from src/Standard/Standard_OutOfMemory.cxx rename to src/FoundationClasses/TKernel/Standard/Standard_OutOfMemory.cxx diff --git a/src/Standard/Standard_OutOfMemory.hxx b/src/FoundationClasses/TKernel/Standard/Standard_OutOfMemory.hxx similarity index 100% rename from src/Standard/Standard_OutOfMemory.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_OutOfMemory.hxx diff --git a/src/Standard/Standard_OutOfRange.hxx b/src/FoundationClasses/TKernel/Standard/Standard_OutOfRange.hxx similarity index 100% rename from src/Standard/Standard_OutOfRange.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_OutOfRange.hxx diff --git a/src/Standard/Standard_Overflow.hxx b/src/FoundationClasses/TKernel/Standard/Standard_Overflow.hxx similarity index 100% rename from src/Standard/Standard_Overflow.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_Overflow.hxx diff --git a/src/Standard/Standard_PByte.hxx b/src/FoundationClasses/TKernel/Standard/Standard_PByte.hxx similarity index 100% rename from src/Standard/Standard_PByte.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_PByte.hxx diff --git a/src/Standard/Standard_PCharacter.hxx b/src/FoundationClasses/TKernel/Standard/Standard_PCharacter.hxx similarity index 100% rename from src/Standard/Standard_PCharacter.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_PCharacter.hxx diff --git a/src/Standard/Standard_PErrorHandler.hxx b/src/FoundationClasses/TKernel/Standard/Standard_PErrorHandler.hxx similarity index 100% rename from src/Standard/Standard_PErrorHandler.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_PErrorHandler.hxx diff --git a/src/Standard/Standard_PExtCharacter.hxx b/src/FoundationClasses/TKernel/Standard/Standard_PExtCharacter.hxx similarity index 100% rename from src/Standard/Standard_PExtCharacter.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_PExtCharacter.hxx diff --git a/src/Standard/Standard_Persistent.cxx b/src/FoundationClasses/TKernel/Standard/Standard_Persistent.cxx similarity index 100% rename from src/Standard/Standard_Persistent.cxx rename to src/FoundationClasses/TKernel/Standard/Standard_Persistent.cxx diff --git a/src/Standard/Standard_Persistent.hxx b/src/FoundationClasses/TKernel/Standard/Standard_Persistent.hxx similarity index 100% rename from src/Standard/Standard_Persistent.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_Persistent.hxx diff --git a/src/Standard/Standard_PrimitiveTypes.hxx b/src/FoundationClasses/TKernel/Standard/Standard_PrimitiveTypes.hxx similarity index 100% rename from src/Standard/Standard_PrimitiveTypes.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_PrimitiveTypes.hxx diff --git a/src/Standard/Standard_ProgramError.hxx b/src/FoundationClasses/TKernel/Standard/Standard_ProgramError.hxx similarity index 100% rename from src/Standard/Standard_ProgramError.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_ProgramError.hxx diff --git a/src/Standard/Standard_RangeError.hxx b/src/FoundationClasses/TKernel/Standard/Standard_RangeError.hxx similarity index 100% rename from src/Standard/Standard_RangeError.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_RangeError.hxx diff --git a/src/Standard/Standard_ReadBuffer.hxx b/src/FoundationClasses/TKernel/Standard/Standard_ReadBuffer.hxx similarity index 100% rename from src/Standard/Standard_ReadBuffer.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_ReadBuffer.hxx diff --git a/src/Standard/Standard_ReadLineBuffer.hxx b/src/FoundationClasses/TKernel/Standard/Standard_ReadLineBuffer.hxx similarity index 100% rename from src/Standard/Standard_ReadLineBuffer.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_ReadLineBuffer.hxx diff --git a/src/Standard/Standard_Real.cxx b/src/FoundationClasses/TKernel/Standard/Standard_Real.cxx similarity index 100% rename from src/Standard/Standard_Real.cxx rename to src/FoundationClasses/TKernel/Standard/Standard_Real.cxx diff --git a/src/Standard/Standard_Real.hxx b/src/FoundationClasses/TKernel/Standard/Standard_Real.hxx similarity index 100% rename from src/Standard/Standard_Real.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_Real.hxx diff --git a/src/Standard/Standard_SStream.hxx b/src/FoundationClasses/TKernel/Standard/Standard_SStream.hxx similarity index 100% rename from src/Standard/Standard_SStream.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_SStream.hxx diff --git a/src/Standard/Standard_ShortReal.hxx b/src/FoundationClasses/TKernel/Standard/Standard_ShortReal.hxx similarity index 100% rename from src/Standard/Standard_ShortReal.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_ShortReal.hxx diff --git a/src/Standard/Standard_StackTrace.cxx b/src/FoundationClasses/TKernel/Standard/Standard_StackTrace.cxx similarity index 100% rename from src/Standard/Standard_StackTrace.cxx rename to src/FoundationClasses/TKernel/Standard/Standard_StackTrace.cxx diff --git a/src/Standard/Standard_Std.hxx b/src/FoundationClasses/TKernel/Standard/Standard_Std.hxx similarity index 100% rename from src/Standard/Standard_Std.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_Std.hxx diff --git a/src/Standard/Standard_Stream.hxx b/src/FoundationClasses/TKernel/Standard/Standard_Stream.hxx similarity index 100% rename from src/Standard/Standard_Stream.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_Stream.hxx diff --git a/src/Standard/Standard_Strtod.cxx b/src/FoundationClasses/TKernel/Standard/Standard_Strtod.cxx similarity index 100% rename from src/Standard/Standard_Strtod.cxx rename to src/FoundationClasses/TKernel/Standard/Standard_Strtod.cxx diff --git a/src/Standard/Standard_ThreadId.hxx b/src/FoundationClasses/TKernel/Standard/Standard_ThreadId.hxx similarity index 100% rename from src/Standard/Standard_ThreadId.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_ThreadId.hxx diff --git a/src/Standard/Standard_Time.hxx b/src/FoundationClasses/TKernel/Standard/Standard_Time.hxx similarity index 100% rename from src/Standard/Standard_Time.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_Time.hxx diff --git a/src/Standard/Standard_Transient.cxx b/src/FoundationClasses/TKernel/Standard/Standard_Transient.cxx similarity index 100% rename from src/Standard/Standard_Transient.cxx rename to src/FoundationClasses/TKernel/Standard/Standard_Transient.cxx diff --git a/src/Standard/Standard_Transient.hxx b/src/FoundationClasses/TKernel/Standard/Standard_Transient.hxx similarity index 100% rename from src/Standard/Standard_Transient.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_Transient.hxx diff --git a/src/Standard/Standard_Type.cxx b/src/FoundationClasses/TKernel/Standard/Standard_Type.cxx similarity index 100% rename from src/Standard/Standard_Type.cxx rename to src/FoundationClasses/TKernel/Standard/Standard_Type.cxx diff --git a/src/Standard/Standard_Type.hxx b/src/FoundationClasses/TKernel/Standard/Standard_Type.hxx similarity index 100% rename from src/Standard/Standard_Type.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_Type.hxx diff --git a/src/Standard/Standard_TypeDef.hxx b/src/FoundationClasses/TKernel/Standard/Standard_TypeDef.hxx similarity index 100% rename from src/Standard/Standard_TypeDef.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_TypeDef.hxx diff --git a/src/Standard/Standard_TypeMismatch.hxx b/src/FoundationClasses/TKernel/Standard/Standard_TypeMismatch.hxx similarity index 100% rename from src/Standard/Standard_TypeMismatch.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_TypeMismatch.hxx diff --git a/src/Standard/Standard_UUID.hxx b/src/FoundationClasses/TKernel/Standard/Standard_UUID.hxx similarity index 100% rename from src/Standard/Standard_UUID.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_UUID.hxx diff --git a/src/Standard/Standard_Underflow.hxx b/src/FoundationClasses/TKernel/Standard/Standard_Underflow.hxx similarity index 100% rename from src/Standard/Standard_Underflow.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_Underflow.hxx diff --git a/src/Standard/Standard_VersionInfo.cxx b/src/FoundationClasses/TKernel/Standard/Standard_VersionInfo.cxx similarity index 100% rename from src/Standard/Standard_VersionInfo.cxx rename to src/FoundationClasses/TKernel/Standard/Standard_VersionInfo.cxx diff --git a/src/Standard/Standard_VersionInfo.hxx b/src/FoundationClasses/TKernel/Standard/Standard_VersionInfo.hxx similarity index 100% rename from src/Standard/Standard_VersionInfo.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_VersionInfo.hxx diff --git a/src/Standard/Standard_WarningDisableFunctionCast.hxx b/src/FoundationClasses/TKernel/Standard/Standard_WarningDisableFunctionCast.hxx similarity index 100% rename from src/Standard/Standard_WarningDisableFunctionCast.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_WarningDisableFunctionCast.hxx diff --git a/src/Standard/Standard_WarningsDisable.hxx b/src/FoundationClasses/TKernel/Standard/Standard_WarningsDisable.hxx similarity index 100% rename from src/Standard/Standard_WarningsDisable.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_WarningsDisable.hxx diff --git a/src/Standard/Standard_WarningsRestore.hxx b/src/FoundationClasses/TKernel/Standard/Standard_WarningsRestore.hxx similarity index 100% rename from src/Standard/Standard_WarningsRestore.hxx rename to src/FoundationClasses/TKernel/Standard/Standard_WarningsRestore.hxx diff --git a/src/FoundationClasses/TKernel/StdFail/FILES.cmake b/src/FoundationClasses/TKernel/StdFail/FILES.cmake new file mode 100644 index 0000000000..14f497422a --- /dev/null +++ b/src/FoundationClasses/TKernel/StdFail/FILES.cmake @@ -0,0 +1,10 @@ +# Source files for StdFail package +set(OCCT_StdFail_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StdFail_FILES + StdFail_InfiniteSolutions.hxx + StdFail_NotDone.hxx + StdFail_Undefined.hxx + StdFail_UndefinedDerivative.hxx + StdFail_UndefinedValue.hxx +) diff --git a/src/StdFail/StdFail_InfiniteSolutions.hxx b/src/FoundationClasses/TKernel/StdFail/StdFail_InfiniteSolutions.hxx similarity index 100% rename from src/StdFail/StdFail_InfiniteSolutions.hxx rename to src/FoundationClasses/TKernel/StdFail/StdFail_InfiniteSolutions.hxx diff --git a/src/StdFail/StdFail_NotDone.hxx b/src/FoundationClasses/TKernel/StdFail/StdFail_NotDone.hxx similarity index 100% rename from src/StdFail/StdFail_NotDone.hxx rename to src/FoundationClasses/TKernel/StdFail/StdFail_NotDone.hxx diff --git a/src/StdFail/StdFail_Undefined.hxx b/src/FoundationClasses/TKernel/StdFail/StdFail_Undefined.hxx similarity index 100% rename from src/StdFail/StdFail_Undefined.hxx rename to src/FoundationClasses/TKernel/StdFail/StdFail_Undefined.hxx diff --git a/src/StdFail/StdFail_UndefinedDerivative.hxx b/src/FoundationClasses/TKernel/StdFail/StdFail_UndefinedDerivative.hxx similarity index 100% rename from src/StdFail/StdFail_UndefinedDerivative.hxx rename to src/FoundationClasses/TKernel/StdFail/StdFail_UndefinedDerivative.hxx diff --git a/src/StdFail/StdFail_UndefinedValue.hxx b/src/FoundationClasses/TKernel/StdFail/StdFail_UndefinedValue.hxx similarity index 100% rename from src/StdFail/StdFail_UndefinedValue.hxx rename to src/FoundationClasses/TKernel/StdFail/StdFail_UndefinedValue.hxx diff --git a/src/FoundationClasses/TKernel/Storage/FILES.cmake b/src/FoundationClasses/TKernel/Storage/FILES.cmake new file mode 100644 index 0000000000..422380580e --- /dev/null +++ b/src/FoundationClasses/TKernel/Storage/FILES.cmake @@ -0,0 +1,55 @@ +# Source files for Storage package +set(OCCT_Storage_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Storage_FILES + Storage.cxx + Storage.hxx + Storage_ArrayOfCallBack.hxx + Storage_ArrayOfSchema.hxx + Storage_BaseDriver.cxx + Storage_BaseDriver.hxx + Storage_BucketOfPersistent.hxx + Storage_CallBack.cxx + Storage_CallBack.hxx + Storage_Data.cxx + Storage_Data.hxx + Storage_DataMapIteratorOfMapOfCallBack.hxx + Storage_DataMapIteratorOfMapOfPers.hxx + Storage_DefaultCallBack.cxx + Storage_DefaultCallBack.hxx + Storage_Error.hxx + Storage_HArrayOfCallBack.hxx + Storage_HArrayOfSchema.hxx + Storage_HeaderData.cxx + Storage_HeaderData.hxx + Storage_HPArray.hxx + Storage_HSeqOfRoot.hxx + Storage_InternalData.cxx + Storage_InternalData.hxx + Storage_Macros.hxx + Storage_MapOfCallBack.hxx + Storage_MapOfPers.hxx + Storage_OpenMode.hxx + Storage_PArray.hxx + Storage_Position.hxx + Storage_PType.hxx + Storage_Root.cxx + Storage_Root.hxx + Storage_RootData.cxx + Storage_RootData.hxx + Storage_Schema.cxx + Storage_Schema.hxx + Storage_SeqOfRoot.hxx + Storage_SolveMode.hxx + Storage_StreamExtCharParityError.hxx + Storage_StreamFormatError.hxx + Storage_StreamModeError.hxx + Storage_StreamReadError.hxx + Storage_StreamTypeMismatchError.hxx + Storage_StreamUnknownTypeError.hxx + Storage_StreamWriteError.hxx + Storage_TypeData.cxx + Storage_TypeData.hxx + Storage_TypedCallBack.cxx + Storage_TypedCallBack.hxx +) diff --git a/src/Storage/Storage.cxx b/src/FoundationClasses/TKernel/Storage/Storage.cxx similarity index 100% rename from src/Storage/Storage.cxx rename to src/FoundationClasses/TKernel/Storage/Storage.cxx diff --git a/src/Storage/Storage.hxx b/src/FoundationClasses/TKernel/Storage/Storage.hxx similarity index 100% rename from src/Storage/Storage.hxx rename to src/FoundationClasses/TKernel/Storage/Storage.hxx diff --git a/src/Storage/Storage_ArrayOfCallBack.hxx b/src/FoundationClasses/TKernel/Storage/Storage_ArrayOfCallBack.hxx similarity index 100% rename from src/Storage/Storage_ArrayOfCallBack.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_ArrayOfCallBack.hxx diff --git a/src/Storage/Storage_ArrayOfSchema.hxx b/src/FoundationClasses/TKernel/Storage/Storage_ArrayOfSchema.hxx similarity index 100% rename from src/Storage/Storage_ArrayOfSchema.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_ArrayOfSchema.hxx diff --git a/src/Storage/Storage_BaseDriver.cxx b/src/FoundationClasses/TKernel/Storage/Storage_BaseDriver.cxx similarity index 100% rename from src/Storage/Storage_BaseDriver.cxx rename to src/FoundationClasses/TKernel/Storage/Storage_BaseDriver.cxx diff --git a/src/Storage/Storage_BaseDriver.hxx b/src/FoundationClasses/TKernel/Storage/Storage_BaseDriver.hxx similarity index 100% rename from src/Storage/Storage_BaseDriver.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_BaseDriver.hxx diff --git a/src/Storage/Storage_BucketOfPersistent.hxx b/src/FoundationClasses/TKernel/Storage/Storage_BucketOfPersistent.hxx similarity index 100% rename from src/Storage/Storage_BucketOfPersistent.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_BucketOfPersistent.hxx diff --git a/src/Storage/Storage_CallBack.cxx b/src/FoundationClasses/TKernel/Storage/Storage_CallBack.cxx similarity index 100% rename from src/Storage/Storage_CallBack.cxx rename to src/FoundationClasses/TKernel/Storage/Storage_CallBack.cxx diff --git a/src/Storage/Storage_CallBack.hxx b/src/FoundationClasses/TKernel/Storage/Storage_CallBack.hxx similarity index 100% rename from src/Storage/Storage_CallBack.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_CallBack.hxx diff --git a/src/Storage/Storage_Data.cxx b/src/FoundationClasses/TKernel/Storage/Storage_Data.cxx similarity index 100% rename from src/Storage/Storage_Data.cxx rename to src/FoundationClasses/TKernel/Storage/Storage_Data.cxx diff --git a/src/Storage/Storage_Data.hxx b/src/FoundationClasses/TKernel/Storage/Storage_Data.hxx similarity index 100% rename from src/Storage/Storage_Data.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_Data.hxx diff --git a/src/Storage/Storage_DataMapIteratorOfMapOfCallBack.hxx b/src/FoundationClasses/TKernel/Storage/Storage_DataMapIteratorOfMapOfCallBack.hxx similarity index 100% rename from src/Storage/Storage_DataMapIteratorOfMapOfCallBack.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_DataMapIteratorOfMapOfCallBack.hxx diff --git a/src/Storage/Storage_DataMapIteratorOfMapOfPers.hxx b/src/FoundationClasses/TKernel/Storage/Storage_DataMapIteratorOfMapOfPers.hxx similarity index 100% rename from src/Storage/Storage_DataMapIteratorOfMapOfPers.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_DataMapIteratorOfMapOfPers.hxx diff --git a/src/Storage/Storage_DefaultCallBack.cxx b/src/FoundationClasses/TKernel/Storage/Storage_DefaultCallBack.cxx similarity index 100% rename from src/Storage/Storage_DefaultCallBack.cxx rename to src/FoundationClasses/TKernel/Storage/Storage_DefaultCallBack.cxx diff --git a/src/Storage/Storage_DefaultCallBack.hxx b/src/FoundationClasses/TKernel/Storage/Storage_DefaultCallBack.hxx similarity index 100% rename from src/Storage/Storage_DefaultCallBack.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_DefaultCallBack.hxx diff --git a/src/Storage/Storage_Error.hxx b/src/FoundationClasses/TKernel/Storage/Storage_Error.hxx similarity index 100% rename from src/Storage/Storage_Error.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_Error.hxx diff --git a/src/Storage/Storage_HArrayOfCallBack.hxx b/src/FoundationClasses/TKernel/Storage/Storage_HArrayOfCallBack.hxx similarity index 100% rename from src/Storage/Storage_HArrayOfCallBack.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_HArrayOfCallBack.hxx diff --git a/src/Storage/Storage_HArrayOfSchema.hxx b/src/FoundationClasses/TKernel/Storage/Storage_HArrayOfSchema.hxx similarity index 100% rename from src/Storage/Storage_HArrayOfSchema.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_HArrayOfSchema.hxx diff --git a/src/Storage/Storage_HPArray.hxx b/src/FoundationClasses/TKernel/Storage/Storage_HPArray.hxx similarity index 100% rename from src/Storage/Storage_HPArray.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_HPArray.hxx diff --git a/src/Storage/Storage_HSeqOfRoot.hxx b/src/FoundationClasses/TKernel/Storage/Storage_HSeqOfRoot.hxx similarity index 100% rename from src/Storage/Storage_HSeqOfRoot.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_HSeqOfRoot.hxx diff --git a/src/Storage/Storage_HeaderData.cxx b/src/FoundationClasses/TKernel/Storage/Storage_HeaderData.cxx similarity index 100% rename from src/Storage/Storage_HeaderData.cxx rename to src/FoundationClasses/TKernel/Storage/Storage_HeaderData.cxx diff --git a/src/Storage/Storage_HeaderData.hxx b/src/FoundationClasses/TKernel/Storage/Storage_HeaderData.hxx similarity index 100% rename from src/Storage/Storage_HeaderData.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_HeaderData.hxx diff --git a/src/Storage/Storage_InternalData.cxx b/src/FoundationClasses/TKernel/Storage/Storage_InternalData.cxx similarity index 100% rename from src/Storage/Storage_InternalData.cxx rename to src/FoundationClasses/TKernel/Storage/Storage_InternalData.cxx diff --git a/src/Storage/Storage_InternalData.hxx b/src/FoundationClasses/TKernel/Storage/Storage_InternalData.hxx similarity index 100% rename from src/Storage/Storage_InternalData.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_InternalData.hxx diff --git a/src/Storage/Storage_Macros.hxx b/src/FoundationClasses/TKernel/Storage/Storage_Macros.hxx similarity index 100% rename from src/Storage/Storage_Macros.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_Macros.hxx diff --git a/src/Storage/Storage_MapOfCallBack.hxx b/src/FoundationClasses/TKernel/Storage/Storage_MapOfCallBack.hxx similarity index 100% rename from src/Storage/Storage_MapOfCallBack.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_MapOfCallBack.hxx diff --git a/src/Storage/Storage_MapOfPers.hxx b/src/FoundationClasses/TKernel/Storage/Storage_MapOfPers.hxx similarity index 100% rename from src/Storage/Storage_MapOfPers.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_MapOfPers.hxx diff --git a/src/Storage/Storage_OpenMode.hxx b/src/FoundationClasses/TKernel/Storage/Storage_OpenMode.hxx similarity index 100% rename from src/Storage/Storage_OpenMode.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_OpenMode.hxx diff --git a/src/Storage/Storage_PArray.hxx b/src/FoundationClasses/TKernel/Storage/Storage_PArray.hxx similarity index 100% rename from src/Storage/Storage_PArray.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_PArray.hxx diff --git a/src/Storage/Storage_PType.hxx b/src/FoundationClasses/TKernel/Storage/Storage_PType.hxx similarity index 100% rename from src/Storage/Storage_PType.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_PType.hxx diff --git a/src/Storage/Storage_Position.hxx b/src/FoundationClasses/TKernel/Storage/Storage_Position.hxx similarity index 100% rename from src/Storage/Storage_Position.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_Position.hxx diff --git a/src/Storage/Storage_Root.cxx b/src/FoundationClasses/TKernel/Storage/Storage_Root.cxx similarity index 100% rename from src/Storage/Storage_Root.cxx rename to src/FoundationClasses/TKernel/Storage/Storage_Root.cxx diff --git a/src/Storage/Storage_Root.hxx b/src/FoundationClasses/TKernel/Storage/Storage_Root.hxx similarity index 100% rename from src/Storage/Storage_Root.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_Root.hxx diff --git a/src/Storage/Storage_RootData.cxx b/src/FoundationClasses/TKernel/Storage/Storage_RootData.cxx similarity index 100% rename from src/Storage/Storage_RootData.cxx rename to src/FoundationClasses/TKernel/Storage/Storage_RootData.cxx diff --git a/src/Storage/Storage_RootData.hxx b/src/FoundationClasses/TKernel/Storage/Storage_RootData.hxx similarity index 100% rename from src/Storage/Storage_RootData.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_RootData.hxx diff --git a/src/Storage/Storage_Schema.cxx b/src/FoundationClasses/TKernel/Storage/Storage_Schema.cxx similarity index 100% rename from src/Storage/Storage_Schema.cxx rename to src/FoundationClasses/TKernel/Storage/Storage_Schema.cxx diff --git a/src/Storage/Storage_Schema.hxx b/src/FoundationClasses/TKernel/Storage/Storage_Schema.hxx similarity index 100% rename from src/Storage/Storage_Schema.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_Schema.hxx diff --git a/src/Storage/Storage_SeqOfRoot.hxx b/src/FoundationClasses/TKernel/Storage/Storage_SeqOfRoot.hxx similarity index 100% rename from src/Storage/Storage_SeqOfRoot.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_SeqOfRoot.hxx diff --git a/src/Storage/Storage_SolveMode.hxx b/src/FoundationClasses/TKernel/Storage/Storage_SolveMode.hxx similarity index 100% rename from src/Storage/Storage_SolveMode.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_SolveMode.hxx diff --git a/src/Storage/Storage_StreamExtCharParityError.hxx b/src/FoundationClasses/TKernel/Storage/Storage_StreamExtCharParityError.hxx similarity index 100% rename from src/Storage/Storage_StreamExtCharParityError.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_StreamExtCharParityError.hxx diff --git a/src/Storage/Storage_StreamFormatError.hxx b/src/FoundationClasses/TKernel/Storage/Storage_StreamFormatError.hxx similarity index 100% rename from src/Storage/Storage_StreamFormatError.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_StreamFormatError.hxx diff --git a/src/Storage/Storage_StreamModeError.hxx b/src/FoundationClasses/TKernel/Storage/Storage_StreamModeError.hxx similarity index 100% rename from src/Storage/Storage_StreamModeError.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_StreamModeError.hxx diff --git a/src/Storage/Storage_StreamReadError.hxx b/src/FoundationClasses/TKernel/Storage/Storage_StreamReadError.hxx similarity index 100% rename from src/Storage/Storage_StreamReadError.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_StreamReadError.hxx diff --git a/src/Storage/Storage_StreamTypeMismatchError.hxx b/src/FoundationClasses/TKernel/Storage/Storage_StreamTypeMismatchError.hxx similarity index 100% rename from src/Storage/Storage_StreamTypeMismatchError.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_StreamTypeMismatchError.hxx diff --git a/src/Storage/Storage_StreamUnknownTypeError.hxx b/src/FoundationClasses/TKernel/Storage/Storage_StreamUnknownTypeError.hxx similarity index 100% rename from src/Storage/Storage_StreamUnknownTypeError.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_StreamUnknownTypeError.hxx diff --git a/src/Storage/Storage_StreamWriteError.hxx b/src/FoundationClasses/TKernel/Storage/Storage_StreamWriteError.hxx similarity index 100% rename from src/Storage/Storage_StreamWriteError.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_StreamWriteError.hxx diff --git a/src/Storage/Storage_TypeData.cxx b/src/FoundationClasses/TKernel/Storage/Storage_TypeData.cxx similarity index 100% rename from src/Storage/Storage_TypeData.cxx rename to src/FoundationClasses/TKernel/Storage/Storage_TypeData.cxx diff --git a/src/Storage/Storage_TypeData.hxx b/src/FoundationClasses/TKernel/Storage/Storage_TypeData.hxx similarity index 100% rename from src/Storage/Storage_TypeData.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_TypeData.hxx diff --git a/src/Storage/Storage_TypedCallBack.cxx b/src/FoundationClasses/TKernel/Storage/Storage_TypedCallBack.cxx similarity index 100% rename from src/Storage/Storage_TypedCallBack.cxx rename to src/FoundationClasses/TKernel/Storage/Storage_TypedCallBack.cxx diff --git a/src/Storage/Storage_TypedCallBack.hxx b/src/FoundationClasses/TKernel/Storage/Storage_TypedCallBack.hxx similarity index 100% rename from src/Storage/Storage_TypedCallBack.hxx rename to src/FoundationClasses/TKernel/Storage/Storage_TypedCallBack.hxx diff --git a/src/FoundationClasses/TKernel/TColStd/FILES.cmake b/src/FoundationClasses/TKernel/TColStd/FILES.cmake new file mode 100644 index 0000000000..80d5ff58cf --- /dev/null +++ b/src/FoundationClasses/TKernel/TColStd/FILES.cmake @@ -0,0 +1,90 @@ +# Source files for TColStd package +set(OCCT_TColStd_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TColStd_FILES + TColStd_Array1OfAsciiString.hxx + TColStd_Array1OfBoolean.hxx + TColStd_Array1OfByte.hxx + TColStd_Array1OfCharacter.hxx + TColStd_Array1OfExtendedString.hxx + TColStd_Array1OfInteger.hxx + TColStd_Array1OfListOfInteger.hxx + TColStd_Array1OfReal.hxx + TColStd_Array1OfTransient.hxx + TColStd_Array2OfBoolean.hxx + TColStd_Array2OfCharacter.hxx + TColStd_Array2OfInteger.hxx + TColStd_Array2OfReal.hxx + TColStd_Array2OfTransient.hxx + TColStd_DataMapIteratorOfDataMapOfAsciiStringInteger.hxx + TColStd_DataMapIteratorOfDataMapOfIntegerInteger.hxx + TColStd_DataMapIteratorOfDataMapOfIntegerListOfInteger.hxx + TColStd_DataMapIteratorOfDataMapOfIntegerReal.hxx + TColStd_DataMapIteratorOfDataMapOfIntegerTransient.hxx + TColStd_DataMapIteratorOfDataMapOfStringInteger.hxx + TColStd_DataMapIteratorOfDataMapOfTransientTransient.hxx + TColStd_DataMapOfAsciiStringInteger.hxx + TColStd_DataMapOfIntegerInteger.hxx + TColStd_DataMapOfIntegerListOfInteger.hxx + TColStd_DataMapOfIntegerReal.hxx + TColStd_DataMapOfIntegerTransient.hxx + TColStd_DataMapOfStringInteger.hxx + TColStd_DataMapOfTransientTransient.hxx + TColStd_HArray1OfAsciiString.hxx + TColStd_HArray1OfBoolean.hxx + TColStd_HArray1OfByte.hxx + TColStd_HArray1OfCharacter.hxx + TColStd_HArray1OfExtendedString.hxx + TColStd_HArray1OfInteger.hxx + TColStd_HArray1OfListOfInteger.hxx + TColStd_HArray1OfReal.hxx + TColStd_HArray1OfTransient.hxx + TColStd_HArray2OfBoolean.hxx + TColStd_HArray2OfCharacter.hxx + TColStd_HArray2OfInteger.hxx + TColStd_HArray2OfReal.hxx + TColStd_HArray2OfTransient.hxx + TColStd_HPackedMapOfInteger.cxx + TColStd_HPackedMapOfInteger.hxx + TColStd_HPackedMapOfInteger.lxx + TColStd_HSequenceOfAsciiString.hxx + TColStd_HSequenceOfExtendedString.hxx + TColStd_HSequenceOfHAsciiString.hxx + TColStd_HSequenceOfHExtendedString.hxx + TColStd_HSequenceOfInteger.hxx + TColStd_HSequenceOfReal.hxx + TColStd_HSequenceOfTransient.hxx + TColStd_IndexedDataMapOfStringString.hxx + TColStd_IndexedDataMapOfTransientTransient.hxx + TColStd_IndexedMapOfInteger.hxx + TColStd_IndexedMapOfReal.hxx + TColStd_IndexedMapOfTransient.hxx + TColStd_ListIteratorOfListOfAsciiString.hxx + TColStd_ListIteratorOfListOfInteger.hxx + TColStd_ListIteratorOfListOfReal.hxx + TColStd_ListIteratorOfListOfTransient.hxx + TColStd_ListOfAsciiString.hxx + TColStd_ListOfInteger.hxx + TColStd_ListOfReal.hxx + TColStd_ListOfTransient.hxx + TColStd_MapIteratorOfMapOfAsciiString.hxx + TColStd_MapIteratorOfMapOfInteger.hxx + TColStd_MapIteratorOfMapOfReal.hxx + TColStd_MapIteratorOfMapOfTransient.hxx + TColStd_MapIteratorOfPackedMapOfInteger.hxx + TColStd_MapOfAsciiString.hxx + TColStd_MapOfInteger.hxx + TColStd_MapOfReal.hxx + TColStd_MapOfTransient.hxx + TColStd_PackedMapOfInteger.cxx + TColStd_PackedMapOfInteger.hxx + TColStd_SequenceOfAddress.hxx + TColStd_SequenceOfAsciiString.hxx + TColStd_SequenceOfBoolean.hxx + TColStd_SequenceOfExtendedString.hxx + TColStd_SequenceOfHAsciiString.hxx + TColStd_SequenceOfHExtendedString.hxx + TColStd_SequenceOfInteger.hxx + TColStd_SequenceOfReal.hxx + TColStd_SequenceOfTransient.hxx +) diff --git a/src/TColStd/TColStd_Array1OfAsciiString.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_Array1OfAsciiString.hxx similarity index 100% rename from src/TColStd/TColStd_Array1OfAsciiString.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_Array1OfAsciiString.hxx diff --git a/src/TColStd/TColStd_Array1OfBoolean.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_Array1OfBoolean.hxx similarity index 100% rename from src/TColStd/TColStd_Array1OfBoolean.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_Array1OfBoolean.hxx diff --git a/src/TColStd/TColStd_Array1OfByte.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_Array1OfByte.hxx similarity index 100% rename from src/TColStd/TColStd_Array1OfByte.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_Array1OfByte.hxx diff --git a/src/TColStd/TColStd_Array1OfCharacter.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_Array1OfCharacter.hxx similarity index 100% rename from src/TColStd/TColStd_Array1OfCharacter.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_Array1OfCharacter.hxx diff --git a/src/TColStd/TColStd_Array1OfExtendedString.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_Array1OfExtendedString.hxx similarity index 100% rename from src/TColStd/TColStd_Array1OfExtendedString.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_Array1OfExtendedString.hxx diff --git a/src/TColStd/TColStd_Array1OfInteger.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_Array1OfInteger.hxx similarity index 100% rename from src/TColStd/TColStd_Array1OfInteger.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_Array1OfInteger.hxx diff --git a/src/TColStd/TColStd_Array1OfListOfInteger.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_Array1OfListOfInteger.hxx similarity index 100% rename from src/TColStd/TColStd_Array1OfListOfInteger.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_Array1OfListOfInteger.hxx diff --git a/src/TColStd/TColStd_Array1OfReal.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_Array1OfReal.hxx similarity index 100% rename from src/TColStd/TColStd_Array1OfReal.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_Array1OfReal.hxx diff --git a/src/TColStd/TColStd_Array1OfTransient.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_Array1OfTransient.hxx similarity index 100% rename from src/TColStd/TColStd_Array1OfTransient.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_Array1OfTransient.hxx diff --git a/src/TColStd/TColStd_Array2OfBoolean.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_Array2OfBoolean.hxx similarity index 100% rename from src/TColStd/TColStd_Array2OfBoolean.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_Array2OfBoolean.hxx diff --git a/src/TColStd/TColStd_Array2OfCharacter.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_Array2OfCharacter.hxx similarity index 100% rename from src/TColStd/TColStd_Array2OfCharacter.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_Array2OfCharacter.hxx diff --git a/src/TColStd/TColStd_Array2OfInteger.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_Array2OfInteger.hxx similarity index 100% rename from src/TColStd/TColStd_Array2OfInteger.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_Array2OfInteger.hxx diff --git a/src/TColStd/TColStd_Array2OfReal.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_Array2OfReal.hxx similarity index 100% rename from src/TColStd/TColStd_Array2OfReal.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_Array2OfReal.hxx diff --git a/src/TColStd/TColStd_Array2OfTransient.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_Array2OfTransient.hxx similarity index 100% rename from src/TColStd/TColStd_Array2OfTransient.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_Array2OfTransient.hxx diff --git a/src/TColStd/TColStd_DataMapIteratorOfDataMapOfAsciiStringInteger.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_DataMapIteratorOfDataMapOfAsciiStringInteger.hxx similarity index 100% rename from src/TColStd/TColStd_DataMapIteratorOfDataMapOfAsciiStringInteger.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_DataMapIteratorOfDataMapOfAsciiStringInteger.hxx diff --git a/src/TColStd/TColStd_DataMapIteratorOfDataMapOfIntegerInteger.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_DataMapIteratorOfDataMapOfIntegerInteger.hxx similarity index 100% rename from src/TColStd/TColStd_DataMapIteratorOfDataMapOfIntegerInteger.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_DataMapIteratorOfDataMapOfIntegerInteger.hxx diff --git a/src/TColStd/TColStd_DataMapIteratorOfDataMapOfIntegerListOfInteger.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_DataMapIteratorOfDataMapOfIntegerListOfInteger.hxx similarity index 100% rename from src/TColStd/TColStd_DataMapIteratorOfDataMapOfIntegerListOfInteger.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_DataMapIteratorOfDataMapOfIntegerListOfInteger.hxx diff --git a/src/TColStd/TColStd_DataMapIteratorOfDataMapOfIntegerReal.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_DataMapIteratorOfDataMapOfIntegerReal.hxx similarity index 100% rename from src/TColStd/TColStd_DataMapIteratorOfDataMapOfIntegerReal.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_DataMapIteratorOfDataMapOfIntegerReal.hxx diff --git a/src/TColStd/TColStd_DataMapIteratorOfDataMapOfIntegerTransient.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_DataMapIteratorOfDataMapOfIntegerTransient.hxx similarity index 100% rename from src/TColStd/TColStd_DataMapIteratorOfDataMapOfIntegerTransient.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_DataMapIteratorOfDataMapOfIntegerTransient.hxx diff --git a/src/TColStd/TColStd_DataMapIteratorOfDataMapOfStringInteger.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_DataMapIteratorOfDataMapOfStringInteger.hxx similarity index 100% rename from src/TColStd/TColStd_DataMapIteratorOfDataMapOfStringInteger.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_DataMapIteratorOfDataMapOfStringInteger.hxx diff --git a/src/TColStd/TColStd_DataMapIteratorOfDataMapOfTransientTransient.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_DataMapIteratorOfDataMapOfTransientTransient.hxx similarity index 100% rename from src/TColStd/TColStd_DataMapIteratorOfDataMapOfTransientTransient.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_DataMapIteratorOfDataMapOfTransientTransient.hxx diff --git a/src/TColStd/TColStd_DataMapOfAsciiStringInteger.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_DataMapOfAsciiStringInteger.hxx similarity index 100% rename from src/TColStd/TColStd_DataMapOfAsciiStringInteger.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_DataMapOfAsciiStringInteger.hxx diff --git a/src/TColStd/TColStd_DataMapOfIntegerInteger.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_DataMapOfIntegerInteger.hxx similarity index 100% rename from src/TColStd/TColStd_DataMapOfIntegerInteger.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_DataMapOfIntegerInteger.hxx diff --git a/src/TColStd/TColStd_DataMapOfIntegerListOfInteger.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_DataMapOfIntegerListOfInteger.hxx similarity index 100% rename from src/TColStd/TColStd_DataMapOfIntegerListOfInteger.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_DataMapOfIntegerListOfInteger.hxx diff --git a/src/TColStd/TColStd_DataMapOfIntegerReal.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_DataMapOfIntegerReal.hxx similarity index 100% rename from src/TColStd/TColStd_DataMapOfIntegerReal.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_DataMapOfIntegerReal.hxx diff --git a/src/TColStd/TColStd_DataMapOfIntegerTransient.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_DataMapOfIntegerTransient.hxx similarity index 100% rename from src/TColStd/TColStd_DataMapOfIntegerTransient.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_DataMapOfIntegerTransient.hxx diff --git a/src/TColStd/TColStd_DataMapOfStringInteger.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_DataMapOfStringInteger.hxx similarity index 100% rename from src/TColStd/TColStd_DataMapOfStringInteger.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_DataMapOfStringInteger.hxx diff --git a/src/TColStd/TColStd_DataMapOfTransientTransient.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_DataMapOfTransientTransient.hxx similarity index 100% rename from src/TColStd/TColStd_DataMapOfTransientTransient.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_DataMapOfTransientTransient.hxx diff --git a/src/TColStd/TColStd_HArray1OfAsciiString.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_HArray1OfAsciiString.hxx similarity index 100% rename from src/TColStd/TColStd_HArray1OfAsciiString.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_HArray1OfAsciiString.hxx diff --git a/src/TColStd/TColStd_HArray1OfBoolean.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_HArray1OfBoolean.hxx similarity index 100% rename from src/TColStd/TColStd_HArray1OfBoolean.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_HArray1OfBoolean.hxx diff --git a/src/TColStd/TColStd_HArray1OfByte.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_HArray1OfByte.hxx similarity index 100% rename from src/TColStd/TColStd_HArray1OfByte.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_HArray1OfByte.hxx diff --git a/src/TColStd/TColStd_HArray1OfCharacter.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_HArray1OfCharacter.hxx similarity index 100% rename from src/TColStd/TColStd_HArray1OfCharacter.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_HArray1OfCharacter.hxx diff --git a/src/TColStd/TColStd_HArray1OfExtendedString.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_HArray1OfExtendedString.hxx similarity index 100% rename from src/TColStd/TColStd_HArray1OfExtendedString.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_HArray1OfExtendedString.hxx diff --git a/src/TColStd/TColStd_HArray1OfInteger.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_HArray1OfInteger.hxx similarity index 100% rename from src/TColStd/TColStd_HArray1OfInteger.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_HArray1OfInteger.hxx diff --git a/src/TColStd/TColStd_HArray1OfListOfInteger.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_HArray1OfListOfInteger.hxx similarity index 100% rename from src/TColStd/TColStd_HArray1OfListOfInteger.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_HArray1OfListOfInteger.hxx diff --git a/src/TColStd/TColStd_HArray1OfReal.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_HArray1OfReal.hxx similarity index 100% rename from src/TColStd/TColStd_HArray1OfReal.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_HArray1OfReal.hxx diff --git a/src/TColStd/TColStd_HArray1OfTransient.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_HArray1OfTransient.hxx similarity index 100% rename from src/TColStd/TColStd_HArray1OfTransient.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_HArray1OfTransient.hxx diff --git a/src/TColStd/TColStd_HArray2OfBoolean.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_HArray2OfBoolean.hxx similarity index 100% rename from src/TColStd/TColStd_HArray2OfBoolean.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_HArray2OfBoolean.hxx diff --git a/src/TColStd/TColStd_HArray2OfCharacter.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_HArray2OfCharacter.hxx similarity index 100% rename from src/TColStd/TColStd_HArray2OfCharacter.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_HArray2OfCharacter.hxx diff --git a/src/TColStd/TColStd_HArray2OfInteger.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_HArray2OfInteger.hxx similarity index 100% rename from src/TColStd/TColStd_HArray2OfInteger.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_HArray2OfInteger.hxx diff --git a/src/TColStd/TColStd_HArray2OfReal.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_HArray2OfReal.hxx similarity index 100% rename from src/TColStd/TColStd_HArray2OfReal.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_HArray2OfReal.hxx diff --git a/src/TColStd/TColStd_HArray2OfTransient.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_HArray2OfTransient.hxx similarity index 100% rename from src/TColStd/TColStd_HArray2OfTransient.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_HArray2OfTransient.hxx diff --git a/src/TColStd/TColStd_HPackedMapOfInteger.cxx b/src/FoundationClasses/TKernel/TColStd/TColStd_HPackedMapOfInteger.cxx similarity index 100% rename from src/TColStd/TColStd_HPackedMapOfInteger.cxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_HPackedMapOfInteger.cxx diff --git a/src/TColStd/TColStd_HPackedMapOfInteger.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_HPackedMapOfInteger.hxx similarity index 100% rename from src/TColStd/TColStd_HPackedMapOfInteger.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_HPackedMapOfInteger.hxx diff --git a/src/TColStd/TColStd_HPackedMapOfInteger.lxx b/src/FoundationClasses/TKernel/TColStd/TColStd_HPackedMapOfInteger.lxx similarity index 100% rename from src/TColStd/TColStd_HPackedMapOfInteger.lxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_HPackedMapOfInteger.lxx diff --git a/src/TColStd/TColStd_HSequenceOfAsciiString.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_HSequenceOfAsciiString.hxx similarity index 100% rename from src/TColStd/TColStd_HSequenceOfAsciiString.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_HSequenceOfAsciiString.hxx diff --git a/src/TColStd/TColStd_HSequenceOfExtendedString.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_HSequenceOfExtendedString.hxx similarity index 100% rename from src/TColStd/TColStd_HSequenceOfExtendedString.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_HSequenceOfExtendedString.hxx diff --git a/src/TColStd/TColStd_HSequenceOfHAsciiString.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_HSequenceOfHAsciiString.hxx similarity index 100% rename from src/TColStd/TColStd_HSequenceOfHAsciiString.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_HSequenceOfHAsciiString.hxx diff --git a/src/TColStd/TColStd_HSequenceOfHExtendedString.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_HSequenceOfHExtendedString.hxx similarity index 100% rename from src/TColStd/TColStd_HSequenceOfHExtendedString.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_HSequenceOfHExtendedString.hxx diff --git a/src/TColStd/TColStd_HSequenceOfInteger.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_HSequenceOfInteger.hxx similarity index 100% rename from src/TColStd/TColStd_HSequenceOfInteger.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_HSequenceOfInteger.hxx diff --git a/src/TColStd/TColStd_HSequenceOfReal.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_HSequenceOfReal.hxx similarity index 100% rename from src/TColStd/TColStd_HSequenceOfReal.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_HSequenceOfReal.hxx diff --git a/src/TColStd/TColStd_HSequenceOfTransient.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_HSequenceOfTransient.hxx similarity index 100% rename from src/TColStd/TColStd_HSequenceOfTransient.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_HSequenceOfTransient.hxx diff --git a/src/TColStd/TColStd_IndexedDataMapOfStringString.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_IndexedDataMapOfStringString.hxx similarity index 100% rename from src/TColStd/TColStd_IndexedDataMapOfStringString.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_IndexedDataMapOfStringString.hxx diff --git a/src/TColStd/TColStd_IndexedDataMapOfTransientTransient.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_IndexedDataMapOfTransientTransient.hxx similarity index 100% rename from src/TColStd/TColStd_IndexedDataMapOfTransientTransient.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_IndexedDataMapOfTransientTransient.hxx diff --git a/src/TColStd/TColStd_IndexedMapOfInteger.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_IndexedMapOfInteger.hxx similarity index 100% rename from src/TColStd/TColStd_IndexedMapOfInteger.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_IndexedMapOfInteger.hxx diff --git a/src/TColStd/TColStd_IndexedMapOfReal.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_IndexedMapOfReal.hxx similarity index 100% rename from src/TColStd/TColStd_IndexedMapOfReal.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_IndexedMapOfReal.hxx diff --git a/src/TColStd/TColStd_IndexedMapOfTransient.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_IndexedMapOfTransient.hxx similarity index 100% rename from src/TColStd/TColStd_IndexedMapOfTransient.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_IndexedMapOfTransient.hxx diff --git a/src/TColStd/TColStd_ListIteratorOfListOfAsciiString.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_ListIteratorOfListOfAsciiString.hxx similarity index 100% rename from src/TColStd/TColStd_ListIteratorOfListOfAsciiString.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_ListIteratorOfListOfAsciiString.hxx diff --git a/src/TColStd/TColStd_ListIteratorOfListOfInteger.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_ListIteratorOfListOfInteger.hxx similarity index 100% rename from src/TColStd/TColStd_ListIteratorOfListOfInteger.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_ListIteratorOfListOfInteger.hxx diff --git a/src/TColStd/TColStd_ListIteratorOfListOfReal.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_ListIteratorOfListOfReal.hxx similarity index 100% rename from src/TColStd/TColStd_ListIteratorOfListOfReal.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_ListIteratorOfListOfReal.hxx diff --git a/src/TColStd/TColStd_ListIteratorOfListOfTransient.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_ListIteratorOfListOfTransient.hxx similarity index 100% rename from src/TColStd/TColStd_ListIteratorOfListOfTransient.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_ListIteratorOfListOfTransient.hxx diff --git a/src/TColStd/TColStd_ListOfAsciiString.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_ListOfAsciiString.hxx similarity index 100% rename from src/TColStd/TColStd_ListOfAsciiString.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_ListOfAsciiString.hxx diff --git a/src/TColStd/TColStd_ListOfInteger.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_ListOfInteger.hxx similarity index 100% rename from src/TColStd/TColStd_ListOfInteger.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_ListOfInteger.hxx diff --git a/src/TColStd/TColStd_ListOfReal.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_ListOfReal.hxx similarity index 100% rename from src/TColStd/TColStd_ListOfReal.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_ListOfReal.hxx diff --git a/src/TColStd/TColStd_ListOfTransient.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_ListOfTransient.hxx similarity index 100% rename from src/TColStd/TColStd_ListOfTransient.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_ListOfTransient.hxx diff --git a/src/TColStd/TColStd_MapIteratorOfMapOfAsciiString.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_MapIteratorOfMapOfAsciiString.hxx similarity index 100% rename from src/TColStd/TColStd_MapIteratorOfMapOfAsciiString.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_MapIteratorOfMapOfAsciiString.hxx diff --git a/src/TColStd/TColStd_MapIteratorOfMapOfInteger.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_MapIteratorOfMapOfInteger.hxx similarity index 100% rename from src/TColStd/TColStd_MapIteratorOfMapOfInteger.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_MapIteratorOfMapOfInteger.hxx diff --git a/src/TColStd/TColStd_MapIteratorOfMapOfReal.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_MapIteratorOfMapOfReal.hxx similarity index 100% rename from src/TColStd/TColStd_MapIteratorOfMapOfReal.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_MapIteratorOfMapOfReal.hxx diff --git a/src/TColStd/TColStd_MapIteratorOfMapOfTransient.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_MapIteratorOfMapOfTransient.hxx similarity index 100% rename from src/TColStd/TColStd_MapIteratorOfMapOfTransient.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_MapIteratorOfMapOfTransient.hxx diff --git a/src/TColStd/TColStd_MapIteratorOfPackedMapOfInteger.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_MapIteratorOfPackedMapOfInteger.hxx similarity index 100% rename from src/TColStd/TColStd_MapIteratorOfPackedMapOfInteger.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_MapIteratorOfPackedMapOfInteger.hxx diff --git a/src/TColStd/TColStd_MapOfAsciiString.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_MapOfAsciiString.hxx similarity index 100% rename from src/TColStd/TColStd_MapOfAsciiString.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_MapOfAsciiString.hxx diff --git a/src/TColStd/TColStd_MapOfInteger.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_MapOfInteger.hxx similarity index 100% rename from src/TColStd/TColStd_MapOfInteger.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_MapOfInteger.hxx diff --git a/src/TColStd/TColStd_MapOfReal.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_MapOfReal.hxx similarity index 100% rename from src/TColStd/TColStd_MapOfReal.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_MapOfReal.hxx diff --git a/src/TColStd/TColStd_MapOfTransient.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_MapOfTransient.hxx similarity index 100% rename from src/TColStd/TColStd_MapOfTransient.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_MapOfTransient.hxx diff --git a/src/TColStd/TColStd_PackedMapOfInteger.cxx b/src/FoundationClasses/TKernel/TColStd/TColStd_PackedMapOfInteger.cxx similarity index 100% rename from src/TColStd/TColStd_PackedMapOfInteger.cxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_PackedMapOfInteger.cxx diff --git a/src/TColStd/TColStd_PackedMapOfInteger.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_PackedMapOfInteger.hxx similarity index 100% rename from src/TColStd/TColStd_PackedMapOfInteger.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_PackedMapOfInteger.hxx diff --git a/src/TColStd/TColStd_SequenceOfAddress.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_SequenceOfAddress.hxx similarity index 100% rename from src/TColStd/TColStd_SequenceOfAddress.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_SequenceOfAddress.hxx diff --git a/src/TColStd/TColStd_SequenceOfAsciiString.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_SequenceOfAsciiString.hxx similarity index 100% rename from src/TColStd/TColStd_SequenceOfAsciiString.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_SequenceOfAsciiString.hxx diff --git a/src/TColStd/TColStd_SequenceOfBoolean.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_SequenceOfBoolean.hxx similarity index 100% rename from src/TColStd/TColStd_SequenceOfBoolean.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_SequenceOfBoolean.hxx diff --git a/src/TColStd/TColStd_SequenceOfExtendedString.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_SequenceOfExtendedString.hxx similarity index 100% rename from src/TColStd/TColStd_SequenceOfExtendedString.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_SequenceOfExtendedString.hxx diff --git a/src/TColStd/TColStd_SequenceOfHAsciiString.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_SequenceOfHAsciiString.hxx similarity index 100% rename from src/TColStd/TColStd_SequenceOfHAsciiString.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_SequenceOfHAsciiString.hxx diff --git a/src/TColStd/TColStd_SequenceOfHExtendedString.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_SequenceOfHExtendedString.hxx similarity index 100% rename from src/TColStd/TColStd_SequenceOfHExtendedString.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_SequenceOfHExtendedString.hxx diff --git a/src/TColStd/TColStd_SequenceOfInteger.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_SequenceOfInteger.hxx similarity index 100% rename from src/TColStd/TColStd_SequenceOfInteger.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_SequenceOfInteger.hxx diff --git a/src/TColStd/TColStd_SequenceOfReal.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_SequenceOfReal.hxx similarity index 100% rename from src/TColStd/TColStd_SequenceOfReal.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_SequenceOfReal.hxx diff --git a/src/TColStd/TColStd_SequenceOfTransient.hxx b/src/FoundationClasses/TKernel/TColStd/TColStd_SequenceOfTransient.hxx similarity index 100% rename from src/TColStd/TColStd_SequenceOfTransient.hxx rename to src/FoundationClasses/TKernel/TColStd/TColStd_SequenceOfTransient.hxx diff --git a/src/FoundationClasses/TKernel/TCollection/FILES.cmake b/src/FoundationClasses/TKernel/TCollection/FILES.cmake new file mode 100644 index 0000000000..18c0e4fabe --- /dev/null +++ b/src/FoundationClasses/TKernel/TCollection/FILES.cmake @@ -0,0 +1,16 @@ +# Source files for TCollection package +set(OCCT_TCollection_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TCollection_FILES + TCollection.hxx + TCollection_AsciiString.cxx + TCollection_AsciiString.hxx + TCollection_AsciiString.lxx + TCollection_ExtendedString.cxx + TCollection_ExtendedString.hxx + TCollection_HAsciiString.cxx + TCollection_HAsciiString.hxx + TCollection_HAsciiString.lxx + TCollection_HExtendedString.cxx + TCollection_HExtendedString.hxx +) diff --git a/src/TCollection/TCollection.hxx b/src/FoundationClasses/TKernel/TCollection/TCollection.hxx similarity index 100% rename from src/TCollection/TCollection.hxx rename to src/FoundationClasses/TKernel/TCollection/TCollection.hxx diff --git a/src/TCollection/TCollection_AsciiString.cxx b/src/FoundationClasses/TKernel/TCollection/TCollection_AsciiString.cxx similarity index 100% rename from src/TCollection/TCollection_AsciiString.cxx rename to src/FoundationClasses/TKernel/TCollection/TCollection_AsciiString.cxx diff --git a/src/TCollection/TCollection_AsciiString.hxx b/src/FoundationClasses/TKernel/TCollection/TCollection_AsciiString.hxx similarity index 100% rename from src/TCollection/TCollection_AsciiString.hxx rename to src/FoundationClasses/TKernel/TCollection/TCollection_AsciiString.hxx diff --git a/src/TCollection/TCollection_AsciiString.lxx b/src/FoundationClasses/TKernel/TCollection/TCollection_AsciiString.lxx similarity index 100% rename from src/TCollection/TCollection_AsciiString.lxx rename to src/FoundationClasses/TKernel/TCollection/TCollection_AsciiString.lxx diff --git a/src/TCollection/TCollection_ExtendedString.cxx b/src/FoundationClasses/TKernel/TCollection/TCollection_ExtendedString.cxx similarity index 100% rename from src/TCollection/TCollection_ExtendedString.cxx rename to src/FoundationClasses/TKernel/TCollection/TCollection_ExtendedString.cxx diff --git a/src/TCollection/TCollection_ExtendedString.hxx b/src/FoundationClasses/TKernel/TCollection/TCollection_ExtendedString.hxx similarity index 100% rename from src/TCollection/TCollection_ExtendedString.hxx rename to src/FoundationClasses/TKernel/TCollection/TCollection_ExtendedString.hxx diff --git a/src/TCollection/TCollection_HAsciiString.cxx b/src/FoundationClasses/TKernel/TCollection/TCollection_HAsciiString.cxx similarity index 100% rename from src/TCollection/TCollection_HAsciiString.cxx rename to src/FoundationClasses/TKernel/TCollection/TCollection_HAsciiString.cxx diff --git a/src/TCollection/TCollection_HAsciiString.hxx b/src/FoundationClasses/TKernel/TCollection/TCollection_HAsciiString.hxx similarity index 100% rename from src/TCollection/TCollection_HAsciiString.hxx rename to src/FoundationClasses/TKernel/TCollection/TCollection_HAsciiString.hxx diff --git a/src/TCollection/TCollection_HAsciiString.lxx b/src/FoundationClasses/TKernel/TCollection/TCollection_HAsciiString.lxx similarity index 100% rename from src/TCollection/TCollection_HAsciiString.lxx rename to src/FoundationClasses/TKernel/TCollection/TCollection_HAsciiString.lxx diff --git a/src/TCollection/TCollection_HExtendedString.cxx b/src/FoundationClasses/TKernel/TCollection/TCollection_HExtendedString.cxx similarity index 100% rename from src/TCollection/TCollection_HExtendedString.cxx rename to src/FoundationClasses/TKernel/TCollection/TCollection_HExtendedString.cxx diff --git a/src/TCollection/TCollection_HExtendedString.hxx b/src/FoundationClasses/TKernel/TCollection/TCollection_HExtendedString.hxx similarity index 100% rename from src/TCollection/TCollection_HExtendedString.hxx rename to src/FoundationClasses/TKernel/TCollection/TCollection_HExtendedString.hxx diff --git a/src/TKernel/TKernel_pch.hxx b/src/FoundationClasses/TKernel/TKernel_pch.hxx similarity index 100% rename from src/TKernel/TKernel_pch.hxx rename to src/FoundationClasses/TKernel/TKernel_pch.hxx diff --git a/src/FoundationClasses/TKernel/TShort/FILES.cmake b/src/FoundationClasses/TKernel/TShort/FILES.cmake new file mode 100644 index 0000000000..6f6af5bf93 --- /dev/null +++ b/src/FoundationClasses/TKernel/TShort/FILES.cmake @@ -0,0 +1,11 @@ +# Source files for TShort package +set(OCCT_TShort_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TShort_FILES + TShort_Array1OfShortReal.hxx + TShort_Array2OfShortReal.hxx + TShort_HArray1OfShortReal.hxx + TShort_HArray2OfShortReal.hxx + TShort_HSequenceOfShortReal.hxx + TShort_SequenceOfShortReal.hxx +) diff --git a/src/TShort/TShort_Array1OfShortReal.hxx b/src/FoundationClasses/TKernel/TShort/TShort_Array1OfShortReal.hxx similarity index 100% rename from src/TShort/TShort_Array1OfShortReal.hxx rename to src/FoundationClasses/TKernel/TShort/TShort_Array1OfShortReal.hxx diff --git a/src/TShort/TShort_Array2OfShortReal.hxx b/src/FoundationClasses/TKernel/TShort/TShort_Array2OfShortReal.hxx similarity index 100% rename from src/TShort/TShort_Array2OfShortReal.hxx rename to src/FoundationClasses/TKernel/TShort/TShort_Array2OfShortReal.hxx diff --git a/src/TShort/TShort_HArray1OfShortReal.hxx b/src/FoundationClasses/TKernel/TShort/TShort_HArray1OfShortReal.hxx similarity index 100% rename from src/TShort/TShort_HArray1OfShortReal.hxx rename to src/FoundationClasses/TKernel/TShort/TShort_HArray1OfShortReal.hxx diff --git a/src/TShort/TShort_HArray2OfShortReal.hxx b/src/FoundationClasses/TKernel/TShort/TShort_HArray2OfShortReal.hxx similarity index 100% rename from src/TShort/TShort_HArray2OfShortReal.hxx rename to src/FoundationClasses/TKernel/TShort/TShort_HArray2OfShortReal.hxx diff --git a/src/TShort/TShort_HSequenceOfShortReal.hxx b/src/FoundationClasses/TKernel/TShort/TShort_HSequenceOfShortReal.hxx similarity index 100% rename from src/TShort/TShort_HSequenceOfShortReal.hxx rename to src/FoundationClasses/TKernel/TShort/TShort_HSequenceOfShortReal.hxx diff --git a/src/TShort/TShort_SequenceOfShortReal.hxx b/src/FoundationClasses/TKernel/TShort/TShort_SequenceOfShortReal.hxx similarity index 100% rename from src/TShort/TShort_SequenceOfShortReal.hxx rename to src/FoundationClasses/TKernel/TShort/TShort_SequenceOfShortReal.hxx diff --git a/src/FoundationClasses/TKernel/Units/FILES.cmake b/src/FoundationClasses/TKernel/Units/FILES.cmake new file mode 100644 index 0000000000..bcaacd94a3 --- /dev/null +++ b/src/FoundationClasses/TKernel/Units/FILES.cmake @@ -0,0 +1,54 @@ +# Source files for Units package +set(OCCT_Units_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Units_FILES + Units.cxx + Units.hxx + Units_Dimensions.cxx + Units_Dimensions.hxx + Units_Dimensions.lxx + Units_Explorer.cxx + Units_Explorer.hxx + Units_Lexicon.cxx + Units_Lexicon.hxx + Units_Lexicon.lxx + Units_MathSentence.cxx + Units_MathSentence.hxx + Units_Measurement.cxx + Units_Measurement.hxx + Units_NoSuchType.hxx + Units_NoSuchUnit.hxx + Units_Operators.hxx + Units_QtsSequence.hxx + Units_QuantitiesSequence.hxx + Units_Quantity.cxx + Units_Quantity.hxx + Units_Quantity.lxx + Units_Sentence.cxx + Units_Sentence.hxx + Units_Sentence.lxx + Units_ShiftedToken.cxx + Units_ShiftedToken.hxx + Units_ShiftedUnit.cxx + Units_ShiftedUnit.hxx + Units_TksSequence.hxx + Units_Token.cxx + Units_Token.hxx + Units_Token.lxx + Units_TokensSequence.hxx + Units_Unit.cxx + Units_Unit.hxx + Units_Unit.lxx + Units_UnitsDictionary.cxx + Units_UnitsDictionary.hxx + Units_UnitsDictionary.lxx + Units_UnitSentence.cxx + Units_UnitSentence.hxx + Units_UnitsLexicon.cxx + Units_UnitsLexicon.hxx + Units_UnitsLexicon.lxx + Units_UnitsSequence.hxx + Units_UnitsSystem.cxx + Units_UnitsSystem.hxx + Units_UtsSequence.hxx +) diff --git a/src/Units/Units.cxx b/src/FoundationClasses/TKernel/Units/Units.cxx similarity index 100% rename from src/Units/Units.cxx rename to src/FoundationClasses/TKernel/Units/Units.cxx diff --git a/src/Units/Units.hxx b/src/FoundationClasses/TKernel/Units/Units.hxx similarity index 100% rename from src/Units/Units.hxx rename to src/FoundationClasses/TKernel/Units/Units.hxx diff --git a/src/Units/Units_Dimensions.cxx b/src/FoundationClasses/TKernel/Units/Units_Dimensions.cxx similarity index 100% rename from src/Units/Units_Dimensions.cxx rename to src/FoundationClasses/TKernel/Units/Units_Dimensions.cxx diff --git a/src/Units/Units_Dimensions.hxx b/src/FoundationClasses/TKernel/Units/Units_Dimensions.hxx similarity index 100% rename from src/Units/Units_Dimensions.hxx rename to src/FoundationClasses/TKernel/Units/Units_Dimensions.hxx diff --git a/src/Units/Units_Dimensions.lxx b/src/FoundationClasses/TKernel/Units/Units_Dimensions.lxx similarity index 100% rename from src/Units/Units_Dimensions.lxx rename to src/FoundationClasses/TKernel/Units/Units_Dimensions.lxx diff --git a/src/Units/Units_Explorer.cxx b/src/FoundationClasses/TKernel/Units/Units_Explorer.cxx similarity index 100% rename from src/Units/Units_Explorer.cxx rename to src/FoundationClasses/TKernel/Units/Units_Explorer.cxx diff --git a/src/Units/Units_Explorer.hxx b/src/FoundationClasses/TKernel/Units/Units_Explorer.hxx similarity index 100% rename from src/Units/Units_Explorer.hxx rename to src/FoundationClasses/TKernel/Units/Units_Explorer.hxx diff --git a/src/Units/Units_Lexicon.cxx b/src/FoundationClasses/TKernel/Units/Units_Lexicon.cxx similarity index 100% rename from src/Units/Units_Lexicon.cxx rename to src/FoundationClasses/TKernel/Units/Units_Lexicon.cxx diff --git a/src/Units/Units_Lexicon.hxx b/src/FoundationClasses/TKernel/Units/Units_Lexicon.hxx similarity index 100% rename from src/Units/Units_Lexicon.hxx rename to src/FoundationClasses/TKernel/Units/Units_Lexicon.hxx diff --git a/src/Units/Units_Lexicon.lxx b/src/FoundationClasses/TKernel/Units/Units_Lexicon.lxx similarity index 100% rename from src/Units/Units_Lexicon.lxx rename to src/FoundationClasses/TKernel/Units/Units_Lexicon.lxx diff --git a/src/Units/Units_MathSentence.cxx b/src/FoundationClasses/TKernel/Units/Units_MathSentence.cxx similarity index 100% rename from src/Units/Units_MathSentence.cxx rename to src/FoundationClasses/TKernel/Units/Units_MathSentence.cxx diff --git a/src/Units/Units_MathSentence.hxx b/src/FoundationClasses/TKernel/Units/Units_MathSentence.hxx similarity index 100% rename from src/Units/Units_MathSentence.hxx rename to src/FoundationClasses/TKernel/Units/Units_MathSentence.hxx diff --git a/src/Units/Units_Measurement.cxx b/src/FoundationClasses/TKernel/Units/Units_Measurement.cxx similarity index 100% rename from src/Units/Units_Measurement.cxx rename to src/FoundationClasses/TKernel/Units/Units_Measurement.cxx diff --git a/src/Units/Units_Measurement.hxx b/src/FoundationClasses/TKernel/Units/Units_Measurement.hxx similarity index 100% rename from src/Units/Units_Measurement.hxx rename to src/FoundationClasses/TKernel/Units/Units_Measurement.hxx diff --git a/src/Units/Units_NoSuchType.hxx b/src/FoundationClasses/TKernel/Units/Units_NoSuchType.hxx similarity index 100% rename from src/Units/Units_NoSuchType.hxx rename to src/FoundationClasses/TKernel/Units/Units_NoSuchType.hxx diff --git a/src/Units/Units_NoSuchUnit.hxx b/src/FoundationClasses/TKernel/Units/Units_NoSuchUnit.hxx similarity index 100% rename from src/Units/Units_NoSuchUnit.hxx rename to src/FoundationClasses/TKernel/Units/Units_NoSuchUnit.hxx diff --git a/src/Units/Units_Operators.hxx b/src/FoundationClasses/TKernel/Units/Units_Operators.hxx similarity index 100% rename from src/Units/Units_Operators.hxx rename to src/FoundationClasses/TKernel/Units/Units_Operators.hxx diff --git a/src/Units/Units_QtsSequence.hxx b/src/FoundationClasses/TKernel/Units/Units_QtsSequence.hxx similarity index 100% rename from src/Units/Units_QtsSequence.hxx rename to src/FoundationClasses/TKernel/Units/Units_QtsSequence.hxx diff --git a/src/Units/Units_QuantitiesSequence.hxx b/src/FoundationClasses/TKernel/Units/Units_QuantitiesSequence.hxx similarity index 100% rename from src/Units/Units_QuantitiesSequence.hxx rename to src/FoundationClasses/TKernel/Units/Units_QuantitiesSequence.hxx diff --git a/src/Units/Units_Quantity.cxx b/src/FoundationClasses/TKernel/Units/Units_Quantity.cxx similarity index 100% rename from src/Units/Units_Quantity.cxx rename to src/FoundationClasses/TKernel/Units/Units_Quantity.cxx diff --git a/src/Units/Units_Quantity.hxx b/src/FoundationClasses/TKernel/Units/Units_Quantity.hxx similarity index 100% rename from src/Units/Units_Quantity.hxx rename to src/FoundationClasses/TKernel/Units/Units_Quantity.hxx diff --git a/src/Units/Units_Quantity.lxx b/src/FoundationClasses/TKernel/Units/Units_Quantity.lxx similarity index 100% rename from src/Units/Units_Quantity.lxx rename to src/FoundationClasses/TKernel/Units/Units_Quantity.lxx diff --git a/src/Units/Units_Sentence.cxx b/src/FoundationClasses/TKernel/Units/Units_Sentence.cxx similarity index 100% rename from src/Units/Units_Sentence.cxx rename to src/FoundationClasses/TKernel/Units/Units_Sentence.cxx diff --git a/src/Units/Units_Sentence.hxx b/src/FoundationClasses/TKernel/Units/Units_Sentence.hxx similarity index 100% rename from src/Units/Units_Sentence.hxx rename to src/FoundationClasses/TKernel/Units/Units_Sentence.hxx diff --git a/src/Units/Units_Sentence.lxx b/src/FoundationClasses/TKernel/Units/Units_Sentence.lxx similarity index 100% rename from src/Units/Units_Sentence.lxx rename to src/FoundationClasses/TKernel/Units/Units_Sentence.lxx diff --git a/src/Units/Units_ShiftedToken.cxx b/src/FoundationClasses/TKernel/Units/Units_ShiftedToken.cxx similarity index 100% rename from src/Units/Units_ShiftedToken.cxx rename to src/FoundationClasses/TKernel/Units/Units_ShiftedToken.cxx diff --git a/src/Units/Units_ShiftedToken.hxx b/src/FoundationClasses/TKernel/Units/Units_ShiftedToken.hxx similarity index 100% rename from src/Units/Units_ShiftedToken.hxx rename to src/FoundationClasses/TKernel/Units/Units_ShiftedToken.hxx diff --git a/src/Units/Units_ShiftedUnit.cxx b/src/FoundationClasses/TKernel/Units/Units_ShiftedUnit.cxx similarity index 100% rename from src/Units/Units_ShiftedUnit.cxx rename to src/FoundationClasses/TKernel/Units/Units_ShiftedUnit.cxx diff --git a/src/Units/Units_ShiftedUnit.hxx b/src/FoundationClasses/TKernel/Units/Units_ShiftedUnit.hxx similarity index 100% rename from src/Units/Units_ShiftedUnit.hxx rename to src/FoundationClasses/TKernel/Units/Units_ShiftedUnit.hxx diff --git a/src/Units/Units_TksSequence.hxx b/src/FoundationClasses/TKernel/Units/Units_TksSequence.hxx similarity index 100% rename from src/Units/Units_TksSequence.hxx rename to src/FoundationClasses/TKernel/Units/Units_TksSequence.hxx diff --git a/src/Units/Units_Token.cxx b/src/FoundationClasses/TKernel/Units/Units_Token.cxx similarity index 100% rename from src/Units/Units_Token.cxx rename to src/FoundationClasses/TKernel/Units/Units_Token.cxx diff --git a/src/Units/Units_Token.hxx b/src/FoundationClasses/TKernel/Units/Units_Token.hxx similarity index 100% rename from src/Units/Units_Token.hxx rename to src/FoundationClasses/TKernel/Units/Units_Token.hxx diff --git a/src/Units/Units_Token.lxx b/src/FoundationClasses/TKernel/Units/Units_Token.lxx similarity index 100% rename from src/Units/Units_Token.lxx rename to src/FoundationClasses/TKernel/Units/Units_Token.lxx diff --git a/src/Units/Units_TokensSequence.hxx b/src/FoundationClasses/TKernel/Units/Units_TokensSequence.hxx similarity index 100% rename from src/Units/Units_TokensSequence.hxx rename to src/FoundationClasses/TKernel/Units/Units_TokensSequence.hxx diff --git a/src/Units/Units_Unit.cxx b/src/FoundationClasses/TKernel/Units/Units_Unit.cxx similarity index 100% rename from src/Units/Units_Unit.cxx rename to src/FoundationClasses/TKernel/Units/Units_Unit.cxx diff --git a/src/Units/Units_Unit.hxx b/src/FoundationClasses/TKernel/Units/Units_Unit.hxx similarity index 100% rename from src/Units/Units_Unit.hxx rename to src/FoundationClasses/TKernel/Units/Units_Unit.hxx diff --git a/src/Units/Units_Unit.lxx b/src/FoundationClasses/TKernel/Units/Units_Unit.lxx similarity index 100% rename from src/Units/Units_Unit.lxx rename to src/FoundationClasses/TKernel/Units/Units_Unit.lxx diff --git a/src/Units/Units_UnitSentence.cxx b/src/FoundationClasses/TKernel/Units/Units_UnitSentence.cxx similarity index 100% rename from src/Units/Units_UnitSentence.cxx rename to src/FoundationClasses/TKernel/Units/Units_UnitSentence.cxx diff --git a/src/Units/Units_UnitSentence.hxx b/src/FoundationClasses/TKernel/Units/Units_UnitSentence.hxx similarity index 100% rename from src/Units/Units_UnitSentence.hxx rename to src/FoundationClasses/TKernel/Units/Units_UnitSentence.hxx diff --git a/src/Units/Units_UnitsDictionary.cxx b/src/FoundationClasses/TKernel/Units/Units_UnitsDictionary.cxx similarity index 100% rename from src/Units/Units_UnitsDictionary.cxx rename to src/FoundationClasses/TKernel/Units/Units_UnitsDictionary.cxx diff --git a/src/Units/Units_UnitsDictionary.hxx b/src/FoundationClasses/TKernel/Units/Units_UnitsDictionary.hxx similarity index 100% rename from src/Units/Units_UnitsDictionary.hxx rename to src/FoundationClasses/TKernel/Units/Units_UnitsDictionary.hxx diff --git a/src/Units/Units_UnitsDictionary.lxx b/src/FoundationClasses/TKernel/Units/Units_UnitsDictionary.lxx similarity index 100% rename from src/Units/Units_UnitsDictionary.lxx rename to src/FoundationClasses/TKernel/Units/Units_UnitsDictionary.lxx diff --git a/src/Units/Units_UnitsLexicon.cxx b/src/FoundationClasses/TKernel/Units/Units_UnitsLexicon.cxx similarity index 100% rename from src/Units/Units_UnitsLexicon.cxx rename to src/FoundationClasses/TKernel/Units/Units_UnitsLexicon.cxx diff --git a/src/Units/Units_UnitsLexicon.hxx b/src/FoundationClasses/TKernel/Units/Units_UnitsLexicon.hxx similarity index 100% rename from src/Units/Units_UnitsLexicon.hxx rename to src/FoundationClasses/TKernel/Units/Units_UnitsLexicon.hxx diff --git a/src/Units/Units_UnitsLexicon.lxx b/src/FoundationClasses/TKernel/Units/Units_UnitsLexicon.lxx similarity index 100% rename from src/Units/Units_UnitsLexicon.lxx rename to src/FoundationClasses/TKernel/Units/Units_UnitsLexicon.lxx diff --git a/src/Units/Units_UnitsSequence.hxx b/src/FoundationClasses/TKernel/Units/Units_UnitsSequence.hxx similarity index 100% rename from src/Units/Units_UnitsSequence.hxx rename to src/FoundationClasses/TKernel/Units/Units_UnitsSequence.hxx diff --git a/src/Units/Units_UnitsSystem.cxx b/src/FoundationClasses/TKernel/Units/Units_UnitsSystem.cxx similarity index 100% rename from src/Units/Units_UnitsSystem.cxx rename to src/FoundationClasses/TKernel/Units/Units_UnitsSystem.cxx diff --git a/src/Units/Units_UnitsSystem.hxx b/src/FoundationClasses/TKernel/Units/Units_UnitsSystem.hxx similarity index 100% rename from src/Units/Units_UnitsSystem.hxx rename to src/FoundationClasses/TKernel/Units/Units_UnitsSystem.hxx diff --git a/src/Units/Units_UtsSequence.hxx b/src/FoundationClasses/TKernel/Units/Units_UtsSequence.hxx similarity index 100% rename from src/Units/Units_UtsSequence.hxx rename to src/FoundationClasses/TKernel/Units/Units_UtsSequence.hxx diff --git a/src/FoundationClasses/TKernel/UnitsAPI/FILES.cmake b/src/FoundationClasses/TKernel/UnitsAPI/FILES.cmake new file mode 100644 index 0000000000..10244a2133 --- /dev/null +++ b/src/FoundationClasses/TKernel/UnitsAPI/FILES.cmake @@ -0,0 +1,9 @@ +# Source files for UnitsAPI package +set(OCCT_UnitsAPI_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_UnitsAPI_FILES + UnitsAPI.cxx + UnitsAPI.hxx + UnitsAPI_SystemUnits.hxx + UnitsAPI_Units_dat.pxx +) diff --git a/src/UnitsAPI/UnitsAPI.cxx b/src/FoundationClasses/TKernel/UnitsAPI/UnitsAPI.cxx similarity index 100% rename from src/UnitsAPI/UnitsAPI.cxx rename to src/FoundationClasses/TKernel/UnitsAPI/UnitsAPI.cxx diff --git a/src/UnitsAPI/UnitsAPI.hxx b/src/FoundationClasses/TKernel/UnitsAPI/UnitsAPI.hxx similarity index 100% rename from src/UnitsAPI/UnitsAPI.hxx rename to src/FoundationClasses/TKernel/UnitsAPI/UnitsAPI.hxx diff --git a/src/UnitsAPI/UnitsAPI_SystemUnits.hxx b/src/FoundationClasses/TKernel/UnitsAPI/UnitsAPI_SystemUnits.hxx similarity index 100% rename from src/UnitsAPI/UnitsAPI_SystemUnits.hxx rename to src/FoundationClasses/TKernel/UnitsAPI/UnitsAPI_SystemUnits.hxx diff --git a/src/UnitsAPI/UnitsAPI_Units_dat.pxx b/src/FoundationClasses/TKernel/UnitsAPI/UnitsAPI_Units_dat.pxx similarity index 100% rename from src/UnitsAPI/UnitsAPI_Units_dat.pxx rename to src/FoundationClasses/TKernel/UnitsAPI/UnitsAPI_Units_dat.pxx diff --git a/src/FoundationClasses/TKernel/UnitsMethods/FILES.cmake b/src/FoundationClasses/TKernel/UnitsMethods/FILES.cmake new file mode 100644 index 0000000000..71c9f08666 --- /dev/null +++ b/src/FoundationClasses/TKernel/UnitsMethods/FILES.cmake @@ -0,0 +1,8 @@ +# Source files for UnitsMethods package +set(OCCT_UnitsMethods_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_UnitsMethods_FILES + UnitsMethods.cxx + UnitsMethods.hxx + UnitsMethods_LengthUnit.hxx +) diff --git a/src/UnitsMethods/UnitsMethods.cxx b/src/FoundationClasses/TKernel/UnitsMethods/UnitsMethods.cxx similarity index 100% rename from src/UnitsMethods/UnitsMethods.cxx rename to src/FoundationClasses/TKernel/UnitsMethods/UnitsMethods.cxx diff --git a/src/UnitsMethods/UnitsMethods.hxx b/src/FoundationClasses/TKernel/UnitsMethods/UnitsMethods.hxx similarity index 100% rename from src/UnitsMethods/UnitsMethods.hxx rename to src/FoundationClasses/TKernel/UnitsMethods/UnitsMethods.hxx diff --git a/src/UnitsMethods/UnitsMethods_LengthUnit.hxx b/src/FoundationClasses/TKernel/UnitsMethods/UnitsMethods_LengthUnit.hxx similarity index 100% rename from src/UnitsMethods/UnitsMethods_LengthUnit.hxx rename to src/FoundationClasses/TKernel/UnitsMethods/UnitsMethods_LengthUnit.hxx diff --git a/src/FoundationClasses/TOOLKITS.cmake b/src/FoundationClasses/TOOLKITS.cmake new file mode 100644 index 0000000000..f5e6ed1aca --- /dev/null +++ b/src/FoundationClasses/TOOLKITS.cmake @@ -0,0 +1,5 @@ +# Auto-generated list of toolkits for FoundationClasses module +set(OCCT_FoundationClasses_LIST_OF_TOOLKITS + TKernel + TKMath +) diff --git a/src/GC/FILES b/src/GC/FILES deleted file mode 100644 index ef4d71c960..0000000000 --- a/src/GC/FILES +++ /dev/null @@ -1,38 +0,0 @@ -GC_MakeArcOfCircle.cxx -GC_MakeArcOfCircle.hxx -GC_MakeArcOfEllipse.cxx -GC_MakeArcOfEllipse.hxx -GC_MakeArcOfHyperbola.cxx -GC_MakeArcOfHyperbola.hxx -GC_MakeArcOfParabola.cxx -GC_MakeArcOfParabola.hxx -GC_MakeCircle.cxx -GC_MakeCircle.hxx -GC_MakeConicalSurface.cxx -GC_MakeConicalSurface.hxx -GC_MakeCylindricalSurface.cxx -GC_MakeCylindricalSurface.hxx -GC_MakeEllipse.cxx -GC_MakeEllipse.hxx -GC_MakeHyperbola.cxx -GC_MakeHyperbola.hxx -GC_MakeLine.cxx -GC_MakeLine.hxx -GC_MakeMirror.cxx -GC_MakeMirror.hxx -GC_MakePlane.cxx -GC_MakePlane.hxx -GC_MakeRotation.cxx -GC_MakeRotation.hxx -GC_MakeScale.cxx -GC_MakeScale.hxx -GC_MakeSegment.cxx -GC_MakeSegment.hxx -GC_MakeTranslation.cxx -GC_MakeTranslation.hxx -GC_MakeTrimmedCone.cxx -GC_MakeTrimmedCone.hxx -GC_MakeTrimmedCylinder.cxx -GC_MakeTrimmedCylinder.hxx -GC_Root.hxx -GC_Root.lxx diff --git a/src/GCE2d/FILES b/src/GCE2d/FILES deleted file mode 100644 index be3f091996..0000000000 --- a/src/GCE2d/FILES +++ /dev/null @@ -1,30 +0,0 @@ -GCE2d_MakeArcOfCircle.cxx -GCE2d_MakeArcOfCircle.hxx -GCE2d_MakeArcOfEllipse.cxx -GCE2d_MakeArcOfEllipse.hxx -GCE2d_MakeArcOfHyperbola.cxx -GCE2d_MakeArcOfHyperbola.hxx -GCE2d_MakeArcOfParabola.cxx -GCE2d_MakeArcOfParabola.hxx -GCE2d_MakeCircle.cxx -GCE2d_MakeCircle.hxx -GCE2d_MakeEllipse.cxx -GCE2d_MakeEllipse.hxx -GCE2d_MakeHyperbola.cxx -GCE2d_MakeHyperbola.hxx -GCE2d_MakeLine.cxx -GCE2d_MakeLine.hxx -GCE2d_MakeMirror.cxx -GCE2d_MakeMirror.hxx -GCE2d_MakeParabola.cxx -GCE2d_MakeParabola.hxx -GCE2d_MakeRotation.cxx -GCE2d_MakeRotation.hxx -GCE2d_MakeScale.cxx -GCE2d_MakeScale.hxx -GCE2d_MakeSegment.cxx -GCE2d_MakeSegment.hxx -GCE2d_MakeTranslation.cxx -GCE2d_MakeTranslation.hxx -GCE2d_Root.hxx -GCE2d_Root.lxx diff --git a/src/GCPnts/FILES b/src/GCPnts/FILES deleted file mode 100755 index 8f98e2faeb..0000000000 --- a/src/GCPnts/FILES +++ /dev/null @@ -1,19 +0,0 @@ -GCPnts_AbscissaPoint.cxx -GCPnts_AbscissaPoint.hxx -GCPnts_AbscissaType.hxx -GCPnts_DeflectionType.hxx -GCPnts_QuasiUniformAbscissa.cxx -GCPnts_QuasiUniformAbscissa.hxx -GCPnts_QuasiUniformDeflection.cxx -GCPnts_QuasiUniformDeflection.hxx -GCPnts_TangentialDeflection.cxx -GCPnts_TangentialDeflection.hxx -GCPnts_TCurveTypes.hxx -GCPnts_UniformAbscissa.cxx -GCPnts_UniformAbscissa.hxx -GCPnts_UniformDeflection.cxx -GCPnts_UniformDeflection.hxx -GCPnts_DistFunction.hxx -GCPnts_DistFunction.cxx -GCPnts_DistFunction2d.hxx -GCPnts_DistFunction2d.cxx diff --git a/src/GProp/FILES b/src/GProp/FILES deleted file mode 100644 index 845f390e9b..0000000000 --- a/src/GProp/FILES +++ /dev/null @@ -1,19 +0,0 @@ -GProp.cxx -GProp.hxx -GProp_CelGProps.cxx -GProp_CelGProps.hxx -GProp_EquaType.hxx -GProp_GProps.cxx -GProp_GProps.hxx -GProp_PEquation.cxx -GProp_PEquation.hxx -GProp_PGProps.cxx -GProp_PGProps.hxx -GProp_PrincipalProps.cxx -GProp_PrincipalProps.hxx -GProp_SelGProps.cxx -GProp_SelGProps.hxx -GProp_UndefinedAxis.hxx -GProp_ValueType.hxx -GProp_VelGProps.cxx -GProp_VelGProps.hxx diff --git a/src/GccAna/FILES b/src/GccAna/FILES deleted file mode 100755 index 12cc5187e3..0000000000 --- a/src/GccAna/FILES +++ /dev/null @@ -1,61 +0,0 @@ -GccAna_Circ2d2TanOn.cxx -GccAna_Circ2d2TanOn.hxx -GccAna_Circ2d2TanOn_1.cxx -GccAna_Circ2d2TanOn_2.cxx -GccAna_Circ2d2TanOn_3.cxx -GccAna_Circ2d2TanOn_4.cxx -GccAna_Circ2d2TanOn_5.cxx -GccAna_Circ2d2TanOn_6.cxx -GccAna_Circ2d2TanOn_7.cxx -GccAna_Circ2d2TanOn_8.cxx -GccAna_Circ2d2TanOn_9.cxx -GccAna_Circ2d2TanOn_10.cxx -GccAna_Circ2d2TanOn_11.cxx -GccAna_Circ2d2TanRad.cxx -GccAna_Circ2d2TanRad.hxx -GccAna_Circ2d2TanRad_1.cxx -GccAna_Circ2d2TanRad_2.cxx -GccAna_Circ2d2TanRad_3.cxx -GccAna_Circ2d2TanRad_4.cxx -GccAna_Circ2d2TanRad_5.cxx -GccAna_Circ2d3Tan.cxx -GccAna_Circ2d3Tan.hxx -GccAna_Circ2d3Tan_1.cxx -GccAna_Circ2d3Tan_2.cxx -GccAna_Circ2d3Tan_3.cxx -GccAna_Circ2d3Tan_4.cxx -GccAna_Circ2d3Tan_5.cxx -GccAna_Circ2d3Tan_6.cxx -GccAna_Circ2d3Tan_7.cxx -GccAna_Circ2d3Tan_8.cxx -GccAna_Circ2d3Tan_9.cxx -GccAna_Circ2dBisec.cxx -GccAna_Circ2dBisec.hxx -GccAna_Circ2dTanCen.cxx -GccAna_Circ2dTanCen.hxx -GccAna_Circ2dTanOnRad.cxx -GccAna_Circ2dTanOnRad.hxx -GccAna_Circ2dTanOnRad_1.cxx -GccAna_Circ2dTanOnRad_2.cxx -GccAna_Circ2dTanOnRad_3.cxx -GccAna_Circ2dTanOnRad_4.cxx -GccAna_Circ2dTanOnRad_5.cxx -GccAna_CircLin2dBisec.cxx -GccAna_CircLin2dBisec.hxx -GccAna_CircPnt2dBisec.cxx -GccAna_CircPnt2dBisec.hxx -GccAna_Lin2d2Tan.cxx -GccAna_Lin2d2Tan.hxx -GccAna_Lin2dBisec.cxx -GccAna_Lin2dBisec.hxx -GccAna_Lin2dTanObl.cxx -GccAna_Lin2dTanObl.hxx -GccAna_Lin2dTanPar.cxx -GccAna_Lin2dTanPar.hxx -GccAna_Lin2dTanPer.cxx -GccAna_Lin2dTanPer.hxx -GccAna_LinPnt2dBisec.cxx -GccAna_LinPnt2dBisec.hxx -GccAna_NoSolution.hxx -GccAna_Pnt2dBisec.cxx -GccAna_Pnt2dBisec.hxx diff --git a/src/GccEnt/FILES b/src/GccEnt/FILES deleted file mode 100644 index c8a5df688a..0000000000 --- a/src/GccEnt/FILES +++ /dev/null @@ -1,9 +0,0 @@ -GccEnt.cxx -GccEnt.hxx -GccEnt_Array1OfPosition.hxx -GccEnt_BadQualifier.hxx -GccEnt_Position.hxx -GccEnt_QualifiedCirc.cxx -GccEnt_QualifiedCirc.hxx -GccEnt_QualifiedLin.cxx -GccEnt_QualifiedLin.hxx diff --git a/src/GccInt/FILES b/src/GccInt/FILES deleted file mode 100644 index a1c1910993..0000000000 --- a/src/GccInt/FILES +++ /dev/null @@ -1,15 +0,0 @@ -GccInt_BCirc.cxx -GccInt_BCirc.hxx -GccInt_BElips.cxx -GccInt_BElips.hxx -GccInt_BHyper.cxx -GccInt_BHyper.hxx -GccInt_Bisec.cxx -GccInt_Bisec.hxx -GccInt_BLine.cxx -GccInt_BLine.hxx -GccInt_BParab.cxx -GccInt_BParab.hxx -GccInt_BPoint.cxx -GccInt_BPoint.hxx -GccInt_IType.hxx diff --git a/src/Geom/FILES b/src/Geom/FILES deleted file mode 100755 index 7beae25805..0000000000 --- a/src/Geom/FILES +++ /dev/null @@ -1,82 +0,0 @@ -Geom_Axis1Placement.cxx -Geom_Axis1Placement.hxx -Geom_Axis2Placement.cxx -Geom_Axis2Placement.hxx -Geom_AxisPlacement.cxx -Geom_AxisPlacement.hxx -Geom_BezierCurve.cxx -Geom_BezierCurve.hxx -Geom_BezierSurface.cxx -Geom_BezierSurface.hxx -Geom_BoundedCurve.cxx -Geom_BoundedCurve.hxx -Geom_BoundedSurface.cxx -Geom_BoundedSurface.hxx -Geom_BSplineCurve.cxx -Geom_BSplineCurve.hxx -Geom_BSplineCurve_1.cxx -Geom_BSplineSurface.cxx -Geom_BSplineSurface.hxx -Geom_BSplineSurface_1.cxx -Geom_CartesianPoint.cxx -Geom_CartesianPoint.hxx -Geom_Circle.cxx -Geom_Circle.hxx -Geom_Conic.cxx -Geom_Conic.hxx -Geom_ConicalSurface.cxx -Geom_ConicalSurface.hxx -Geom_Curve.cxx -Geom_Curve.hxx -Geom_CylindricalSurface.cxx -Geom_CylindricalSurface.hxx -Geom_Direction.cxx -Geom_Direction.hxx -Geom_ElementarySurface.cxx -Geom_ElementarySurface.hxx -Geom_Ellipse.cxx -Geom_Ellipse.hxx -Geom_Geometry.cxx -Geom_Geometry.hxx -Geom_HSequenceOfBSplineSurface.hxx -Geom_Hyperbola.cxx -Geom_Hyperbola.hxx -Geom_Line.cxx -Geom_Line.hxx -Geom_OffsetCurve.cxx -Geom_OffsetCurve.hxx -Geom_OffsetSurface.cxx -Geom_OffsetSurface.hxx -Geom_OsculatingSurface.cxx -Geom_OsculatingSurface.hxx -Geom_Parabola.cxx -Geom_Parabola.hxx -Geom_Plane.cxx -Geom_Plane.hxx -Geom_Point.cxx -Geom_Point.hxx -Geom_RectangularTrimmedSurface.cxx -Geom_RectangularTrimmedSurface.hxx -Geom_SequenceOfBSplineSurface.hxx -Geom_SphericalSurface.cxx -Geom_SphericalSurface.hxx -Geom_Surface.cxx -Geom_Surface.hxx -Geom_SurfaceOfLinearExtrusion.cxx -Geom_SurfaceOfLinearExtrusion.hxx -Geom_SurfaceOfRevolution.cxx -Geom_SurfaceOfRevolution.hxx -Geom_SweptSurface.cxx -Geom_SweptSurface.hxx -Geom_ToroidalSurface.cxx -Geom_ToroidalSurface.hxx -Geom_Transformation.cxx -Geom_Transformation.hxx -Geom_TrimmedCurve.cxx -Geom_TrimmedCurve.hxx -Geom_UndefinedDerivative.hxx -Geom_UndefinedValue.hxx -Geom_Vector.cxx -Geom_Vector.hxx -Geom_VectorWithMagnitude.cxx -Geom_VectorWithMagnitude.hxx diff --git a/src/Geom2d/FILES b/src/Geom2d/FILES deleted file mode 100755 index aa16c21410..0000000000 --- a/src/Geom2d/FILES +++ /dev/null @@ -1,43 +0,0 @@ -Geom2d_AxisPlacement.cxx -Geom2d_AxisPlacement.hxx -Geom2d_BezierCurve.cxx -Geom2d_BezierCurve.hxx -Geom2d_BoundedCurve.cxx -Geom2d_BoundedCurve.hxx -Geom2d_BSplineCurve.cxx -Geom2d_BSplineCurve.hxx -Geom2d_BSplineCurve_1.cxx -Geom2d_CartesianPoint.cxx -Geom2d_CartesianPoint.hxx -Geom2d_Circle.cxx -Geom2d_Circle.hxx -Geom2d_Conic.cxx -Geom2d_Conic.hxx -Geom2d_Curve.cxx -Geom2d_Curve.hxx -Geom2d_Direction.cxx -Geom2d_Direction.hxx -Geom2d_Ellipse.cxx -Geom2d_Ellipse.hxx -Geom2d_Geometry.cxx -Geom2d_Geometry.hxx -Geom2d_Hyperbola.cxx -Geom2d_Hyperbola.hxx -Geom2d_Line.cxx -Geom2d_Line.hxx -Geom2d_OffsetCurve.cxx -Geom2d_OffsetCurve.hxx -Geom2d_Parabola.cxx -Geom2d_Parabola.hxx -Geom2d_Point.cxx -Geom2d_Point.hxx -Geom2d_Transformation.cxx -Geom2d_Transformation.hxx -Geom2d_TrimmedCurve.cxx -Geom2d_TrimmedCurve.hxx -Geom2d_UndefinedDerivative.hxx -Geom2d_UndefinedValue.hxx -Geom2d_Vector.cxx -Geom2d_Vector.hxx -Geom2d_VectorWithMagnitude.cxx -Geom2d_VectorWithMagnitude.hxx diff --git a/src/Geom2dAPI/FILES b/src/Geom2dAPI/FILES deleted file mode 100644 index 7e27f84c24..0000000000 --- a/src/Geom2dAPI/FILES +++ /dev/null @@ -1,13 +0,0 @@ -Geom2dAPI_ExtremaCurveCurve.cxx -Geom2dAPI_ExtremaCurveCurve.hxx -Geom2dAPI_ExtremaCurveCurve.lxx -Geom2dAPI_InterCurveCurve.cxx -Geom2dAPI_InterCurveCurve.hxx -Geom2dAPI_InterCurveCurve.lxx -Geom2dAPI_Interpolate.cxx -Geom2dAPI_Interpolate.hxx -Geom2dAPI_PointsToBSpline.cxx -Geom2dAPI_PointsToBSpline.hxx -Geom2dAPI_ProjectPointOnCurve.cxx -Geom2dAPI_ProjectPointOnCurve.hxx -Geom2dAPI_ProjectPointOnCurve.lxx diff --git a/src/Geom2dAdaptor/FILES b/src/Geom2dAdaptor/FILES deleted file mode 100644 index 6cfc9c4674..0000000000 --- a/src/Geom2dAdaptor/FILES +++ /dev/null @@ -1,4 +0,0 @@ -Geom2dAdaptor.cxx -Geom2dAdaptor.hxx -Geom2dAdaptor_Curve.cxx -Geom2dAdaptor_Curve.hxx diff --git a/src/Geom2dConvert/FILES b/src/Geom2dConvert/FILES deleted file mode 100644 index 29fc777627..0000000000 --- a/src/Geom2dConvert/FILES +++ /dev/null @@ -1,15 +0,0 @@ -Geom2dConvert.cxx -Geom2dConvert.hxx -Geom2dConvert_ApproxArcsSegments.cxx -Geom2dConvert_ApproxArcsSegments.hxx -Geom2dConvert_ApproxCurve.cxx -Geom2dConvert_ApproxCurve.hxx -Geom2dConvert_BSplineCurveKnotSplitting.cxx -Geom2dConvert_BSplineCurveKnotSplitting.hxx -Geom2dConvert_BSplineCurveToBezierCurve.cxx -Geom2dConvert_BSplineCurveToBezierCurve.hxx -Geom2dConvert_CompCurveToBSplineCurve.cxx -Geom2dConvert_CompCurveToBSplineCurve.hxx -Geom2dConvert_PPoint.cxx -Geom2dConvert_PPoint.hxx -Geom2dConvert_SequenceOfPPoint.hxx diff --git a/src/Geom2dEvaluator/FILES b/src/Geom2dEvaluator/FILES deleted file mode 100644 index c1a4577ea0..0000000000 --- a/src/Geom2dEvaluator/FILES +++ /dev/null @@ -1,5 +0,0 @@ -Geom2dEvaluator_Curve.hxx -Geom2dEvaluator_OffsetCurve.cxx -Geom2dEvaluator_OffsetCurve.hxx -Geom2dEvaluator.hxx -Geom2dEvaluator.cxx \ No newline at end of file diff --git a/src/Geom2dGcc/FILES b/src/Geom2dGcc/FILES deleted file mode 100644 index 6462c74c4f..0000000000 --- a/src/Geom2dGcc/FILES +++ /dev/null @@ -1,54 +0,0 @@ -Geom2dGcc.cxx -Geom2dGcc.hxx -Geom2dGcc_Circ2d2TanOn.cxx -Geom2dGcc_Circ2d2TanOn.hxx -Geom2dGcc_Circ2d2TanOnGeo.cxx -Geom2dGcc_Circ2d2TanOnGeo.hxx -Geom2dGcc_Circ2d2TanOnIter.cxx -Geom2dGcc_Circ2d2TanOnIter.hxx -Geom2dGcc_Circ2d2TanRad.cxx -Geom2dGcc_Circ2d2TanRad.hxx -Geom2dGcc_Circ2d2TanRadGeo.cxx -Geom2dGcc_Circ2d2TanRadGeo.hxx -Geom2dGcc_Circ2d3Tan.cxx -Geom2dGcc_Circ2d3Tan.hxx -Geom2dGcc_Circ2d3TanIter.cxx -Geom2dGcc_Circ2d3TanIter.hxx -Geom2dGcc_Circ2dTanCen.cxx -Geom2dGcc_Circ2dTanCen.hxx -Geom2dGcc_Circ2dTanCenGeo.cxx -Geom2dGcc_Circ2dTanCenGeo.hxx -Geom2dGcc_Circ2dTanOnRad.cxx -Geom2dGcc_Circ2dTanOnRad.hxx -Geom2dGcc_Circ2dTanOnRadGeo.cxx -Geom2dGcc_Circ2dTanOnRadGeo.hxx -Geom2dGcc_CurveTool.cxx -Geom2dGcc_CurveTool.hxx -Geom2dGcc_FunctionTanCirCu.cxx -Geom2dGcc_FunctionTanCirCu.hxx -Geom2dGcc_FunctionTanCuCu.cxx -Geom2dGcc_FunctionTanCuCu.hxx -Geom2dGcc_FunctionTanCuCuCu.cxx -Geom2dGcc_FunctionTanCuCuCu.hxx -Geom2dGcc_FunctionTanCuCuOnCu.cxx -Geom2dGcc_FunctionTanCuCuOnCu.hxx -Geom2dGcc_FunctionTanCuPnt.cxx -Geom2dGcc_FunctionTanCuPnt.hxx -Geom2dGcc_FunctionTanObl.cxx -Geom2dGcc_FunctionTanObl.hxx -Geom2dGcc_IsParallel.hxx -Geom2dGcc_Lin2d2Tan.cxx -Geom2dGcc_Lin2d2Tan.hxx -Geom2dGcc_Lin2d2TanIter.cxx -Geom2dGcc_Lin2d2TanIter.hxx -Geom2dGcc_Lin2dTanObl.cxx -Geom2dGcc_Lin2dTanObl.hxx -Geom2dGcc_Lin2dTanOblIter.cxx -Geom2dGcc_Lin2dTanOblIter.hxx -Geom2dGcc_QCurve.cxx -Geom2dGcc_QCurve.hxx -Geom2dGcc_QualifiedCurve.cxx -Geom2dGcc_QualifiedCurve.hxx -Geom2dGcc_Type1.hxx -Geom2dGcc_Type2.hxx -Geom2dGcc_Type3.hxx diff --git a/src/Geom2dHatch/FILES b/src/Geom2dHatch/FILES deleted file mode 100644 index 3d70f71571..0000000000 --- a/src/Geom2dHatch/FILES +++ /dev/null @@ -1,20 +0,0 @@ -Geom2dHatch_Classifier.hxx -Geom2dHatch_Classifier_0.cxx -Geom2dHatch_DataMapIteratorOfHatchings.hxx -Geom2dHatch_DataMapIteratorOfMapOfElements.hxx -Geom2dHatch_Element.cxx -Geom2dHatch_Element.hxx -Geom2dHatch_Elements.cxx -Geom2dHatch_Elements.hxx -Geom2dHatch_FClass2dOfClassifier.hxx -Geom2dHatch_FClass2dOfClassifier_0.cxx -Geom2dHatch_Hatcher.cxx -Geom2dHatch_Hatcher.hxx -Geom2dHatch_Hatcher.lxx -Geom2dHatch_Hatching.cxx -Geom2dHatch_Hatching.hxx -Geom2dHatch_Hatchings.hxx -Geom2dHatch_Intersector.cxx -Geom2dHatch_Intersector.hxx -Geom2dHatch_Intersector.lxx -Geom2dHatch_MapOfElements.hxx diff --git a/src/Geom2dInt/FILES b/src/Geom2dInt/FILES deleted file mode 100644 index a9fa7b14ff..0000000000 --- a/src/Geom2dInt/FILES +++ /dev/null @@ -1,29 +0,0 @@ -Geom2dInt_ExactIntersectionPointOfTheIntPCurvePCurveOfGInter.hxx -Geom2dInt_ExactIntersectionPointOfTheIntPCurvePCurveOfGInter_0.cxx -Geom2dInt_Geom2dCurveTool.cxx -Geom2dInt_Geom2dCurveTool.hxx -Geom2dInt_Geom2dCurveTool.lxx -Geom2dInt_GInter.hxx -Geom2dInt_GInter_0.cxx -Geom2dInt_IntConicCurveOfGInter.hxx -Geom2dInt_IntConicCurveOfGInter_0.cxx -Geom2dInt_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfGInter.hxx -Geom2dInt_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfGInter_0.cxx -Geom2dInt_PCLocFOfTheLocateExtPCOfTheProjPCurOfGInter.hxx -Geom2dInt_PCLocFOfTheLocateExtPCOfTheProjPCurOfGInter_0.cxx -Geom2dInt_TheCurveLocatorOfTheProjPCurOfGInter.hxx -Geom2dInt_TheCurveLocatorOfTheProjPCurOfGInter_0.cxx -Geom2dInt_TheDistBetweenPCurvesOfTheIntPCurvePCurveOfGInter.hxx -Geom2dInt_TheDistBetweenPCurvesOfTheIntPCurvePCurveOfGInter_0.cxx -Geom2dInt_TheIntConicCurveOfGInter.hxx -Geom2dInt_TheIntConicCurveOfGInter_0.cxx -Geom2dInt_TheIntersectorOfTheIntConicCurveOfGInter.hxx -Geom2dInt_TheIntersectorOfTheIntConicCurveOfGInter_0.cxx -Geom2dInt_TheIntPCurvePCurveOfGInter.hxx -Geom2dInt_TheIntPCurvePCurveOfGInter_0.cxx -Geom2dInt_TheLocateExtPCOfTheProjPCurOfGInter.hxx -Geom2dInt_TheLocateExtPCOfTheProjPCurOfGInter_0.cxx -Geom2dInt_ThePolygon2dOfTheIntPCurvePCurveOfGInter.hxx -Geom2dInt_ThePolygon2dOfTheIntPCurvePCurveOfGInter_0.cxx -Geom2dInt_TheProjPCurOfGInter.hxx -Geom2dInt_TheProjPCurOfGInter_0.cxx diff --git a/src/Geom2dLProp/FILES b/src/Geom2dLProp/FILES deleted file mode 100644 index 96573af629..0000000000 --- a/src/Geom2dLProp/FILES +++ /dev/null @@ -1,12 +0,0 @@ -Geom2dLProp_CLProps2d.hxx -Geom2dLProp_CLProps2d_0.cxx -Geom2dLProp_CurAndInf2d.cxx -Geom2dLProp_CurAndInf2d.hxx -Geom2dLProp_Curve2dTool.cxx -Geom2dLProp_Curve2dTool.hxx -Geom2dLProp_FuncCurExt.cxx -Geom2dLProp_FuncCurExt.hxx -Geom2dLProp_FuncCurNul.cxx -Geom2dLProp_FuncCurNul.hxx -Geom2dLProp_NumericCurInf2d.cxx -Geom2dLProp_NumericCurInf2d.hxx diff --git a/src/Geom2dToIGES/FILES b/src/Geom2dToIGES/FILES deleted file mode 100644 index 7b551e9754..0000000000 --- a/src/Geom2dToIGES/FILES +++ /dev/null @@ -1,8 +0,0 @@ -Geom2dToIGES_Geom2dCurve.cxx -Geom2dToIGES_Geom2dCurve.hxx -Geom2dToIGES_Geom2dEntity.cxx -Geom2dToIGES_Geom2dEntity.hxx -Geom2dToIGES_Geom2dPoint.cxx -Geom2dToIGES_Geom2dPoint.hxx -Geom2dToIGES_Geom2dVector.cxx -Geom2dToIGES_Geom2dVector.hxx diff --git a/src/GeomAPI/FILES b/src/GeomAPI/FILES deleted file mode 100644 index f5b9a9be63..0000000000 --- a/src/GeomAPI/FILES +++ /dev/null @@ -1,27 +0,0 @@ -GeomAPI.cxx -GeomAPI.hxx -GeomAPI_ExtremaCurveCurve.cxx -GeomAPI_ExtremaCurveCurve.hxx -GeomAPI_ExtremaCurveCurve.lxx -GeomAPI_ExtremaCurveSurface.cxx -GeomAPI_ExtremaCurveSurface.hxx -GeomAPI_ExtremaCurveSurface.lxx -GeomAPI_ExtremaSurfaceSurface.cxx -GeomAPI_ExtremaSurfaceSurface.hxx -GeomAPI_ExtremaSurfaceSurface.lxx -GeomAPI_IntCS.cxx -GeomAPI_IntCS.hxx -GeomAPI_Interpolate.cxx -GeomAPI_Interpolate.hxx -GeomAPI_IntSS.hxx -GeomAPI_IntSS.lxx -GeomAPI_PointsToBSpline.cxx -GeomAPI_PointsToBSpline.hxx -GeomAPI_PointsToBSplineSurface.cxx -GeomAPI_PointsToBSplineSurface.hxx -GeomAPI_ProjectPointOnCurve.cxx -GeomAPI_ProjectPointOnCurve.hxx -GeomAPI_ProjectPointOnCurve.lxx -GeomAPI_ProjectPointOnSurf.cxx -GeomAPI_ProjectPointOnSurf.hxx -GeomAPI_ProjectPointOnSurf.lxx diff --git a/src/GeomAbs/FILES b/src/GeomAbs/FILES deleted file mode 100644 index b4b3a8baa3..0000000000 --- a/src/GeomAbs/FILES +++ /dev/null @@ -1,6 +0,0 @@ -GeomAbs_BSplKnotDistribution.hxx -GeomAbs_CurveType.hxx -GeomAbs_IsoType.hxx -GeomAbs_JoinType.hxx -GeomAbs_Shape.hxx -GeomAbs_SurfaceType.hxx diff --git a/src/GeomAdaptor/FILES b/src/GeomAdaptor/FILES deleted file mode 100644 index a66a1411ff..0000000000 --- a/src/GeomAdaptor/FILES +++ /dev/null @@ -1,10 +0,0 @@ -GeomAdaptor.cxx -GeomAdaptor.hxx -GeomAdaptor_Curve.cxx -GeomAdaptor_Curve.hxx -GeomAdaptor_Surface.cxx -GeomAdaptor_Surface.hxx -GeomAdaptor_SurfaceOfLinearExtrusion.cxx -GeomAdaptor_SurfaceOfLinearExtrusion.hxx -GeomAdaptor_SurfaceOfRevolution.cxx -GeomAdaptor_SurfaceOfRevolution.hxx diff --git a/src/GeomConvert/FILES b/src/GeomConvert/FILES deleted file mode 100755 index 3589aa1b11..0000000000 --- a/src/GeomConvert/FILES +++ /dev/null @@ -1,33 +0,0 @@ -GeomConvert.cxx -GeomConvert.hxx -GeomConvert_1.cxx -GeomConvert_ApproxCurve.cxx -GeomConvert_ApproxCurve.hxx -GeomConvert_ApproxSurface.cxx -GeomConvert_ApproxSurface.hxx -GeomConvert_BSplineCurveKnotSplitting.cxx -GeomConvert_BSplineCurveKnotSplitting.hxx -GeomConvert_BSplineCurveToBezierCurve.cxx -GeomConvert_BSplineCurveToBezierCurve.hxx -GeomConvert_BSplineSurfaceKnotSplitting.cxx -GeomConvert_BSplineSurfaceKnotSplitting.hxx -GeomConvert_BSplineSurfaceToBezierSurface.cxx -GeomConvert_BSplineSurfaceToBezierSurface.hxx -GeomConvert_CompBezierSurfacesToBSplineSurface.cxx -GeomConvert_CompBezierSurfacesToBSplineSurface.hxx -GeomConvert_CompBezierSurfacesToBSplineSurface.lxx -GeomConvert_CompCurveToBSplineCurve.cxx -GeomConvert_CompCurveToBSplineCurve.hxx -GeomConvert_Units.cxx -GeomConvert_Units.hxx -GeomConvert_CurveToAnaCurve.cxx -GeomConvert_CurveToAnaCurve.hxx -GeomConvert_SurfToAnaSurf.cxx -GeomConvert_SurfToAnaSurf.hxx -GeomConvert_ConvType.hxx -GeomConvert_FuncSphereLSDist.cxx -GeomConvert_FuncSphereLSDist.hxx -GeomConvert_FuncCylinderLSDist.cxx -GeomConvert_FuncCylinderLSDist.hxx -GeomConvert_FuncConeLSDist.cxx -GeomConvert_FuncConeLSDist.hxx diff --git a/src/GeomEvaluator/FILES b/src/GeomEvaluator/FILES deleted file mode 100644 index a042bd5265..0000000000 --- a/src/GeomEvaluator/FILES +++ /dev/null @@ -1,10 +0,0 @@ -GeomEvaluator_Curve.hxx -GeomEvaluator_OffsetCurve.cxx -GeomEvaluator_OffsetCurve.hxx -GeomEvaluator_OffsetSurface.cxx -GeomEvaluator_OffsetSurface.hxx -GeomEvaluator_Surface.hxx -GeomEvaluator_SurfaceOfExtrusion.cxx -GeomEvaluator_SurfaceOfExtrusion.hxx -GeomEvaluator_SurfaceOfRevolution.cxx -GeomEvaluator_SurfaceOfRevolution.hxx diff --git a/src/GeomFill/FILES b/src/GeomFill/FILES deleted file mode 100644 index 8f4546302b..0000000000 --- a/src/GeomFill/FILES +++ /dev/null @@ -1,129 +0,0 @@ -GeomFill.cxx -GeomFill.hxx -GeomFill_ApproxStyle.hxx -GeomFill_AppSurf.hxx -GeomFill_AppSurf_0.cxx -GeomFill_AppSweep.hxx -GeomFill_AppSweep_0.cxx -GeomFill_Array1OfLocationLaw.hxx -GeomFill_Array1OfSectionLaw.hxx -GeomFill_BezierCurves.cxx -GeomFill_BezierCurves.hxx -GeomFill_BezierCurves.lxx -GeomFill_Boundary.cxx -GeomFill_Boundary.hxx -GeomFill_BoundWithSurf.cxx -GeomFill_BoundWithSurf.hxx -GeomFill_BSplineCurves.cxx -GeomFill_BSplineCurves.hxx -GeomFill_BSplineCurves.lxx -GeomFill_CircularBlendFunc.cxx -GeomFill_CircularBlendFunc.hxx -GeomFill_ConstantBiNormal.cxx -GeomFill_ConstantBiNormal.hxx -GeomFill_ConstrainedFilling.cxx -GeomFill_ConstrainedFilling.hxx -GeomFill_Coons.cxx -GeomFill_Coons.hxx -GeomFill_CoonsAlgPatch.cxx -GeomFill_CoonsAlgPatch.hxx -GeomFill_CornerState.cxx -GeomFill_CornerState.hxx -GeomFill_CorrectedFrenet.cxx -GeomFill_CorrectedFrenet.hxx -GeomFill_CurveAndTrihedron.cxx -GeomFill_CurveAndTrihedron.hxx -GeomFill_Curved.cxx -GeomFill_Curved.hxx -GeomFill_Darboux.cxx -GeomFill_Darboux.hxx -GeomFill_DegeneratedBound.cxx -GeomFill_DegeneratedBound.hxx -GeomFill_DiscreteTrihedron.cxx -GeomFill_DiscreteTrihedron.hxx -GeomFill_DraftTrihedron.cxx -GeomFill_DraftTrihedron.hxx -GeomFill_EvolvedSection.cxx -GeomFill_EvolvedSection.hxx -GeomFill_Filling.cxx -GeomFill_Filling.hxx -GeomFill_FillingStyle.hxx -GeomFill_Fixed.cxx -GeomFill_Fixed.hxx -GeomFill_Frenet.cxx -GeomFill_Frenet.hxx -GeomFill_FunctionDraft.cxx -GeomFill_FunctionDraft.hxx -GeomFill_FunctionGuide.cxx -GeomFill_FunctionGuide.hxx -GeomFill_Generator.cxx -GeomFill_Generator.hxx -GeomFill_Generator.lxx -GeomFill_GuideTrihedronAC.cxx -GeomFill_GuideTrihedronAC.hxx -GeomFill_GuideTrihedronPlan.cxx -GeomFill_GuideTrihedronPlan.hxx -GeomFill_HArray1OfLocationLaw.hxx -GeomFill_HArray1OfSectionLaw.hxx -GeomFill_HSequenceOfAx2.hxx -GeomFill_Line.cxx -GeomFill_Line.hxx -GeomFill_Line.lxx -GeomFill_LocationDraft.cxx -GeomFill_LocationDraft.hxx -GeomFill_LocationGuide.cxx -GeomFill_LocationGuide.hxx -GeomFill_LocationLaw.cxx -GeomFill_LocationLaw.hxx -GeomFill_LocFunction.cxx -GeomFill_LocFunction.hxx -GeomFill_NSections.cxx -GeomFill_NSections.hxx -GeomFill_Pipe.cxx -GeomFill_Pipe.hxx -GeomFill_Pipe.lxx -GeomFill_PipeError.hxx -GeomFill_PlanFunc.cxx -GeomFill_PlanFunc.hxx -GeomFill_PolynomialConvertor.cxx -GeomFill_PolynomialConvertor.hxx -GeomFill_Profiler.cxx -GeomFill_Profiler.hxx -GeomFill_Profiler.lxx -GeomFill_QuasiAngularConvertor.cxx -GeomFill_QuasiAngularConvertor.hxx -GeomFill_SectionGenerator.cxx -GeomFill_SectionGenerator.hxx -GeomFill_SectionLaw.cxx -GeomFill_SectionLaw.hxx -GeomFill_SectionPlacement.cxx -GeomFill_SectionPlacement.hxx -GeomFill_SequenceOfAx2.hxx -GeomFill_SequenceOfTrsf.hxx -GeomFill_SimpleBound.cxx -GeomFill_SimpleBound.hxx -GeomFill_SnglrFunc.cxx -GeomFill_SnglrFunc.hxx -GeomFill_Stretch.cxx -GeomFill_Stretch.hxx -GeomFill_Sweep.cxx -GeomFill_Sweep.hxx -GeomFill_SweepFunction.cxx -GeomFill_SweepFunction.hxx -GeomFill_SweepSectionGenerator.cxx -GeomFill_SweepSectionGenerator.hxx -GeomFill_SweepSectionGenerator.lxx -GeomFill_Tensor.cxx -GeomFill_Tensor.hxx -GeomFill_Tensor.lxx -GeomFill_TgtField.cxx -GeomFill_TgtField.hxx -GeomFill_TgtOnCoons.cxx -GeomFill_TgtOnCoons.hxx -GeomFill_Trihedron.hxx -GeomFill_TrihedronLaw.cxx -GeomFill_TrihedronLaw.hxx -GeomFill_TrihedronWithGuide.cxx -GeomFill_TrihedronWithGuide.hxx -GeomFill_UniformSection.cxx -GeomFill_UniformSection.hxx diff --git a/src/GeomInt/FILES b/src/GeomInt/FILES deleted file mode 100755 index 21f9b293d8..0000000000 --- a/src/GeomInt/FILES +++ /dev/null @@ -1,62 +0,0 @@ -GeomInt.cxx -GeomInt.hxx -GeomInt_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfWLApprox.hxx -GeomInt_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfWLApprox_0.cxx -GeomInt_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfWLApprox.hxx -GeomInt_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfWLApprox_0.cxx -GeomInt_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfWLApprox.hxx -GeomInt_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfWLApprox_0.cxx -GeomInt_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfWLApprox.hxx -GeomInt_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfWLApprox_0.cxx -GeomInt_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfWLApprox.hxx -GeomInt_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfWLApprox_0.cxx -GeomInt_IntSS.cxx -GeomInt_IntSS.hxx -GeomInt_IntSS.lxx -GeomInt_IntSS_1.cxx -GeomInt_LineConstructor.cxx -GeomInt_LineConstructor.hxx -GeomInt_LineConstructor.lxx -GeomInt_LineTool.cxx -GeomInt_LineTool.hxx -GeomInt_MyBSplGradientOfTheComputeLineOfWLApprox.hxx -GeomInt_MyBSplGradientOfTheComputeLineOfWLApprox_0.cxx -GeomInt_MyGradientbisOfTheComputeLineOfWLApprox.hxx -GeomInt_MyGradientbisOfTheComputeLineOfWLApprox_0.cxx -GeomInt_MyGradientOfTheComputeLineBezierOfWLApprox.hxx -GeomInt_MyGradientOfTheComputeLineBezierOfWLApprox_0.cxx -GeomInt_ParameterAndOrientation.cxx -GeomInt_ParameterAndOrientation.hxx -GeomInt_ParFunctionOfMyGradientbisOfTheComputeLineOfWLApprox.hxx -GeomInt_ParFunctionOfMyGradientbisOfTheComputeLineOfWLApprox_0.cxx -GeomInt_ParFunctionOfMyGradientOfTheComputeLineBezierOfWLApprox.hxx -GeomInt_ParFunctionOfMyGradientOfTheComputeLineBezierOfWLApprox_0.cxx -GeomInt_ParLeastSquareOfMyGradientbisOfTheComputeLineOfWLApprox.hxx -GeomInt_ParLeastSquareOfMyGradientbisOfTheComputeLineOfWLApprox_0.cxx -GeomInt_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfWLApprox.hxx -GeomInt_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfWLApprox_0.cxx -GeomInt_ResConstraintOfMyGradientbisOfTheComputeLineOfWLApprox.hxx -GeomInt_ResConstraintOfMyGradientbisOfTheComputeLineOfWLApprox_0.cxx -GeomInt_ResConstraintOfMyGradientOfTheComputeLineBezierOfWLApprox.hxx -GeomInt_ResConstraintOfMyGradientOfTheComputeLineBezierOfWLApprox_0.cxx -GeomInt_SequenceOfParameterAndOrientation.hxx -GeomInt_TheComputeLineBezierOfWLApprox.hxx -GeomInt_TheComputeLineBezierOfWLApprox_0.cxx -GeomInt_TheComputeLineOfWLApprox.hxx -GeomInt_TheComputeLineOfWLApprox_0.cxx -GeomInt_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfWLApprox.hxx -GeomInt_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfWLApprox_0.cxx -GeomInt_TheImpPrmSvSurfacesOfWLApprox.hxx -GeomInt_TheImpPrmSvSurfacesOfWLApprox_0.cxx -GeomInt_TheInt2SOfThePrmPrmSvSurfacesOfWLApprox.hxx -GeomInt_TheInt2SOfThePrmPrmSvSurfacesOfWLApprox_0.cxx -GeomInt_TheMultiLineOfWLApprox.hxx -GeomInt_TheMultiLineOfWLApprox_0.cxx -GeomInt_TheMultiLineToolOfWLApprox.hxx -GeomInt_ThePrmPrmSvSurfacesOfWLApprox.hxx -GeomInt_ThePrmPrmSvSurfacesOfWLApprox_0.cxx -GeomInt_TheZerImpFuncOfTheImpPrmSvSurfacesOfWLApprox.hxx -GeomInt_TheZerImpFuncOfTheImpPrmSvSurfacesOfWLApprox_0.cxx -GeomInt_VectorOfReal.hxx -GeomInt_WLApprox.hxx -GeomInt_WLApprox_0.cxx diff --git a/src/GeomLProp/FILES b/src/GeomLProp/FILES deleted file mode 100644 index 47bc345231..0000000000 --- a/src/GeomLProp/FILES +++ /dev/null @@ -1,10 +0,0 @@ -GeomLProp.cxx -GeomLProp.hxx -GeomLProp_CLProps.hxx -GeomLProp_CLProps_0.cxx -GeomLProp_CurveTool.cxx -GeomLProp_CurveTool.hxx -GeomLProp_SLProps.hxx -GeomLProp_SLProps_0.cxx -GeomLProp_SurfaceTool.cxx -GeomLProp_SurfaceTool.hxx diff --git a/src/GeomLib/FILES b/src/GeomLib/FILES deleted file mode 100755 index 2f8b58e27c..0000000000 --- a/src/GeomLib/FILES +++ /dev/null @@ -1,29 +0,0 @@ -GeomLib.cxx -GeomLib.hxx -GeomLib_Array1OfMat.hxx -GeomLib_Check2dBSplineCurve.cxx -GeomLib_Check2dBSplineCurve.hxx -GeomLib_Check2dBSplineCurve.lxx -GeomLib_CheckCurveOnSurface.cxx -GeomLib_CheckCurveOnSurface.hxx -GeomLib_CheckBSplineCurve.cxx -GeomLib_CheckBSplineCurve.hxx -GeomLib_CheckBSplineCurve.lxx -GeomLib_DenominatorMultiplier.cxx -GeomLib_DenominatorMultiplier.hxx -GeomLib_DenominatorMultiplierPtr.hxx -GeomLib_Interpolate.cxx -GeomLib_Interpolate.hxx -GeomLib_Interpolate.lxx -GeomLib_InterpolationErrors.hxx -GeomLib_IsPlanarSurface.cxx -GeomLib_IsPlanarSurface.hxx -GeomLib_LogSample.cxx -GeomLib_LogSample.hxx -GeomLib_MakeCurvefromApprox.cxx -GeomLib_MakeCurvefromApprox.hxx -GeomLib_MakeCurvefromApprox.lxx -GeomLib_PolyFunc.cxx -GeomLib_PolyFunc.hxx -GeomLib_Tool.cxx -GeomLib_Tool.hxx diff --git a/src/GeomPlate/FILES b/src/GeomPlate/FILES deleted file mode 100644 index 821119e784..0000000000 --- a/src/GeomPlate/FILES +++ /dev/null @@ -1,27 +0,0 @@ -GeomPlate_Aij.cxx -GeomPlate_Aij.hxx -GeomPlate_Array1OfHCurve.hxx -GeomPlate_Array1OfSequenceOfReal.hxx -GeomPlate_BuildAveragePlane.cxx -GeomPlate_BuildAveragePlane.hxx -GeomPlate_BuildPlateSurface.cxx -GeomPlate_BuildPlateSurface.hxx -GeomPlate_CurveConstraint.cxx -GeomPlate_CurveConstraint.hxx -GeomPlate_HArray1OfHCurve.hxx -GeomPlate_HArray1OfSequenceOfReal.hxx -GeomPlate_HSequenceOfCurveConstraint.hxx -GeomPlate_HSequenceOfPointConstraint.hxx -GeomPlate_MakeApprox.cxx -GeomPlate_MakeApprox.hxx -GeomPlate_PlateG0Criterion.cxx -GeomPlate_PlateG0Criterion.hxx -GeomPlate_PlateG1Criterion.cxx -GeomPlate_PlateG1Criterion.hxx -GeomPlate_PointConstraint.cxx -GeomPlate_PointConstraint.hxx -GeomPlate_SequenceOfAij.hxx -GeomPlate_SequenceOfCurveConstraint.hxx -GeomPlate_SequenceOfPointConstraint.hxx -GeomPlate_Surface.cxx -GeomPlate_Surface.hxx diff --git a/src/GeomProjLib/FILES b/src/GeomProjLib/FILES deleted file mode 100644 index 4219b04789..0000000000 --- a/src/GeomProjLib/FILES +++ /dev/null @@ -1,2 +0,0 @@ -GeomProjLib.cxx -GeomProjLib.hxx diff --git a/src/GeomToIGES/FILES b/src/GeomToIGES/FILES deleted file mode 100644 index b685298f6d..0000000000 --- a/src/GeomToIGES/FILES +++ /dev/null @@ -1,10 +0,0 @@ -GeomToIGES_GeomCurve.cxx -GeomToIGES_GeomCurve.hxx -GeomToIGES_GeomEntity.cxx -GeomToIGES_GeomEntity.hxx -GeomToIGES_GeomPoint.cxx -GeomToIGES_GeomPoint.hxx -GeomToIGES_GeomSurface.cxx -GeomToIGES_GeomSurface.hxx -GeomToIGES_GeomVector.cxx -GeomToIGES_GeomVector.hxx diff --git a/src/GeomToStep/FILES b/src/GeomToStep/FILES deleted file mode 100755 index b944ff7865..0000000000 --- a/src/GeomToStep/FILES +++ /dev/null @@ -1,72 +0,0 @@ -GeomToStep_MakeAxis1Placement.cxx -GeomToStep_MakeAxis1Placement.hxx -GeomToStep_MakeAxis1Placement_gen.pxx -GeomToStep_MakeAxis2Placement2d.cxx -GeomToStep_MakeAxis2Placement2d.hxx -GeomToStep_MakeAxis2Placement3d.cxx -GeomToStep_MakeAxis2Placement3d.hxx -GeomToStep_MakeBoundedCurve.cxx -GeomToStep_MakeBoundedCurve.hxx -GeomToStep_MakeBoundedSurface.cxx -GeomToStep_MakeBoundedSurface.hxx -GeomToStep_MakeBSplineCurveWithKnots.cxx -GeomToStep_MakeBSplineCurveWithKnots.hxx -GeomToStep_MakeBSplineCurveWithKnots_gen.pxx -GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve.cxx -GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve.hxx -GeomToStep_MakeBSplineCurveWithKnotsAndRationalBSplineCurve_gen.pxx -GeomToStep_MakeBSplineSurfaceWithKnots.cxx -GeomToStep_MakeBSplineSurfaceWithKnots.hxx -GeomToStep_MakeBSplineSurfaceWithKnotsAndRationalBSplineSurface.cxx -GeomToStep_MakeBSplineSurfaceWithKnotsAndRationalBSplineSurface.hxx -GeomToStep_MakeCartesianPoint.cxx -GeomToStep_MakeCartesianPoint.hxx -GeomToStep_MakeCircle.cxx -GeomToStep_MakeCircle.hxx -GeomToStep_MakeCircle_gen.pxx -GeomToStep_MakeConic.cxx -GeomToStep_MakeConic.hxx -GeomToStep_MakeConicalSurface.cxx -GeomToStep_MakeConicalSurface.hxx -GeomToStep_MakeCurve.cxx -GeomToStep_MakeCurve.hxx -GeomToStep_MakeCylindricalSurface.cxx -GeomToStep_MakeCylindricalSurface.hxx -GeomToStep_MakeDirection.cxx -GeomToStep_MakeDirection.hxx -GeomToStep_MakeElementarySurface.cxx -GeomToStep_MakeElementarySurface.hxx -GeomToStep_MakeEllipse.cxx -GeomToStep_MakeEllipse.hxx -GeomToStep_MakeEllipse_gen.pxx -GeomToStep_MakeHyperbola.cxx -GeomToStep_MakeHyperbola.hxx -GeomToStep_MakeLine.cxx -GeomToStep_MakeLine.hxx -GeomToStep_MakeLine_gen.pxx -GeomToStep_MakeParabola.cxx -GeomToStep_MakeParabola.hxx -GeomToStep_MakePlane.cxx -GeomToStep_MakePlane.hxx -GeomToStep_MakePolyline.cxx -GeomToStep_MakePolyline.hxx -GeomToStep_MakePolyline_gen.pxx -GeomToStep_MakeRectangularTrimmedSurface.cxx -GeomToStep_MakeRectangularTrimmedSurface.hxx -GeomToStep_MakeSphericalSurface.cxx -GeomToStep_MakeSphericalSurface.hxx -GeomToStep_MakeSurface.cxx -GeomToStep_MakeSurface.hxx -GeomToStep_MakeSurfaceOfLinearExtrusion.cxx -GeomToStep_MakeSurfaceOfLinearExtrusion.hxx -GeomToStep_MakeSurfaceOfRevolution.cxx -GeomToStep_MakeSurfaceOfRevolution.hxx -GeomToStep_MakeSweptSurface.cxx -GeomToStep_MakeSweptSurface.hxx -GeomToStep_MakeToroidalSurface.cxx -GeomToStep_MakeToroidalSurface.hxx -GeomToStep_MakeVector.cxx -GeomToStep_MakeVector.hxx -GeomToStep_MakeVector_gen.pxx -GeomToStep_Root.cxx -GeomToStep_Root.hxx diff --git a/src/GeomTools/FILES b/src/GeomTools/FILES deleted file mode 100644 index 0b619bf008..0000000000 --- a/src/GeomTools/FILES +++ /dev/null @@ -1,11 +0,0 @@ -GeomTools.cxx -GeomTools.hxx -GeomTools_Curve2dSet.cxx -GeomTools_Curve2dSet.hxx -GeomTools_CurveSet.cxx -GeomTools_CurveSet.hxx -GeomTools_Debug.cxx -GeomTools_SurfaceSet.cxx -GeomTools_SurfaceSet.hxx -GeomTools_UndefinedTypeHandler.cxx -GeomTools_UndefinedTypeHandler.hxx diff --git a/src/GeometryTest/FILES b/src/GeometryTest/FILES deleted file mode 100755 index 10d07372cc..0000000000 --- a/src/GeometryTest/FILES +++ /dev/null @@ -1,13 +0,0 @@ -GeometryTest.cxx -GeometryTest.hxx -GeometryTest_APICommands.cxx -GeometryTest_ConstraintCommands.cxx -GeometryTest_ContinuityCommands.cxx -GeometryTest_CurveCommands.cxx -GeometryTest_CurveTanCommands.cxx -GeometryTest_DrawableQualifiedCurve2d.cxx -GeometryTest_DrawableQualifiedCurve2d.hxx -GeometryTest_FairCurveCommands.cxx -GeometryTest_PolyCommands.cxx -GeometryTest_SurfaceCommands.cxx -GeometryTest_TestProjCommands.cxx diff --git a/src/GeomliteTest/FILES b/src/GeomliteTest/FILES deleted file mode 100755 index 0c17d289a7..0000000000 --- a/src/GeomliteTest/FILES +++ /dev/null @@ -1,7 +0,0 @@ -GeomliteTest.cxx -GeomliteTest.hxx -GeomliteTest_API2dCommands.cxx -GeomliteTest_ApproxCommands.cxx -GeomliteTest_CurveCommands.cxx -GeomliteTest_ModificationCommands.cxx -GeomliteTest_SurfaceCommands.cxx diff --git a/src/Graphic3d/FILES b/src/Graphic3d/FILES deleted file mode 100755 index ec1f20b4df..0000000000 --- a/src/Graphic3d/FILES +++ /dev/null @@ -1,210 +0,0 @@ -Graphic3d_AlphaMode.hxx -Graphic3d_ArrayFlags.hxx -Graphic3d_ArrayOfPoints.hxx -Graphic3d_ArrayOfPolygons.hxx -Graphic3d_ArrayOfPolylines.hxx -Graphic3d_ArrayOfPrimitives.cxx -Graphic3d_ArrayOfPrimitives.hxx -Graphic3d_ArrayOfQuadrangles.hxx -Graphic3d_ArrayOfQuadrangleStrips.hxx -Graphic3d_ArrayOfSegments.hxx -Graphic3d_ArrayOfTriangleFans.hxx -Graphic3d_ArrayOfTriangles.hxx -Graphic3d_ArrayOfTriangleStrips.hxx -Graphic3d_Aspects.cxx -Graphic3d_Aspects.hxx -Graphic3d_AspectFillArea3d.cxx -Graphic3d_AspectFillArea3d.hxx -Graphic3d_AspectLine3d.cxx -Graphic3d_AspectLine3d.hxx -Graphic3d_AspectMarker3d.cxx -Graphic3d_AspectMarker3d.hxx -Graphic3d_AspectText3d.cxx -Graphic3d_AspectText3d.hxx -Graphic3d_AttribBuffer.cxx -Graphic3d_AttribBuffer.hxx -Graphic3d_BndBox3d.hxx -Graphic3d_BndBox4d.hxx -Graphic3d_BndBox4f.hxx -Graphic3d_BoundBuffer.hxx -Graphic3d_BSDF.cxx -Graphic3d_BSDF.hxx -Graphic3d_Buffer.cxx -Graphic3d_Buffer.hxx -Graphic3d_BufferRange.hxx -Graphic3d_BufferType.hxx -Graphic3d_BvhCStructureSet.cxx -Graphic3d_BvhCStructureSet.hxx -Graphic3d_BvhCStructureSetTrsfPers.cxx -Graphic3d_BvhCStructureSetTrsfPers.hxx -Graphic3d_Camera.cxx -Graphic3d_Camera.hxx -Graphic3d_CameraTile.cxx -Graphic3d_CameraTile.hxx -Graphic3d_CappingFlags.hxx -Graphic3d_CLight.cxx -Graphic3d_CLight.hxx -Graphic3d_ClipPlane.cxx -Graphic3d_ClipPlane.hxx -Graphic3d_CStructure.cxx -Graphic3d_CStructure.hxx -Graphic3d_CubeMap.cxx -Graphic3d_CubeMap.hxx -Graphic3d_CubeMapOrder.cxx -Graphic3d_CubeMapOrder.hxx -Graphic3d_CubeMapPacked.cxx -Graphic3d_CubeMapPacked.hxx -Graphic3d_CubeMapSeparate.cxx -Graphic3d_CubeMapSeparate.hxx -Graphic3d_CubeMapSide.hxx -Graphic3d_CullingTool.cxx -Graphic3d_CullingTool.hxx -Graphic3d_CView.cxx -Graphic3d_CView.hxx -Graphic3d_DataStructureManager.cxx -Graphic3d_DataStructureManager.hxx -Graphic3d_DiagnosticInfo.hxx -Graphic3d_DisplayPriority.hxx -Graphic3d_FrameStats.cxx -Graphic3d_FrameStats.hxx -Graphic3d_FrameStatsCounter.hxx -Graphic3d_FrameStatsData.cxx -Graphic3d_FrameStatsData.hxx -Graphic3d_FrameStatsTimer.hxx -Graphic3d_GraduatedTrihedron.hxx -Graphic3d_GraphicDriver.cxx -Graphic3d_GraphicDriver.hxx -Graphic3d_GraphicDriverFactory.cxx -Graphic3d_GraphicDriverFactory.hxx -Graphic3d_Group.cxx -Graphic3d_Group.hxx -Graphic3d_GroupAspect.hxx -Graphic3d_GroupDefinitionError.hxx -Graphic3d_HatchStyle.hxx -Graphic3d_HatchStyle.cxx -Graphic3d_PresentationAttributes.hxx -Graphic3d_PresentationAttributes.cxx -Graphic3d_HorizontalTextAlignment.hxx -Graphic3d_IndexBuffer.hxx -Graphic3d_MutableIndexBuffer.hxx -Graphic3d_LevelOfTextureAnisotropy.hxx -Graphic3d_LightSet.cxx -Graphic3d_LightSet.hxx -Graphic3d_MapOfAspectsToAspects.hxx -Graphic3d_MapIteratorOfMapOfStructure.hxx -Graphic3d_MapOfObject.hxx -Graphic3d_MapOfStructure.hxx -Graphic3d_MarkerImage.cxx -Graphic3d_MarkerImage.hxx -Graphic3d_MarkerImage.pxx -Graphic3d_Mat4.hxx -Graphic3d_Mat4d.hxx -Graphic3d_MaterialAspect.cxx -Graphic3d_MaterialAspect.hxx -Graphic3d_MaterialDefinitionError.hxx -Graphic3d_MediaTexture.cxx -Graphic3d_MediaTexture.hxx -Graphic3d_MediaTextureSet.cxx -Graphic3d_MediaTextureSet.hxx -Graphic3d_NameOfMaterial.hxx -Graphic3d_NameOfTexture1D.hxx -Graphic3d_NameOfTexture2D.hxx -Graphic3d_NameOfTextureEnv.hxx -Graphic3d_NameOfTexturePlane.hxx -Graphic3d_NMapOfTransient.hxx -Graphic3d_PBRMaterial.cxx -Graphic3d_PBRMaterial.hxx -Graphic3d_PolygonOffset.cxx -Graphic3d_PolygonOffset.hxx -Graphic3d_PriorityDefinitionError.hxx -Graphic3d_RenderingMode.hxx -Graphic3d_RenderingParams.cxx -Graphic3d_RenderingParams.hxx -Graphic3d_RenderTransparentMethod.hxx -Graphic3d_SequenceOfGroup.hxx -Graphic3d_SequenceOfHClipPlane.cxx -Graphic3d_SequenceOfHClipPlane.hxx -Graphic3d_SequenceOfStructure.hxx -Graphic3d_ShaderAttribute.cxx -Graphic3d_ShaderAttribute.hxx -Graphic3d_ShaderFlags.hxx -Graphic3d_ShaderManager.cxx -Graphic3d_ShaderManager.hxx -Graphic3d_ShaderObject.cxx -Graphic3d_ShaderObject.hxx -Graphic3d_ShaderProgram.cxx -Graphic3d_ShaderProgram.hxx -Graphic3d_ShaderVariable.cxx -Graphic3d_ShaderVariable.hxx -Graphic3d_ShaderVariable.lxx -Graphic3d_StereoMode.hxx -Graphic3d_Structure.cxx -Graphic3d_Structure.hxx -Graphic3d_StructureDefinitionError.hxx -Graphic3d_StructureManager.cxx -Graphic3d_StructureManager.hxx -Graphic3d_TextPath.hxx -Graphic3d_Text.cxx -Graphic3d_Text.hxx -Graphic3d_Texture1D.cxx -Graphic3d_Texture1D.hxx -Graphic3d_Texture1Dmanual.cxx -Graphic3d_Texture1Dmanual.hxx -Graphic3d_Texture1Dsegment.cxx -Graphic3d_Texture1Dsegment.hxx -Graphic3d_Texture2D.cxx -Graphic3d_Texture2D.hxx -Graphic3d_Texture2Dmanual.hxx -Graphic3d_Texture2Dplane.cxx -Graphic3d_Texture2Dplane.hxx -Graphic3d_Texture3D.cxx -Graphic3d_Texture3D.hxx -Graphic3d_TextureEnv.cxx -Graphic3d_TextureEnv.hxx -Graphic3d_TextureMap.cxx -Graphic3d_TextureMap.hxx -Graphic3d_TextureParams.cxx -Graphic3d_TextureParams.hxx -Graphic3d_TextureRoot.cxx -Graphic3d_TextureRoot.hxx -Graphic3d_TextureUnit.hxx -Graphic3d_TextureSet.cxx -Graphic3d_TextureSet.hxx -Graphic3d_TextureSetBits.hxx -Graphic3d_ToneMappingMethod.hxx -Graphic3d_TransformPers.hxx -Graphic3d_TransformPers.cxx -Graphic3d_TransformPersScaledAbove.hxx -Graphic3d_TransformPersScaledAbove.cxx -Graphic3d_TransformUtils.hxx -Graphic3d_TransModeFlags.hxx -Graphic3d_TypeOfAnswer.hxx -Graphic3d_TypeOfBackfacingModel.hxx -Graphic3d_TypeOfBackground.hxx -Graphic3d_TypeOfConnection.hxx -Graphic3d_TypeOfLightSource.hxx -Graphic3d_TypeOfLimit.hxx -Graphic3d_TypeOfMaterial.hxx -Graphic3d_TypeOfPrimitiveArray.hxx -Graphic3d_TypeOfReflection.hxx -Graphic3d_TypeOfShaderObject.hxx -Graphic3d_TypeOfShadingModel.hxx -Graphic3d_TypeOfStructure.hxx -Graphic3d_TypeOfTexture.hxx -Graphic3d_TypeOfTextureFilter.hxx -Graphic3d_TypeOfTextureMode.hxx -Graphic3d_TypeOfVisualization.hxx -Graphic3d_Vec.hxx -Graphic3d_Vec2.hxx -Graphic3d_Vec3.hxx -Graphic3d_Vec4.hxx -Graphic3d_Vertex.cxx -Graphic3d_Vertex.hxx -Graphic3d_VerticalTextAlignment.hxx -Graphic3d_ViewAffinity.cxx -Graphic3d_ViewAffinity.hxx -Graphic3d_WorldViewProjState.hxx -Graphic3d_Layer.cxx -Graphic3d_Layer.hxx -Graphic3d_ZLayerId.hxx -Graphic3d_ZLayerSettings.hxx diff --git a/src/HLRAlgo/FILES b/src/HLRAlgo/FILES deleted file mode 100644 index b18211d0c2..0000000000 --- a/src/HLRAlgo/FILES +++ /dev/null @@ -1,50 +0,0 @@ -HLRAlgo.cxx -HLRAlgo.hxx -HLRAlgo_Array1OfPHDat.hxx -HLRAlgo_Array1OfPINod.hxx -HLRAlgo_Array1OfPISeg.hxx -HLRAlgo_Array1OfTData.hxx -HLRAlgo_BiPoint.cxx -HLRAlgo_BiPoint.hxx -HLRAlgo_Coincidence.hxx -HLRAlgo_EdgeIterator.cxx -HLRAlgo_EdgeIterator.hxx -HLRAlgo_EdgeIterator.lxx -HLRAlgo_EdgesBlock.cxx -HLRAlgo_EdgesBlock.hxx -HLRAlgo_EdgeStatus.cxx -HLRAlgo_EdgeStatus.hxx -HLRAlgo_HArray1OfPHDat.hxx -HLRAlgo_HArray1OfPINod.hxx -HLRAlgo_HArray1OfPISeg.hxx -HLRAlgo_HArray1OfTData.hxx -HLRAlgo_Interference.hxx -HLRAlgo_Interference_0.cxx -HLRAlgo_InterferenceList.hxx -HLRAlgo_Intersection.cxx -HLRAlgo_Intersection.hxx -HLRAlgo_Intersection.lxx -HLRAlgo_ListIteratorOfInterferenceList.hxx -HLRAlgo_ListIteratorOfListOfBPoint.hxx -HLRAlgo_ListOfBPoint.hxx -HLRAlgo_PolyAlgo.cxx -HLRAlgo_PolyAlgo.hxx -HLRAlgo_PolyData.cxx -HLRAlgo_PolyData.hxx -HLRAlgo_PolyData.lxx -HLRAlgo_PolyHidingData.hxx -HLRAlgo_PolyInternalData.cxx -HLRAlgo_PolyInternalData.hxx -HLRAlgo_PolyInternalData.lxx -HLRAlgo_PolyInternalNode.cxx -HLRAlgo_PolyInternalNode.hxx -HLRAlgo_PolyInternalSegment.hxx -HLRAlgo_PolyMask.hxx -HLRAlgo_PolyShellData.cxx -HLRAlgo_PolyShellData.hxx -HLRAlgo_Projector.cxx -HLRAlgo_Projector.hxx -HLRAlgo_Projector.lxx -HLRAlgo_TriangleData.hxx -HLRAlgo_WiresBlock.cxx -HLRAlgo_WiresBlock.hxx diff --git a/src/HLRAppli/FILES b/src/HLRAppli/FILES deleted file mode 100644 index 0ee4829ddb..0000000000 --- a/src/HLRAppli/FILES +++ /dev/null @@ -1,2 +0,0 @@ -HLRAppli_ReflectLines.cxx -HLRAppli_ReflectLines.hxx diff --git a/src/HLRBRep/FILES b/src/HLRBRep/FILES deleted file mode 100644 index b334189ee7..0000000000 --- a/src/HLRBRep/FILES +++ /dev/null @@ -1,132 +0,0 @@ -HLRBRep.cxx -HLRBRep.hxx -HLRBRep_Algo.cxx -HLRBRep_Algo.hxx -HLRBRep_AreaLimit.cxx -HLRBRep_AreaLimit.hxx -HLRBRep_Array1OfEData.hxx -HLRBRep_Array1OfFData.hxx -HLRBRep_BCurveTool.cxx -HLRBRep_BCurveTool.hxx -HLRBRep_BCurveTool.lxx -HLRBRep_BiPnt2D.hxx -HLRBRep_BiPoint.hxx -HLRBRep_BSurfaceTool.cxx -HLRBRep_BSurfaceTool.hxx -HLRBRep_BSurfaceTool.lxx -HLRBRep_CInter.hxx -HLRBRep_CInter_0.cxx -HLRBRep_CLProps.hxx -HLRBRep_CLProps_0.cxx -HLRBRep_CLPropsATool.hxx -HLRBRep_CLPropsATool.lxx -HLRBRep_Curve.cxx -HLRBRep_Curve.hxx -HLRBRep_Curve.lxx -HLRBRep_CurveTool.cxx -HLRBRep_CurveTool.hxx -HLRBRep_CurveTool.lxx -HLRBRep_Data.cxx -HLRBRep_Data.hxx -HLRBRep_Data.lxx -HLRBRep_EdgeBuilder.cxx -HLRBRep_EdgeBuilder.hxx -HLRBRep_EdgeData.cxx -HLRBRep_EdgeData.hxx -HLRBRep_EdgeData.lxx -HLRBRep_EdgeFaceTool.cxx -HLRBRep_EdgeFaceTool.hxx -HLRBRep_EdgeIList.cxx -HLRBRep_EdgeIList.hxx -HLRBRep_EdgeInterferenceTool.cxx -HLRBRep_EdgeInterferenceTool.hxx -HLRBRep_EdgeInterferenceTool.lxx -HLRBRep_ExactIntersectionPointOfTheIntPCurvePCurveOfCInter.hxx -HLRBRep_ExactIntersectionPointOfTheIntPCurvePCurveOfCInter_0.cxx -HLRBRep_FaceData.cxx -HLRBRep_FaceData.hxx -HLRBRep_FaceData.lxx -HLRBRep_FaceIterator.cxx -HLRBRep_FaceIterator.hxx -HLRBRep_FaceIterator.lxx -HLRBRep_Hider.cxx -HLRBRep_Hider.hxx -HLRBRep_HLRToShape.cxx -HLRBRep_HLRToShape.hxx -HLRBRep_HLRToShape.lxx -HLRBRep_IntConicCurveOfCInter.hxx -HLRBRep_IntConicCurveOfCInter_0.cxx -HLRBRep_InterCSurf.hxx -HLRBRep_InterCSurf_0.cxx -HLRBRep_InternalAlgo.cxx -HLRBRep_InternalAlgo.hxx -HLRBRep_Intersector.cxx -HLRBRep_Intersector.hxx -HLRBRep_LineTool.hxx -HLRBRep_LineTool.lxx -HLRBRep_ListIteratorOfListOfBPnt2D.hxx -HLRBRep_ListIteratorOfListOfBPoint.hxx -HLRBRep_ListOfBPnt2D.hxx -HLRBRep_ListOfBPoint.hxx -HLRBRep_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfCInter.hxx -HLRBRep_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfCInter_0.cxx -HLRBRep_PCLocFOfTheLocateExtPCOfTheProjPCurOfCInter.hxx -HLRBRep_PCLocFOfTheLocateExtPCOfTheProjPCurOfCInter_0.cxx -HLRBRep_PolyAlgo.cxx -HLRBRep_PolyAlgo.hxx -HLRBRep_PolyHLRToShape.cxx -HLRBRep_PolyHLRToShape.hxx -HLRBRep_PolyHLRToShape.lxx -HLRBRep_SeqOfShapeBounds.hxx -HLRBRep_ShapeBounds.cxx -HLRBRep_ShapeBounds.hxx -HLRBRep_ShapeBounds.lxx -HLRBRep_ShapeToHLR.cxx -HLRBRep_ShapeToHLR.hxx -HLRBRep_SLProps.hxx -HLRBRep_SLProps_0.cxx -HLRBRep_SLPropsATool.hxx -HLRBRep_SLPropsATool.lxx -HLRBRep_Surface.cxx -HLRBRep_Surface.hxx -HLRBRep_Surface.lxx -HLRBRep_SurfaceTool.cxx -HLRBRep_SurfaceTool.hxx -HLRBRep_SurfaceTool.lxx -HLRBRep_TheCSFunctionOfInterCSurf.hxx -HLRBRep_TheCSFunctionOfInterCSurf_0.cxx -HLRBRep_TheCurveLocatorOfTheProjPCurOfCInter.hxx -HLRBRep_TheCurveLocatorOfTheProjPCurOfCInter_0.cxx -HLRBRep_TheDistBetweenPCurvesOfTheIntPCurvePCurveOfCInter.hxx -HLRBRep_TheDistBetweenPCurvesOfTheIntPCurvePCurveOfCInter_0.cxx -HLRBRep_TheExactInterCSurf.hxx -HLRBRep_TheExactInterCSurf_0.cxx -HLRBRep_TheIntConicCurveOfCInter.hxx -HLRBRep_TheIntConicCurveOfCInter_0.cxx -HLRBRep_TheInterferenceOfInterCSurf.hxx -HLRBRep_TheInterferenceOfInterCSurf_0.cxx -HLRBRep_TheIntersectorOfTheIntConicCurveOfCInter.hxx -HLRBRep_TheIntersectorOfTheIntConicCurveOfCInter_0.cxx -HLRBRep_TheIntPCurvePCurveOfCInter.hxx -HLRBRep_TheIntPCurvePCurveOfCInter_0.cxx -HLRBRep_TheLocateExtPCOfTheProjPCurOfCInter.hxx -HLRBRep_TheLocateExtPCOfTheProjPCurOfCInter_0.cxx -HLRBRep_ThePolygon2dOfTheIntPCurvePCurveOfCInter.hxx -HLRBRep_ThePolygon2dOfTheIntPCurvePCurveOfCInter_0.cxx -HLRBRep_ThePolygonOfInterCSurf.hxx -HLRBRep_ThePolygonOfInterCSurf_0.cxx -HLRBRep_ThePolygonToolOfInterCSurf.hxx -HLRBRep_ThePolygonToolOfInterCSurf_0.cxx -HLRBRep_ThePolyhedronOfInterCSurf.hxx -HLRBRep_ThePolyhedronOfInterCSurf_0.cxx -HLRBRep_ThePolyhedronToolOfInterCSurf.hxx -HLRBRep_ThePolyhedronToolOfInterCSurf_0.cxx -HLRBRep_TheProjPCurOfCInter.hxx -HLRBRep_TheProjPCurOfCInter_0.cxx -HLRBRep_TheQuadCurvExactInterCSurf.hxx -HLRBRep_TheQuadCurvExactInterCSurf_0.cxx -HLRBRep_TheQuadCurvFuncOfTheQuadCurvExactInterCSurf.hxx -HLRBRep_TheQuadCurvFuncOfTheQuadCurvExactInterCSurf_0.cxx -HLRBRep_VertexList.cxx -HLRBRep_VertexList.hxx -HLRBRep_TypeOfResultingEdge.hxx diff --git a/src/HLRTest/FILES b/src/HLRTest/FILES deleted file mode 100644 index 364c79eb5a..0000000000 --- a/src/HLRTest/FILES +++ /dev/null @@ -1,15 +0,0 @@ -HLRTest.cxx -HLRTest.hxx -HLRTest_DrawableEdgeTool.cxx -HLRTest_DrawableEdgeTool.hxx -HLRTest_DrawablePolyEdgeTool.cxx -HLRTest_DrawablePolyEdgeTool.hxx -HLRTest_DrawablePolyEdgeTool.lxx -HLRTest_OutLiner.cxx -HLRTest_OutLiner.hxx -HLRTest_OutLiner.lxx -HLRTest_Projector.cxx -HLRTest_Projector.hxx -HLRTest_ShapeData.cxx -HLRTest_ShapeData.hxx -HLRTest_ShapeData.lxx diff --git a/src/HLRTopoBRep/FILES b/src/HLRTopoBRep/FILES deleted file mode 100644 index 91cc57532e..0000000000 --- a/src/HLRTopoBRep/FILES +++ /dev/null @@ -1,22 +0,0 @@ -HLRTopoBRep_Data.cxx -HLRTopoBRep_Data.hxx -HLRTopoBRep_Data.lxx -HLRTopoBRep_DataMapIteratorOfDataMapOfShapeFaceData.hxx -HLRTopoBRep_DataMapIteratorOfMapOfShapeListOfVData.hxx -HLRTopoBRep_DataMapOfShapeFaceData.hxx -HLRTopoBRep_DSFiller.cxx -HLRTopoBRep_DSFiller.hxx -HLRTopoBRep_FaceData.cxx -HLRTopoBRep_FaceData.hxx -HLRTopoBRep_FaceData.lxx -HLRTopoBRep_FaceIsoLiner.cxx -HLRTopoBRep_FaceIsoLiner.hxx -HLRTopoBRep_ListIteratorOfListOfVData.hxx -HLRTopoBRep_ListOfVData.hxx -HLRTopoBRep_MapOfShapeListOfVData.hxx -HLRTopoBRep_OutLiner.cxx -HLRTopoBRep_OutLiner.hxx -HLRTopoBRep_OutLiner.lxx -HLRTopoBRep_VData.cxx -HLRTopoBRep_VData.hxx -HLRTopoBRep_VData.lxx diff --git a/src/Hatch/FILES b/src/Hatch/FILES deleted file mode 100644 index 2ae0af551b..0000000000 --- a/src/Hatch/FILES +++ /dev/null @@ -1,10 +0,0 @@ -Hatch_Hatcher.cxx -Hatch_Hatcher.hxx -Hatch_Hatcher.lxx -Hatch_Line.cxx -Hatch_Line.hxx -Hatch_LineForm.hxx -Hatch_Parameter.cxx -Hatch_Parameter.hxx -Hatch_SequenceOfLine.hxx -Hatch_SequenceOfParameter.hxx diff --git a/src/HatchGen/FILES b/src/HatchGen/FILES deleted file mode 100644 index 4cb5689988..0000000000 --- a/src/HatchGen/FILES +++ /dev/null @@ -1,15 +0,0 @@ -HatchGen_Domain.cxx -HatchGen_Domain.hxx -HatchGen_Domain.lxx -HatchGen_Domains.hxx -HatchGen_ErrorStatus.hxx -HatchGen_IntersectionPoint.cxx -HatchGen_IntersectionPoint.hxx -HatchGen_IntersectionType.hxx -HatchGen_PointOnElement.cxx -HatchGen_PointOnElement.hxx -HatchGen_PointOnElement.lxx -HatchGen_PointOnHatching.cxx -HatchGen_PointOnHatching.hxx -HatchGen_PointsOnElement.hxx -HatchGen_PointsOnHatching.hxx diff --git a/src/HeaderSection/FILES b/src/HeaderSection/FILES deleted file mode 100644 index 4949ebd272..0000000000 --- a/src/HeaderSection/FILES +++ /dev/null @@ -1,10 +0,0 @@ -HeaderSection.cxx -HeaderSection.hxx -HeaderSection_FileDescription.cxx -HeaderSection_FileDescription.hxx -HeaderSection_FileName.cxx -HeaderSection_FileName.hxx -HeaderSection_FileSchema.cxx -HeaderSection_FileSchema.hxx -HeaderSection_Protocol.cxx -HeaderSection_Protocol.hxx diff --git a/src/Hermit/FILES b/src/Hermit/FILES deleted file mode 100644 index cb8a30b657..0000000000 --- a/src/Hermit/FILES +++ /dev/null @@ -1,2 +0,0 @@ -Hermit.cxx -Hermit.hxx diff --git a/src/IFGraph/FILES b/src/IFGraph/FILES deleted file mode 100644 index a205ace277..0000000000 --- a/src/IFGraph/FILES +++ /dev/null @@ -1,22 +0,0 @@ -IFGraph_AllConnected.cxx -IFGraph_AllConnected.hxx -IFGraph_AllShared.cxx -IFGraph_AllShared.hxx -IFGraph_Articulations.cxx -IFGraph_Articulations.hxx -IFGraph_Compare.cxx -IFGraph_Compare.hxx -IFGraph_ConnectedComponants.cxx -IFGraph_ConnectedComponants.hxx -IFGraph_Cumulate.cxx -IFGraph_Cumulate.hxx -IFGraph_Cycles.cxx -IFGraph_Cycles.hxx -IFGraph_ExternalSources.cxx -IFGraph_ExternalSources.hxx -IFGraph_SCRoots.cxx -IFGraph_SCRoots.hxx -IFGraph_StrongComponants.cxx -IFGraph_StrongComponants.hxx -IFGraph_SubPartsIterator.cxx -IFGraph_SubPartsIterator.hxx diff --git a/src/IFSelect/FILES b/src/IFSelect/FILES deleted file mode 100755 index 5cbd79df59..0000000000 --- a/src/IFSelect/FILES +++ /dev/null @@ -1,168 +0,0 @@ -IFSelect.cxx -IFSelect.hxx -IFSelect_Act.cxx -IFSelect_Act.hxx -IFSelect_ActFunc.hxx -IFSelect_Activator.cxx -IFSelect_Activator.hxx -IFSelect_AppliedModifiers.cxx -IFSelect_AppliedModifiers.hxx -IFSelect_BasicDumper.cxx -IFSelect_BasicDumper.hxx -IFSelect_CheckCounter.cxx -IFSelect_CheckCounter.hxx -IFSelect_ContextModif.cxx -IFSelect_ContextModif.hxx -IFSelect_ContextWrite.cxx -IFSelect_ContextWrite.hxx -IFSelect_Dispatch.cxx -IFSelect_Dispatch.hxx -IFSelect_DispGlobal.cxx -IFSelect_DispGlobal.hxx -IFSelect_DispPerCount.cxx -IFSelect_DispPerCount.hxx -IFSelect_DispPerFiles.cxx -IFSelect_DispPerFiles.hxx -IFSelect_DispPerOne.cxx -IFSelect_DispPerOne.hxx -IFSelect_DispPerSignature.cxx -IFSelect_DispPerSignature.hxx -IFSelect_EditForm.cxx -IFSelect_EditForm.hxx -IFSelect_Editor.cxx -IFSelect_Editor.hxx -IFSelect_EditValue.hxx -IFSelect_FileModifier.gxx -IFSelect_Functions.cxx -IFSelect_Functions.hxx -IFSelect_GeneralModifier.cxx -IFSelect_GeneralModifier.hxx -IFSelect_GraphCounter.cxx -IFSelect_GraphCounter.hxx -IFSelect_HSeqOfSelection.hxx -IFSelect_IntParam.cxx -IFSelect_IntParam.hxx -IFSelect_ListEditor.cxx -IFSelect_ListEditor.hxx -IFSelect_ModelCopier.cxx -IFSelect_ModelCopier.hxx -IFSelect_ModelModifier.gxx -IFSelect_ModifEditForm.cxx -IFSelect_ModifEditForm.hxx -IFSelect_Modifier.cxx -IFSelect_Modifier.hxx -IFSelect_ModifReorder.cxx -IFSelect_ModifReorder.hxx -IFSelect_PacketList.cxx -IFSelect_PacketList.hxx -IFSelect_ParamEditor.cxx -IFSelect_ParamEditor.hxx -IFSelect_PrintCount.hxx -IFSelect_PrintFail.hxx -IFSelect_RemainMode.hxx -IFSelect_ReturnStatus.hxx -IFSelect_SelectAnyList.cxx -IFSelect_SelectAnyList.hxx -IFSelect_SelectAnyType.cxx -IFSelect_SelectAnyType.hxx -IFSelect_SelectBase.cxx -IFSelect_SelectBase.hxx -IFSelect_SelectCombine.cxx -IFSelect_SelectCombine.hxx -IFSelect_SelectControl.cxx -IFSelect_SelectControl.hxx -IFSelect_SelectDeduct.cxx -IFSelect_SelectDeduct.hxx -IFSelect_SelectDiff.cxx -IFSelect_SelectDiff.hxx -IFSelect_SelectEntityNumber.cxx -IFSelect_SelectEntityNumber.hxx -IFSelect_SelectErrorEntities.cxx -IFSelect_SelectErrorEntities.hxx -IFSelect_SelectExplore.cxx -IFSelect_SelectExplore.hxx -IFSelect_SelectExtract.cxx -IFSelect_SelectExtract.hxx -IFSelect_SelectFlag.cxx -IFSelect_SelectFlag.hxx -IFSelect_SelectIncorrectEntities.cxx -IFSelect_SelectIncorrectEntities.hxx -IFSelect_SelectInList.cxx -IFSelect_SelectInList.hxx -IFSelect_SelectIntersection.cxx -IFSelect_SelectIntersection.hxx -IFSelect_Selection.cxx -IFSelect_Selection.hxx -IFSelect_SelectionIterator.cxx -IFSelect_SelectionIterator.hxx -IFSelect_SelectModelEntities.cxx -IFSelect_SelectModelEntities.hxx -IFSelect_SelectModelRoots.cxx -IFSelect_SelectModelRoots.hxx -IFSelect_SelectPointed.cxx -IFSelect_SelectPointed.hxx -IFSelect_SelectRange.cxx -IFSelect_SelectRange.hxx -IFSelect_SelectRootComps.cxx -IFSelect_SelectRootComps.hxx -IFSelect_SelectRoots.cxx -IFSelect_SelectRoots.hxx -IFSelect_SelectSent.cxx -IFSelect_SelectSent.hxx -IFSelect_SelectShared.cxx -IFSelect_SelectShared.hxx -IFSelect_SelectSharing.cxx -IFSelect_SelectSharing.hxx -IFSelect_SelectSignature.cxx -IFSelect_SelectSignature.hxx -IFSelect_SelectSignedShared.cxx -IFSelect_SelectSignedShared.hxx -IFSelect_SelectSignedSharing.cxx -IFSelect_SelectSignedSharing.hxx -IFSelect_SelectSuite.cxx -IFSelect_SelectSuite.hxx -IFSelect_SelectType.cxx -IFSelect_SelectType.hxx -IFSelect_SelectUnion.cxx -IFSelect_SelectUnion.hxx -IFSelect_SelectUnknownEntities.cxx -IFSelect_SelectUnknownEntities.hxx -IFSelect_SequenceOfAppliedModifiers.hxx -IFSelect_SequenceOfGeneralModifier.hxx -IFSelect_SequenceOfInterfaceModel.hxx -IFSelect_SessionDumper.cxx -IFSelect_SessionDumper.hxx -IFSelect_SessionFile.cxx -IFSelect_SessionFile.hxx -IFSelect_SessionPilot.cxx -IFSelect_SessionPilot.hxx -IFSelect_ShareOut.cxx -IFSelect_ShareOut.hxx -IFSelect_ShareOutResult.cxx -IFSelect_ShareOutResult.hxx -IFSelect_SignAncestor.cxx -IFSelect_SignAncestor.hxx -IFSelect_Signature.cxx -IFSelect_Signature.hxx -IFSelect_SignatureList.cxx -IFSelect_SignatureList.hxx -IFSelect_SignCategory.cxx -IFSelect_SignCategory.hxx -IFSelect_SignCounter.cxx -IFSelect_SignCounter.hxx -IFSelect_SignMultiple.cxx -IFSelect_SignMultiple.hxx -IFSelect_SignType.cxx -IFSelect_SignType.hxx -IFSelect_SignValidity.cxx -IFSelect_SignValidity.hxx -IFSelect_Transformer.cxx -IFSelect_Transformer.hxx -IFSelect_TransformStandard.cxx -IFSelect_TransformStandard.hxx -IFSelect_TSeqOfDispatch.hxx -IFSelect_TSeqOfSelection.hxx -IFSelect_WorkLibrary.cxx -IFSelect_WorkLibrary.hxx -IFSelect_WorkSession.cxx -IFSelect_WorkSession.hxx diff --git a/src/IGESAppli/FILES b/src/IGESAppli/FILES deleted file mode 100644 index 1546fc98d6..0000000000 --- a/src/IGESAppli/FILES +++ /dev/null @@ -1,92 +0,0 @@ -IGESAppli.cxx -IGESAppli.hxx -IGESAppli_Array1OfFiniteElement.hxx -IGESAppli_Array1OfFlow.hxx -IGESAppli_Array1OfNode.hxx -IGESAppli_DrilledHole.cxx -IGESAppli_DrilledHole.hxx -IGESAppli_ElementResults.cxx -IGESAppli_ElementResults.hxx -IGESAppli_FiniteElement.cxx -IGESAppli_FiniteElement.hxx -IGESAppli_Flow.cxx -IGESAppli_Flow.hxx -IGESAppli_FlowLineSpec.cxx -IGESAppli_FlowLineSpec.hxx -IGESAppli_GeneralModule.cxx -IGESAppli_GeneralModule.hxx -IGESAppli_HArray1OfFiniteElement.hxx -IGESAppli_HArray1OfFlow.hxx -IGESAppli_HArray1OfNode.hxx -IGESAppli_LevelFunction.cxx -IGESAppli_LevelFunction.hxx -IGESAppli_LevelToPWBLayerMap.cxx -IGESAppli_LevelToPWBLayerMap.hxx -IGESAppli_LineWidening.cxx -IGESAppli_LineWidening.hxx -IGESAppli_NodalConstraint.cxx -IGESAppli_NodalConstraint.hxx -IGESAppli_NodalDisplAndRot.cxx -IGESAppli_NodalDisplAndRot.hxx -IGESAppli_NodalResults.cxx -IGESAppli_NodalResults.hxx -IGESAppli_Node.cxx -IGESAppli_Node.hxx -IGESAppli_PartNumber.cxx -IGESAppli_PartNumber.hxx -IGESAppli_PinNumber.cxx -IGESAppli_PinNumber.hxx -IGESAppli_PipingFlow.cxx -IGESAppli_PipingFlow.hxx -IGESAppli_Protocol.cxx -IGESAppli_Protocol.hxx -IGESAppli_PWBArtworkStackup.cxx -IGESAppli_PWBArtworkStackup.hxx -IGESAppli_PWBDrilledHole.cxx -IGESAppli_PWBDrilledHole.hxx -IGESAppli_ReadWriteModule.cxx -IGESAppli_ReadWriteModule.hxx -IGESAppli_ReferenceDesignator.cxx -IGESAppli_ReferenceDesignator.hxx -IGESAppli_RegionRestriction.cxx -IGESAppli_RegionRestriction.hxx -IGESAppli_SpecificModule.cxx -IGESAppli_SpecificModule.hxx -IGESAppli_ToolDrilledHole.cxx -IGESAppli_ToolDrilledHole.hxx -IGESAppli_ToolElementResults.cxx -IGESAppli_ToolElementResults.hxx -IGESAppli_ToolFiniteElement.cxx -IGESAppli_ToolFiniteElement.hxx -IGESAppli_ToolFlow.cxx -IGESAppli_ToolFlow.hxx -IGESAppli_ToolFlowLineSpec.cxx -IGESAppli_ToolFlowLineSpec.hxx -IGESAppli_ToolLevelFunction.cxx -IGESAppli_ToolLevelFunction.hxx -IGESAppli_ToolLevelToPWBLayerMap.cxx -IGESAppli_ToolLevelToPWBLayerMap.hxx -IGESAppli_ToolLineWidening.cxx -IGESAppli_ToolLineWidening.hxx -IGESAppli_ToolNodalConstraint.cxx -IGESAppli_ToolNodalConstraint.hxx -IGESAppli_ToolNodalDisplAndRot.cxx -IGESAppli_ToolNodalDisplAndRot.hxx -IGESAppli_ToolNodalResults.cxx -IGESAppli_ToolNodalResults.hxx -IGESAppli_ToolNode.cxx -IGESAppli_ToolNode.hxx -IGESAppli_ToolPartNumber.cxx -IGESAppli_ToolPartNumber.hxx -IGESAppli_ToolPinNumber.cxx -IGESAppli_ToolPinNumber.hxx -IGESAppli_ToolPipingFlow.cxx -IGESAppli_ToolPipingFlow.hxx -IGESAppli_ToolPWBArtworkStackup.cxx -IGESAppli_ToolPWBArtworkStackup.hxx -IGESAppli_ToolPWBDrilledHole.cxx -IGESAppli_ToolPWBDrilledHole.hxx -IGESAppli_ToolReferenceDesignator.cxx -IGESAppli_ToolReferenceDesignator.hxx -IGESAppli_ToolRegionRestriction.cxx -IGESAppli_ToolRegionRestriction.hxx diff --git a/src/IGESBasic/FILES b/src/IGESBasic/FILES deleted file mode 100644 index 460c433fba..0000000000 --- a/src/IGESBasic/FILES +++ /dev/null @@ -1,88 +0,0 @@ -IGESBasic.cxx -IGESBasic.hxx -IGESBasic_Array1OfLineFontEntity.hxx -IGESBasic_Array2OfHArray1OfReal.hxx -IGESBasic_AssocGroupType.cxx -IGESBasic_AssocGroupType.hxx -IGESBasic_ExternalReferenceFile.cxx -IGESBasic_ExternalReferenceFile.hxx -IGESBasic_ExternalRefFile.cxx -IGESBasic_ExternalRefFile.hxx -IGESBasic_ExternalRefFileIndex.cxx -IGESBasic_ExternalRefFileIndex.hxx -IGESBasic_ExternalRefFileName.cxx -IGESBasic_ExternalRefFileName.hxx -IGESBasic_ExternalRefLibName.cxx -IGESBasic_ExternalRefLibName.hxx -IGESBasic_ExternalRefName.cxx -IGESBasic_ExternalRefName.hxx -IGESBasic_GeneralModule.cxx -IGESBasic_GeneralModule.hxx -IGESBasic_Group.cxx -IGESBasic_Group.hxx -IGESBasic_GroupWithoutBackP.cxx -IGESBasic_GroupWithoutBackP.hxx -IGESBasic_HArray1OfHArray1OfIGESEntity.hxx -IGESBasic_HArray1OfHArray1OfIGESEntity_0.cxx -IGESBasic_HArray1OfHArray1OfInteger.hxx -IGESBasic_HArray1OfHArray1OfInteger_0.cxx -IGESBasic_HArray1OfHArray1OfReal.hxx -IGESBasic_HArray1OfHArray1OfReal_0.cxx -IGESBasic_HArray1OfHArray1OfXY.hxx -IGESBasic_HArray1OfHArray1OfXY_0.cxx -IGESBasic_HArray1OfHArray1OfXYZ.hxx -IGESBasic_HArray1OfHArray1OfXYZ_0.cxx -IGESBasic_HArray1OfLineFontEntity.hxx -IGESBasic_HArray2OfHArray1OfReal.hxx -IGESBasic_Hierarchy.cxx -IGESBasic_Hierarchy.hxx -IGESBasic_Name.cxx -IGESBasic_Name.hxx -IGESBasic_OrderedGroup.cxx -IGESBasic_OrderedGroup.hxx -IGESBasic_OrderedGroupWithoutBackP.cxx -IGESBasic_OrderedGroupWithoutBackP.hxx -IGESBasic_Protocol.cxx -IGESBasic_Protocol.hxx -IGESBasic_ReadWriteModule.cxx -IGESBasic_ReadWriteModule.hxx -IGESBasic_SingleParent.cxx -IGESBasic_SingleParent.hxx -IGESBasic_SingularSubfigure.cxx -IGESBasic_SingularSubfigure.hxx -IGESBasic_SpecificModule.cxx -IGESBasic_SpecificModule.hxx -IGESBasic_SubfigureDef.cxx -IGESBasic_SubfigureDef.hxx -IGESBasic_ToolAssocGroupType.cxx -IGESBasic_ToolAssocGroupType.hxx -IGESBasic_ToolExternalReferenceFile.cxx -IGESBasic_ToolExternalReferenceFile.hxx -IGESBasic_ToolExternalRefFile.cxx -IGESBasic_ToolExternalRefFile.hxx -IGESBasic_ToolExternalRefFileIndex.cxx -IGESBasic_ToolExternalRefFileIndex.hxx -IGESBasic_ToolExternalRefFileName.cxx -IGESBasic_ToolExternalRefFileName.hxx -IGESBasic_ToolExternalRefLibName.cxx -IGESBasic_ToolExternalRefLibName.hxx -IGESBasic_ToolExternalRefName.cxx -IGESBasic_ToolExternalRefName.hxx -IGESBasic_ToolGroup.cxx -IGESBasic_ToolGroup.hxx -IGESBasic_ToolGroupWithoutBackP.cxx -IGESBasic_ToolGroupWithoutBackP.hxx -IGESBasic_ToolHierarchy.cxx -IGESBasic_ToolHierarchy.hxx -IGESBasic_ToolName.cxx -IGESBasic_ToolName.hxx -IGESBasic_ToolOrderedGroup.cxx -IGESBasic_ToolOrderedGroup.hxx -IGESBasic_ToolOrderedGroupWithoutBackP.cxx -IGESBasic_ToolOrderedGroupWithoutBackP.hxx -IGESBasic_ToolSingleParent.cxx -IGESBasic_ToolSingleParent.hxx -IGESBasic_ToolSingularSubfigure.cxx -IGESBasic_ToolSingularSubfigure.hxx -IGESBasic_ToolSubfigureDef.cxx -IGESBasic_ToolSubfigureDef.hxx diff --git a/src/IGESCAFControl/FILES b/src/IGESCAFControl/FILES deleted file mode 100644 index 97d2b372fe..0000000000 --- a/src/IGESCAFControl/FILES +++ /dev/null @@ -1,8 +0,0 @@ -IGESCAFControl.cxx -IGESCAFControl.hxx -IGESCAFControl_ConfigurationNode.hxx -IGESCAFControl_Provider.hxx -IGESCAFControl_Reader.cxx -IGESCAFControl_Reader.hxx -IGESCAFControl_Writer.cxx -IGESCAFControl_Writer.hxx diff --git a/src/IGESControl/FILES b/src/IGESControl/FILES deleted file mode 100644 index c07fbe90f5..0000000000 --- a/src/IGESControl/FILES +++ /dev/null @@ -1,15 +0,0 @@ -IGESControl_ActorWrite.cxx -IGESControl_ActorWrite.hxx -IGESControl_AlgoContainer.cxx -IGESControl_AlgoContainer.hxx -IGESControl_Controller.cxx -IGESControl_Controller.hxx -IGESControl_IGESBoundary.cxx -IGESControl_IGESBoundary.hxx -IGESControl_Reader.cxx -IGESControl_Reader.hxx -IGESControl_Reader.lxx -IGESControl_ToolContainer.cxx -IGESControl_ToolContainer.hxx -IGESControl_Writer.cxx -IGESControl_Writer.hxx diff --git a/src/IGESConvGeom/FILES b/src/IGESConvGeom/FILES deleted file mode 100644 index 947e324ff5..0000000000 --- a/src/IGESConvGeom/FILES +++ /dev/null @@ -1,4 +0,0 @@ -IGESConvGeom.cxx -IGESConvGeom.hxx -IGESConvGeom_GeomBuilder.cxx -IGESConvGeom_GeomBuilder.hxx diff --git a/src/IGESData/FILES b/src/IGESData/FILES deleted file mode 100755 index 4a7ba8b5df..0000000000 --- a/src/IGESData/FILES +++ /dev/null @@ -1,89 +0,0 @@ -IGESData.cxx -IGESData.hxx -IGESData_Array1OfDirPart.hxx -IGESData_Array1OfIGESEntity.hxx -IGESData_BasicEditor.cxx -IGESData_BasicEditor.hxx -IGESData_ColorEntity.cxx -IGESData_ColorEntity.hxx -IGESData_DefaultGeneral.cxx -IGESData_DefaultGeneral.hxx -IGESData_DefaultSpecific.cxx -IGESData_DefaultSpecific.hxx -IGESData_DefList.hxx -IGESData_DefSwitch.cxx -IGESData_DefSwitch.hxx -IGESData_DefType.hxx -IGESData_DirChecker.cxx -IGESData_DirChecker.hxx -IGESData_DirPart.cxx -IGESData_DirPart.hxx -IGESData_Dump.hxx -IGESData_FileProtocol.cxx -IGESData_FileProtocol.hxx -IGESData_FileRecognizer.hxx -IGESData_FileRecognizer_0.cxx -IGESData_FreeFormatEntity.cxx -IGESData_FreeFormatEntity.hxx -IGESData_GeneralModule.cxx -IGESData_GeneralModule.hxx -IGESData_GlobalNodeOfSpecificLib.hxx -IGESData_GlobalNodeOfSpecificLib_0.cxx -IGESData_GlobalNodeOfWriterLib.hxx -IGESData_GlobalNodeOfWriterLib_0.cxx -IGESData_GlobalSection.cxx -IGESData_GlobalSection.hxx -IGESData_HArray1OfIGESEntity.hxx -IGESData_IGESDumper.cxx -IGESData_IGESDumper.hxx -IGESData_IGESEntity.cxx -IGESData_IGESEntity.hxx -IGESData_IGESModel.cxx -IGESData_IGESModel.hxx -IGESData_IGESReaderData.cxx -IGESData_IGESReaderData.hxx -IGESData_IGESReaderTool.cxx -IGESData_IGESReaderTool.hxx -IGESData_IGESType.cxx -IGESData_IGESType.hxx -IGESData_IGESWriter.cxx -IGESData_IGESWriter.hxx -IGESData_LabelDisplayEntity.cxx -IGESData_LabelDisplayEntity.hxx -IGESData_LevelListEntity.cxx -IGESData_LevelListEntity.hxx -IGESData_LineFontEntity.cxx -IGESData_LineFontEntity.hxx -IGESData_NameEntity.cxx -IGESData_NameEntity.hxx -IGESData_NodeOfSpecificLib.hxx -IGESData_NodeOfSpecificLib_0.cxx -IGESData_NodeOfWriterLib.hxx -IGESData_NodeOfWriterLib_0.cxx -IGESData_ParamCursor.cxx -IGESData_ParamCursor.hxx -IGESData_ParamCursor.lxx -IGESData_ParamReader.cxx -IGESData_ParamReader.hxx -IGESData_Protocol.cxx -IGESData_Protocol.hxx -IGESData_ReadStage.hxx -IGESData_ReadWriteModule.cxx -IGESData_ReadWriteModule.hxx -IGESData_SingleParentEntity.cxx -IGESData_SingleParentEntity.hxx -IGESData_SpecificLib.hxx -IGESData_SpecificLib_0.cxx -IGESData_SpecificModule.cxx -IGESData_SpecificModule.hxx -IGESData_Status.hxx -IGESData_ToolLocation.cxx -IGESData_ToolLocation.hxx -IGESData_TransfEntity.cxx -IGESData_TransfEntity.hxx -IGESData_UndefinedEntity.cxx -IGESData_UndefinedEntity.hxx -IGESData_ViewKindEntity.cxx -IGESData_ViewKindEntity.hxx -IGESData_WriterLib.hxx -IGESData_WriterLib_0.cxx diff --git a/src/IGESDefs/FILES b/src/IGESDefs/FILES deleted file mode 100644 index 87f71e58a5..0000000000 --- a/src/IGESDefs/FILES +++ /dev/null @@ -1,42 +0,0 @@ -IGESDefs.cxx -IGESDefs.hxx -IGESDefs_Array1OfTabularData.hxx -IGESDefs_AssociativityDef.cxx -IGESDefs_AssociativityDef.hxx -IGESDefs_AttributeDef.cxx -IGESDefs_AttributeDef.hxx -IGESDefs_AttributeTable.cxx -IGESDefs_AttributeTable.hxx -IGESDefs_GeneralModule.cxx -IGESDefs_GeneralModule.hxx -IGESDefs_GenericData.cxx -IGESDefs_GenericData.hxx -IGESDefs_HArray1OfHArray1OfTextDisplayTemplate.hxx -IGESDefs_HArray1OfHArray1OfTextDisplayTemplate_0.cxx -IGESDefs_HArray1OfTabularData.hxx -IGESDefs_MacroDef.cxx -IGESDefs_MacroDef.hxx -IGESDefs_Protocol.cxx -IGESDefs_Protocol.hxx -IGESDefs_ReadWriteModule.cxx -IGESDefs_ReadWriteModule.hxx -IGESDefs_SpecificModule.cxx -IGESDefs_SpecificModule.hxx -IGESDefs_TabularData.cxx -IGESDefs_TabularData.hxx -IGESDefs_ToolAssociativityDef.cxx -IGESDefs_ToolAssociativityDef.hxx -IGESDefs_ToolAttributeDef.cxx -IGESDefs_ToolAttributeDef.hxx -IGESDefs_ToolAttributeTable.cxx -IGESDefs_ToolAttributeTable.hxx -IGESDefs_ToolGenericData.cxx -IGESDefs_ToolGenericData.hxx -IGESDefs_ToolMacroDef.cxx -IGESDefs_ToolMacroDef.hxx -IGESDefs_ToolTabularData.cxx -IGESDefs_ToolTabularData.hxx -IGESDefs_ToolUnitsData.cxx -IGESDefs_ToolUnitsData.hxx -IGESDefs_UnitsData.cxx -IGESDefs_UnitsData.hxx diff --git a/src/IGESDimen/FILES b/src/IGESDimen/FILES deleted file mode 100644 index db0640394d..0000000000 --- a/src/IGESDimen/FILES +++ /dev/null @@ -1,106 +0,0 @@ -IGESDimen.cxx -IGESDimen.hxx -IGESDimen_AngularDimension.cxx -IGESDimen_AngularDimension.hxx -IGESDimen_Array1OfGeneralNote.hxx -IGESDimen_Array1OfLeaderArrow.hxx -IGESDimen_BasicDimension.cxx -IGESDimen_BasicDimension.hxx -IGESDimen_CenterLine.cxx -IGESDimen_CenterLine.hxx -IGESDimen_CurveDimension.cxx -IGESDimen_CurveDimension.hxx -IGESDimen_DiameterDimension.cxx -IGESDimen_DiameterDimension.hxx -IGESDimen_DimensionDisplayData.cxx -IGESDimen_DimensionDisplayData.hxx -IGESDimen_DimensionedGeometry.cxx -IGESDimen_DimensionedGeometry.hxx -IGESDimen_DimensionTolerance.cxx -IGESDimen_DimensionTolerance.hxx -IGESDimen_DimensionUnits.cxx -IGESDimen_DimensionUnits.hxx -IGESDimen_FlagNote.cxx -IGESDimen_FlagNote.hxx -IGESDimen_GeneralLabel.cxx -IGESDimen_GeneralLabel.hxx -IGESDimen_GeneralModule.cxx -IGESDimen_GeneralModule.hxx -IGESDimen_GeneralNote.cxx -IGESDimen_GeneralNote.hxx -IGESDimen_GeneralSymbol.cxx -IGESDimen_GeneralSymbol.hxx -IGESDimen_HArray1OfGeneralNote.hxx -IGESDimen_HArray1OfLeaderArrow.hxx -IGESDimen_LeaderArrow.cxx -IGESDimen_LeaderArrow.hxx -IGESDimen_LinearDimension.cxx -IGESDimen_LinearDimension.hxx -IGESDimen_NewDimensionedGeometry.cxx -IGESDimen_NewDimensionedGeometry.hxx -IGESDimen_NewGeneralNote.cxx -IGESDimen_NewGeneralNote.hxx -IGESDimen_OrdinateDimension.cxx -IGESDimen_OrdinateDimension.hxx -IGESDimen_PointDimension.cxx -IGESDimen_PointDimension.hxx -IGESDimen_Protocol.cxx -IGESDimen_Protocol.hxx -IGESDimen_RadiusDimension.cxx -IGESDimen_RadiusDimension.hxx -IGESDimen_ReadWriteModule.cxx -IGESDimen_ReadWriteModule.hxx -IGESDimen_Section.cxx -IGESDimen_Section.hxx -IGESDimen_SectionedArea.cxx -IGESDimen_SectionedArea.hxx -IGESDimen_SpecificModule.cxx -IGESDimen_SpecificModule.hxx -IGESDimen_ToolAngularDimension.cxx -IGESDimen_ToolAngularDimension.hxx -IGESDimen_ToolBasicDimension.cxx -IGESDimen_ToolBasicDimension.hxx -IGESDimen_ToolCenterLine.cxx -IGESDimen_ToolCenterLine.hxx -IGESDimen_ToolCurveDimension.cxx -IGESDimen_ToolCurveDimension.hxx -IGESDimen_ToolDiameterDimension.cxx -IGESDimen_ToolDiameterDimension.hxx -IGESDimen_ToolDimensionDisplayData.cxx -IGESDimen_ToolDimensionDisplayData.hxx -IGESDimen_ToolDimensionedGeometry.cxx -IGESDimen_ToolDimensionedGeometry.hxx -IGESDimen_ToolDimensionTolerance.cxx -IGESDimen_ToolDimensionTolerance.hxx -IGESDimen_ToolDimensionUnits.cxx -IGESDimen_ToolDimensionUnits.hxx -IGESDimen_ToolFlagNote.cxx -IGESDimen_ToolFlagNote.hxx -IGESDimen_ToolGeneralLabel.cxx -IGESDimen_ToolGeneralLabel.hxx -IGESDimen_ToolGeneralNote.cxx -IGESDimen_ToolGeneralNote.hxx -IGESDimen_ToolGeneralSymbol.cxx -IGESDimen_ToolGeneralSymbol.hxx -IGESDimen_ToolLeaderArrow.cxx -IGESDimen_ToolLeaderArrow.hxx -IGESDimen_ToolLinearDimension.cxx -IGESDimen_ToolLinearDimension.hxx -IGESDimen_ToolNewDimensionedGeometry.cxx -IGESDimen_ToolNewDimensionedGeometry.hxx -IGESDimen_ToolNewGeneralNote.cxx -IGESDimen_ToolNewGeneralNote.hxx -IGESDimen_ToolOrdinateDimension.cxx -IGESDimen_ToolOrdinateDimension.hxx -IGESDimen_ToolPointDimension.cxx -IGESDimen_ToolPointDimension.hxx -IGESDimen_ToolRadiusDimension.cxx -IGESDimen_ToolRadiusDimension.hxx -IGESDimen_ToolSection.cxx -IGESDimen_ToolSection.hxx -IGESDimen_ToolSectionedArea.cxx -IGESDimen_ToolSectionedArea.hxx -IGESDimen_ToolWitnessLine.cxx -IGESDimen_ToolWitnessLine.hxx -IGESDimen_WitnessLine.cxx -IGESDimen_WitnessLine.hxx diff --git a/src/IGESDraw/FILES b/src/IGESDraw/FILES deleted file mode 100644 index edce766753..0000000000 --- a/src/IGESDraw/FILES +++ /dev/null @@ -1,70 +0,0 @@ -IGESDraw.cxx -IGESDraw.hxx -IGESDraw_Array1OfConnectPoint.hxx -IGESDraw_Array1OfViewKindEntity.hxx -IGESDraw_CircArraySubfigure.cxx -IGESDraw_CircArraySubfigure.hxx -IGESDraw_ConnectPoint.cxx -IGESDraw_ConnectPoint.hxx -IGESDraw_Drawing.cxx -IGESDraw_Drawing.hxx -IGESDraw_DrawingWithRotation.cxx -IGESDraw_DrawingWithRotation.hxx -IGESDraw_GeneralModule.cxx -IGESDraw_GeneralModule.hxx -IGESDraw_HArray1OfConnectPoint.hxx -IGESDraw_HArray1OfViewKindEntity.hxx -IGESDraw_LabelDisplay.cxx -IGESDraw_LabelDisplay.hxx -IGESDraw_NetworkSubfigure.cxx -IGESDraw_NetworkSubfigure.hxx -IGESDraw_NetworkSubfigureDef.cxx -IGESDraw_NetworkSubfigureDef.hxx -IGESDraw_PerspectiveView.cxx -IGESDraw_PerspectiveView.hxx -IGESDraw_Planar.cxx -IGESDraw_Planar.hxx -IGESDraw_Protocol.cxx -IGESDraw_Protocol.hxx -IGESDraw_ReadWriteModule.cxx -IGESDraw_ReadWriteModule.hxx -IGESDraw_RectArraySubfigure.cxx -IGESDraw_RectArraySubfigure.hxx -IGESDraw_SegmentedViewsVisible.cxx -IGESDraw_SegmentedViewsVisible.hxx -IGESDraw_SpecificModule.cxx -IGESDraw_SpecificModule.hxx -IGESDraw_ToolCircArraySubfigure.cxx -IGESDraw_ToolCircArraySubfigure.hxx -IGESDraw_ToolConnectPoint.cxx -IGESDraw_ToolConnectPoint.hxx -IGESDraw_ToolDrawing.cxx -IGESDraw_ToolDrawing.hxx -IGESDraw_ToolDrawingWithRotation.cxx -IGESDraw_ToolDrawingWithRotation.hxx -IGESDraw_ToolLabelDisplay.cxx -IGESDraw_ToolLabelDisplay.hxx -IGESDraw_ToolNetworkSubfigure.cxx -IGESDraw_ToolNetworkSubfigure.hxx -IGESDraw_ToolNetworkSubfigureDef.cxx -IGESDraw_ToolNetworkSubfigureDef.hxx -IGESDraw_ToolPerspectiveView.cxx -IGESDraw_ToolPerspectiveView.hxx -IGESDraw_ToolPlanar.cxx -IGESDraw_ToolPlanar.hxx -IGESDraw_ToolRectArraySubfigure.cxx -IGESDraw_ToolRectArraySubfigure.hxx -IGESDraw_ToolSegmentedViewsVisible.cxx -IGESDraw_ToolSegmentedViewsVisible.hxx -IGESDraw_ToolView.cxx -IGESDraw_ToolView.hxx -IGESDraw_ToolViewsVisible.cxx -IGESDraw_ToolViewsVisible.hxx -IGESDraw_ToolViewsVisibleWithAttr.cxx -IGESDraw_ToolViewsVisibleWithAttr.hxx -IGESDraw_View.cxx -IGESDraw_View.hxx -IGESDraw_ViewsVisible.cxx -IGESDraw_ViewsVisible.hxx -IGESDraw_ViewsVisibleWithAttr.cxx -IGESDraw_ViewsVisibleWithAttr.hxx diff --git a/src/IGESFile/FILES b/src/IGESFile/FILES deleted file mode 100755 index 4821b8c570..0000000000 --- a/src/IGESFile/FILES +++ /dev/null @@ -1,7 +0,0 @@ -analiges.c -IGESFile_Read.cxx -IGESFile_Read.hxx -igesread.c -igesread.h -liriges.c -structiges.c diff --git a/src/IGESGeom/FILES b/src/IGESGeom/FILES deleted file mode 100644 index defc19ceba..0000000000 --- a/src/IGESGeom/FILES +++ /dev/null @@ -1,108 +0,0 @@ -IGESGeom.cxx -IGESGeom.hxx -IGESGeom_Array1OfBoundary.hxx -IGESGeom_Array1OfCurveOnSurface.hxx -IGESGeom_Array1OfTransformationMatrix.hxx -IGESGeom_Boundary.cxx -IGESGeom_Boundary.hxx -IGESGeom_BoundedSurface.cxx -IGESGeom_BoundedSurface.hxx -IGESGeom_BSplineCurve.cxx -IGESGeom_BSplineCurve.hxx -IGESGeom_BSplineSurface.cxx -IGESGeom_BSplineSurface.hxx -IGESGeom_CircularArc.cxx -IGESGeom_CircularArc.hxx -IGESGeom_CompositeCurve.cxx -IGESGeom_CompositeCurve.hxx -IGESGeom_ConicArc.cxx -IGESGeom_ConicArc.hxx -IGESGeom_CopiousData.cxx -IGESGeom_CopiousData.hxx -IGESGeom_CurveOnSurface.cxx -IGESGeom_CurveOnSurface.hxx -IGESGeom_Direction.cxx -IGESGeom_Direction.hxx -IGESGeom_Flash.cxx -IGESGeom_Flash.hxx -IGESGeom_GeneralModule.cxx -IGESGeom_GeneralModule.hxx -IGESGeom_HArray1OfBoundary.hxx -IGESGeom_HArray1OfCurveOnSurface.hxx -IGESGeom_HArray1OfTransformationMatrix.hxx -IGESGeom_Line.cxx -IGESGeom_Line.hxx -IGESGeom_OffsetCurve.cxx -IGESGeom_OffsetCurve.hxx -IGESGeom_OffsetSurface.cxx -IGESGeom_OffsetSurface.hxx -IGESGeom_Plane.cxx -IGESGeom_Plane.hxx -IGESGeom_Point.cxx -IGESGeom_Point.hxx -IGESGeom_Protocol.cxx -IGESGeom_Protocol.hxx -IGESGeom_ReadWriteModule.cxx -IGESGeom_ReadWriteModule.hxx -IGESGeom_RuledSurface.cxx -IGESGeom_RuledSurface.hxx -IGESGeom_SpecificModule.cxx -IGESGeom_SpecificModule.hxx -IGESGeom_SplineCurve.cxx -IGESGeom_SplineCurve.hxx -IGESGeom_SplineSurface.cxx -IGESGeom_SplineSurface.hxx -IGESGeom_SurfaceOfRevolution.cxx -IGESGeom_SurfaceOfRevolution.hxx -IGESGeom_TabulatedCylinder.cxx -IGESGeom_TabulatedCylinder.hxx -IGESGeom_ToolBoundary.cxx -IGESGeom_ToolBoundary.hxx -IGESGeom_ToolBoundedSurface.cxx -IGESGeom_ToolBoundedSurface.hxx -IGESGeom_ToolBSplineCurve.cxx -IGESGeom_ToolBSplineCurve.hxx -IGESGeom_ToolBSplineSurface.cxx -IGESGeom_ToolBSplineSurface.hxx -IGESGeom_ToolCircularArc.cxx -IGESGeom_ToolCircularArc.hxx -IGESGeom_ToolCompositeCurve.cxx -IGESGeom_ToolCompositeCurve.hxx -IGESGeom_ToolConicArc.cxx -IGESGeom_ToolConicArc.hxx -IGESGeom_ToolCopiousData.cxx -IGESGeom_ToolCopiousData.hxx -IGESGeom_ToolCurveOnSurface.cxx -IGESGeom_ToolCurveOnSurface.hxx -IGESGeom_ToolDirection.cxx -IGESGeom_ToolDirection.hxx -IGESGeom_ToolFlash.cxx -IGESGeom_ToolFlash.hxx -IGESGeom_ToolLine.cxx -IGESGeom_ToolLine.hxx -IGESGeom_ToolOffsetCurve.cxx -IGESGeom_ToolOffsetCurve.hxx -IGESGeom_ToolOffsetSurface.cxx -IGESGeom_ToolOffsetSurface.hxx -IGESGeom_ToolPlane.cxx -IGESGeom_ToolPlane.hxx -IGESGeom_ToolPoint.cxx -IGESGeom_ToolPoint.hxx -IGESGeom_ToolRuledSurface.cxx -IGESGeom_ToolRuledSurface.hxx -IGESGeom_ToolSplineCurve.cxx -IGESGeom_ToolSplineCurve.hxx -IGESGeom_ToolSplineSurface.cxx -IGESGeom_ToolSplineSurface.hxx -IGESGeom_ToolSurfaceOfRevolution.cxx -IGESGeom_ToolSurfaceOfRevolution.hxx -IGESGeom_ToolTabulatedCylinder.cxx -IGESGeom_ToolTabulatedCylinder.hxx -IGESGeom_ToolTransformationMatrix.cxx -IGESGeom_ToolTransformationMatrix.hxx -IGESGeom_ToolTrimmedSurface.cxx -IGESGeom_ToolTrimmedSurface.hxx -IGESGeom_TransformationMatrix.cxx -IGESGeom_TransformationMatrix.hxx -IGESGeom_TrimmedSurface.cxx -IGESGeom_TrimmedSurface.hxx diff --git a/src/IGESGraph/FILES b/src/IGESGraph/FILES deleted file mode 100644 index ff62bfecf3..0000000000 --- a/src/IGESGraph/FILES +++ /dev/null @@ -1,72 +0,0 @@ -IGESGraph.cxx -IGESGraph.hxx -IGESGraph_Array1OfColor.hxx -IGESGraph_Array1OfTextDisplayTemplate.hxx -IGESGraph_Array1OfTextFontDef.hxx -IGESGraph_Color.cxx -IGESGraph_Color.hxx -IGESGraph_DefinitionLevel.cxx -IGESGraph_DefinitionLevel.hxx -IGESGraph_DrawingSize.cxx -IGESGraph_DrawingSize.hxx -IGESGraph_DrawingUnits.cxx -IGESGraph_DrawingUnits.hxx -IGESGraph_GeneralModule.cxx -IGESGraph_GeneralModule.hxx -IGESGraph_HArray1OfColor.hxx -IGESGraph_HArray1OfTextDisplayTemplate.hxx -IGESGraph_HArray1OfTextFontDef.hxx -IGESGraph_HighLight.cxx -IGESGraph_HighLight.hxx -IGESGraph_IntercharacterSpacing.cxx -IGESGraph_IntercharacterSpacing.hxx -IGESGraph_LineFontDefPattern.cxx -IGESGraph_LineFontDefPattern.hxx -IGESGraph_LineFontDefTemplate.cxx -IGESGraph_LineFontDefTemplate.hxx -IGESGraph_LineFontPredefined.cxx -IGESGraph_LineFontPredefined.hxx -IGESGraph_NominalSize.cxx -IGESGraph_NominalSize.hxx -IGESGraph_Pick.cxx -IGESGraph_Pick.hxx -IGESGraph_Protocol.cxx -IGESGraph_Protocol.hxx -IGESGraph_ReadWriteModule.cxx -IGESGraph_ReadWriteModule.hxx -IGESGraph_SpecificModule.cxx -IGESGraph_SpecificModule.hxx -IGESGraph_TextDisplayTemplate.cxx -IGESGraph_TextDisplayTemplate.hxx -IGESGraph_TextFontDef.cxx -IGESGraph_TextFontDef.hxx -IGESGraph_ToolColor.cxx -IGESGraph_ToolColor.hxx -IGESGraph_ToolDefinitionLevel.cxx -IGESGraph_ToolDefinitionLevel.hxx -IGESGraph_ToolDrawingSize.cxx -IGESGraph_ToolDrawingSize.hxx -IGESGraph_ToolDrawingUnits.cxx -IGESGraph_ToolDrawingUnits.hxx -IGESGraph_ToolHighLight.cxx -IGESGraph_ToolHighLight.hxx -IGESGraph_ToolIntercharacterSpacing.cxx -IGESGraph_ToolIntercharacterSpacing.hxx -IGESGraph_ToolLineFontDefPattern.cxx -IGESGraph_ToolLineFontDefPattern.hxx -IGESGraph_ToolLineFontDefTemplate.cxx -IGESGraph_ToolLineFontDefTemplate.hxx -IGESGraph_ToolLineFontPredefined.cxx -IGESGraph_ToolLineFontPredefined.hxx -IGESGraph_ToolNominalSize.cxx -IGESGraph_ToolNominalSize.hxx -IGESGraph_ToolPick.cxx -IGESGraph_ToolPick.hxx -IGESGraph_ToolTextDisplayTemplate.cxx -IGESGraph_ToolTextDisplayTemplate.hxx -IGESGraph_ToolTextFontDef.cxx -IGESGraph_ToolTextFontDef.hxx -IGESGraph_ToolUniformRectGrid.cxx -IGESGraph_ToolUniformRectGrid.hxx -IGESGraph_UniformRectGrid.cxx -IGESGraph_UniformRectGrid.hxx diff --git a/src/IGESSelect/FILES b/src/IGESSelect/FILES deleted file mode 100644 index 71be221396..0000000000 --- a/src/IGESSelect/FILES +++ /dev/null @@ -1,94 +0,0 @@ -IGESSelect.cxx -IGESSelect.hxx -IGESSelect_Activator.cxx -IGESSelect_Activator.hxx -IGESSelect_AddFileComment.cxx -IGESSelect_AddFileComment.hxx -IGESSelect_AddGroup.cxx -IGESSelect_AddGroup.hxx -IGESSelect_AutoCorrect.cxx -IGESSelect_AutoCorrect.hxx -IGESSelect_ChangeLevelList.cxx -IGESSelect_ChangeLevelList.hxx -IGESSelect_ChangeLevelNumber.cxx -IGESSelect_ChangeLevelNumber.hxx -IGESSelect_ComputeStatus.cxx -IGESSelect_ComputeStatus.hxx -IGESSelect_CounterOfLevelNumber.cxx -IGESSelect_CounterOfLevelNumber.hxx -IGESSelect_DispPerDrawing.cxx -IGESSelect_DispPerDrawing.hxx -IGESSelect_DispPerSingleView.cxx -IGESSelect_DispPerSingleView.hxx -IGESSelect_Dumper.cxx -IGESSelect_Dumper.hxx -IGESSelect_EditDirPart.cxx -IGESSelect_EditDirPart.hxx -IGESSelect_EditHeader.cxx -IGESSelect_EditHeader.hxx -IGESSelect_FileModifier.hxx -IGESSelect_FileModifier_0.cxx -IGESSelect_FloatFormat.cxx -IGESSelect_FloatFormat.hxx -IGESSelect_IGESName.cxx -IGESSelect_IGESName.hxx -IGESSelect_IGESTypeForm.cxx -IGESSelect_IGESTypeForm.hxx -IGESSelect_ModelModifier.hxx -IGESSelect_ModelModifier_0.cxx -IGESSelect_RebuildDrawings.cxx -IGESSelect_RebuildDrawings.hxx -IGESSelect_RebuildGroups.cxx -IGESSelect_RebuildGroups.hxx -IGESSelect_RemoveCurves.cxx -IGESSelect_RemoveCurves.hxx -IGESSelect_SelectBasicGeom.cxx -IGESSelect_SelectBasicGeom.hxx -IGESSelect_SelectBypassGroup.cxx -IGESSelect_SelectBypassGroup.hxx -IGESSelect_SelectBypassSubfigure.cxx -IGESSelect_SelectBypassSubfigure.hxx -IGESSelect_SelectDrawingFrom.cxx -IGESSelect_SelectDrawingFrom.hxx -IGESSelect_SelectFaces.cxx -IGESSelect_SelectFaces.hxx -IGESSelect_SelectFromDrawing.cxx -IGESSelect_SelectFromDrawing.hxx -IGESSelect_SelectFromSingleView.cxx -IGESSelect_SelectFromSingleView.hxx -IGESSelect_SelectLevelNumber.cxx -IGESSelect_SelectLevelNumber.hxx -IGESSelect_SelectName.cxx -IGESSelect_SelectName.hxx -IGESSelect_SelectPCurves.cxx -IGESSelect_SelectPCurves.hxx -IGESSelect_SelectSingleViewFrom.cxx -IGESSelect_SelectSingleViewFrom.hxx -IGESSelect_SelectSubordinate.cxx -IGESSelect_SelectSubordinate.hxx -IGESSelect_SelectVisibleStatus.cxx -IGESSelect_SelectVisibleStatus.hxx -IGESSelect_SetGlobalParameter.cxx -IGESSelect_SetGlobalParameter.hxx -IGESSelect_SetLabel.cxx -IGESSelect_SetLabel.hxx -IGESSelect_SetVersion5.cxx -IGESSelect_SetVersion5.hxx -IGESSelect_SignColor.cxx -IGESSelect_SignColor.hxx -IGESSelect_SignLevelNumber.cxx -IGESSelect_SignLevelNumber.hxx -IGESSelect_SignStatus.cxx -IGESSelect_SignStatus.hxx -IGESSelect_SplineToBSpline.cxx -IGESSelect_SplineToBSpline.hxx -IGESSelect_UpdateCreationDate.cxx -IGESSelect_UpdateCreationDate.hxx -IGESSelect_UpdateFileName.cxx -IGESSelect_UpdateFileName.hxx -IGESSelect_UpdateLastChange.cxx -IGESSelect_UpdateLastChange.hxx -IGESSelect_ViewSorter.cxx -IGESSelect_ViewSorter.hxx -IGESSelect_WorkLibrary.cxx -IGESSelect_WorkLibrary.hxx diff --git a/src/IGESSolid/FILES b/src/IGESSolid/FILES deleted file mode 100755 index ffc7ddd6bf..0000000000 --- a/src/IGESSolid/FILES +++ /dev/null @@ -1,116 +0,0 @@ -IGESSolid.cxx -IGESSolid.hxx -IGESSolid_Array1OfFace.hxx -IGESSolid_Array1OfLoop.hxx -IGESSolid_Array1OfShell.hxx -IGESSolid_Array1OfVertexList.hxx -IGESSolid_Block.cxx -IGESSolid_Block.hxx -IGESSolid_BooleanTree.cxx -IGESSolid_BooleanTree.hxx -IGESSolid_ConeFrustum.cxx -IGESSolid_ConeFrustum.hxx -IGESSolid_ConicalSurface.cxx -IGESSolid_ConicalSurface.hxx -IGESSolid_Cylinder.cxx -IGESSolid_Cylinder.hxx -IGESSolid_CylindricalSurface.cxx -IGESSolid_CylindricalSurface.hxx -IGESSolid_EdgeList.cxx -IGESSolid_EdgeList.hxx -IGESSolid_Ellipsoid.cxx -IGESSolid_Ellipsoid.hxx -IGESSolid_Face.cxx -IGESSolid_Face.hxx -IGESSolid_GeneralModule.cxx -IGESSolid_GeneralModule.hxx -IGESSolid_HArray1OfFace.hxx -IGESSolid_HArray1OfLoop.hxx -IGESSolid_HArray1OfShell.hxx -IGESSolid_HArray1OfVertexList.hxx -IGESSolid_Loop.cxx -IGESSolid_Loop.hxx -IGESSolid_ManifoldSolid.cxx -IGESSolid_ManifoldSolid.hxx -IGESSolid_PlaneSurface.cxx -IGESSolid_PlaneSurface.hxx -IGESSolid_Protocol.cxx -IGESSolid_Protocol.hxx -IGESSolid_ReadWriteModule.cxx -IGESSolid_ReadWriteModule.hxx -IGESSolid_RightAngularWedge.cxx -IGESSolid_RightAngularWedge.hxx -IGESSolid_SelectedComponent.cxx -IGESSolid_SelectedComponent.hxx -IGESSolid_Shell.cxx -IGESSolid_Shell.hxx -IGESSolid_SolidAssembly.cxx -IGESSolid_SolidAssembly.hxx -IGESSolid_SolidInstance.cxx -IGESSolid_SolidInstance.hxx -IGESSolid_SolidOfLinearExtrusion.cxx -IGESSolid_SolidOfLinearExtrusion.hxx -IGESSolid_SolidOfRevolution.cxx -IGESSolid_SolidOfRevolution.hxx -IGESSolid_SpecificModule.cxx -IGESSolid_SpecificModule.hxx -IGESSolid_Sphere.cxx -IGESSolid_Sphere.hxx -IGESSolid_SphericalSurface.cxx -IGESSolid_SphericalSurface.hxx -IGESSolid_ToolBlock.cxx -IGESSolid_ToolBlock.hxx -IGESSolid_ToolBooleanTree.cxx -IGESSolid_ToolBooleanTree.hxx -IGESSolid_ToolConeFrustum.cxx -IGESSolid_ToolConeFrustum.hxx -IGESSolid_ToolConicalSurface.cxx -IGESSolid_ToolConicalSurface.hxx -IGESSolid_ToolCylinder.cxx -IGESSolid_ToolCylinder.hxx -IGESSolid_ToolCylindricalSurface.cxx -IGESSolid_ToolCylindricalSurface.hxx -IGESSolid_ToolEdgeList.cxx -IGESSolid_ToolEdgeList.hxx -IGESSolid_ToolEllipsoid.cxx -IGESSolid_ToolEllipsoid.hxx -IGESSolid_ToolFace.cxx -IGESSolid_ToolFace.hxx -IGESSolid_ToolLoop.cxx -IGESSolid_ToolLoop.hxx -IGESSolid_ToolManifoldSolid.cxx -IGESSolid_ToolManifoldSolid.hxx -IGESSolid_ToolPlaneSurface.cxx -IGESSolid_ToolPlaneSurface.hxx -IGESSolid_ToolRightAngularWedge.cxx -IGESSolid_ToolRightAngularWedge.hxx -IGESSolid_ToolSelectedComponent.cxx -IGESSolid_ToolSelectedComponent.hxx -IGESSolid_ToolShell.cxx -IGESSolid_ToolShell.hxx -IGESSolid_ToolSolidAssembly.cxx -IGESSolid_ToolSolidAssembly.hxx -IGESSolid_ToolSolidInstance.cxx -IGESSolid_ToolSolidInstance.hxx -IGESSolid_ToolSolidOfLinearExtrusion.cxx -IGESSolid_ToolSolidOfLinearExtrusion.hxx -IGESSolid_ToolSolidOfRevolution.cxx -IGESSolid_ToolSolidOfRevolution.hxx -IGESSolid_ToolSphere.cxx -IGESSolid_ToolSphere.hxx -IGESSolid_ToolSphericalSurface.cxx -IGESSolid_ToolSphericalSurface.hxx -IGESSolid_ToolToroidalSurface.cxx -IGESSolid_ToolToroidalSurface.hxx -IGESSolid_ToolTorus.cxx -IGESSolid_ToolTorus.hxx -IGESSolid_ToolVertexList.cxx -IGESSolid_ToolVertexList.hxx -IGESSolid_TopoBuilder.cxx -IGESSolid_TopoBuilder.hxx -IGESSolid_ToroidalSurface.cxx -IGESSolid_ToroidalSurface.hxx -IGESSolid_Torus.cxx -IGESSolid_Torus.hxx -IGESSolid_VertexList.cxx -IGESSolid_VertexList.hxx diff --git a/src/IGESToBRep/FILES b/src/IGESToBRep/FILES deleted file mode 100644 index a7021d0dc1..0000000000 --- a/src/IGESToBRep/FILES +++ /dev/null @@ -1,27 +0,0 @@ -IGESToBRep.cxx -IGESToBRep.hxx -IGESToBRep_Actor.cxx -IGESToBRep_Actor.hxx -IGESToBRep_AlgoContainer.cxx -IGESToBRep_AlgoContainer.hxx -IGESToBRep_AlgoContainer.lxx -IGESToBRep_BasicCurve.cxx -IGESToBRep_BasicCurve.hxx -IGESToBRep_BasicSurface.cxx -IGESToBRep_BasicSurface.hxx -IGESToBRep_BRepEntity.cxx -IGESToBRep_BRepEntity.hxx -IGESToBRep_CurveAndSurface.cxx -IGESToBRep_CurveAndSurface.hxx -IGESToBRep_CurveAndSurface.lxx -IGESToBRep_IGESBoundary.cxx -IGESToBRep_IGESBoundary.hxx -IGESToBRep_IGESBoundary.lxx -IGESToBRep_Reader.cxx -IGESToBRep_Reader.hxx -IGESToBRep_ToolContainer.cxx -IGESToBRep_ToolContainer.hxx -IGESToBRep_TopoCurve.cxx -IGESToBRep_TopoCurve.hxx -IGESToBRep_TopoSurface.cxx -IGESToBRep_TopoSurface.hxx diff --git a/src/IMeshData/FILES b/src/IMeshData/FILES deleted file mode 100644 index 592173b568..0000000000 --- a/src/IMeshData/FILES +++ /dev/null @@ -1,22 +0,0 @@ -IMeshData_Curve.hxx -IMeshData_Curve.cxx -IMeshData_Edge.hxx -IMeshData_Edge.cxx -IMeshData_Face.hxx -IMeshData_Face.cxx -IMeshData_Model.hxx -IMeshData_Model.cxx -IMeshData_ParametersList.hxx -IMeshData_ParametersList.cxx -IMeshData_ParametersListArrayAdaptor.hxx -IMeshData_PCurve.hxx -IMeshData_PCurve.cxx -IMeshData_Shape.hxx -IMeshData_Shape.cxx -IMeshData_Status.hxx -IMeshData_StatusOwner.hxx -IMeshData_TessellatedShape.hxx -IMeshData_TessellatedShape.cxx -IMeshData_Types.hxx -IMeshData_Wire.hxx -IMeshData_Wire.cxx diff --git a/src/IMeshTools/FILES b/src/IMeshTools/FILES deleted file mode 100644 index 7ffc2884ef..0000000000 --- a/src/IMeshTools/FILES +++ /dev/null @@ -1,20 +0,0 @@ -IMeshTools_Context.hxx -IMeshTools_Context.cxx -IMeshTools_CurveTessellator.hxx -IMeshTools_CurveTessellator.cxx -IMeshTools_MeshAlgo.hxx -IMeshTools_MeshAlgo.cxx -IMeshTools_MeshAlgoFactory.hxx -IMeshTools_MeshAlgoFactory.cxx -IMeshTools_MeshAlgoType.hxx -IMeshTools_MeshBuilder.hxx -IMeshTools_MeshBuilder.cxx -IMeshTools_ModelAlgo.hxx -IMeshTools_ModelAlgo.cxx -IMeshTools_ModelBuilder.hxx -IMeshTools_ModelBuilder.cxx -IMeshTools_Parameters.hxx -IMeshTools_ShapeExplorer.hxx -IMeshTools_ShapeExplorer.cxx -IMeshTools_ShapeVisitor.hxx -IMeshTools_ShapeVisitor.cxx diff --git a/src/IVtk/FILES b/src/IVtk/FILES deleted file mode 100644 index d14f480b3d..0000000000 --- a/src/IVtk/FILES +++ /dev/null @@ -1,13 +0,0 @@ -IVtk_Interface.cxx -IVtk_Interface.hxx -IVtk_IShape.cxx -IVtk_IShape.hxx -IVtk_IShapeData.cxx -IVtk_IShapeData.hxx -IVtk_IShapeMesher.cxx -IVtk_IShapeMesher.hxx -IVtk_IShapePickerAlgo.cxx -IVtk_IShapePickerAlgo.hxx -IVtk_IView.cxx -IVtk_IView.hxx -IVtk_Types.hxx diff --git a/src/IVtkDraw/FILES b/src/IVtkDraw/FILES deleted file mode 100644 index fe469fcd83..0000000000 --- a/src/IVtkDraw/FILES +++ /dev/null @@ -1,6 +0,0 @@ -IVtkDraw.cxx -IVtkDraw.hxx -IVtkDraw_HighlightAndSelectionPipeline.cxx -IVtkDraw_HighlightAndSelectionPipeline.hxx -IVtkDraw_Interactor.cxx -IVtkDraw_Interactor.hxx diff --git a/src/IVtkOCC/FILES b/src/IVtkOCC/FILES deleted file mode 100644 index 43f2ead5a8..0000000000 --- a/src/IVtkOCC/FILES +++ /dev/null @@ -1,10 +0,0 @@ -IVtkOCC_SelectableObject.cxx -IVtkOCC_SelectableObject.hxx -IVtkOCC_Shape.cxx -IVtkOCC_Shape.hxx -IVtkOCC_ShapeMesher.cxx -IVtkOCC_ShapeMesher.hxx -IVtkOCC_ShapePickerAlgo.cxx -IVtkOCC_ShapePickerAlgo.hxx -IVtkOCC_ViewerSelector.cxx -IVtkOCC_ViewerSelector.hxx diff --git a/src/IVtkTools/FILES b/src/IVtkTools/FILES deleted file mode 100644 index b8207dd989..0000000000 --- a/src/IVtkTools/FILES +++ /dev/null @@ -1,12 +0,0 @@ -IVtkTools.cxx -IVtkTools.hxx -IVtkTools_DisplayModeFilter.cxx -IVtkTools_DisplayModeFilter.hxx -IVtkTools_ShapeDataSource.cxx -IVtkTools_ShapeDataSource.hxx -IVtkTools_ShapeObject.cxx -IVtkTools_ShapeObject.hxx -IVtkTools_ShapePicker.cxx -IVtkTools_ShapePicker.hxx -IVtkTools_SubPolyDataFilter.cxx -IVtkTools_SubPolyDataFilter.hxx diff --git a/src/IVtkVTK/FILES b/src/IVtkVTK/FILES deleted file mode 100644 index ce1dd91940..0000000000 --- a/src/IVtkVTK/FILES +++ /dev/null @@ -1,4 +0,0 @@ -IVtkVTK_ShapeData.cxx -IVtkVTK_ShapeData.hxx -IVtkVTK_View.cxx -IVtkVTK_View.hxx diff --git a/src/Image/FILES b/src/Image/FILES deleted file mode 100755 index f752166c5f..0000000000 --- a/src/Image/FILES +++ /dev/null @@ -1,20 +0,0 @@ -Image_AlienPixMap.cxx -Image_AlienPixMap.hxx -Image_Color.hxx -Image_CompressedFormat.hxx -Image_CompressedPixMap.hxx -Image_DDSParser.cxx -Image_DDSParser.hxx -Image_Diff.cxx -Image_Diff.hxx -Image_Format.hxx -Image_PixMap.cxx -Image_PixMap.hxx -Image_PixMapData.hxx -Image_PixMapTypedData.hxx -Image_SupportedFormats.cxx -Image_SupportedFormats.hxx -Image_Texture.cxx -Image_Texture.hxx -Image_VideoRecorder.cxx -Image_VideoRecorder.hxx diff --git a/src/IntAna/FILES b/src/IntAna/FILES deleted file mode 100644 index 12abb3a253..0000000000 --- a/src/IntAna/FILES +++ /dev/null @@ -1,22 +0,0 @@ -IntAna_Curve.cxx -IntAna_Curve.hxx -IntAna_Int3Pln.cxx -IntAna_Int3Pln.hxx -IntAna_Int3Pln.lxx -IntAna_IntConicQuad.cxx -IntAna_IntConicQuad.hxx -IntAna_IntConicQuad.lxx -IntAna_IntLinTorus.cxx -IntAna_IntLinTorus.hxx -IntAna_IntLinTorus.lxx -IntAna_IntQuadQuad.cxx -IntAna_IntQuadQuad.hxx -IntAna_IntQuadQuad.lxx -IntAna_ListIteratorOfListOfCurve.hxx -IntAna_ListOfCurve.hxx -IntAna_QuadQuadGeo.cxx -IntAna_QuadQuadGeo.hxx -IntAna_QuadQuadGeo.lxx -IntAna_Quadric.cxx -IntAna_Quadric.hxx -IntAna_ResultType.hxx diff --git a/src/IntAna2d/FILES b/src/IntAna2d/FILES deleted file mode 100755 index 6b4040e6cb..0000000000 --- a/src/IntAna2d/FILES +++ /dev/null @@ -1,18 +0,0 @@ -IntAna2d_AnaIntersection.cxx -IntAna2d_AnaIntersection.hxx -IntAna2d_AnaIntersection.lxx -IntAna2d_AnaIntersection_1.cxx -IntAna2d_AnaIntersection_2.cxx -IntAna2d_AnaIntersection_3.cxx -IntAna2d_AnaIntersection_4.cxx -IntAna2d_AnaIntersection_5.cxx -IntAna2d_AnaIntersection_6.cxx -IntAna2d_AnaIntersection_7.cxx -IntAna2d_AnaIntersection_8.cxx -IntAna2d_Conic.cxx -IntAna2d_Conic.hxx -IntAna2d_IntPoint.cxx -IntAna2d_IntPoint.hxx -IntAna2d_IntPoint.lxx -IntAna2d_Outils.cxx -IntAna2d_Outils.hxx diff --git a/src/IntCurve/FILES b/src/IntCurve/FILES deleted file mode 100755 index 22ce929c75..0000000000 --- a/src/IntCurve/FILES +++ /dev/null @@ -1,30 +0,0 @@ -IntCurve_DistBetweenPCurvesGen.gxx -IntCurve_ExactIntersectionPoint.gxx -IntCurve_IConicTool.cxx -IntCurve_IConicTool.hxx -IntCurve_IntConicConic.cxx -IntCurve_IntConicConic.hxx -IntCurve_IntConicConic.lxx -IntCurve_IntConicConic_1.cxx -IntCurve_IntConicConic_Tool.cxx -IntCurve_IntConicConic_Tool.hxx -IntCurve_IntConicCurveGen.gxx -IntCurve_IntConicCurveGen.lxx -IntCurve_IntCurveCurveGen.gxx -IntCurve_IntCurveCurveGen.lxx -IntCurve_IntImpConicParConic.hxx -IntCurve_IntImpConicParConic_0.cxx -IntCurve_IntPolyPolyGen.gxx -IntCurve_MyImpParToolOfIntImpConicParConic.hxx -IntCurve_MyImpParToolOfIntImpConicParConic_0.cxx -IntCurve_PConic.cxx -IntCurve_PConic.hxx -IntCurve_PConic.lxx -IntCurve_PConicTool.cxx -IntCurve_PConicTool.hxx -IntCurve_Polygon2dGen.gxx -IntCurve_Polygon2dGen.lxx -IntCurve_ProjectOnPConicTool.cxx -IntCurve_ProjectOnPConicTool.hxx -IntCurve_ProjPCurGen.gxx -IntCurve_UserIntConicCurveGen.gxx diff --git a/src/IntCurveSurface/FILES b/src/IntCurveSurface/FILES deleted file mode 100644 index 0d08e4e7ac..0000000000 --- a/src/IntCurveSurface/FILES +++ /dev/null @@ -1,42 +0,0 @@ -IntCurveSurface_HInter.hxx -IntCurveSurface_HInter_0.cxx -IntCurveSurface_Inter.gxx -IntCurveSurface_Intersection.cxx -IntCurveSurface_Intersection.hxx -IntCurveSurface_IntersectionPoint.cxx -IntCurveSurface_IntersectionPoint.hxx -IntCurveSurface_IntersectionPoint.lxx -IntCurveSurface_IntersectionSegment.cxx -IntCurveSurface_IntersectionSegment.hxx -IntCurveSurface_Polygon.gxx -IntCurveSurface_PolygonTool.gxx -IntCurveSurface_PolygonTool.lxx -IntCurveSurface_Polyhedron.gxx -IntCurveSurface_Polyhedron.lxx -IntCurveSurface_PolyhedronTool.gxx -IntCurveSurface_PolyhedronTool.lxx -IntCurveSurface_QuadricCurveExactInter.gxx -IntCurveSurface_QuadricCurveFunc.gxx -IntCurveSurface_SequenceOfPnt.hxx -IntCurveSurface_SequenceOfSeg.hxx -IntCurveSurface_TheCSFunctionOfHInter.hxx -IntCurveSurface_TheCSFunctionOfHInter_0.cxx -IntCurveSurface_TheExactHInter.hxx -IntCurveSurface_TheExactHInter_0.cxx -IntCurveSurface_TheHCurveTool.hxx -IntCurveSurface_TheHCurveTool.cxx -IntCurveSurface_TheInterferenceOfHInter.hxx -IntCurveSurface_TheInterferenceOfHInter_0.cxx -IntCurveSurface_ThePolygonOfHInter.hxx -IntCurveSurface_ThePolygonOfHInter_0.cxx -IntCurveSurface_ThePolygonToolOfHInter.hxx -IntCurveSurface_ThePolygonToolOfHInter_0.cxx -IntCurveSurface_ThePolyhedronOfHInter.hxx -IntCurveSurface_ThePolyhedronOfHInter_0.cxx -IntCurveSurface_ThePolyhedronToolOfHInter.hxx -IntCurveSurface_ThePolyhedronToolOfHInter_0.cxx -IntCurveSurface_TheQuadCurvExactHInter.hxx -IntCurveSurface_TheQuadCurvExactHInter_0.cxx -IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter.hxx -IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter_0.cxx -IntCurveSurface_TransitionOnCurve.hxx diff --git a/src/IntCurvesFace/FILES b/src/IntCurvesFace/FILES deleted file mode 100644 index 218dca7d5b..0000000000 --- a/src/IntCurvesFace/FILES +++ /dev/null @@ -1,5 +0,0 @@ -IntCurvesFace_Intersector.cxx -IntCurvesFace_Intersector.hxx -IntCurvesFace_Intersector.lxx -IntCurvesFace_ShapeIntersector.cxx -IntCurvesFace_ShapeIntersector.hxx diff --git a/src/IntImp/FILES b/src/IntImp/FILES deleted file mode 100755 index 2dc0d0cf68..0000000000 --- a/src/IntImp/FILES +++ /dev/null @@ -1,11 +0,0 @@ -IntImp_ComputeTangence.cxx -IntImp_ComputeTangence.hxx -IntImp_ConstIsoparametric.hxx -IntImp_Int2S.gxx -IntImp_Int2S.lxx -IntImp_IntCS.gxx -IntImp_ZerCSParFunc.gxx -IntImp_ZerImpFunc.gxx -IntImp_ZerImpFunc.lxx -IntImp_ZerParFunc.gxx -IntImp_ZerParFunc.lxx diff --git a/src/IntImpParGen/FILES b/src/IntImpParGen/FILES deleted file mode 100755 index 731f82eea9..0000000000 --- a/src/IntImpParGen/FILES +++ /dev/null @@ -1,7 +0,0 @@ -IntImpParGen.cxx -IntImpParGen.hxx -IntImpParGen_ImpParTool.gxx -IntImpParGen_ImpTool.hxx -IntImpParGen_Intersector.gxx -IntImpParGen_Tool.cxx -IntImpParGen_Tool.hxx diff --git a/src/IntPatch/FILES b/src/IntPatch/FILES deleted file mode 100755 index e6be344b1e..0000000000 --- a/src/IntPatch/FILES +++ /dev/null @@ -1,92 +0,0 @@ -IntPatch_ALine.cxx -IntPatch_ALine.hxx -IntPatch_ALine.lxx -IntPatch_ALineToWLine.cxx -IntPatch_ALineToWLine.hxx -IntPatch_ArcFunction.cxx -IntPatch_ArcFunction.hxx -IntPatch_ArcFunction.lxx -IntPatch_CSFunction.cxx -IntPatch_CSFunction.hxx -IntPatch_CurvIntSurf.hxx -IntPatch_CurvIntSurf_0.cxx -IntPatch_GLine.cxx -IntPatch_GLine.hxx -IntPatch_GLine.lxx -IntPatch_HCurve2dTool.cxx -IntPatch_HCurve2dTool.hxx -IntPatch_HCurve2dTool.lxx -IntPatch_HInterTool.cxx -IntPatch_HInterTool.hxx -IntPatch_HInterTool.lxx -IntPatch_IType.hxx -IntPatch_ImpImpIntersection.cxx -IntPatch_ImpImpIntersection.hxx -IntPatch_ImpImpIntersection.lxx -IntPatch_ImpPrmIntersection.cxx -IntPatch_ImpPrmIntersection.hxx -IntPatch_ImpPrmIntersection.lxx -IntPatch_InterferencePolyhedron.cxx -IntPatch_InterferencePolyhedron.hxx -IntPatch_Intersection.cxx -IntPatch_Intersection.hxx -IntPatch_Intersection.lxx -IntPatch_Line.cxx -IntPatch_Line.hxx -IntPatch_Line.lxx -IntPatch_LineConstructor.cxx -IntPatch_LineConstructor.hxx -IntPatch_Point.cxx -IntPatch_Point.hxx -IntPatch_Point.lxx -IntPatch_PointLine.cxx -IntPatch_PointLine.hxx -IntPatch_PolyArc.cxx -IntPatch_PolyArc.hxx -IntPatch_PolyLine.cxx -IntPatch_PolyLine.hxx -IntPatch_Polygo.cxx -IntPatch_Polygo.hxx -IntPatch_Polygo.lxx -IntPatch_Polyhedron.cxx -IntPatch_Polyhedron.hxx -IntPatch_PolyhedronTool.hxx -IntPatch_PolyhedronTool.lxx -IntPatch_PrmPrmIntersection.cxx -IntPatch_PrmPrmIntersection.hxx -IntPatch_PrmPrmIntersection.lxx -IntPatch_PrmPrmIntersection_T3Bits.cxx -IntPatch_PrmPrmIntersection_T3Bits.hxx -IntPatch_RLine.cxx -IntPatch_RLine.hxx -IntPatch_RLine.lxx -IntPatch_RstInt.cxx -IntPatch_RstInt.hxx -IntPatch_SearchPnt.hxx -IntPatch_SequenceOfIWLineOfTheIWalking.hxx -IntPatch_SequenceOfLine.hxx -IntPatch_SequenceOfPathPointOfTheSOnBounds.hxx -IntPatch_SequenceOfPoint.hxx -IntPatch_SequenceOfSegmentOfTheSOnBounds.hxx -IntPatch_SpecPntType.hxx -IntPatch_SpecialPoints.cxx -IntPatch_SpecialPoints.hxx -IntPatch_TheIWLineOfTheIWalking.hxx -IntPatch_TheIWLineOfTheIWalking_0.cxx -IntPatch_TheIWalking.hxx -IntPatch_TheIWalking_0.cxx -IntPatch_ThePathPointOfTheSOnBounds.hxx -IntPatch_ThePathPointOfTheSOnBounds_0.cxx -IntPatch_TheSOnBounds.hxx -IntPatch_TheSOnBounds_0.cxx -IntPatch_TheSearchInside.hxx -IntPatch_TheSearchInside_0.cxx -IntPatch_TheSegmentOfTheSOnBounds.hxx -IntPatch_TheSegmentOfTheSOnBounds_0.cxx -IntPatch_TheSurfFunction.hxx -IntPatch_TheSurfFunction_0.cxx -IntPatch_WLine.cxx -IntPatch_WLine.hxx -IntPatch_WLine.lxx -IntPatch_WLineTool.cxx -IntPatch_WLineTool.hxx diff --git a/src/IntPolyh/FILES b/src/IntPolyh/FILES deleted file mode 100755 index f1641e8151..0000000000 --- a/src/IntPolyh/FILES +++ /dev/null @@ -1,28 +0,0 @@ -IntPolyh_Array.hxx -IntPolyh_ArrayOfEdges.hxx -IntPolyh_ArrayOfPoints.hxx -IntPolyh_ArrayOfPointNormal.hxx -IntPolyh_ArrayOfSectionLines.hxx -IntPolyh_ArrayOfTangentZones.hxx -IntPolyh_ArrayOfTriangles.hxx -IntPolyh_Couple.cxx -IntPolyh_Couple.hxx -IntPolyh_Edge.cxx -IntPolyh_Edge.hxx -IntPolyh_Intersection.cxx -IntPolyh_Intersection.hxx -IntPolyh_ListOfCouples.hxx -IntPolyh_MaillageAffinage.cxx -IntPolyh_MaillageAffinage.hxx -IntPolyh_PMaillageAffinage.hxx -IntPolyh_Point.cxx -IntPolyh_Point.hxx -IntPolyh_SectionLine.cxx -IntPolyh_SectionLine.hxx -IntPolyh_SeqOfStartPoints.hxx -IntPolyh_StartPoint.cxx -IntPolyh_StartPoint.hxx -IntPolyh_Tools.cxx -IntPolyh_Tools.hxx -IntPolyh_Triangle.cxx -IntPolyh_Triangle.hxx diff --git a/src/IntRes2d/FILES b/src/IntRes2d/FILES deleted file mode 100644 index a3200512ca..0000000000 --- a/src/IntRes2d/FILES +++ /dev/null @@ -1,20 +0,0 @@ -IntRes2d_Domain.cxx -IntRes2d_Domain.hxx -IntRes2d_Domain.lxx -IntRes2d_Intersection.cxx -IntRes2d_Intersection.hxx -IntRes2d_Intersection.lxx -IntRes2d_IntersectionPoint.cxx -IntRes2d_IntersectionPoint.hxx -IntRes2d_IntersectionPoint.lxx -IntRes2d_IntersectionSegment.cxx -IntRes2d_IntersectionSegment.hxx -IntRes2d_IntersectionSegment.lxx -IntRes2d_Position.hxx -IntRes2d_SequenceOfIntersectionPoint.hxx -IntRes2d_SequenceOfIntersectionSegment.hxx -IntRes2d_Situation.hxx -IntRes2d_Transition.cxx -IntRes2d_Transition.hxx -IntRes2d_Transition.lxx -IntRes2d_TypeTrans.hxx diff --git a/src/IntStart/FILES b/src/IntStart/FILES deleted file mode 100644 index 5a22bbdfe3..0000000000 --- a/src/IntStart/FILES +++ /dev/null @@ -1,10 +0,0 @@ -IntStart_PathPoint.gxx -IntStart_PathPoint.lxx -IntStart_SearchInside.gxx -IntStart_SearchInside.lxx -IntStart_SearchOnBoundaries.gxx -IntStart_SearchOnBoundaries.lxx -IntStart_Segment.gxx -IntStart_Segment.lxx -IntStart_SITopolTool.cxx -IntStart_SITopolTool.hxx diff --git a/src/IntSurf/FILES b/src/IntSurf/FILES deleted file mode 100644 index 2441b2d995..0000000000 --- a/src/IntSurf/FILES +++ /dev/null @@ -1,38 +0,0 @@ -IntSurf.cxx -IntSurf.hxx -IntSurf_Allocator.hxx -IntSurf_Couple.hxx -IntSurf_Couple.lxx -IntSurf_InteriorPoint.cxx -IntSurf_InteriorPoint.hxx -IntSurf_InteriorPoint.lxx -IntSurf_InteriorPointTool.hxx -IntSurf_InteriorPointTool.lxx -IntSurf_LineOn2S.cxx -IntSurf_LineOn2S.hxx -IntSurf_LineOn2S.lxx -IntSurf_ListIteratorOfListOfPntOn2S.hxx -IntSurf_ListOfPntOn2S.hxx -IntSurf_PathPoint.cxx -IntSurf_PathPoint.hxx -IntSurf_PathPoint.lxx -IntSurf_PathPointTool.hxx -IntSurf_PathPointTool.lxx -IntSurf_PntOn2S.cxx -IntSurf_PntOn2S.hxx -IntSurf_PntOn2S.lxx -IntSurf_Quadric.cxx -IntSurf_Quadric.hxx -IntSurf_Quadric.lxx -IntSurf_QuadricTool.cxx -IntSurf_QuadricTool.hxx -IntSurf_QuadricTool.lxx -IntSurf_SequenceOfCouple.hxx -IntSurf_SequenceOfInteriorPoint.hxx -IntSurf_SequenceOfPathPoint.hxx -IntSurf_SequenceOfPntOn2S.hxx -IntSurf_Situation.hxx -IntSurf_Transition.cxx -IntSurf_Transition.hxx -IntSurf_Transition.lxx -IntSurf_TypeTrans.hxx diff --git a/src/IntTools/FILES b/src/IntTools/FILES deleted file mode 100644 index abcaf104f5..0000000000 --- a/src/IntTools/FILES +++ /dev/null @@ -1,70 +0,0 @@ -IntTools.cxx -IntTools.hxx -IntTools_Array1OfRange.hxx -IntTools_Array1OfRoots.hxx -IntTools_BaseRangeSample.cxx -IntTools_BaseRangeSample.hxx -IntTools_BeanFaceIntersector.cxx -IntTools_BeanFaceIntersector.hxx -IntTools_CArray1OfReal.hxx -IntTools_CommonPrt.cxx -IntTools_CommonPrt.hxx -IntTools_Context.cxx -IntTools_Context.hxx -IntTools_Curve.cxx -IntTools_Curve.hxx -IntTools_CurveRangeLocalizeData.cxx -IntTools_CurveRangeLocalizeData.hxx -IntTools_CurveRangeSample.cxx -IntTools_CurveRangeSample.hxx -IntTools_DataMapIteratorOfDataMapOfSurfaceSampleBox.hxx -IntTools_DataMapOfCurveSampleBox.hxx -IntTools_DataMapOfSurfaceSampleBox.hxx -IntTools_EdgeEdge.cxx -IntTools_EdgeEdge.hxx -IntTools_EdgeEdge.lxx -IntTools_EdgeFace.cxx -IntTools_EdgeFace.hxx -IntTools_FaceFace.cxx -IntTools_FaceFace.hxx -IntTools_FClass2d.cxx -IntTools_FClass2d.hxx -IntTools_ListIteratorOfListOfBox.hxx -IntTools_ListIteratorOfListOfCurveRangeSample.hxx -IntTools_ListIteratorOfListOfSurfaceRangeSample.hxx -IntTools_ListOfBox.hxx -IntTools_ListOfCurveRangeSample.hxx -IntTools_ListOfSurfaceRangeSample.hxx -IntTools_MapIteratorOfMapOfCurveSample.hxx -IntTools_MapIteratorOfMapOfSurfaceSample.hxx -IntTools_MapOfCurveSample.hxx -IntTools_MapOfSurfaceSample.hxx -IntTools_MarkedRangeSet.cxx -IntTools_MarkedRangeSet.hxx -IntTools_PntOn2Faces.cxx -IntTools_PntOn2Faces.hxx -IntTools_PntOnFace.cxx -IntTools_PntOnFace.hxx -IntTools_Range.cxx -IntTools_Range.hxx -IntTools_Root.cxx -IntTools_Root.hxx -IntTools_SequenceOfCommonPrts.hxx -IntTools_SequenceOfCurves.hxx -IntTools_SequenceOfPntOn2Faces.hxx -IntTools_SequenceOfRanges.hxx -IntTools_SequenceOfRoots.hxx -IntTools_ShrunkRange.cxx -IntTools_ShrunkRange.hxx -IntTools_SurfaceRangeLocalizeData.cxx -IntTools_SurfaceRangeLocalizeData.hxx -IntTools_SurfaceRangeLocalizeData.lxx -IntTools_SurfaceRangeSample.cxx -IntTools_SurfaceRangeSample.hxx -IntTools_SurfaceRangeSample.lxx -IntTools_Tools.cxx -IntTools_Tools.hxx -IntTools_TopolTool.cxx -IntTools_TopolTool.hxx -IntTools_WLineTool.hxx -IntTools_WLineTool.cxx diff --git a/src/IntWalk/FILES b/src/IntWalk/FILES deleted file mode 100755 index c6c16c39d8..0000000000 --- a/src/IntWalk/FILES +++ /dev/null @@ -1,14 +0,0 @@ -IntWalk_IWalking.gxx -IntWalk_IWalking.lxx -IntWalk_IWLine.gxx -IntWalk_IWLine.lxx -IntWalk_PWalking.cxx -IntWalk_PWalking.hxx -IntWalk_PWalking.lxx -IntWalk_StatusDeflection.hxx -IntWalk_TheFunctionOfTheInt2S.hxx -IntWalk_TheFunctionOfTheInt2S_0.cxx -IntWalk_TheInt2S.hxx -IntWalk_TheInt2S_0.cxx -IntWalk_VectorOfInteger.hxx -IntWalk_VectorOfWalkingData.hxx diff --git a/src/Interface/FILES b/src/Interface/FILES deleted file mode 100755 index ac3bf215e2..0000000000 --- a/src/Interface/FILES +++ /dev/null @@ -1,114 +0,0 @@ -Interface_Array1OfFileParameter.hxx -Interface_Array1OfHAsciiString.hxx -Interface_BitMap.cxx -Interface_BitMap.hxx -Interface_Category.cxx -Interface_Category.hxx -Interface_Check.cxx -Interface_Check.hxx -Interface_CheckFailure.hxx -Interface_CheckIterator.cxx -Interface_CheckIterator.hxx -Interface_CheckStatus.hxx -Interface_CheckTool.cxx -Interface_CheckTool.hxx -Interface_CopyControl.cxx -Interface_CopyControl.hxx -Interface_CopyMap.cxx -Interface_CopyMap.hxx -Interface_CopyTool.cxx -Interface_CopyTool.hxx -Interface_DataMapIteratorOfDataMapOfTransientInteger.hxx -Interface_DataMapOfTransientInteger.hxx -Interface_DataState.hxx -Interface_EntityCluster.cxx -Interface_EntityCluster.hxx -Interface_EntityIterator.cxx -Interface_EntityIterator.hxx -Interface_EntityList.cxx -Interface_EntityList.hxx -Interface_FileParameter.cxx -Interface_FileParameter.hxx -Interface_FileReaderData.cxx -Interface_FileReaderData.hxx -Interface_FileReaderTool.cxx -Interface_FileReaderTool.hxx -Interface_FloatWriter.cxx -Interface_FloatWriter.hxx -Interface_GeneralLib.hxx -Interface_GeneralLib_0.cxx -Interface_GeneralModule.cxx -Interface_GeneralModule.hxx -Interface_GlobalNodeOfGeneralLib.hxx -Interface_GlobalNodeOfGeneralLib_0.cxx -Interface_GlobalNodeOfReaderLib.hxx -Interface_GlobalNodeOfReaderLib_0.cxx -Interface_Graph.cxx -Interface_Graph.hxx -Interface_GraphContent.cxx -Interface_GraphContent.hxx -Interface_GTool.cxx -Interface_GTool.hxx -Interface_HArray1OfHAsciiString.hxx -Interface_HGraph.cxx -Interface_HGraph.hxx -Interface_HSequenceOfCheck.hxx -Interface_IndexedMapOfAsciiString.hxx -Interface_InterfaceError.hxx -Interface_InterfaceMismatch.hxx -Interface_InterfaceModel.cxx -Interface_InterfaceModel.hxx -Interface_IntList.cxx -Interface_IntList.hxx -Interface_IntVal.cxx -Interface_IntVal.hxx -Interface_JaggedArray.gxx -Interface_LineBuffer.cxx -Interface_LineBuffer.hxx -Interface_Macros.hxx -Interface_MSG.cxx -Interface_MSG.hxx -Interface_NodeOfGeneralLib.hxx -Interface_NodeOfGeneralLib_0.cxx -Interface_NodeOfReaderLib.hxx -Interface_NodeOfReaderLib_0.cxx -Interface_ParamList.cxx -Interface_ParamList.hxx -Interface_ParamList.lxx -Interface_ParamSet.cxx -Interface_ParamSet.hxx -Interface_ParamType.hxx -Interface_Protocol.cxx -Interface_Protocol.hxx -Interface_ReaderLib.hxx -Interface_ReaderLib_0.cxx -Interface_ReaderModule.cxx -Interface_ReaderModule.hxx -Interface_Recognizer.gxx -Interface_ReportEntity.cxx -Interface_ReportEntity.hxx -Interface_SequenceOfCheck.hxx -Interface_ShareFlags.cxx -Interface_ShareFlags.hxx -Interface_ShareTool.cxx -Interface_ShareTool.hxx -Interface_SignLabel.cxx -Interface_SignLabel.hxx -Interface_SignType.cxx -Interface_SignType.hxx -Interface_STAT.cxx -Interface_STAT.hxx -Interface_Static.cxx -Interface_Static.hxx -Interface_Statics.hxx -Interface_StaticSatisfies.hxx -Interface_StaticStandards.cxx -Interface_Translates.hxx -Interface_TypedValue.cxx -Interface_TypedValue.hxx -Interface_UndefinedContent.cxx -Interface_UndefinedContent.hxx -Interface_ValueInterpret.hxx -Interface_ValueSatisfies.hxx -Interface_VectorOfFileParameter.hxx -Interface_Version.hxx diff --git a/src/Intf/FILES b/src/Intf/FILES deleted file mode 100644 index e89d6f0014..0000000000 --- a/src/Intf/FILES +++ /dev/null @@ -1,27 +0,0 @@ -Intf.cxx -Intf.hxx -Intf_Array1OfLin.hxx -Intf_Interference.cxx -Intf_Interference.hxx -Intf_Interference.lxx -Intf_InterferencePolygon2d.cxx -Intf_InterferencePolygon2d.hxx -Intf_InterferencePolygonPolyhedron.gxx -Intf_PIType.hxx -Intf_Polygon2d.cxx -Intf_Polygon2d.hxx -Intf_Polygon2d.lxx -Intf_SectionLine.cxx -Intf_SectionLine.hxx -Intf_SectionLine.lxx -Intf_SectionPoint.cxx -Intf_SectionPoint.hxx -Intf_SectionPoint.lxx -Intf_SeqOfSectionLine.hxx -Intf_SeqOfSectionPoint.hxx -Intf_SeqOfTangentZone.hxx -Intf_TangentZone.cxx -Intf_TangentZone.hxx -Intf_TangentZone.lxx -Intf_Tool.cxx -Intf_Tool.hxx diff --git a/src/Intrv/FILES b/src/Intrv/FILES deleted file mode 100644 index 7fc6447c26..0000000000 --- a/src/Intrv/FILES +++ /dev/null @@ -1,8 +0,0 @@ -Intrv_Interval.cxx -Intrv_Interval.hxx -Intrv_Interval.lxx -Intrv_Intervals.cxx -Intrv_Intervals.hxx -Intrv_Intervals.lxx -Intrv_Position.hxx -Intrv_SequenceOfInterval.hxx diff --git a/src/LDOM/FILES b/src/LDOM/FILES deleted file mode 100755 index b0b1c1affa..0000000000 --- a/src/LDOM/FILES +++ /dev/null @@ -1,43 +0,0 @@ -LDOM_Attr.cxx -LDOM_Attr.hxx -LDOM_BasicAttribute.cxx -LDOM_BasicAttribute.hxx -LDOM_BasicElement.cxx -LDOM_BasicElement.hxx -LDOM_BasicNode.cxx -LDOM_BasicNode.hxx -LDOM_BasicText.cxx -LDOM_BasicText.hxx -LDOM_CDATASection.hxx -LDOM_CharacterData.cxx -LDOM_CharacterData.hxx -LDOM_CharReference.cxx -LDOM_CharReference.hxx -LDOM_Comment.hxx -LDOM_DeclareSequence.hxx -LDOM_Document.cxx -LDOM_Document.hxx -LDOM_DocumentType.hxx -LDOM_Element.cxx -LDOM_Element.hxx -LDOM_LDOMImplementation.cxx -LDOM_LDOMImplementation.hxx -LDOM_MemManager.cxx -LDOM_MemManager.hxx -LDOM_Node.cxx -LDOM_Node.hxx -LDOM_NodeList.cxx -LDOM_NodeList.hxx -LDOM_OSStream.cxx -LDOM_OSStream.hxx -LDOM_Text.hxx -LDOM_XmlReader.cxx -LDOM_XmlReader.hxx -LDOM_XmlWriter.cxx -LDOM_XmlWriter.hxx -LDOMBasicString.cxx -LDOMBasicString.hxx -LDOMParser.cxx -LDOMParser.hxx -LDOMString.cxx -LDOMString.hxx diff --git a/src/LProp/FILES b/src/LProp/FILES deleted file mode 100644 index 26aee59ff6..0000000000 --- a/src/LProp/FILES +++ /dev/null @@ -1,11 +0,0 @@ -LProp_AnalyticCurInf.cxx -LProp_AnalyticCurInf.hxx -LProp_BadContinuity.hxx -LProp_CIType.hxx -LProp_CLProps.gxx -LProp_CurAndInf.cxx -LProp_CurAndInf.hxx -LProp_NotDefined.hxx -LProp_SequenceOfCIType.hxx -LProp_SLProps.gxx -LProp_Status.hxx diff --git a/src/LProp3d/FILES b/src/LProp3d/FILES deleted file mode 100644 index 18454a7ee0..0000000000 --- a/src/LProp3d/FILES +++ /dev/null @@ -1,8 +0,0 @@ -LProp3d_CLProps.hxx -LProp3d_CLProps_0.cxx -LProp3d_CurveTool.cxx -LProp3d_CurveTool.hxx -LProp3d_SLProps.hxx -LProp3d_SLProps_0.cxx -LProp3d_SurfaceTool.cxx -LProp3d_SurfaceTool.hxx diff --git a/src/Law/FILES b/src/Law/FILES deleted file mode 100644 index 3a286448f5..0000000000 --- a/src/Law/FILES +++ /dev/null @@ -1,24 +0,0 @@ -Law.cxx -Law.hxx -Law_BSpFunc.cxx -Law_BSpFunc.hxx -Law_BSpline.cxx -Law_BSpline.hxx -Law_BSplineKnotSplitting.cxx -Law_BSplineKnotSplitting.hxx -Law_Composite.cxx -Law_Composite.hxx -Law_Constant.cxx -Law_Constant.hxx -Law_Function.cxx -Law_Function.hxx -Law_Interpol.cxx -Law_Interpol.hxx -Law_Interpolate.cxx -Law_Interpolate.hxx -Law_Laws.hxx -Law_Linear.cxx -Law_Linear.hxx -Law_ListIteratorOfLaws.hxx -Law_S.cxx -Law_S.hxx diff --git a/src/LibCtl/FILES b/src/LibCtl/FILES deleted file mode 100755 index 0f7596edf2..0000000000 --- a/src/LibCtl/FILES +++ /dev/null @@ -1,3 +0,0 @@ -LibCtl_GlobalNode.gxx -LibCtl_Library.gxx -LibCtl_Node.gxx diff --git a/src/LocOpe/FILES b/src/LocOpe/FILES deleted file mode 100644 index 8d69105694..0000000000 --- a/src/LocOpe/FILES +++ /dev/null @@ -1,61 +0,0 @@ -LocOpe.cxx -LocOpe.hxx -LocOpe_BuildShape.cxx -LocOpe_BuildShape.hxx -LocOpe_BuildShape.lxx -LocOpe_BuildWires.cxx -LocOpe_BuildWires.hxx -LocOpe_CSIntersector.cxx -LocOpe_CSIntersector.hxx -LocOpe_CSIntersector.lxx -LocOpe_CurveShapeIntersector.cxx -LocOpe_CurveShapeIntersector.hxx -LocOpe_CurveShapeIntersector.lxx -LocOpe_DataMapIteratorOfDataMapOfShapePnt.hxx -LocOpe_DataMapOfShapePnt.hxx -LocOpe_DPrism.cxx -LocOpe_DPrism.hxx -LocOpe_FindEdges.cxx -LocOpe_FindEdges.hxx -LocOpe_FindEdges.lxx -LocOpe_FindEdgesInFace.cxx -LocOpe_FindEdgesInFace.hxx -LocOpe_FindEdgesInFace.lxx -LocOpe_GeneratedShape.cxx -LocOpe_GeneratedShape.hxx -LocOpe_Generator.cxx -LocOpe_Generator.hxx -LocOpe_Generator.lxx -LocOpe_GluedShape.cxx -LocOpe_GluedShape.hxx -LocOpe_Gluer.cxx -LocOpe_Gluer.hxx -LocOpe_Gluer.lxx -LocOpe_LinearForm.cxx -LocOpe_LinearForm.hxx -LocOpe_LinearForm.lxx -LocOpe_Operation.hxx -LocOpe_Pipe.cxx -LocOpe_Pipe.hxx -LocOpe_Pipe.lxx -LocOpe_PntFace.hxx -LocOpe_Prism.cxx -LocOpe_Prism.hxx -LocOpe_Revol.cxx -LocOpe_Revol.hxx -LocOpe_RevolutionForm.cxx -LocOpe_RevolutionForm.hxx -LocOpe_SequenceOfCirc.hxx -LocOpe_SequenceOfLin.hxx -LocOpe_SequenceOfPntFace.hxx -LocOpe_SplitDrafts.cxx -LocOpe_SplitDrafts.hxx -LocOpe_Spliter.cxx -LocOpe_Spliter.hxx -LocOpe_Spliter.lxx -LocOpe_SplitShape.cxx -LocOpe_SplitShape.hxx -LocOpe_SplitShape.lxx -LocOpe_WiresOnShape.cxx -LocOpe_WiresOnShape.hxx -LocOpe_WiresOnShape.lxx diff --git a/src/LocalAnalysis/FILES b/src/LocalAnalysis/FILES deleted file mode 100644 index aad1c75af3..0000000000 --- a/src/LocalAnalysis/FILES +++ /dev/null @@ -1,7 +0,0 @@ -LocalAnalysis.cxx -LocalAnalysis.hxx -LocalAnalysis_CurveContinuity.cxx -LocalAnalysis_CurveContinuity.hxx -LocalAnalysis_StatusErrorType.hxx -LocalAnalysis_SurfaceContinuity.cxx -LocalAnalysis_SurfaceContinuity.hxx diff --git a/src/MAT/FILES b/src/MAT/FILES deleted file mode 100644 index 0416dc6acd..0000000000 --- a/src/MAT/FILES +++ /dev/null @@ -1,37 +0,0 @@ -MAT_Arc.cxx -MAT_Arc.hxx -MAT_BasicElt.cxx -MAT_BasicElt.hxx -MAT_Bisector.cxx -MAT_Bisector.hxx -MAT_DataMapIteratorOfDataMapOfIntegerArc.hxx -MAT_DataMapIteratorOfDataMapOfIntegerBasicElt.hxx -MAT_DataMapIteratorOfDataMapOfIntegerBisector.hxx -MAT_DataMapIteratorOfDataMapOfIntegerNode.hxx -MAT_DataMapOfIntegerArc.hxx -MAT_DataMapOfIntegerBasicElt.hxx -MAT_DataMapOfIntegerBisector.hxx -MAT_DataMapOfIntegerNode.hxx -MAT_Edge.cxx -MAT_Edge.hxx -MAT_Graph.cxx -MAT_Graph.hxx -MAT_ListOfBisector.hxx -MAT_ListOfBisector_0.cxx -MAT_ListOfEdge.hxx -MAT_ListOfEdge_0.cxx -MAT_Node.cxx -MAT_Node.hxx -MAT_SequenceOfArc.hxx -MAT_SequenceOfBasicElt.hxx -MAT_Side.hxx -MAT_TList.gxx -MAT_TList.lxx -MAT_TListNode.gxx -MAT_TListNode.lxx -MAT_TListNodeOfListOfBisector.hxx -MAT_TListNodeOfListOfBisector_0.cxx -MAT_TListNodeOfListOfEdge.hxx -MAT_TListNodeOfListOfEdge_0.cxx -MAT_Zone.cxx -MAT_Zone.hxx diff --git a/src/MAT2d/FILES b/src/MAT2d/FILES deleted file mode 100644 index 531a6d12d8..0000000000 --- a/src/MAT2d/FILES +++ /dev/null @@ -1,32 +0,0 @@ -MAT2d_Array2OfConnexion.hxx -MAT2d_BiInt.cxx -MAT2d_BiInt.hxx -MAT2d_Circuit.cxx -MAT2d_Circuit.hxx -MAT2d_Connexion.cxx -MAT2d_Connexion.hxx -MAT2d_CutCurve.cxx -MAT2d_CutCurve.hxx -MAT2d_DataMapIteratorOfDataMapOfBiIntInteger.hxx -MAT2d_DataMapIteratorOfDataMapOfBiIntSequenceOfInteger.hxx -MAT2d_DataMapIteratorOfDataMapOfIntegerBisec.hxx -MAT2d_DataMapIteratorOfDataMapOfIntegerConnexion.hxx -MAT2d_DataMapIteratorOfDataMapOfIntegerPnt2d.hxx -MAT2d_DataMapIteratorOfDataMapOfIntegerSequenceOfConnexion.hxx -MAT2d_DataMapIteratorOfDataMapOfIntegerVec2d.hxx -MAT2d_DataMapOfBiIntInteger.hxx -MAT2d_DataMapOfBiIntSequenceOfInteger.hxx -MAT2d_DataMapOfIntegerBisec.hxx -MAT2d_DataMapOfIntegerConnexion.hxx -MAT2d_DataMapOfIntegerPnt2d.hxx -MAT2d_DataMapOfIntegerSequenceOfConnexion.hxx -MAT2d_DataMapOfIntegerVec2d.hxx -MAT2d_Mat2d.cxx -MAT2d_Mat2d.hxx -MAT2d_MiniPath.cxx -MAT2d_MiniPath.hxx -MAT2d_SequenceOfConnexion.hxx -MAT2d_SequenceOfSequenceOfCurve.hxx -MAT2d_SequenceOfSequenceOfGeometry.hxx -MAT2d_Tool2d.cxx -MAT2d_Tool2d.hxx diff --git a/src/MODULES.cmake b/src/MODULES.cmake new file mode 100644 index 0000000000..b238b96296 --- /dev/null +++ b/src/MODULES.cmake @@ -0,0 +1,10 @@ +# Auto-generated list of OCCT modules +set(OCCT_LIST_OF_MODULES + FoundationClasses + ModelingData + ModelingAlgorithms + Visualization + ApplicationFramework + DataExchange + Draw +) diff --git a/src/Media/FILES b/src/Media/FILES deleted file mode 100644 index 67cc68c389..0000000000 --- a/src/Media/FILES +++ /dev/null @@ -1,17 +0,0 @@ -Media_BufferPool.cxx -Media_BufferPool.hxx -Media_CodecContext.cxx -Media_CodecContext.hxx -Media_FormatContext.cxx -Media_FormatContext.hxx -Media_Frame.cxx -Media_Frame.hxx -Media_Packet.cxx -Media_Packet.hxx -Media_PlayerContext.cxx -Media_PlayerContext.hxx -Media_Scaler.cxx -Media_Scaler.hxx -Media_Timer.cxx -Media_Timer.hxx -Media_IFrameQueue.hxx diff --git a/src/MeshTest/FILES b/src/MeshTest/FILES deleted file mode 100755 index 9677102d34..0000000000 --- a/src/MeshTest/FILES +++ /dev/null @@ -1,6 +0,0 @@ -MeshTest.cxx -MeshTest.hxx -MeshTest_CheckTopology.cxx -MeshTest_CheckTopology.hxx -MeshTest_PluginCommands.cxx -MeshTest_Debug.cxx diff --git a/src/MeshVS/FILES b/src/MeshVS/FILES deleted file mode 100755 index 6db45dbe05..0000000000 --- a/src/MeshVS/FILES +++ /dev/null @@ -1,81 +0,0 @@ -MeshVS_Array1OfSequenceOfInteger.hxx -MeshVS_Buffer.hxx -MeshVS_BuilderPriority.hxx -MeshVS_CommonSensitiveEntity.hxx -MeshVS_CommonSensitiveEntity.cxx -MeshVS_DataMapIteratorOfDataMapOfColorMapOfInteger.hxx -MeshVS_DataMapIteratorOfDataMapOfHArray1OfSequenceOfInteger.hxx -MeshVS_DataMapIteratorOfDataMapOfIntegerAsciiString.hxx -MeshVS_DataMapIteratorOfDataMapOfIntegerBoolean.hxx -MeshVS_DataMapIteratorOfDataMapOfIntegerColor.hxx -MeshVS_DataMapIteratorOfDataMapOfIntegerMaterial.hxx -MeshVS_DataMapIteratorOfDataMapOfIntegerMeshEntityOwner.hxx -MeshVS_DataMapIteratorOfDataMapOfIntegerOwner.hxx -MeshVS_DataMapIteratorOfDataMapOfIntegerTwoColors.hxx -MeshVS_DataMapIteratorOfDataMapOfIntegerVector.hxx -MeshVS_DataMapIteratorOfDataMapOfTwoColorsMapOfInteger.hxx -MeshVS_DataMapOfColorMapOfInteger.hxx -MeshVS_DataMapOfHArray1OfSequenceOfInteger.hxx -MeshVS_DataMapOfIntegerAsciiString.hxx -MeshVS_DataMapOfIntegerBoolean.hxx -MeshVS_DataMapOfIntegerColor.hxx -MeshVS_DataMapOfIntegerMaterial.hxx -MeshVS_DataMapOfIntegerMeshEntityOwner.hxx -MeshVS_DataMapOfIntegerOwner.hxx -MeshVS_DataMapOfIntegerTwoColors.hxx -MeshVS_DataMapOfIntegerVector.hxx -MeshVS_DataMapOfTwoColorsMapOfInteger.hxx -MeshVS_DataSource.cxx -MeshVS_DataSource.hxx -MeshVS_DataSource3D.cxx -MeshVS_DataSource3D.hxx -MeshVS_DeformedDataSource.cxx -MeshVS_DeformedDataSource.hxx -MeshVS_DisplayModeFlags.hxx -MeshVS_Drawer.cxx -MeshVS_Drawer.hxx -MeshVS_DrawerAttribute.hxx -MeshVS_DummySensitiveEntity.cxx -MeshVS_DummySensitiveEntity.hxx -MeshVS_ElementalColorPrsBuilder.cxx -MeshVS_ElementalColorPrsBuilder.hxx -MeshVS_EntityType.hxx -MeshVS_HArray1OfSequenceOfInteger.hxx -MeshVS_MapIteratorOfMapOfTwoNodes.hxx -MeshVS_MapOfTwoNodes.hxx -MeshVS_Mesh.cxx -MeshVS_Mesh.hxx -MeshVS_MeshEntityOwner.cxx -MeshVS_MeshEntityOwner.hxx -MeshVS_MeshOwner.cxx -MeshVS_MeshOwner.hxx -MeshVS_MeshPrsBuilder.cxx -MeshVS_MeshPrsBuilder.hxx -MeshVS_MeshPtr.hxx -MeshVS_MeshSelectionMethod.hxx -MeshVS_NodalColorPrsBuilder.cxx -MeshVS_NodalColorPrsBuilder.hxx -MeshVS_PrsBuilder.cxx -MeshVS_PrsBuilder.hxx -MeshVS_SelectionModeFlags.hxx -MeshVS_SensitiveFace.cxx -MeshVS_SensitiveFace.hxx -MeshVS_SensitiveMesh.cxx -MeshVS_SensitiveMesh.hxx -MeshVS_SensitivePolyhedron.cxx -MeshVS_SensitivePolyhedron.hxx -MeshVS_SensitiveSegment.cxx -MeshVS_SensitiveSegment.hxx -MeshVS_SensitiveQuad.hxx -MeshVS_SensitiveQuad.cxx -MeshVS_SequenceOfPrsBuilder.hxx -MeshVS_SymmetricPairHasher.hxx -MeshVS_TextPrsBuilder.cxx -MeshVS_TextPrsBuilder.hxx -MeshVS_Tool.cxx -MeshVS_Tool.hxx -MeshVS_TwoColors.cxx -MeshVS_TwoColors.hxx -MeshVS_TwoNodes.hxx -MeshVS_VectorPrsBuilder.cxx -MeshVS_VectorPrsBuilder.hxx diff --git a/src/Message/FILES b/src/Message/FILES deleted file mode 100755 index f611229c87..0000000000 --- a/src/Message/FILES +++ /dev/null @@ -1,55 +0,0 @@ -Message.cxx -Message.hxx -Message_Alert.cxx -Message_Alert.hxx -Message_AlertExtended.cxx -Message_AlertExtended.hxx -Message_Algorithm.cxx -Message_Algorithm.hxx -Message_Algorithm.lxx -Message_ConsoleColor.hxx -Message_Attribute.cxx -Message_Attribute.hxx -Message_AttributeMeter.cxx -Message_AttributeMeter.hxx -Message_AttributeObject.cxx -Message_AttributeObject.hxx -Message_AttributeStream.cxx -Message_AttributeStream.hxx -Message_CompositeAlerts.cxx -Message_CompositeAlerts.hxx -Message_ExecStatus.hxx -Message_Gravity.hxx -Message_HArrayOfMsg.hxx -Message_LazyProgressScope.hxx -Message_Level.cxx -Message_Level.hxx -Message_ListIteratorOfListOfMsg.hxx -Message_ListOfMsg.hxx -Message_Messenger.cxx -Message_Messenger.hxx -Message_MetricType.hxx -Message_Msg.cxx -Message_Msg.hxx -Message_Msg.lxx -Message_MsgFile.cxx -Message_MsgFile.hxx -Message_Printer.cxx -Message_Printer.hxx -Message_PrinterOStream.cxx -Message_PrinterOStream.hxx -Message_PrinterSystemLog.cxx -Message_PrinterSystemLog.hxx -Message_PrinterToReport.cxx -Message_PrinterToReport.hxx -Message_ProgressIndicator.cxx -Message_ProgressIndicator.hxx -Message_ProgressRange.hxx -Message_ProgressScope.hxx -Message_ProgressSentry.hxx -Message_SequenceOfPrinters.hxx -Message_Status.hxx -Message_StatusType.hxx -Message_ListOfAlert.hxx -Message_Report.cxx -Message_Report.hxx diff --git a/src/BOPAlgo/BOPAlgo_Alerts.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Alerts.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_Alerts.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Alerts.hxx diff --git a/src/BOPAlgo/BOPAlgo_Algo.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Algo.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_Algo.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Algo.cxx diff --git a/src/BOPAlgo/BOPAlgo_Algo.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Algo.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_Algo.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Algo.hxx diff --git a/src/BOPAlgo/BOPAlgo_ArgumentAnalyzer.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_ArgumentAnalyzer.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_ArgumentAnalyzer.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_ArgumentAnalyzer.cxx diff --git a/src/BOPAlgo/BOPAlgo_ArgumentAnalyzer.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_ArgumentAnalyzer.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_ArgumentAnalyzer.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_ArgumentAnalyzer.hxx diff --git a/src/BOPAlgo/BOPAlgo_ArgumentAnalyzer.lxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_ArgumentAnalyzer.lxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_ArgumentAnalyzer.lxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_ArgumentAnalyzer.lxx diff --git a/src/BOPAlgo/BOPAlgo_BOP.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_BOP.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_BOP.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_BOP.cxx diff --git a/src/BOPAlgo/BOPAlgo_BOP.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_BOP.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_BOP.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_BOP.hxx diff --git a/src/BOPAlgo/BOPAlgo_BOPAlgo_msg.pxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_BOPAlgo_msg.pxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_BOPAlgo_msg.pxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_BOPAlgo_msg.pxx diff --git a/src/BOPAlgo/BOPAlgo_Builder.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Builder.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_Builder.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Builder.cxx diff --git a/src/BOPAlgo/BOPAlgo_Builder.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Builder.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_Builder.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Builder.hxx diff --git a/src/BOPAlgo/BOPAlgo_BuilderArea.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_BuilderArea.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_BuilderArea.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_BuilderArea.cxx diff --git a/src/BOPAlgo/BOPAlgo_BuilderArea.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_BuilderArea.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_BuilderArea.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_BuilderArea.hxx diff --git a/src/BOPAlgo/BOPAlgo_BuilderFace.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_BuilderFace.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_BuilderFace.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_BuilderFace.cxx diff --git a/src/BOPAlgo/BOPAlgo_BuilderFace.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_BuilderFace.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_BuilderFace.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_BuilderFace.hxx diff --git a/src/BOPAlgo/BOPAlgo_BuilderShape.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_BuilderShape.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_BuilderShape.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_BuilderShape.hxx diff --git a/src/BOPAlgo/BOPAlgo_BuilderSolid.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_BuilderSolid.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_BuilderSolid.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_BuilderSolid.cxx diff --git a/src/BOPAlgo/BOPAlgo_BuilderSolid.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_BuilderSolid.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_BuilderSolid.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_BuilderSolid.hxx diff --git a/src/BOPAlgo/BOPAlgo_Builder_1.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Builder_1.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_Builder_1.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Builder_1.cxx diff --git a/src/BOPAlgo/BOPAlgo_Builder_2.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Builder_2.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_Builder_2.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Builder_2.cxx diff --git a/src/BOPAlgo/BOPAlgo_Builder_3.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Builder_3.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_Builder_3.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Builder_3.cxx diff --git a/src/BOPAlgo/BOPAlgo_Builder_4.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Builder_4.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_Builder_4.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Builder_4.cxx diff --git a/src/BOPAlgo/BOPAlgo_CellsBuilder.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_CellsBuilder.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_CellsBuilder.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_CellsBuilder.cxx diff --git a/src/BOPAlgo/BOPAlgo_CellsBuilder.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_CellsBuilder.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_CellsBuilder.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_CellsBuilder.hxx diff --git a/src/BOPAlgo/BOPAlgo_CheckResult.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_CheckResult.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_CheckResult.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_CheckResult.cxx diff --git a/src/BOPAlgo/BOPAlgo_CheckResult.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_CheckResult.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_CheckResult.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_CheckResult.hxx diff --git a/src/BOPAlgo/BOPAlgo_CheckStatus.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_CheckStatus.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_CheckStatus.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_CheckStatus.hxx diff --git a/src/BOPAlgo/BOPAlgo_CheckerSI.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_CheckerSI.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_CheckerSI.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_CheckerSI.cxx diff --git a/src/BOPAlgo/BOPAlgo_CheckerSI.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_CheckerSI.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_CheckerSI.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_CheckerSI.hxx diff --git a/src/BOPAlgo/BOPAlgo_CheckerSI_1.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_CheckerSI_1.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_CheckerSI_1.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_CheckerSI_1.cxx diff --git a/src/BOPAlgo/BOPAlgo_GlueEnum.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_GlueEnum.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_GlueEnum.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_GlueEnum.hxx diff --git a/src/BOPAlgo/BOPAlgo_ListOfCheckResult.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_ListOfCheckResult.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_ListOfCheckResult.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_ListOfCheckResult.hxx diff --git a/src/BOPAlgo/BOPAlgo_MakeConnected.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_MakeConnected.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_MakeConnected.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_MakeConnected.cxx diff --git a/src/BOPAlgo/BOPAlgo_MakeConnected.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_MakeConnected.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_MakeConnected.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_MakeConnected.hxx diff --git a/src/BOPAlgo/BOPAlgo_MakePeriodic.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_MakePeriodic.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_MakePeriodic.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_MakePeriodic.cxx diff --git a/src/BOPAlgo/BOPAlgo_MakePeriodic.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_MakePeriodic.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_MakePeriodic.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_MakePeriodic.hxx diff --git a/src/BOPAlgo/BOPAlgo_MakerVolume.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_MakerVolume.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_MakerVolume.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_MakerVolume.cxx diff --git a/src/BOPAlgo/BOPAlgo_MakerVolume.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_MakerVolume.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_MakerVolume.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_MakerVolume.hxx diff --git a/src/BOPAlgo/BOPAlgo_MakerVolume.lxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_MakerVolume.lxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_MakerVolume.lxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_MakerVolume.lxx diff --git a/src/BOPAlgo/BOPAlgo_Operation.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Operation.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_Operation.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Operation.hxx diff --git a/src/BOPAlgo/BOPAlgo_Options.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Options.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_Options.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Options.cxx diff --git a/src/BOPAlgo/BOPAlgo_Options.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Options.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_Options.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Options.hxx diff --git a/src/BOPAlgo/BOPAlgo_PArgumentAnalyzer.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PArgumentAnalyzer.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_PArgumentAnalyzer.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PArgumentAnalyzer.hxx diff --git a/src/BOPAlgo/BOPAlgo_PBOP.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PBOP.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_PBOP.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PBOP.hxx diff --git a/src/BOPAlgo/BOPAlgo_PBuilder.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PBuilder.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_PBuilder.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PBuilder.hxx diff --git a/src/BOPAlgo/BOPAlgo_PPaveFiller.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PPaveFiller.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_PPaveFiller.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PPaveFiller.hxx diff --git a/src/BOPAlgo/BOPAlgo_PSection.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PSection.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_PSection.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PSection.hxx diff --git a/src/BOPAlgo/BOPAlgo_PWireEdgeSet.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PWireEdgeSet.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_PWireEdgeSet.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PWireEdgeSet.hxx diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_PaveFiller.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller.cxx diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_PaveFiller.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller.hxx diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_1.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller_1.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_PaveFiller_1.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller_1.cxx diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_10.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller_10.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_PaveFiller_10.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller_10.cxx diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_11.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller_11.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_PaveFiller_11.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller_11.cxx diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_2.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller_2.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_PaveFiller_2.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller_2.cxx diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_3.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller_3.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_PaveFiller_3.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller_3.cxx diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_4.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller_4.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_PaveFiller_4.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller_4.cxx diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_5.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller_5.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_PaveFiller_5.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller_5.cxx diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller_6.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_PaveFiller_6.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller_6.cxx diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_7.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller_7.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_PaveFiller_7.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller_7.cxx diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_8.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller_8.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_PaveFiller_8.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller_8.cxx diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller_9.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller_9.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_PaveFiller_9.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_PaveFiller_9.cxx diff --git a/src/BOPAlgo/BOPAlgo_RemoveFeatures.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_RemoveFeatures.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_RemoveFeatures.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_RemoveFeatures.cxx diff --git a/src/BOPAlgo/BOPAlgo_RemoveFeatures.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_RemoveFeatures.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_RemoveFeatures.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_RemoveFeatures.hxx diff --git a/src/BOPAlgo/BOPAlgo_Section.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Section.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_Section.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Section.cxx diff --git a/src/BOPAlgo/BOPAlgo_Section.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Section.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_Section.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Section.hxx diff --git a/src/BOPAlgo/BOPAlgo_SectionAttribute.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_SectionAttribute.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_SectionAttribute.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_SectionAttribute.hxx diff --git a/src/BOPAlgo/BOPAlgo_ShellSplitter.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_ShellSplitter.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_ShellSplitter.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_ShellSplitter.cxx diff --git a/src/BOPAlgo/BOPAlgo_ShellSplitter.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_ShellSplitter.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_ShellSplitter.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_ShellSplitter.hxx diff --git a/src/BOPAlgo/BOPAlgo_Splitter.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Splitter.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_Splitter.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Splitter.cxx diff --git a/src/BOPAlgo/BOPAlgo_Splitter.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Splitter.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_Splitter.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Splitter.hxx diff --git a/src/BOPAlgo/BOPAlgo_Tools.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Tools.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_Tools.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Tools.cxx diff --git a/src/BOPAlgo/BOPAlgo_Tools.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Tools.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_Tools.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_Tools.hxx diff --git a/src/BOPAlgo/BOPAlgo_ToolsProvider.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_ToolsProvider.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_ToolsProvider.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_ToolsProvider.cxx diff --git a/src/BOPAlgo/BOPAlgo_ToolsProvider.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_ToolsProvider.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_ToolsProvider.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_ToolsProvider.hxx diff --git a/src/BOPAlgo/BOPAlgo_WireEdgeSet.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_WireEdgeSet.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_WireEdgeSet.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_WireEdgeSet.hxx diff --git a/src/BOPAlgo/BOPAlgo_WireEdgeSet.lxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_WireEdgeSet.lxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_WireEdgeSet.lxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_WireEdgeSet.lxx diff --git a/src/BOPAlgo/BOPAlgo_WireSplitter.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_WireSplitter.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_WireSplitter.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_WireSplitter.cxx diff --git a/src/BOPAlgo/BOPAlgo_WireSplitter.hxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_WireSplitter.hxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_WireSplitter.hxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_WireSplitter.hxx diff --git a/src/BOPAlgo/BOPAlgo_WireSplitter.lxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_WireSplitter.lxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_WireSplitter.lxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_WireSplitter.lxx diff --git a/src/BOPAlgo/BOPAlgo_WireSplitter_1.cxx b/src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_WireSplitter_1.cxx similarity index 100% rename from src/BOPAlgo/BOPAlgo_WireSplitter_1.cxx rename to src/ModelingAlgorithms/TKBO/BOPAlgo/BOPAlgo_WireSplitter_1.cxx diff --git a/src/ModelingAlgorithms/TKBO/BOPAlgo/FILES.cmake b/src/ModelingAlgorithms/TKBO/BOPAlgo/FILES.cmake new file mode 100644 index 0000000000..ab9dd532b2 --- /dev/null +++ b/src/ModelingAlgorithms/TKBO/BOPAlgo/FILES.cmake @@ -0,0 +1,85 @@ +# Source files for BOPAlgo package +set(OCCT_BOPAlgo_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BOPAlgo_FILES + BOPAlgo_Algo.cxx + BOPAlgo_Algo.hxx + BOPAlgo_ArgumentAnalyzer.cxx + BOPAlgo_ArgumentAnalyzer.hxx + BOPAlgo_ArgumentAnalyzer.lxx + BOPAlgo_ToolsProvider.cxx + BOPAlgo_ToolsProvider.hxx + BOPAlgo_BOP.cxx + BOPAlgo_BOP.hxx + BOPAlgo_Builder.cxx + BOPAlgo_Builder.hxx + BOPAlgo_Builder_1.cxx + BOPAlgo_Builder_2.cxx + BOPAlgo_Builder_3.cxx + BOPAlgo_Builder_4.cxx + BOPAlgo_BuilderArea.cxx + BOPAlgo_BuilderArea.hxx + BOPAlgo_BuilderFace.cxx + BOPAlgo_BuilderFace.hxx + BOPAlgo_BuilderShape.hxx + BOPAlgo_BuilderSolid.cxx + BOPAlgo_BuilderSolid.hxx + BOPAlgo_CheckerSI.cxx + BOPAlgo_CheckerSI.hxx + BOPAlgo_CheckerSI_1.cxx + BOPAlgo_CheckResult.cxx + BOPAlgo_CheckResult.hxx + BOPAlgo_CheckStatus.hxx + BOPAlgo_ListOfCheckResult.hxx + BOPAlgo_MakeConnected.cxx + BOPAlgo_MakeConnected.hxx + BOPAlgo_MakePeriodic.cxx + BOPAlgo_MakePeriodic.hxx + BOPAlgo_MakerVolume.cxx + BOPAlgo_MakerVolume.hxx + BOPAlgo_MakerVolume.lxx + BOPAlgo_Operation.hxx + BOPAlgo_Options.cxx + BOPAlgo_Options.hxx + BOPAlgo_PArgumentAnalyzer.hxx + BOPAlgo_PaveFiller.cxx + BOPAlgo_PaveFiller.hxx + BOPAlgo_PaveFiller_1.cxx + BOPAlgo_PaveFiller_2.cxx + BOPAlgo_PaveFiller_3.cxx + BOPAlgo_PaveFiller_4.cxx + BOPAlgo_PaveFiller_5.cxx + BOPAlgo_PaveFiller_6.cxx + BOPAlgo_PaveFiller_7.cxx + BOPAlgo_PaveFiller_8.cxx + BOPAlgo_PaveFiller_9.cxx + BOPAlgo_PaveFiller_10.cxx + BOPAlgo_PaveFiller_11.cxx + BOPAlgo_PBOP.hxx + BOPAlgo_PBuilder.hxx + BOPAlgo_PPaveFiller.hxx + BOPAlgo_PSection.hxx + BOPAlgo_PWireEdgeSet.hxx + BOPAlgo_RemoveFeatures.cxx + BOPAlgo_RemoveFeatures.hxx + BOPAlgo_Section.cxx + BOPAlgo_Section.hxx + BOPAlgo_SectionAttribute.hxx + BOPAlgo_ShellSplitter.cxx + BOPAlgo_ShellSplitter.hxx + BOPAlgo_Tools.cxx + BOPAlgo_Tools.hxx + BOPAlgo_WireEdgeSet.hxx + BOPAlgo_WireEdgeSet.lxx + BOPAlgo_WireSplitter.cxx + BOPAlgo_WireSplitter.hxx + BOPAlgo_WireSplitter.lxx + BOPAlgo_WireSplitter_1.cxx + BOPAlgo_CellsBuilder.cxx + BOPAlgo_CellsBuilder.hxx + BOPAlgo_GlueEnum.hxx + BOPAlgo_Splitter.hxx + BOPAlgo_Splitter.cxx + BOPAlgo_Alerts.hxx + BOPAlgo_BOPAlgo_msg.pxx +) diff --git a/src/BOPDS/BOPDS_CommonBlock.cxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_CommonBlock.cxx similarity index 100% rename from src/BOPDS/BOPDS_CommonBlock.cxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_CommonBlock.cxx diff --git a/src/BOPDS/BOPDS_CommonBlock.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_CommonBlock.hxx similarity index 100% rename from src/BOPDS/BOPDS_CommonBlock.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_CommonBlock.hxx diff --git a/src/BOPDS/BOPDS_CoupleOfPaveBlocks.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_CoupleOfPaveBlocks.hxx similarity index 100% rename from src/BOPDS/BOPDS_CoupleOfPaveBlocks.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_CoupleOfPaveBlocks.hxx diff --git a/src/BOPDS/BOPDS_Curve.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Curve.hxx similarity index 100% rename from src/BOPDS/BOPDS_Curve.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Curve.hxx diff --git a/src/BOPDS/BOPDS_Curve.lxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Curve.lxx similarity index 100% rename from src/BOPDS/BOPDS_Curve.lxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Curve.lxx diff --git a/src/BOPDS/BOPDS_DS.cxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_DS.cxx similarity index 100% rename from src/BOPDS/BOPDS_DS.cxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_DS.cxx diff --git a/src/BOPDS/BOPDS_DS.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_DS.hxx similarity index 100% rename from src/BOPDS/BOPDS_DS.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_DS.hxx diff --git a/src/BOPDS/BOPDS_DS.lxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_DS.lxx similarity index 100% rename from src/BOPDS/BOPDS_DS.lxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_DS.lxx diff --git a/src/BOPDS/BOPDS_DataMapOfIntegerListOfPaveBlock.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_DataMapOfIntegerListOfPaveBlock.hxx similarity index 100% rename from src/BOPDS/BOPDS_DataMapOfIntegerListOfPaveBlock.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_DataMapOfIntegerListOfPaveBlock.hxx diff --git a/src/BOPDS/BOPDS_DataMapOfPaveBlockCommonBlock.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_DataMapOfPaveBlockCommonBlock.hxx similarity index 100% rename from src/BOPDS/BOPDS_DataMapOfPaveBlockCommonBlock.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_DataMapOfPaveBlockCommonBlock.hxx diff --git a/src/BOPDS/BOPDS_DataMapOfPaveBlockListOfInteger.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_DataMapOfPaveBlockListOfInteger.hxx similarity index 100% rename from src/BOPDS/BOPDS_DataMapOfPaveBlockListOfInteger.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_DataMapOfPaveBlockListOfInteger.hxx diff --git a/src/BOPDS/BOPDS_DataMapOfPaveBlockListOfPaveBlock.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_DataMapOfPaveBlockListOfPaveBlock.hxx similarity index 100% rename from src/BOPDS/BOPDS_DataMapOfPaveBlockListOfPaveBlock.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_DataMapOfPaveBlockListOfPaveBlock.hxx diff --git a/src/BOPDS/BOPDS_DataMapOfShapeCoupleOfPaveBlocks.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_DataMapOfShapeCoupleOfPaveBlocks.hxx similarity index 100% rename from src/BOPDS/BOPDS_DataMapOfShapeCoupleOfPaveBlocks.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_DataMapOfShapeCoupleOfPaveBlocks.hxx diff --git a/src/BOPDS/BOPDS_FaceInfo.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_FaceInfo.hxx similarity index 100% rename from src/BOPDS/BOPDS_FaceInfo.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_FaceInfo.hxx diff --git a/src/BOPDS/BOPDS_FaceInfo.lxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_FaceInfo.lxx similarity index 100% rename from src/BOPDS/BOPDS_FaceInfo.lxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_FaceInfo.lxx diff --git a/src/BOPDS/BOPDS_IndexRange.cxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_IndexRange.cxx similarity index 100% rename from src/BOPDS/BOPDS_IndexRange.cxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_IndexRange.cxx diff --git a/src/BOPDS/BOPDS_IndexRange.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_IndexRange.hxx similarity index 100% rename from src/BOPDS/BOPDS_IndexRange.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_IndexRange.hxx diff --git a/src/BOPDS/BOPDS_IndexRange.lxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_IndexRange.lxx similarity index 100% rename from src/BOPDS/BOPDS_IndexRange.lxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_IndexRange.lxx diff --git a/src/BOPDS/BOPDS_IndexedDataMapOfPaveBlockListOfInteger.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_IndexedDataMapOfPaveBlockListOfInteger.hxx similarity index 100% rename from src/BOPDS/BOPDS_IndexedDataMapOfPaveBlockListOfInteger.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_IndexedDataMapOfPaveBlockListOfInteger.hxx diff --git a/src/BOPDS/BOPDS_IndexedDataMapOfPaveBlockListOfPaveBlock.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_IndexedDataMapOfPaveBlockListOfPaveBlock.hxx similarity index 100% rename from src/BOPDS/BOPDS_IndexedDataMapOfPaveBlockListOfPaveBlock.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_IndexedDataMapOfPaveBlockListOfPaveBlock.hxx diff --git a/src/BOPDS/BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks.hxx similarity index 100% rename from src/BOPDS/BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks.hxx diff --git a/src/BOPDS/BOPDS_IndexedMapOfPaveBlock.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_IndexedMapOfPaveBlock.hxx similarity index 100% rename from src/BOPDS/BOPDS_IndexedMapOfPaveBlock.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_IndexedMapOfPaveBlock.hxx diff --git a/src/BOPDS/BOPDS_Interf.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Interf.hxx similarity index 100% rename from src/BOPDS/BOPDS_Interf.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Interf.hxx diff --git a/src/BOPDS/BOPDS_Iterator.cxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Iterator.cxx similarity index 100% rename from src/BOPDS/BOPDS_Iterator.cxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Iterator.cxx diff --git a/src/BOPDS/BOPDS_Iterator.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Iterator.hxx similarity index 100% rename from src/BOPDS/BOPDS_Iterator.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Iterator.hxx diff --git a/src/BOPDS/BOPDS_IteratorSI.cxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_IteratorSI.cxx similarity index 100% rename from src/BOPDS/BOPDS_IteratorSI.cxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_IteratorSI.cxx diff --git a/src/BOPDS/BOPDS_IteratorSI.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_IteratorSI.hxx similarity index 100% rename from src/BOPDS/BOPDS_IteratorSI.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_IteratorSI.hxx diff --git a/src/BOPDS/BOPDS_ListOfPave.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_ListOfPave.hxx similarity index 100% rename from src/BOPDS/BOPDS_ListOfPave.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_ListOfPave.hxx diff --git a/src/BOPDS/BOPDS_ListOfPaveBlock.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_ListOfPaveBlock.hxx similarity index 100% rename from src/BOPDS/BOPDS_ListOfPaveBlock.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_ListOfPaveBlock.hxx diff --git a/src/BOPDS/BOPDS_MapOfCommonBlock.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_MapOfCommonBlock.hxx similarity index 100% rename from src/BOPDS/BOPDS_MapOfCommonBlock.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_MapOfCommonBlock.hxx diff --git a/src/BOPDS/BOPDS_MapOfPair.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_MapOfPair.hxx similarity index 100% rename from src/BOPDS/BOPDS_MapOfPair.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_MapOfPair.hxx diff --git a/src/BOPDS/BOPDS_MapOfPave.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_MapOfPave.hxx similarity index 100% rename from src/BOPDS/BOPDS_MapOfPave.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_MapOfPave.hxx diff --git a/src/BOPDS/BOPDS_MapOfPaveBlock.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_MapOfPaveBlock.hxx similarity index 100% rename from src/BOPDS/BOPDS_MapOfPaveBlock.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_MapOfPaveBlock.hxx diff --git a/src/BOPDS/BOPDS_PDS.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_PDS.hxx similarity index 100% rename from src/BOPDS/BOPDS_PDS.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_PDS.hxx diff --git a/src/BOPDS/BOPDS_PIterator.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_PIterator.hxx similarity index 100% rename from src/BOPDS/BOPDS_PIterator.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_PIterator.hxx diff --git a/src/BOPDS/BOPDS_PIteratorSI.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_PIteratorSI.hxx similarity index 100% rename from src/BOPDS/BOPDS_PIteratorSI.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_PIteratorSI.hxx diff --git a/src/BOPDS/BOPDS_Pair.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Pair.hxx similarity index 100% rename from src/BOPDS/BOPDS_Pair.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Pair.hxx diff --git a/src/BOPDS/BOPDS_Pave.cxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Pave.cxx similarity index 100% rename from src/BOPDS/BOPDS_Pave.cxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Pave.cxx diff --git a/src/BOPDS/BOPDS_Pave.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Pave.hxx similarity index 100% rename from src/BOPDS/BOPDS_Pave.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Pave.hxx diff --git a/src/BOPDS/BOPDS_Pave.lxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Pave.lxx similarity index 100% rename from src/BOPDS/BOPDS_Pave.lxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Pave.lxx diff --git a/src/BOPDS/BOPDS_PaveBlock.cxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_PaveBlock.cxx similarity index 100% rename from src/BOPDS/BOPDS_PaveBlock.cxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_PaveBlock.cxx diff --git a/src/BOPDS/BOPDS_PaveBlock.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_PaveBlock.hxx similarity index 100% rename from src/BOPDS/BOPDS_PaveBlock.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_PaveBlock.hxx diff --git a/src/BOPDS/BOPDS_Point.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Point.hxx similarity index 100% rename from src/BOPDS/BOPDS_Point.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Point.hxx diff --git a/src/BOPDS/BOPDS_Point.lxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Point.lxx similarity index 100% rename from src/BOPDS/BOPDS_Point.lxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Point.lxx diff --git a/src/BOPDS/BOPDS_ShapeInfo.cxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_ShapeInfo.cxx similarity index 100% rename from src/BOPDS/BOPDS_ShapeInfo.cxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_ShapeInfo.cxx diff --git a/src/BOPDS/BOPDS_ShapeInfo.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_ShapeInfo.hxx similarity index 100% rename from src/BOPDS/BOPDS_ShapeInfo.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_ShapeInfo.hxx diff --git a/src/BOPDS/BOPDS_ShapeInfo.lxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_ShapeInfo.lxx similarity index 100% rename from src/BOPDS/BOPDS_ShapeInfo.lxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_ShapeInfo.lxx diff --git a/src/BOPDS/BOPDS_SubIterator.cxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_SubIterator.cxx similarity index 100% rename from src/BOPDS/BOPDS_SubIterator.cxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_SubIterator.cxx diff --git a/src/BOPDS/BOPDS_SubIterator.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_SubIterator.hxx similarity index 100% rename from src/BOPDS/BOPDS_SubIterator.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_SubIterator.hxx diff --git a/src/BOPDS/BOPDS_Tools.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Tools.hxx similarity index 100% rename from src/BOPDS/BOPDS_Tools.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Tools.hxx diff --git a/src/BOPDS/BOPDS_Tools.lxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Tools.lxx similarity index 100% rename from src/BOPDS/BOPDS_Tools.lxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_Tools.lxx diff --git a/src/BOPDS/BOPDS_VectorOfCurve.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfCurve.hxx similarity index 100% rename from src/BOPDS/BOPDS_VectorOfCurve.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfCurve.hxx diff --git a/src/BOPDS/BOPDS_VectorOfFaceInfo.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfFaceInfo.hxx similarity index 100% rename from src/BOPDS/BOPDS_VectorOfFaceInfo.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfFaceInfo.hxx diff --git a/src/BOPDS/BOPDS_VectorOfIndexRange.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfIndexRange.hxx similarity index 100% rename from src/BOPDS/BOPDS_VectorOfIndexRange.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfIndexRange.hxx diff --git a/src/BOPDS/BOPDS_VectorOfInterfEE.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfInterfEE.hxx similarity index 100% rename from src/BOPDS/BOPDS_VectorOfInterfEE.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfInterfEE.hxx diff --git a/src/BOPDS/BOPDS_VectorOfInterfEF.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfInterfEF.hxx similarity index 100% rename from src/BOPDS/BOPDS_VectorOfInterfEF.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfInterfEF.hxx diff --git a/src/BOPDS/BOPDS_VectorOfInterfEZ.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfInterfEZ.hxx similarity index 100% rename from src/BOPDS/BOPDS_VectorOfInterfEZ.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfInterfEZ.hxx diff --git a/src/BOPDS/BOPDS_VectorOfInterfFF.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfInterfFF.hxx similarity index 100% rename from src/BOPDS/BOPDS_VectorOfInterfFF.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfInterfFF.hxx diff --git a/src/BOPDS/BOPDS_VectorOfInterfFZ.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfInterfFZ.hxx similarity index 100% rename from src/BOPDS/BOPDS_VectorOfInterfFZ.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfInterfFZ.hxx diff --git a/src/BOPDS/BOPDS_VectorOfInterfVE.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfInterfVE.hxx similarity index 100% rename from src/BOPDS/BOPDS_VectorOfInterfVE.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfInterfVE.hxx diff --git a/src/BOPDS/BOPDS_VectorOfInterfVF.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfInterfVF.hxx similarity index 100% rename from src/BOPDS/BOPDS_VectorOfInterfVF.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfInterfVF.hxx diff --git a/src/BOPDS/BOPDS_VectorOfInterfVV.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfInterfVV.hxx similarity index 100% rename from src/BOPDS/BOPDS_VectorOfInterfVV.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfInterfVV.hxx diff --git a/src/BOPDS/BOPDS_VectorOfInterfVZ.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfInterfVZ.hxx similarity index 100% rename from src/BOPDS/BOPDS_VectorOfInterfVZ.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfInterfVZ.hxx diff --git a/src/BOPDS/BOPDS_VectorOfInterfZZ.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfInterfZZ.hxx similarity index 100% rename from src/BOPDS/BOPDS_VectorOfInterfZZ.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfInterfZZ.hxx diff --git a/src/BOPDS/BOPDS_VectorOfListOfPaveBlock.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfListOfPaveBlock.hxx similarity index 100% rename from src/BOPDS/BOPDS_VectorOfListOfPaveBlock.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfListOfPaveBlock.hxx diff --git a/src/BOPDS/BOPDS_VectorOfPair.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfPair.hxx similarity index 100% rename from src/BOPDS/BOPDS_VectorOfPair.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfPair.hxx diff --git a/src/BOPDS/BOPDS_VectorOfPave.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfPave.hxx similarity index 100% rename from src/BOPDS/BOPDS_VectorOfPave.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfPave.hxx diff --git a/src/BOPDS/BOPDS_VectorOfPoint.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfPoint.hxx similarity index 100% rename from src/BOPDS/BOPDS_VectorOfPoint.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfPoint.hxx diff --git a/src/BOPDS/BOPDS_VectorOfShapeInfo.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfShapeInfo.hxx similarity index 100% rename from src/BOPDS/BOPDS_VectorOfShapeInfo.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfShapeInfo.hxx diff --git a/src/BOPDS/BOPDS_VectorOfVectorOfPair.hxx b/src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfVectorOfPair.hxx similarity index 100% rename from src/BOPDS/BOPDS_VectorOfVectorOfPair.hxx rename to src/ModelingAlgorithms/TKBO/BOPDS/BOPDS_VectorOfVectorOfPair.hxx diff --git a/src/ModelingAlgorithms/TKBO/BOPDS/FILES.cmake b/src/ModelingAlgorithms/TKBO/BOPDS/FILES.cmake new file mode 100644 index 0000000000..6c9b39f28d --- /dev/null +++ b/src/ModelingAlgorithms/TKBO/BOPDS/FILES.cmake @@ -0,0 +1,75 @@ +# Source files for BOPDS package +set(OCCT_BOPDS_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BOPDS_FILES + BOPDS_CommonBlock.cxx + BOPDS_CommonBlock.hxx + BOPDS_CoupleOfPaveBlocks.hxx + BOPDS_Curve.hxx + BOPDS_Curve.lxx + BOPDS_DataMapOfIntegerListOfPaveBlock.hxx + BOPDS_DataMapOfPaveBlockCommonBlock.hxx + BOPDS_DataMapOfPaveBlockListOfInteger.hxx + BOPDS_DataMapOfPaveBlockListOfPaveBlock.hxx + BOPDS_DataMapOfShapeCoupleOfPaveBlocks.hxx + BOPDS_DS.cxx + BOPDS_DS.hxx + BOPDS_DS.lxx + BOPDS_FaceInfo.hxx + BOPDS_FaceInfo.lxx + BOPDS_IndexedDataMapOfPaveBlockListOfInteger.hxx + BOPDS_IndexedDataMapOfPaveBlockListOfPaveBlock.hxx + BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks.hxx + BOPDS_IndexedMapOfPaveBlock.hxx + BOPDS_IndexRange.cxx + BOPDS_IndexRange.hxx + BOPDS_IndexRange.lxx + BOPDS_Interf.hxx + BOPDS_Iterator.cxx + BOPDS_Iterator.hxx + BOPDS_IteratorSI.cxx + BOPDS_IteratorSI.hxx + BOPDS_ListOfPave.hxx + BOPDS_ListOfPaveBlock.hxx + BOPDS_MapOfCommonBlock.hxx + BOPDS_MapOfPave.hxx + BOPDS_MapOfPaveBlock.hxx + BOPDS_Pave.cxx + BOPDS_Pave.hxx + BOPDS_Pave.lxx + BOPDS_PaveBlock.cxx + BOPDS_PaveBlock.hxx + BOPDS_PDS.hxx + BOPDS_PIterator.hxx + BOPDS_PIteratorSI.hxx + BOPDS_Point.hxx + BOPDS_Point.lxx + BOPDS_ShapeInfo.cxx + BOPDS_ShapeInfo.hxx + BOPDS_ShapeInfo.lxx + BOPDS_SubIterator.cxx + BOPDS_SubIterator.hxx + BOPDS_Tools.hxx + BOPDS_Tools.lxx + BOPDS_VectorOfCurve.hxx + BOPDS_VectorOfFaceInfo.hxx + BOPDS_VectorOfIndexRange.hxx + BOPDS_VectorOfInterfEE.hxx + BOPDS_VectorOfInterfEF.hxx + BOPDS_VectorOfInterfEZ.hxx + BOPDS_VectorOfInterfFF.hxx + BOPDS_VectorOfInterfFZ.hxx + BOPDS_VectorOfInterfVE.hxx + BOPDS_VectorOfInterfVF.hxx + BOPDS_VectorOfInterfVV.hxx + BOPDS_VectorOfInterfVZ.hxx + BOPDS_VectorOfInterfZZ.hxx + BOPDS_VectorOfListOfPaveBlock.hxx + BOPDS_VectorOfPave.hxx + BOPDS_VectorOfPoint.hxx + BOPDS_VectorOfShapeInfo.hxx + BOPDS_Pair.hxx + BOPDS_MapOfPair.hxx + BOPDS_VectorOfPair.hxx + BOPDS_VectorOfVectorOfPair.hxx +) diff --git a/src/BOPTools/BOPTools_AlgoTools.cxx b/src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_AlgoTools.cxx similarity index 100% rename from src/BOPTools/BOPTools_AlgoTools.cxx rename to src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_AlgoTools.cxx diff --git a/src/BOPTools/BOPTools_AlgoTools.hxx b/src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_AlgoTools.hxx similarity index 100% rename from src/BOPTools/BOPTools_AlgoTools.hxx rename to src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_AlgoTools.hxx diff --git a/src/BOPTools/BOPTools_AlgoTools2D.cxx b/src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_AlgoTools2D.cxx similarity index 100% rename from src/BOPTools/BOPTools_AlgoTools2D.cxx rename to src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_AlgoTools2D.cxx diff --git a/src/BOPTools/BOPTools_AlgoTools2D.hxx b/src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_AlgoTools2D.hxx similarity index 100% rename from src/BOPTools/BOPTools_AlgoTools2D.hxx rename to src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_AlgoTools2D.hxx diff --git a/src/BOPTools/BOPTools_AlgoTools2D_1.cxx b/src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_AlgoTools2D_1.cxx similarity index 100% rename from src/BOPTools/BOPTools_AlgoTools2D_1.cxx rename to src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_AlgoTools2D_1.cxx diff --git a/src/BOPTools/BOPTools_AlgoTools3D.cxx b/src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_AlgoTools3D.cxx similarity index 100% rename from src/BOPTools/BOPTools_AlgoTools3D.cxx rename to src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_AlgoTools3D.cxx diff --git a/src/BOPTools/BOPTools_AlgoTools3D.hxx b/src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_AlgoTools3D.hxx similarity index 100% rename from src/BOPTools/BOPTools_AlgoTools3D.hxx rename to src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_AlgoTools3D.hxx diff --git a/src/BOPTools/BOPTools_AlgoTools_1.cxx b/src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_AlgoTools_1.cxx similarity index 100% rename from src/BOPTools/BOPTools_AlgoTools_1.cxx rename to src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_AlgoTools_1.cxx diff --git a/src/BOPTools/BOPTools_AlgoTools_2.cxx b/src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_AlgoTools_2.cxx similarity index 100% rename from src/BOPTools/BOPTools_AlgoTools_2.cxx rename to src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_AlgoTools_2.cxx diff --git a/src/BOPTools/BOPTools_BoxSelector.hxx b/src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_BoxSelector.hxx similarity index 100% rename from src/BOPTools/BOPTools_BoxSelector.hxx rename to src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_BoxSelector.hxx diff --git a/src/BOPTools/BOPTools_BoxTree.hxx b/src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_BoxTree.hxx similarity index 100% rename from src/BOPTools/BOPTools_BoxTree.hxx rename to src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_BoxTree.hxx diff --git a/src/BOPTools/BOPTools_ConnexityBlock.hxx b/src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_ConnexityBlock.hxx similarity index 100% rename from src/BOPTools/BOPTools_ConnexityBlock.hxx rename to src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_ConnexityBlock.hxx diff --git a/src/BOPTools/BOPTools_CoupleOfShape.hxx b/src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_CoupleOfShape.hxx similarity index 100% rename from src/BOPTools/BOPTools_CoupleOfShape.hxx rename to src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_CoupleOfShape.hxx diff --git a/src/BOPTools/BOPTools_IndexedDataMapOfSetShape.hxx b/src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_IndexedDataMapOfSetShape.hxx similarity index 100% rename from src/BOPTools/BOPTools_IndexedDataMapOfSetShape.hxx rename to src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_IndexedDataMapOfSetShape.hxx diff --git a/src/BOPTools/BOPTools_ListOfConnexityBlock.hxx b/src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_ListOfConnexityBlock.hxx similarity index 100% rename from src/BOPTools/BOPTools_ListOfConnexityBlock.hxx rename to src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_ListOfConnexityBlock.hxx diff --git a/src/BOPTools/BOPTools_ListOfCoupleOfShape.hxx b/src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_ListOfCoupleOfShape.hxx similarity index 100% rename from src/BOPTools/BOPTools_ListOfCoupleOfShape.hxx rename to src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_ListOfCoupleOfShape.hxx diff --git a/src/BOPTools/BOPTools_MapOfSet.hxx b/src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_MapOfSet.hxx similarity index 100% rename from src/BOPTools/BOPTools_MapOfSet.hxx rename to src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_MapOfSet.hxx diff --git a/src/BOPTools/BOPTools_PairSelector.hxx b/src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_PairSelector.hxx similarity index 100% rename from src/BOPTools/BOPTools_PairSelector.hxx rename to src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_PairSelector.hxx diff --git a/src/BOPTools/BOPTools_Parallel.hxx b/src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_Parallel.hxx similarity index 100% rename from src/BOPTools/BOPTools_Parallel.hxx rename to src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_Parallel.hxx diff --git a/src/BOPTools/BOPTools_Set.cxx b/src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_Set.cxx similarity index 100% rename from src/BOPTools/BOPTools_Set.cxx rename to src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_Set.cxx diff --git a/src/BOPTools/BOPTools_Set.hxx b/src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_Set.hxx similarity index 100% rename from src/BOPTools/BOPTools_Set.hxx rename to src/ModelingAlgorithms/TKBO/BOPTools/BOPTools_Set.hxx diff --git a/src/ModelingAlgorithms/TKBO/BOPTools/FILES.cmake b/src/ModelingAlgorithms/TKBO/BOPTools/FILES.cmake new file mode 100644 index 0000000000..2ff2bb1bed --- /dev/null +++ b/src/ModelingAlgorithms/TKBO/BOPTools/FILES.cmake @@ -0,0 +1,26 @@ +# Source files for BOPTools package +set(OCCT_BOPTools_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BOPTools_FILES + BOPTools_AlgoTools.cxx + BOPTools_AlgoTools.hxx + BOPTools_AlgoTools2D.cxx + BOPTools_AlgoTools2D.hxx + BOPTools_AlgoTools2D_1.cxx + BOPTools_AlgoTools3D.cxx + BOPTools_AlgoTools3D.hxx + BOPTools_AlgoTools_1.cxx + BOPTools_AlgoTools_2.cxx + BOPTools_BoxSelector.hxx + BOPTools_BoxTree.hxx + BOPTools_ConnexityBlock.hxx + BOPTools_CoupleOfShape.hxx + BOPTools_IndexedDataMapOfSetShape.hxx + BOPTools_ListOfConnexityBlock.hxx + BOPTools_ListOfCoupleOfShape.hxx + BOPTools_MapOfSet.hxx + BOPTools_PairSelector.hxx + BOPTools_Parallel.hxx + BOPTools_Set.cxx + BOPTools_Set.hxx +) diff --git a/src/BRepAlgoAPI/BRepAlgoAPI_Algo.cxx b/src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Algo.cxx similarity index 100% rename from src/BRepAlgoAPI/BRepAlgoAPI_Algo.cxx rename to src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Algo.cxx diff --git a/src/BRepAlgoAPI/BRepAlgoAPI_Algo.hxx b/src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Algo.hxx similarity index 100% rename from src/BRepAlgoAPI/BRepAlgoAPI_Algo.hxx rename to src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Algo.hxx diff --git a/src/BRepAlgoAPI/BRepAlgoAPI_BooleanOperation.cxx b/src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_BooleanOperation.cxx similarity index 100% rename from src/BRepAlgoAPI/BRepAlgoAPI_BooleanOperation.cxx rename to src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_BooleanOperation.cxx diff --git a/src/BRepAlgoAPI/BRepAlgoAPI_BooleanOperation.hxx b/src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_BooleanOperation.hxx similarity index 100% rename from src/BRepAlgoAPI/BRepAlgoAPI_BooleanOperation.hxx rename to src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_BooleanOperation.hxx diff --git a/src/BRepAlgoAPI/BRepAlgoAPI_BuilderAlgo.cxx b/src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_BuilderAlgo.cxx similarity index 100% rename from src/BRepAlgoAPI/BRepAlgoAPI_BuilderAlgo.cxx rename to src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_BuilderAlgo.cxx diff --git a/src/BRepAlgoAPI/BRepAlgoAPI_BuilderAlgo.hxx b/src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_BuilderAlgo.hxx similarity index 100% rename from src/BRepAlgoAPI/BRepAlgoAPI_BuilderAlgo.hxx rename to src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_BuilderAlgo.hxx diff --git a/src/BRepAlgoAPI/BRepAlgoAPI_Check.cxx b/src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Check.cxx similarity index 100% rename from src/BRepAlgoAPI/BRepAlgoAPI_Check.cxx rename to src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Check.cxx diff --git a/src/BRepAlgoAPI/BRepAlgoAPI_Check.hxx b/src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Check.hxx similarity index 100% rename from src/BRepAlgoAPI/BRepAlgoAPI_Check.hxx rename to src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Check.hxx diff --git a/src/BRepAlgoAPI/BRepAlgoAPI_Common.cxx b/src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Common.cxx similarity index 100% rename from src/BRepAlgoAPI/BRepAlgoAPI_Common.cxx rename to src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Common.cxx diff --git a/src/BRepAlgoAPI/BRepAlgoAPI_Common.hxx b/src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Common.hxx similarity index 100% rename from src/BRepAlgoAPI/BRepAlgoAPI_Common.hxx rename to src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Common.hxx diff --git a/src/BRepAlgoAPI/BRepAlgoAPI_Cut.cxx b/src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Cut.cxx similarity index 100% rename from src/BRepAlgoAPI/BRepAlgoAPI_Cut.cxx rename to src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Cut.cxx diff --git a/src/BRepAlgoAPI/BRepAlgoAPI_Cut.hxx b/src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Cut.hxx similarity index 100% rename from src/BRepAlgoAPI/BRepAlgoAPI_Cut.hxx rename to src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Cut.hxx diff --git a/src/BRepAlgoAPI/BRepAlgoAPI_Defeaturing.cxx b/src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Defeaturing.cxx similarity index 100% rename from src/BRepAlgoAPI/BRepAlgoAPI_Defeaturing.cxx rename to src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Defeaturing.cxx diff --git a/src/BRepAlgoAPI/BRepAlgoAPI_Defeaturing.hxx b/src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Defeaturing.hxx similarity index 100% rename from src/BRepAlgoAPI/BRepAlgoAPI_Defeaturing.hxx rename to src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Defeaturing.hxx diff --git a/src/BRepAlgoAPI/BRepAlgoAPI_Fuse.cxx b/src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Fuse.cxx similarity index 100% rename from src/BRepAlgoAPI/BRepAlgoAPI_Fuse.cxx rename to src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Fuse.cxx diff --git a/src/BRepAlgoAPI/BRepAlgoAPI_Fuse.hxx b/src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Fuse.hxx similarity index 100% rename from src/BRepAlgoAPI/BRepAlgoAPI_Fuse.hxx rename to src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Fuse.hxx diff --git a/src/BRepAlgoAPI/BRepAlgoAPI_Section.cxx b/src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Section.cxx similarity index 100% rename from src/BRepAlgoAPI/BRepAlgoAPI_Section.cxx rename to src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Section.cxx diff --git a/src/BRepAlgoAPI/BRepAlgoAPI_Section.hxx b/src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Section.hxx similarity index 100% rename from src/BRepAlgoAPI/BRepAlgoAPI_Section.hxx rename to src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Section.hxx diff --git a/src/BRepAlgoAPI/BRepAlgoAPI_Splitter.cxx b/src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Splitter.cxx similarity index 100% rename from src/BRepAlgoAPI/BRepAlgoAPI_Splitter.cxx rename to src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Splitter.cxx diff --git a/src/BRepAlgoAPI/BRepAlgoAPI_Splitter.hxx b/src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Splitter.hxx similarity index 100% rename from src/BRepAlgoAPI/BRepAlgoAPI_Splitter.hxx rename to src/ModelingAlgorithms/TKBO/BRepAlgoAPI/BRepAlgoAPI_Splitter.hxx diff --git a/src/ModelingAlgorithms/TKBO/BRepAlgoAPI/FILES.cmake b/src/ModelingAlgorithms/TKBO/BRepAlgoAPI/FILES.cmake new file mode 100644 index 0000000000..d130bb460d --- /dev/null +++ b/src/ModelingAlgorithms/TKBO/BRepAlgoAPI/FILES.cmake @@ -0,0 +1,25 @@ +# Source files for BRepAlgoAPI package +set(OCCT_BRepAlgoAPI_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepAlgoAPI_FILES + BRepAlgoAPI_Algo.cxx + BRepAlgoAPI_Algo.hxx + BRepAlgoAPI_BooleanOperation.cxx + BRepAlgoAPI_BooleanOperation.hxx + BRepAlgoAPI_BuilderAlgo.cxx + BRepAlgoAPI_BuilderAlgo.hxx + BRepAlgoAPI_Check.cxx + BRepAlgoAPI_Check.hxx + BRepAlgoAPI_Common.cxx + BRepAlgoAPI_Common.hxx + BRepAlgoAPI_Cut.cxx + BRepAlgoAPI_Cut.hxx + BRepAlgoAPI_Defeaturing.cxx + BRepAlgoAPI_Defeaturing.hxx + BRepAlgoAPI_Fuse.cxx + BRepAlgoAPI_Fuse.hxx + BRepAlgoAPI_Section.cxx + BRepAlgoAPI_Section.hxx + BRepAlgoAPI_Splitter.cxx + BRepAlgoAPI_Splitter.hxx +) diff --git a/src/TKBO/CMakeLists.txt b/src/ModelingAlgorithms/TKBO/CMakeLists.txt similarity index 100% rename from src/TKBO/CMakeLists.txt rename to src/ModelingAlgorithms/TKBO/CMakeLists.txt diff --git a/src/ModelingAlgorithms/TKBO/EXTERNLIB.cmake b/src/ModelingAlgorithms/TKBO/EXTERNLIB.cmake new file mode 100644 index 0000000000..8fe299fbbd --- /dev/null +++ b/src/ModelingAlgorithms/TKBO/EXTERNLIB.cmake @@ -0,0 +1,14 @@ +# External dependencies for TKBO +set(OCCT_TKBO_EXTERNAL_LIBS + TKBRep + TKTopAlgo + TKMath + TKernel + TKG2d + TKG3d + TKGeomAlgo + TKGeomBase + TKPrim + TKShHealing + CSF_TBB +) diff --git a/src/ModelingAlgorithms/TKBO/FILES.cmake b/src/ModelingAlgorithms/TKBO/FILES.cmake new file mode 100644 index 0000000000..fbe7dde0d9 --- /dev/null +++ b/src/ModelingAlgorithms/TKBO/FILES.cmake @@ -0,0 +1,6 @@ +# Source files for TKBO +set(OCCT_TKBO_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKBO_FILES + EXTERNLIB +) diff --git a/src/ModelingAlgorithms/TKBO/IntTools/FILES.cmake b/src/ModelingAlgorithms/TKBO/IntTools/FILES.cmake new file mode 100644 index 0000000000..5aaa1d5b26 --- /dev/null +++ b/src/ModelingAlgorithms/TKBO/IntTools/FILES.cmake @@ -0,0 +1,75 @@ +# Source files for IntTools package +set(OCCT_IntTools_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IntTools_FILES + IntTools.cxx + IntTools.hxx + IntTools_Array1OfRange.hxx + IntTools_Array1OfRoots.hxx + IntTools_BaseRangeSample.cxx + IntTools_BaseRangeSample.hxx + IntTools_BeanFaceIntersector.cxx + IntTools_BeanFaceIntersector.hxx + IntTools_CArray1OfReal.hxx + IntTools_CommonPrt.cxx + IntTools_CommonPrt.hxx + IntTools_Context.cxx + IntTools_Context.hxx + IntTools_Curve.cxx + IntTools_Curve.hxx + IntTools_CurveRangeLocalizeData.cxx + IntTools_CurveRangeLocalizeData.hxx + IntTools_CurveRangeSample.cxx + IntTools_CurveRangeSample.hxx + IntTools_DataMapIteratorOfDataMapOfSurfaceSampleBox.hxx + IntTools_DataMapOfCurveSampleBox.hxx + IntTools_DataMapOfSurfaceSampleBox.hxx + IntTools_EdgeEdge.cxx + IntTools_EdgeEdge.hxx + IntTools_EdgeEdge.lxx + IntTools_EdgeFace.cxx + IntTools_EdgeFace.hxx + IntTools_FaceFace.cxx + IntTools_FaceFace.hxx + IntTools_FClass2d.cxx + IntTools_FClass2d.hxx + IntTools_ListIteratorOfListOfBox.hxx + IntTools_ListIteratorOfListOfCurveRangeSample.hxx + IntTools_ListIteratorOfListOfSurfaceRangeSample.hxx + IntTools_ListOfBox.hxx + IntTools_ListOfCurveRangeSample.hxx + IntTools_ListOfSurfaceRangeSample.hxx + IntTools_MapIteratorOfMapOfCurveSample.hxx + IntTools_MapIteratorOfMapOfSurfaceSample.hxx + IntTools_MapOfCurveSample.hxx + IntTools_MapOfSurfaceSample.hxx + IntTools_MarkedRangeSet.cxx + IntTools_MarkedRangeSet.hxx + IntTools_PntOn2Faces.cxx + IntTools_PntOn2Faces.hxx + IntTools_PntOnFace.cxx + IntTools_PntOnFace.hxx + IntTools_Range.cxx + IntTools_Range.hxx + IntTools_Root.cxx + IntTools_Root.hxx + IntTools_SequenceOfCommonPrts.hxx + IntTools_SequenceOfCurves.hxx + IntTools_SequenceOfPntOn2Faces.hxx + IntTools_SequenceOfRanges.hxx + IntTools_SequenceOfRoots.hxx + IntTools_ShrunkRange.cxx + IntTools_ShrunkRange.hxx + IntTools_SurfaceRangeLocalizeData.cxx + IntTools_SurfaceRangeLocalizeData.hxx + IntTools_SurfaceRangeLocalizeData.lxx + IntTools_SurfaceRangeSample.cxx + IntTools_SurfaceRangeSample.hxx + IntTools_SurfaceRangeSample.lxx + IntTools_Tools.cxx + IntTools_Tools.hxx + IntTools_TopolTool.cxx + IntTools_TopolTool.hxx + IntTools_WLineTool.hxx + IntTools_WLineTool.cxx +) diff --git a/src/IntTools/IntTools.cxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools.cxx similarity index 100% rename from src/IntTools/IntTools.cxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools.cxx diff --git a/src/IntTools/IntTools.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools.hxx similarity index 100% rename from src/IntTools/IntTools.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools.hxx diff --git a/src/IntTools/IntTools_Array1OfRange.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_Array1OfRange.hxx similarity index 100% rename from src/IntTools/IntTools_Array1OfRange.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_Array1OfRange.hxx diff --git a/src/IntTools/IntTools_Array1OfRoots.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_Array1OfRoots.hxx similarity index 100% rename from src/IntTools/IntTools_Array1OfRoots.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_Array1OfRoots.hxx diff --git a/src/IntTools/IntTools_BaseRangeSample.cxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_BaseRangeSample.cxx similarity index 100% rename from src/IntTools/IntTools_BaseRangeSample.cxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_BaseRangeSample.cxx diff --git a/src/IntTools/IntTools_BaseRangeSample.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_BaseRangeSample.hxx similarity index 100% rename from src/IntTools/IntTools_BaseRangeSample.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_BaseRangeSample.hxx diff --git a/src/IntTools/IntTools_BeanFaceIntersector.cxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_BeanFaceIntersector.cxx similarity index 100% rename from src/IntTools/IntTools_BeanFaceIntersector.cxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_BeanFaceIntersector.cxx diff --git a/src/IntTools/IntTools_BeanFaceIntersector.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_BeanFaceIntersector.hxx similarity index 100% rename from src/IntTools/IntTools_BeanFaceIntersector.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_BeanFaceIntersector.hxx diff --git a/src/IntTools/IntTools_CArray1OfReal.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_CArray1OfReal.hxx similarity index 100% rename from src/IntTools/IntTools_CArray1OfReal.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_CArray1OfReal.hxx diff --git a/src/IntTools/IntTools_CommonPrt.cxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_CommonPrt.cxx similarity index 100% rename from src/IntTools/IntTools_CommonPrt.cxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_CommonPrt.cxx diff --git a/src/IntTools/IntTools_CommonPrt.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_CommonPrt.hxx similarity index 100% rename from src/IntTools/IntTools_CommonPrt.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_CommonPrt.hxx diff --git a/src/IntTools/IntTools_Context.cxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_Context.cxx similarity index 100% rename from src/IntTools/IntTools_Context.cxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_Context.cxx diff --git a/src/IntTools/IntTools_Context.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_Context.hxx similarity index 100% rename from src/IntTools/IntTools_Context.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_Context.hxx diff --git a/src/IntTools/IntTools_Curve.cxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_Curve.cxx similarity index 100% rename from src/IntTools/IntTools_Curve.cxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_Curve.cxx diff --git a/src/IntTools/IntTools_Curve.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_Curve.hxx similarity index 100% rename from src/IntTools/IntTools_Curve.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_Curve.hxx diff --git a/src/IntTools/IntTools_CurveRangeLocalizeData.cxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_CurveRangeLocalizeData.cxx similarity index 100% rename from src/IntTools/IntTools_CurveRangeLocalizeData.cxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_CurveRangeLocalizeData.cxx diff --git a/src/IntTools/IntTools_CurveRangeLocalizeData.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_CurveRangeLocalizeData.hxx similarity index 100% rename from src/IntTools/IntTools_CurveRangeLocalizeData.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_CurveRangeLocalizeData.hxx diff --git a/src/IntTools/IntTools_CurveRangeSample.cxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_CurveRangeSample.cxx similarity index 100% rename from src/IntTools/IntTools_CurveRangeSample.cxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_CurveRangeSample.cxx diff --git a/src/IntTools/IntTools_CurveRangeSample.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_CurveRangeSample.hxx similarity index 100% rename from src/IntTools/IntTools_CurveRangeSample.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_CurveRangeSample.hxx diff --git a/src/IntTools/IntTools_DataMapIteratorOfDataMapOfSurfaceSampleBox.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_DataMapIteratorOfDataMapOfSurfaceSampleBox.hxx similarity index 100% rename from src/IntTools/IntTools_DataMapIteratorOfDataMapOfSurfaceSampleBox.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_DataMapIteratorOfDataMapOfSurfaceSampleBox.hxx diff --git a/src/IntTools/IntTools_DataMapOfCurveSampleBox.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_DataMapOfCurveSampleBox.hxx similarity index 100% rename from src/IntTools/IntTools_DataMapOfCurveSampleBox.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_DataMapOfCurveSampleBox.hxx diff --git a/src/IntTools/IntTools_DataMapOfSurfaceSampleBox.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_DataMapOfSurfaceSampleBox.hxx similarity index 100% rename from src/IntTools/IntTools_DataMapOfSurfaceSampleBox.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_DataMapOfSurfaceSampleBox.hxx diff --git a/src/IntTools/IntTools_EdgeEdge.cxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_EdgeEdge.cxx similarity index 100% rename from src/IntTools/IntTools_EdgeEdge.cxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_EdgeEdge.cxx diff --git a/src/IntTools/IntTools_EdgeEdge.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_EdgeEdge.hxx similarity index 100% rename from src/IntTools/IntTools_EdgeEdge.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_EdgeEdge.hxx diff --git a/src/IntTools/IntTools_EdgeEdge.lxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_EdgeEdge.lxx similarity index 100% rename from src/IntTools/IntTools_EdgeEdge.lxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_EdgeEdge.lxx diff --git a/src/IntTools/IntTools_EdgeFace.cxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_EdgeFace.cxx similarity index 100% rename from src/IntTools/IntTools_EdgeFace.cxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_EdgeFace.cxx diff --git a/src/IntTools/IntTools_EdgeFace.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_EdgeFace.hxx similarity index 100% rename from src/IntTools/IntTools_EdgeFace.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_EdgeFace.hxx diff --git a/src/IntTools/IntTools_FClass2d.cxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_FClass2d.cxx similarity index 100% rename from src/IntTools/IntTools_FClass2d.cxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_FClass2d.cxx diff --git a/src/IntTools/IntTools_FClass2d.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_FClass2d.hxx similarity index 100% rename from src/IntTools/IntTools_FClass2d.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_FClass2d.hxx diff --git a/src/IntTools/IntTools_FaceFace.cxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_FaceFace.cxx similarity index 100% rename from src/IntTools/IntTools_FaceFace.cxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_FaceFace.cxx diff --git a/src/IntTools/IntTools_FaceFace.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_FaceFace.hxx similarity index 100% rename from src/IntTools/IntTools_FaceFace.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_FaceFace.hxx diff --git a/src/IntTools/IntTools_ListIteratorOfListOfBox.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_ListIteratorOfListOfBox.hxx similarity index 100% rename from src/IntTools/IntTools_ListIteratorOfListOfBox.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_ListIteratorOfListOfBox.hxx diff --git a/src/IntTools/IntTools_ListIteratorOfListOfCurveRangeSample.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_ListIteratorOfListOfCurveRangeSample.hxx similarity index 100% rename from src/IntTools/IntTools_ListIteratorOfListOfCurveRangeSample.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_ListIteratorOfListOfCurveRangeSample.hxx diff --git a/src/IntTools/IntTools_ListIteratorOfListOfSurfaceRangeSample.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_ListIteratorOfListOfSurfaceRangeSample.hxx similarity index 100% rename from src/IntTools/IntTools_ListIteratorOfListOfSurfaceRangeSample.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_ListIteratorOfListOfSurfaceRangeSample.hxx diff --git a/src/IntTools/IntTools_ListOfBox.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_ListOfBox.hxx similarity index 100% rename from src/IntTools/IntTools_ListOfBox.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_ListOfBox.hxx diff --git a/src/IntTools/IntTools_ListOfCurveRangeSample.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_ListOfCurveRangeSample.hxx similarity index 100% rename from src/IntTools/IntTools_ListOfCurveRangeSample.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_ListOfCurveRangeSample.hxx diff --git a/src/IntTools/IntTools_ListOfSurfaceRangeSample.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_ListOfSurfaceRangeSample.hxx similarity index 100% rename from src/IntTools/IntTools_ListOfSurfaceRangeSample.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_ListOfSurfaceRangeSample.hxx diff --git a/src/IntTools/IntTools_MapIteratorOfMapOfCurveSample.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_MapIteratorOfMapOfCurveSample.hxx similarity index 100% rename from src/IntTools/IntTools_MapIteratorOfMapOfCurveSample.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_MapIteratorOfMapOfCurveSample.hxx diff --git a/src/IntTools/IntTools_MapIteratorOfMapOfSurfaceSample.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_MapIteratorOfMapOfSurfaceSample.hxx similarity index 100% rename from src/IntTools/IntTools_MapIteratorOfMapOfSurfaceSample.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_MapIteratorOfMapOfSurfaceSample.hxx diff --git a/src/IntTools/IntTools_MapOfCurveSample.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_MapOfCurveSample.hxx similarity index 100% rename from src/IntTools/IntTools_MapOfCurveSample.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_MapOfCurveSample.hxx diff --git a/src/IntTools/IntTools_MapOfSurfaceSample.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_MapOfSurfaceSample.hxx similarity index 100% rename from src/IntTools/IntTools_MapOfSurfaceSample.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_MapOfSurfaceSample.hxx diff --git a/src/IntTools/IntTools_MarkedRangeSet.cxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_MarkedRangeSet.cxx similarity index 100% rename from src/IntTools/IntTools_MarkedRangeSet.cxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_MarkedRangeSet.cxx diff --git a/src/IntTools/IntTools_MarkedRangeSet.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_MarkedRangeSet.hxx similarity index 100% rename from src/IntTools/IntTools_MarkedRangeSet.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_MarkedRangeSet.hxx diff --git a/src/IntTools/IntTools_PntOn2Faces.cxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_PntOn2Faces.cxx similarity index 100% rename from src/IntTools/IntTools_PntOn2Faces.cxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_PntOn2Faces.cxx diff --git a/src/IntTools/IntTools_PntOn2Faces.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_PntOn2Faces.hxx similarity index 100% rename from src/IntTools/IntTools_PntOn2Faces.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_PntOn2Faces.hxx diff --git a/src/IntTools/IntTools_PntOnFace.cxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_PntOnFace.cxx similarity index 100% rename from src/IntTools/IntTools_PntOnFace.cxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_PntOnFace.cxx diff --git a/src/IntTools/IntTools_PntOnFace.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_PntOnFace.hxx similarity index 100% rename from src/IntTools/IntTools_PntOnFace.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_PntOnFace.hxx diff --git a/src/IntTools/IntTools_Range.cxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_Range.cxx similarity index 100% rename from src/IntTools/IntTools_Range.cxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_Range.cxx diff --git a/src/IntTools/IntTools_Range.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_Range.hxx similarity index 100% rename from src/IntTools/IntTools_Range.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_Range.hxx diff --git a/src/IntTools/IntTools_Root.cxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_Root.cxx similarity index 100% rename from src/IntTools/IntTools_Root.cxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_Root.cxx diff --git a/src/IntTools/IntTools_Root.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_Root.hxx similarity index 100% rename from src/IntTools/IntTools_Root.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_Root.hxx diff --git a/src/IntTools/IntTools_SequenceOfCommonPrts.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_SequenceOfCommonPrts.hxx similarity index 100% rename from src/IntTools/IntTools_SequenceOfCommonPrts.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_SequenceOfCommonPrts.hxx diff --git a/src/IntTools/IntTools_SequenceOfCurves.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_SequenceOfCurves.hxx similarity index 100% rename from src/IntTools/IntTools_SequenceOfCurves.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_SequenceOfCurves.hxx diff --git a/src/IntTools/IntTools_SequenceOfPntOn2Faces.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_SequenceOfPntOn2Faces.hxx similarity index 100% rename from src/IntTools/IntTools_SequenceOfPntOn2Faces.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_SequenceOfPntOn2Faces.hxx diff --git a/src/IntTools/IntTools_SequenceOfRanges.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_SequenceOfRanges.hxx similarity index 100% rename from src/IntTools/IntTools_SequenceOfRanges.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_SequenceOfRanges.hxx diff --git a/src/IntTools/IntTools_SequenceOfRoots.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_SequenceOfRoots.hxx similarity index 100% rename from src/IntTools/IntTools_SequenceOfRoots.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_SequenceOfRoots.hxx diff --git a/src/IntTools/IntTools_ShrunkRange.cxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_ShrunkRange.cxx similarity index 100% rename from src/IntTools/IntTools_ShrunkRange.cxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_ShrunkRange.cxx diff --git a/src/IntTools/IntTools_ShrunkRange.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_ShrunkRange.hxx similarity index 100% rename from src/IntTools/IntTools_ShrunkRange.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_ShrunkRange.hxx diff --git a/src/IntTools/IntTools_SurfaceRangeLocalizeData.cxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_SurfaceRangeLocalizeData.cxx similarity index 100% rename from src/IntTools/IntTools_SurfaceRangeLocalizeData.cxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_SurfaceRangeLocalizeData.cxx diff --git a/src/IntTools/IntTools_SurfaceRangeLocalizeData.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_SurfaceRangeLocalizeData.hxx similarity index 100% rename from src/IntTools/IntTools_SurfaceRangeLocalizeData.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_SurfaceRangeLocalizeData.hxx diff --git a/src/IntTools/IntTools_SurfaceRangeLocalizeData.lxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_SurfaceRangeLocalizeData.lxx similarity index 100% rename from src/IntTools/IntTools_SurfaceRangeLocalizeData.lxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_SurfaceRangeLocalizeData.lxx diff --git a/src/IntTools/IntTools_SurfaceRangeSample.cxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_SurfaceRangeSample.cxx similarity index 100% rename from src/IntTools/IntTools_SurfaceRangeSample.cxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_SurfaceRangeSample.cxx diff --git a/src/IntTools/IntTools_SurfaceRangeSample.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_SurfaceRangeSample.hxx similarity index 100% rename from src/IntTools/IntTools_SurfaceRangeSample.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_SurfaceRangeSample.hxx diff --git a/src/IntTools/IntTools_SurfaceRangeSample.lxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_SurfaceRangeSample.lxx similarity index 100% rename from src/IntTools/IntTools_SurfaceRangeSample.lxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_SurfaceRangeSample.lxx diff --git a/src/IntTools/IntTools_Tools.cxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_Tools.cxx similarity index 100% rename from src/IntTools/IntTools_Tools.cxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_Tools.cxx diff --git a/src/IntTools/IntTools_Tools.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_Tools.hxx similarity index 100% rename from src/IntTools/IntTools_Tools.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_Tools.hxx diff --git a/src/IntTools/IntTools_TopolTool.cxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_TopolTool.cxx similarity index 100% rename from src/IntTools/IntTools_TopolTool.cxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_TopolTool.cxx diff --git a/src/IntTools/IntTools_TopolTool.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_TopolTool.hxx similarity index 100% rename from src/IntTools/IntTools_TopolTool.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_TopolTool.hxx diff --git a/src/IntTools/IntTools_WLineTool.cxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_WLineTool.cxx similarity index 100% rename from src/IntTools/IntTools_WLineTool.cxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_WLineTool.cxx diff --git a/src/IntTools/IntTools_WLineTool.hxx b/src/ModelingAlgorithms/TKBO/IntTools/IntTools_WLineTool.hxx similarity index 100% rename from src/IntTools/IntTools_WLineTool.hxx rename to src/ModelingAlgorithms/TKBO/IntTools/IntTools_WLineTool.hxx diff --git a/src/ModelingAlgorithms/TKBO/PACKAGES.cmake b/src/ModelingAlgorithms/TKBO/PACKAGES.cmake new file mode 100644 index 0000000000..b5aae20c57 --- /dev/null +++ b/src/ModelingAlgorithms/TKBO/PACKAGES.cmake @@ -0,0 +1,8 @@ +# Auto-generated list of packages for TKBO toolkit +set(OCCT_TKBO_LIST_OF_PACKAGES + IntTools + BRepAlgoAPI + BOPDS + BOPAlgo + BOPTools +) diff --git a/src/BRepAlgo/BRepAlgo.cxx b/src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo.cxx similarity index 100% rename from src/BRepAlgo/BRepAlgo.cxx rename to src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo.cxx diff --git a/src/BRepAlgo/BRepAlgo.hxx b/src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo.hxx similarity index 100% rename from src/BRepAlgo/BRepAlgo.hxx rename to src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo.hxx diff --git a/src/BRepAlgo/BRepAlgo_1.cxx b/src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo_1.cxx similarity index 100% rename from src/BRepAlgo/BRepAlgo_1.cxx rename to src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo_1.cxx diff --git a/src/BRepAlgo/BRepAlgo_AsDes.cxx b/src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo_AsDes.cxx similarity index 100% rename from src/BRepAlgo/BRepAlgo_AsDes.cxx rename to src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo_AsDes.cxx diff --git a/src/BRepAlgo/BRepAlgo_AsDes.hxx b/src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo_AsDes.hxx similarity index 100% rename from src/BRepAlgo/BRepAlgo_AsDes.hxx rename to src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo_AsDes.hxx diff --git a/src/BRepAlgo/BRepAlgo_FaceRestrictor.cxx b/src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo_FaceRestrictor.cxx similarity index 100% rename from src/BRepAlgo/BRepAlgo_FaceRestrictor.cxx rename to src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo_FaceRestrictor.cxx diff --git a/src/BRepAlgo/BRepAlgo_FaceRestrictor.hxx b/src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo_FaceRestrictor.hxx similarity index 100% rename from src/BRepAlgo/BRepAlgo_FaceRestrictor.hxx rename to src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo_FaceRestrictor.hxx diff --git a/src/BRepAlgo/BRepAlgo_Image.cxx b/src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo_Image.cxx similarity index 100% rename from src/BRepAlgo/BRepAlgo_Image.cxx rename to src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo_Image.cxx diff --git a/src/BRepAlgo/BRepAlgo_Image.hxx b/src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo_Image.hxx similarity index 100% rename from src/BRepAlgo/BRepAlgo_Image.hxx rename to src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo_Image.hxx diff --git a/src/BRepAlgo/BRepAlgo_Loop.cxx b/src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo_Loop.cxx similarity index 100% rename from src/BRepAlgo/BRepAlgo_Loop.cxx rename to src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo_Loop.cxx diff --git a/src/BRepAlgo/BRepAlgo_Loop.hxx b/src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo_Loop.hxx similarity index 100% rename from src/BRepAlgo/BRepAlgo_Loop.hxx rename to src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo_Loop.hxx diff --git a/src/BRepAlgo/BRepAlgo_NormalProjection.cxx b/src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo_NormalProjection.cxx similarity index 100% rename from src/BRepAlgo/BRepAlgo_NormalProjection.cxx rename to src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo_NormalProjection.cxx diff --git a/src/BRepAlgo/BRepAlgo_NormalProjection.hxx b/src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo_NormalProjection.hxx similarity index 100% rename from src/BRepAlgo/BRepAlgo_NormalProjection.hxx rename to src/ModelingAlgorithms/TKBool/BRepAlgo/BRepAlgo_NormalProjection.hxx diff --git a/src/ModelingAlgorithms/TKBool/BRepAlgo/FILES.cmake b/src/ModelingAlgorithms/TKBool/BRepAlgo/FILES.cmake new file mode 100644 index 0000000000..6f282b1806 --- /dev/null +++ b/src/ModelingAlgorithms/TKBool/BRepAlgo/FILES.cmake @@ -0,0 +1,18 @@ +# Source files for BRepAlgo package +set(OCCT_BRepAlgo_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepAlgo_FILES + BRepAlgo.cxx + BRepAlgo.hxx + BRepAlgo_1.cxx + BRepAlgo_AsDes.cxx + BRepAlgo_AsDes.hxx + BRepAlgo_FaceRestrictor.cxx + BRepAlgo_FaceRestrictor.hxx + BRepAlgo_Image.cxx + BRepAlgo_Image.hxx + BRepAlgo_Loop.cxx + BRepAlgo_Loop.hxx + BRepAlgo_NormalProjection.cxx + BRepAlgo_NormalProjection.hxx +) diff --git a/src/BRepFill/BRepFill.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill.cxx similarity index 100% rename from src/BRepFill/BRepFill.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill.cxx diff --git a/src/BRepFill/BRepFill.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill.hxx similarity index 100% rename from src/BRepFill/BRepFill.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill.hxx diff --git a/src/BRepFill/BRepFill_ACRLaw.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_ACRLaw.cxx similarity index 100% rename from src/BRepFill/BRepFill_ACRLaw.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_ACRLaw.cxx diff --git a/src/BRepFill/BRepFill_ACRLaw.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_ACRLaw.hxx similarity index 100% rename from src/BRepFill/BRepFill_ACRLaw.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_ACRLaw.hxx diff --git a/src/BRepFill/BRepFill_AdvancedEvolved.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_AdvancedEvolved.cxx similarity index 100% rename from src/BRepFill/BRepFill_AdvancedEvolved.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_AdvancedEvolved.cxx diff --git a/src/BRepFill/BRepFill_AdvancedEvolved.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_AdvancedEvolved.hxx similarity index 100% rename from src/BRepFill/BRepFill_AdvancedEvolved.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_AdvancedEvolved.hxx diff --git a/src/BRepFill/BRepFill_ApproxSeewing.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_ApproxSeewing.cxx similarity index 100% rename from src/BRepFill/BRepFill_ApproxSeewing.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_ApproxSeewing.cxx diff --git a/src/BRepFill/BRepFill_ApproxSeewing.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_ApproxSeewing.hxx similarity index 100% rename from src/BRepFill/BRepFill_ApproxSeewing.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_ApproxSeewing.hxx diff --git a/src/BRepFill/BRepFill_CompatibleWires.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_CompatibleWires.cxx similarity index 100% rename from src/BRepFill/BRepFill_CompatibleWires.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_CompatibleWires.cxx diff --git a/src/BRepFill/BRepFill_CompatibleWires.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_CompatibleWires.hxx similarity index 100% rename from src/BRepFill/BRepFill_CompatibleWires.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_CompatibleWires.hxx diff --git a/src/BRepFill/BRepFill_ComputeCLine.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_ComputeCLine.hxx similarity index 100% rename from src/BRepFill/BRepFill_ComputeCLine.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_ComputeCLine.hxx diff --git a/src/BRepFill/BRepFill_ComputeCLine_0.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_ComputeCLine_0.cxx similarity index 100% rename from src/BRepFill/BRepFill_ComputeCLine_0.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_ComputeCLine_0.cxx diff --git a/src/BRepFill/BRepFill_CurveConstraint.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_CurveConstraint.cxx similarity index 100% rename from src/BRepFill/BRepFill_CurveConstraint.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_CurveConstraint.cxx diff --git a/src/BRepFill/BRepFill_CurveConstraint.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_CurveConstraint.hxx similarity index 100% rename from src/BRepFill/BRepFill_CurveConstraint.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_CurveConstraint.hxx diff --git a/src/BRepFill/BRepFill_DataMapIteratorOfDataMapOfNodeDataMapOfShapeShape.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapIteratorOfDataMapOfNodeDataMapOfShapeShape.hxx similarity index 100% rename from src/BRepFill/BRepFill_DataMapIteratorOfDataMapOfNodeDataMapOfShapeShape.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapIteratorOfDataMapOfNodeDataMapOfShapeShape.hxx diff --git a/src/BRepFill/BRepFill_DataMapIteratorOfDataMapOfNodeShape.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapIteratorOfDataMapOfNodeShape.hxx similarity index 100% rename from src/BRepFill/BRepFill_DataMapIteratorOfDataMapOfNodeShape.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapIteratorOfDataMapOfNodeShape.hxx diff --git a/src/BRepFill/BRepFill_DataMapIteratorOfDataMapOfOrientedShapeListOfShape.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapIteratorOfDataMapOfOrientedShapeListOfShape.hxx similarity index 100% rename from src/BRepFill/BRepFill_DataMapIteratorOfDataMapOfOrientedShapeListOfShape.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapIteratorOfDataMapOfOrientedShapeListOfShape.hxx diff --git a/src/BRepFill/BRepFill_DataMapIteratorOfDataMapOfShapeDataMapOfShapeListOfShape.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapIteratorOfDataMapOfShapeDataMapOfShapeListOfShape.hxx similarity index 100% rename from src/BRepFill/BRepFill_DataMapIteratorOfDataMapOfShapeDataMapOfShapeListOfShape.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapIteratorOfDataMapOfShapeDataMapOfShapeListOfShape.hxx diff --git a/src/BRepFill/BRepFill_DataMapIteratorOfDataMapOfShapeHArray2OfShape.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapIteratorOfDataMapOfShapeHArray2OfShape.hxx similarity index 100% rename from src/BRepFill/BRepFill_DataMapIteratorOfDataMapOfShapeHArray2OfShape.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapIteratorOfDataMapOfShapeHArray2OfShape.hxx diff --git a/src/BRepFill/BRepFill_DataMapIteratorOfDataMapOfShapeSequenceOfPnt.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapIteratorOfDataMapOfShapeSequenceOfPnt.hxx similarity index 100% rename from src/BRepFill/BRepFill_DataMapIteratorOfDataMapOfShapeSequenceOfPnt.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapIteratorOfDataMapOfShapeSequenceOfPnt.hxx diff --git a/src/BRepFill/BRepFill_DataMapIteratorOfDataMapOfShapeSequenceOfReal.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapIteratorOfDataMapOfShapeSequenceOfReal.hxx similarity index 100% rename from src/BRepFill/BRepFill_DataMapIteratorOfDataMapOfShapeSequenceOfReal.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapIteratorOfDataMapOfShapeSequenceOfReal.hxx diff --git a/src/BRepFill/BRepFill_DataMapOfNodeDataMapOfShapeShape.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapOfNodeDataMapOfShapeShape.hxx similarity index 100% rename from src/BRepFill/BRepFill_DataMapOfNodeDataMapOfShapeShape.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapOfNodeDataMapOfShapeShape.hxx diff --git a/src/BRepFill/BRepFill_DataMapOfNodeShape.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapOfNodeShape.hxx similarity index 100% rename from src/BRepFill/BRepFill_DataMapOfNodeShape.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapOfNodeShape.hxx diff --git a/src/BRepFill/BRepFill_DataMapOfOrientedShapeListOfShape.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapOfOrientedShapeListOfShape.hxx similarity index 100% rename from src/BRepFill/BRepFill_DataMapOfOrientedShapeListOfShape.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapOfOrientedShapeListOfShape.hxx diff --git a/src/BRepFill/BRepFill_DataMapOfShapeDataMapOfShapeListOfShape.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapOfShapeDataMapOfShapeListOfShape.hxx similarity index 100% rename from src/BRepFill/BRepFill_DataMapOfShapeDataMapOfShapeListOfShape.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapOfShapeDataMapOfShapeListOfShape.hxx diff --git a/src/BRepFill/BRepFill_DataMapOfShapeHArray2OfShape.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapOfShapeHArray2OfShape.hxx similarity index 100% rename from src/BRepFill/BRepFill_DataMapOfShapeHArray2OfShape.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapOfShapeHArray2OfShape.hxx diff --git a/src/BRepFill/BRepFill_DataMapOfShapeSequenceOfPnt.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapOfShapeSequenceOfPnt.hxx similarity index 100% rename from src/BRepFill/BRepFill_DataMapOfShapeSequenceOfPnt.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapOfShapeSequenceOfPnt.hxx diff --git a/src/BRepFill/BRepFill_DataMapOfShapeSequenceOfReal.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapOfShapeSequenceOfReal.hxx similarity index 100% rename from src/BRepFill/BRepFill_DataMapOfShapeSequenceOfReal.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DataMapOfShapeSequenceOfReal.hxx diff --git a/src/BRepFill/BRepFill_Draft.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Draft.cxx similarity index 100% rename from src/BRepFill/BRepFill_Draft.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Draft.cxx diff --git a/src/BRepFill/BRepFill_Draft.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Draft.hxx similarity index 100% rename from src/BRepFill/BRepFill_Draft.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Draft.hxx diff --git a/src/BRepFill/BRepFill_DraftLaw.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DraftLaw.cxx similarity index 100% rename from src/BRepFill/BRepFill_DraftLaw.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DraftLaw.cxx diff --git a/src/BRepFill/BRepFill_DraftLaw.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DraftLaw.hxx similarity index 100% rename from src/BRepFill/BRepFill_DraftLaw.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_DraftLaw.hxx diff --git a/src/BRepFill/BRepFill_Edge3DLaw.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Edge3DLaw.cxx similarity index 100% rename from src/BRepFill/BRepFill_Edge3DLaw.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Edge3DLaw.cxx diff --git a/src/BRepFill/BRepFill_Edge3DLaw.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Edge3DLaw.hxx similarity index 100% rename from src/BRepFill/BRepFill_Edge3DLaw.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Edge3DLaw.hxx diff --git a/src/BRepFill/BRepFill_EdgeFaceAndOrder.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_EdgeFaceAndOrder.cxx similarity index 100% rename from src/BRepFill/BRepFill_EdgeFaceAndOrder.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_EdgeFaceAndOrder.cxx diff --git a/src/BRepFill/BRepFill_EdgeFaceAndOrder.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_EdgeFaceAndOrder.hxx similarity index 100% rename from src/BRepFill/BRepFill_EdgeFaceAndOrder.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_EdgeFaceAndOrder.hxx diff --git a/src/BRepFill/BRepFill_EdgeOnSurfLaw.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_EdgeOnSurfLaw.cxx similarity index 100% rename from src/BRepFill/BRepFill_EdgeOnSurfLaw.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_EdgeOnSurfLaw.cxx diff --git a/src/BRepFill/BRepFill_EdgeOnSurfLaw.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_EdgeOnSurfLaw.hxx similarity index 100% rename from src/BRepFill/BRepFill_EdgeOnSurfLaw.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_EdgeOnSurfLaw.hxx diff --git a/src/BRepFill/BRepFill_Evolved.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Evolved.cxx similarity index 100% rename from src/BRepFill/BRepFill_Evolved.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Evolved.cxx diff --git a/src/BRepFill/BRepFill_Evolved.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Evolved.hxx similarity index 100% rename from src/BRepFill/BRepFill_Evolved.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Evolved.hxx diff --git a/src/BRepFill/BRepFill_FaceAndOrder.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_FaceAndOrder.cxx similarity index 100% rename from src/BRepFill/BRepFill_FaceAndOrder.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_FaceAndOrder.cxx diff --git a/src/BRepFill/BRepFill_FaceAndOrder.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_FaceAndOrder.hxx similarity index 100% rename from src/BRepFill/BRepFill_FaceAndOrder.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_FaceAndOrder.hxx diff --git a/src/BRepFill/BRepFill_Filling.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Filling.cxx similarity index 100% rename from src/BRepFill/BRepFill_Filling.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Filling.cxx diff --git a/src/BRepFill/BRepFill_Filling.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Filling.hxx similarity index 100% rename from src/BRepFill/BRepFill_Filling.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Filling.hxx diff --git a/src/BRepFill/BRepFill_Generator.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Generator.cxx similarity index 100% rename from src/BRepFill/BRepFill_Generator.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Generator.cxx diff --git a/src/BRepFill/BRepFill_Generator.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Generator.hxx similarity index 100% rename from src/BRepFill/BRepFill_Generator.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Generator.hxx diff --git a/src/BRepFill/BRepFill_Generator.lxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Generator.lxx similarity index 100% rename from src/BRepFill/BRepFill_Generator.lxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Generator.lxx diff --git a/src/BRepFill/BRepFill_IndexedDataMapOfOrientedShapeListOfShape.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_IndexedDataMapOfOrientedShapeListOfShape.hxx similarity index 100% rename from src/BRepFill/BRepFill_IndexedDataMapOfOrientedShapeListOfShape.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_IndexedDataMapOfOrientedShapeListOfShape.hxx diff --git a/src/BRepFill/BRepFill_ListIteratorOfListOfOffsetWire.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_ListIteratorOfListOfOffsetWire.hxx similarity index 100% rename from src/BRepFill/BRepFill_ListIteratorOfListOfOffsetWire.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_ListIteratorOfListOfOffsetWire.hxx diff --git a/src/BRepFill/BRepFill_ListOfOffsetWire.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_ListOfOffsetWire.hxx similarity index 100% rename from src/BRepFill/BRepFill_ListOfOffsetWire.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_ListOfOffsetWire.hxx diff --git a/src/BRepFill/BRepFill_LocationLaw.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_LocationLaw.cxx similarity index 100% rename from src/BRepFill/BRepFill_LocationLaw.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_LocationLaw.cxx diff --git a/src/BRepFill/BRepFill_LocationLaw.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_LocationLaw.hxx similarity index 100% rename from src/BRepFill/BRepFill_LocationLaw.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_LocationLaw.hxx diff --git a/src/BRepFill/BRepFill_MultiLine.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_MultiLine.cxx similarity index 100% rename from src/BRepFill/BRepFill_MultiLine.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_MultiLine.cxx diff --git a/src/BRepFill/BRepFill_MultiLine.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_MultiLine.hxx similarity index 100% rename from src/BRepFill/BRepFill_MultiLine.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_MultiLine.hxx diff --git a/src/BRepFill/BRepFill_NSections.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_NSections.cxx similarity index 100% rename from src/BRepFill/BRepFill_NSections.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_NSections.cxx diff --git a/src/BRepFill/BRepFill_NSections.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_NSections.hxx similarity index 100% rename from src/BRepFill/BRepFill_NSections.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_NSections.hxx diff --git a/src/BRepFill/BRepFill_OffsetAncestors.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_OffsetAncestors.cxx similarity index 100% rename from src/BRepFill/BRepFill_OffsetAncestors.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_OffsetAncestors.cxx diff --git a/src/BRepFill/BRepFill_OffsetAncestors.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_OffsetAncestors.hxx similarity index 100% rename from src/BRepFill/BRepFill_OffsetAncestors.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_OffsetAncestors.hxx diff --git a/src/BRepFill/BRepFill_OffsetWire.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_OffsetWire.cxx similarity index 100% rename from src/BRepFill/BRepFill_OffsetWire.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_OffsetWire.cxx diff --git a/src/BRepFill/BRepFill_OffsetWire.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_OffsetWire.hxx similarity index 100% rename from src/BRepFill/BRepFill_OffsetWire.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_OffsetWire.hxx diff --git a/src/BRepFill/BRepFill_Pipe.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Pipe.cxx similarity index 100% rename from src/BRepFill/BRepFill_Pipe.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Pipe.cxx diff --git a/src/BRepFill/BRepFill_Pipe.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Pipe.hxx similarity index 100% rename from src/BRepFill/BRepFill_Pipe.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Pipe.hxx diff --git a/src/BRepFill/BRepFill_PipeShell.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_PipeShell.cxx similarity index 100% rename from src/BRepFill/BRepFill_PipeShell.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_PipeShell.cxx diff --git a/src/BRepFill/BRepFill_PipeShell.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_PipeShell.hxx similarity index 100% rename from src/BRepFill/BRepFill_PipeShell.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_PipeShell.hxx diff --git a/src/BRepFill/BRepFill_Section.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Section.cxx similarity index 100% rename from src/BRepFill/BRepFill_Section.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Section.cxx diff --git a/src/BRepFill/BRepFill_Section.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Section.hxx similarity index 100% rename from src/BRepFill/BRepFill_Section.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Section.hxx diff --git a/src/BRepFill/BRepFill_Section.lxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Section.lxx similarity index 100% rename from src/BRepFill/BRepFill_Section.lxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Section.lxx diff --git a/src/BRepFill/BRepFill_SectionLaw.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_SectionLaw.cxx similarity index 100% rename from src/BRepFill/BRepFill_SectionLaw.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_SectionLaw.cxx diff --git a/src/BRepFill/BRepFill_SectionLaw.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_SectionLaw.hxx similarity index 100% rename from src/BRepFill/BRepFill_SectionLaw.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_SectionLaw.hxx diff --git a/src/BRepFill/BRepFill_SectionPlacement.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_SectionPlacement.cxx similarity index 100% rename from src/BRepFill/BRepFill_SectionPlacement.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_SectionPlacement.cxx diff --git a/src/BRepFill/BRepFill_SectionPlacement.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_SectionPlacement.hxx similarity index 100% rename from src/BRepFill/BRepFill_SectionPlacement.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_SectionPlacement.hxx diff --git a/src/BRepFill/BRepFill_SequenceOfEdgeFaceAndOrder.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_SequenceOfEdgeFaceAndOrder.hxx similarity index 100% rename from src/BRepFill/BRepFill_SequenceOfEdgeFaceAndOrder.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_SequenceOfEdgeFaceAndOrder.hxx diff --git a/src/BRepFill/BRepFill_SequenceOfFaceAndOrder.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_SequenceOfFaceAndOrder.hxx similarity index 100% rename from src/BRepFill/BRepFill_SequenceOfFaceAndOrder.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_SequenceOfFaceAndOrder.hxx diff --git a/src/BRepFill/BRepFill_SequenceOfSection.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_SequenceOfSection.hxx similarity index 100% rename from src/BRepFill/BRepFill_SequenceOfSection.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_SequenceOfSection.hxx diff --git a/src/BRepFill/BRepFill_ShapeLaw.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_ShapeLaw.cxx similarity index 100% rename from src/BRepFill/BRepFill_ShapeLaw.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_ShapeLaw.cxx diff --git a/src/BRepFill/BRepFill_ShapeLaw.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_ShapeLaw.hxx similarity index 100% rename from src/BRepFill/BRepFill_ShapeLaw.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_ShapeLaw.hxx diff --git a/src/BRepFill/BRepFill_ShapeLaw.lxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_ShapeLaw.lxx similarity index 100% rename from src/BRepFill/BRepFill_ShapeLaw.lxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_ShapeLaw.lxx diff --git a/src/BRepFill/BRepFill_Sweep.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Sweep.cxx similarity index 100% rename from src/BRepFill/BRepFill_Sweep.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Sweep.cxx diff --git a/src/BRepFill/BRepFill_Sweep.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Sweep.hxx similarity index 100% rename from src/BRepFill/BRepFill_Sweep.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_Sweep.hxx diff --git a/src/BRepFill/BRepFill_ThruSectionErrorStatus.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_ThruSectionErrorStatus.hxx similarity index 100% rename from src/BRepFill/BRepFill_ThruSectionErrorStatus.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_ThruSectionErrorStatus.hxx diff --git a/src/BRepFill/BRepFill_TransitionStyle.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_TransitionStyle.hxx similarity index 100% rename from src/BRepFill/BRepFill_TransitionStyle.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_TransitionStyle.hxx diff --git a/src/BRepFill/BRepFill_TrimEdgeTool.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_TrimEdgeTool.cxx similarity index 100% rename from src/BRepFill/BRepFill_TrimEdgeTool.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_TrimEdgeTool.cxx diff --git a/src/BRepFill/BRepFill_TrimEdgeTool.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_TrimEdgeTool.hxx similarity index 100% rename from src/BRepFill/BRepFill_TrimEdgeTool.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_TrimEdgeTool.hxx diff --git a/src/BRepFill/BRepFill_TrimShellCorner.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_TrimShellCorner.cxx similarity index 100% rename from src/BRepFill/BRepFill_TrimShellCorner.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_TrimShellCorner.cxx diff --git a/src/BRepFill/BRepFill_TrimShellCorner.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_TrimShellCorner.hxx similarity index 100% rename from src/BRepFill/BRepFill_TrimShellCorner.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_TrimShellCorner.hxx diff --git a/src/BRepFill/BRepFill_TrimSurfaceTool.cxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_TrimSurfaceTool.cxx similarity index 100% rename from src/BRepFill/BRepFill_TrimSurfaceTool.cxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_TrimSurfaceTool.cxx diff --git a/src/BRepFill/BRepFill_TrimSurfaceTool.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_TrimSurfaceTool.hxx similarity index 100% rename from src/BRepFill/BRepFill_TrimSurfaceTool.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_TrimSurfaceTool.hxx diff --git a/src/BRepFill/BRepFill_TypeOfContact.hxx b/src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_TypeOfContact.hxx similarity index 100% rename from src/BRepFill/BRepFill_TypeOfContact.hxx rename to src/ModelingAlgorithms/TKBool/BRepFill/BRepFill_TypeOfContact.hxx diff --git a/src/ModelingAlgorithms/TKBool/BRepFill/FILES.cmake b/src/ModelingAlgorithms/TKBool/BRepFill/FILES.cmake new file mode 100644 index 0000000000..026826cdc6 --- /dev/null +++ b/src/ModelingAlgorithms/TKBool/BRepFill/FILES.cmake @@ -0,0 +1,93 @@ +# Source files for BRepFill package +set(OCCT_BRepFill_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepFill_FILES + BRepFill.cxx + BRepFill.hxx + BRepFill_ACRLaw.cxx + BRepFill_ACRLaw.hxx + BRepFill_AdvancedEvolved.cxx + BRepFill_AdvancedEvolved.hxx + BRepFill_ApproxSeewing.cxx + BRepFill_ApproxSeewing.hxx + BRepFill_CompatibleWires.cxx + BRepFill_CompatibleWires.hxx + BRepFill_ComputeCLine.hxx + BRepFill_ComputeCLine_0.cxx + BRepFill_CurveConstraint.cxx + BRepFill_CurveConstraint.hxx + BRepFill_DataMapIteratorOfDataMapOfNodeDataMapOfShapeShape.hxx + BRepFill_DataMapIteratorOfDataMapOfNodeShape.hxx + BRepFill_DataMapIteratorOfDataMapOfOrientedShapeListOfShape.hxx + BRepFill_DataMapIteratorOfDataMapOfShapeDataMapOfShapeListOfShape.hxx + BRepFill_DataMapIteratorOfDataMapOfShapeHArray2OfShape.hxx + BRepFill_DataMapIteratorOfDataMapOfShapeSequenceOfPnt.hxx + BRepFill_DataMapIteratorOfDataMapOfShapeSequenceOfReal.hxx + BRepFill_DataMapOfNodeDataMapOfShapeShape.hxx + BRepFill_DataMapOfNodeShape.hxx + BRepFill_DataMapOfOrientedShapeListOfShape.hxx + BRepFill_DataMapOfShapeDataMapOfShapeListOfShape.hxx + BRepFill_DataMapOfShapeHArray2OfShape.hxx + BRepFill_DataMapOfShapeSequenceOfPnt.hxx + BRepFill_DataMapOfShapeSequenceOfReal.hxx + BRepFill_Draft.cxx + BRepFill_Draft.hxx + BRepFill_DraftLaw.cxx + BRepFill_DraftLaw.hxx + BRepFill_Edge3DLaw.cxx + BRepFill_Edge3DLaw.hxx + BRepFill_EdgeFaceAndOrder.cxx + BRepFill_EdgeFaceAndOrder.hxx + BRepFill_EdgeOnSurfLaw.cxx + BRepFill_EdgeOnSurfLaw.hxx + BRepFill_Evolved.cxx + BRepFill_Evolved.hxx + BRepFill_FaceAndOrder.cxx + BRepFill_FaceAndOrder.hxx + BRepFill_Filling.cxx + BRepFill_Filling.hxx + BRepFill_Generator.cxx + BRepFill_Generator.hxx + BRepFill_Generator.lxx + BRepFill_IndexedDataMapOfOrientedShapeListOfShape.hxx + BRepFill_ListIteratorOfListOfOffsetWire.hxx + BRepFill_ListOfOffsetWire.hxx + BRepFill_LocationLaw.cxx + BRepFill_LocationLaw.hxx + BRepFill_MultiLine.cxx + BRepFill_MultiLine.hxx + BRepFill_NSections.cxx + BRepFill_NSections.hxx + BRepFill_OffsetAncestors.cxx + BRepFill_OffsetAncestors.hxx + BRepFill_OffsetWire.cxx + BRepFill_OffsetWire.hxx + BRepFill_Pipe.cxx + BRepFill_Pipe.hxx + BRepFill_PipeShell.cxx + BRepFill_PipeShell.hxx + BRepFill_Section.cxx + BRepFill_Section.hxx + BRepFill_Section.lxx + BRepFill_SectionLaw.cxx + BRepFill_SectionLaw.hxx + BRepFill_SectionPlacement.cxx + BRepFill_SectionPlacement.hxx + BRepFill_SequenceOfEdgeFaceAndOrder.hxx + BRepFill_SequenceOfFaceAndOrder.hxx + BRepFill_SequenceOfSection.hxx + BRepFill_ShapeLaw.cxx + BRepFill_ShapeLaw.hxx + BRepFill_ShapeLaw.lxx + BRepFill_Sweep.cxx + BRepFill_Sweep.hxx + BRepFill_ThruSectionErrorStatus.hxx + BRepFill_TransitionStyle.hxx + BRepFill_TrimEdgeTool.cxx + BRepFill_TrimEdgeTool.hxx + BRepFill_TrimShellCorner.cxx + BRepFill_TrimShellCorner.hxx + BRepFill_TrimSurfaceTool.cxx + BRepFill_TrimSurfaceTool.hxx + BRepFill_TypeOfContact.hxx +) diff --git a/src/BRepProj/BRepProj_Projection.cxx b/src/ModelingAlgorithms/TKBool/BRepProj/BRepProj_Projection.cxx similarity index 100% rename from src/BRepProj/BRepProj_Projection.cxx rename to src/ModelingAlgorithms/TKBool/BRepProj/BRepProj_Projection.cxx diff --git a/src/BRepProj/BRepProj_Projection.hxx b/src/ModelingAlgorithms/TKBool/BRepProj/BRepProj_Projection.hxx similarity index 100% rename from src/BRepProj/BRepProj_Projection.hxx rename to src/ModelingAlgorithms/TKBool/BRepProj/BRepProj_Projection.hxx diff --git a/src/BRepProj/BRepProj_Projection.lxx b/src/ModelingAlgorithms/TKBool/BRepProj/BRepProj_Projection.lxx similarity index 100% rename from src/BRepProj/BRepProj_Projection.lxx rename to src/ModelingAlgorithms/TKBool/BRepProj/BRepProj_Projection.lxx diff --git a/src/ModelingAlgorithms/TKBool/BRepProj/FILES.cmake b/src/ModelingAlgorithms/TKBool/BRepProj/FILES.cmake new file mode 100644 index 0000000000..e30e06999a --- /dev/null +++ b/src/ModelingAlgorithms/TKBool/BRepProj/FILES.cmake @@ -0,0 +1,8 @@ +# Source files for BRepProj package +set(OCCT_BRepProj_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepProj_FILES + BRepProj_Projection.cxx + BRepProj_Projection.hxx + BRepProj_Projection.lxx +) diff --git a/src/TKBool/CMakeLists.txt b/src/ModelingAlgorithms/TKBool/CMakeLists.txt similarity index 100% rename from src/TKBool/CMakeLists.txt rename to src/ModelingAlgorithms/TKBool/CMakeLists.txt diff --git a/src/ModelingAlgorithms/TKBool/EXTERNLIB.cmake b/src/ModelingAlgorithms/TKBool/EXTERNLIB.cmake new file mode 100644 index 0000000000..824ab723f8 --- /dev/null +++ b/src/ModelingAlgorithms/TKBool/EXTERNLIB.cmake @@ -0,0 +1,14 @@ +# External dependencies for TKBool +set(OCCT_TKBool_EXTERNAL_LIBS + TKBRep + TKTopAlgo + TKMath + TKernel + TKPrim + TKG2d + TKG3d + TKShHealing + TKGeomBase + TKGeomAlgo + TKBO +) diff --git a/src/ModelingAlgorithms/TKBool/FILES.cmake b/src/ModelingAlgorithms/TKBool/FILES.cmake new file mode 100644 index 0000000000..ab72038f3e --- /dev/null +++ b/src/ModelingAlgorithms/TKBool/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKBool +set(OCCT_TKBool_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKBool_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ModelingAlgorithms/TKBool/PACKAGES.cmake b/src/ModelingAlgorithms/TKBool/PACKAGES.cmake new file mode 100644 index 0000000000..3310f7ae68 --- /dev/null +++ b/src/ModelingAlgorithms/TKBool/PACKAGES.cmake @@ -0,0 +1,10 @@ +# Auto-generated list of packages for TKBool toolkit +set(OCCT_TKBool_LIST_OF_PACKAGES + TopOpeBRep + TopOpeBRepDS + TopOpeBRepBuild + TopOpeBRepTool + BRepAlgo + BRepFill + BRepProj +) diff --git a/src/ModelingAlgorithms/TKBool/TopOpeBRep/FILES.cmake b/src/ModelingAlgorithms/TKBool/TopOpeBRep/FILES.cmake new file mode 100644 index 0000000000..0a25739e14 --- /dev/null +++ b/src/ModelingAlgorithms/TKBool/TopOpeBRep/FILES.cmake @@ -0,0 +1,97 @@ +# Source files for TopOpeBRep package +set(OCCT_TopOpeBRep_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TopOpeBRep_FILES + FILES + TopOpeBRep.cxx + TopOpeBRep.hxx + TopOpeBRep_Array1OfLineInter.hxx + TopOpeBRep_Array1OfVPointInter.hxx + TopOpeBRep_Bipoint.cxx + TopOpeBRep_Bipoint.hxx + TopOpeBRep_DataMapIteratorOfDataMapOfTopolTool.hxx + TopOpeBRep_DataMapOfTopolTool.hxx + TopOpeBRep_define.hxx + TopOpeBRep_DRAW.hxx + TopOpeBRep_DSFiller.cxx + TopOpeBRep_DSFiller.hxx + TopOpeBRep_EdgesFiller.cxx + TopOpeBRep_EdgesFiller.hxx + TopOpeBRep_EdgesIntersector.cxx + TopOpeBRep_EdgesIntersector.hxx + TopOpeBRep_EdgesIntersector_1.cxx + TopOpeBRep_FaceEdgeFiller.cxx + TopOpeBRep_FaceEdgeFiller.hxx + TopOpeBRep_FaceEdgeFiller_DEB.cxx + TopOpeBRep_FaceEdgeIntersector.cxx + TopOpeBRep_FaceEdgeIntersector.hxx + TopOpeBRep_FacesFiller.cxx + TopOpeBRep_FacesFiller.hxx + TopOpeBRep_FacesFiller_1.cxx + TopOpeBRep_FacesIntersector.cxx + TopOpeBRep_FacesIntersector.hxx + TopOpeBRep_FFDumper.cxx + TopOpeBRep_FFDumper.hxx + TopOpeBRep_FFTransitionTool.cxx + TopOpeBRep_FFTransitionTool.hxx + TopOpeBRep_GeomTool.cxx + TopOpeBRep_GeomTool.hxx + TopOpeBRep_HArray1OfLineInter.hxx + TopOpeBRep_HArray1OfVPointInter.hxx + TopOpeBRep_Hctxee2d.cxx + TopOpeBRep_Hctxee2d.hxx + TopOpeBRep_Hctxff2d.cxx + TopOpeBRep_Hctxff2d.hxx + TopOpeBRep_kpart.cxx + TopOpeBRep_LineInter.cxx + TopOpeBRep_LineInter.hxx + TopOpeBRep_LineInter.lxx + TopOpeBRep_ListIteratorOfListOfBipoint.hxx + TopOpeBRep_ListOfBipoint.hxx + TopOpeBRep_mergePDS.cxx + TopOpeBRep_P2Dstatus.hxx + TopOpeBRep_PEdgesIntersector.hxx + TopOpeBRep_PFacesFiller.hxx + TopOpeBRep_PFacesIntersector.hxx + TopOpeBRep_PIntRes2d_IntersectionPoint.hxx + TopOpeBRep_PLineInter.hxx + TopOpeBRep_Point2d.cxx + TopOpeBRep_Point2d.hxx + TopOpeBRep_Point2d.lxx + TopOpeBRep_PointClassifier.cxx + TopOpeBRep_PointClassifier.hxx + TopOpeBRep_PointGeomTool.cxx + TopOpeBRep_PointGeomTool.hxx + TopOpeBRep_PPntOn2S.hxx + TopOpeBRep_ProcessGR.cxx + TopOpeBRep_ProcessSectionEdges.cxx + TopOpeBRep_PThePointOfIntersection.hxx + TopOpeBRep_SequenceOfPoint2d.hxx + TopOpeBRep_ShapeIntersector.cxx + TopOpeBRep_ShapeIntersector.hxx + TopOpeBRep_ShapeIntersector2d.cxx + TopOpeBRep_ShapeIntersector2d.hxx + TopOpeBRep_ShapeScanner.cxx + TopOpeBRep_ShapeScanner.hxx + TopOpeBRep_sort.cxx + TopOpeBRep_trace.cxx + TopOpeBRep_traceALWL.cxx + TopOpeBRep_traceBOOPNINT.cxx + TopOpeBRep_traceSIFF.cxx + TopOpeBRep_traceSIFF.hxx + TopOpeBRep_TypeLineCurve.hxx + TopOpeBRep_VPointInter.cxx + TopOpeBRep_VPointInter.hxx + TopOpeBRep_VPointInter.lxx + TopOpeBRep_VPointInterClassifier.cxx + TopOpeBRep_VPointInterClassifier.hxx + TopOpeBRep_VPointInterIterator.cxx + TopOpeBRep_VPointInterIterator.hxx + TopOpeBRep_vpr.cxx + TopOpeBRep_vprclo.cxx + TopOpeBRep_vprdeg.cxx + TopOpeBRep_WPointInter.cxx + TopOpeBRep_WPointInter.hxx + TopOpeBRep_WPointInterIterator.cxx + TopOpeBRep_WPointInterIterator.hxx +) diff --git a/src/TopOpeBRep/TopOpeBRep.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep.cxx diff --git a/src/TopOpeBRep/TopOpeBRep.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_Array1OfLineInter.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_Array1OfLineInter.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_Array1OfLineInter.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_Array1OfLineInter.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_Array1OfVPointInter.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_Array1OfVPointInter.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_Array1OfVPointInter.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_Array1OfVPointInter.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_Bipoint.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_Bipoint.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_Bipoint.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_Bipoint.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_Bipoint.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_Bipoint.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_Bipoint.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_Bipoint.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_DRAW.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_DRAW.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_DRAW.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_DRAW.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_DSFiller.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_DSFiller.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_DSFiller.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_DSFiller.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_DSFiller.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_DSFiller.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_DSFiller.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_DSFiller.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_DataMapIteratorOfDataMapOfTopolTool.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_DataMapIteratorOfDataMapOfTopolTool.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_DataMapIteratorOfDataMapOfTopolTool.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_DataMapIteratorOfDataMapOfTopolTool.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_DataMapOfTopolTool.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_DataMapOfTopolTool.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_DataMapOfTopolTool.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_DataMapOfTopolTool.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_EdgesFiller.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_EdgesFiller.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_EdgesFiller.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_EdgesFiller.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_EdgesFiller.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_EdgesFiller.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_EdgesFiller.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_EdgesFiller.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_EdgesIntersector.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_EdgesIntersector.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_EdgesIntersector.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_EdgesIntersector.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_EdgesIntersector.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_EdgesIntersector.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_EdgesIntersector.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_EdgesIntersector.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_EdgesIntersector_1.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_EdgesIntersector_1.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_EdgesIntersector_1.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_EdgesIntersector_1.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_FFDumper.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FFDumper.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_FFDumper.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FFDumper.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_FFDumper.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FFDumper.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_FFDumper.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FFDumper.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_FFTransitionTool.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FFTransitionTool.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_FFTransitionTool.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FFTransitionTool.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_FFTransitionTool.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FFTransitionTool.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_FFTransitionTool.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FFTransitionTool.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_FaceEdgeFiller.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FaceEdgeFiller.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_FaceEdgeFiller.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FaceEdgeFiller.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_FaceEdgeFiller.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FaceEdgeFiller.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_FaceEdgeFiller.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FaceEdgeFiller.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_FaceEdgeFiller_DEB.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FaceEdgeFiller_DEB.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_FaceEdgeFiller_DEB.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FaceEdgeFiller_DEB.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_FaceEdgeIntersector.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FaceEdgeIntersector.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_FaceEdgeIntersector.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FaceEdgeIntersector.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_FaceEdgeIntersector.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FaceEdgeIntersector.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_FaceEdgeIntersector.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FaceEdgeIntersector.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_FacesFiller.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FacesFiller.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_FacesFiller.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FacesFiller.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_FacesFiller.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FacesFiller.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_FacesFiller.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FacesFiller.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_FacesFiller_1.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FacesFiller_1.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_FacesFiller_1.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FacesFiller_1.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_FacesIntersector.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FacesIntersector.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_FacesIntersector.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FacesIntersector.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_FacesIntersector.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FacesIntersector.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_FacesIntersector.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_FacesIntersector.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_GeomTool.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_GeomTool.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_GeomTool.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_GeomTool.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_GeomTool.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_GeomTool.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_GeomTool.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_GeomTool.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_HArray1OfLineInter.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_HArray1OfLineInter.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_HArray1OfLineInter.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_HArray1OfLineInter.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_HArray1OfVPointInter.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_HArray1OfVPointInter.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_HArray1OfVPointInter.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_HArray1OfVPointInter.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_Hctxee2d.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_Hctxee2d.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_Hctxee2d.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_Hctxee2d.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_Hctxee2d.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_Hctxee2d.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_Hctxee2d.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_Hctxee2d.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_Hctxff2d.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_Hctxff2d.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_Hctxff2d.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_Hctxff2d.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_Hctxff2d.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_Hctxff2d.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_Hctxff2d.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_Hctxff2d.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_LineInter.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_LineInter.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_LineInter.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_LineInter.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_LineInter.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_LineInter.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_LineInter.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_LineInter.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_LineInter.lxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_LineInter.lxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_LineInter.lxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_LineInter.lxx diff --git a/src/TopOpeBRep/TopOpeBRep_ListIteratorOfListOfBipoint.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_ListIteratorOfListOfBipoint.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_ListIteratorOfListOfBipoint.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_ListIteratorOfListOfBipoint.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_ListOfBipoint.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_ListOfBipoint.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_ListOfBipoint.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_ListOfBipoint.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_P2Dstatus.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_P2Dstatus.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_P2Dstatus.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_P2Dstatus.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_PEdgesIntersector.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_PEdgesIntersector.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_PEdgesIntersector.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_PEdgesIntersector.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_PFacesFiller.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_PFacesFiller.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_PFacesFiller.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_PFacesFiller.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_PFacesIntersector.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_PFacesIntersector.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_PFacesIntersector.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_PFacesIntersector.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_PIntRes2d_IntersectionPoint.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_PIntRes2d_IntersectionPoint.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_PIntRes2d_IntersectionPoint.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_PIntRes2d_IntersectionPoint.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_PLineInter.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_PLineInter.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_PLineInter.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_PLineInter.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_PPntOn2S.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_PPntOn2S.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_PPntOn2S.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_PPntOn2S.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_PThePointOfIntersection.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_PThePointOfIntersection.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_PThePointOfIntersection.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_PThePointOfIntersection.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_Point2d.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_Point2d.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_Point2d.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_Point2d.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_Point2d.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_Point2d.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_Point2d.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_Point2d.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_Point2d.lxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_Point2d.lxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_Point2d.lxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_Point2d.lxx diff --git a/src/TopOpeBRep/TopOpeBRep_PointClassifier.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_PointClassifier.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_PointClassifier.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_PointClassifier.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_PointClassifier.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_PointClassifier.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_PointClassifier.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_PointClassifier.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_PointGeomTool.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_PointGeomTool.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_PointGeomTool.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_PointGeomTool.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_PointGeomTool.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_PointGeomTool.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_PointGeomTool.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_PointGeomTool.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_ProcessGR.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_ProcessGR.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_ProcessGR.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_ProcessGR.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_ProcessSectionEdges.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_ProcessSectionEdges.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_ProcessSectionEdges.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_ProcessSectionEdges.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_SequenceOfPoint2d.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_SequenceOfPoint2d.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_SequenceOfPoint2d.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_SequenceOfPoint2d.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_ShapeIntersector.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_ShapeIntersector.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_ShapeIntersector.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_ShapeIntersector.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_ShapeIntersector.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_ShapeIntersector.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_ShapeIntersector.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_ShapeIntersector.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_ShapeIntersector2d.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_ShapeIntersector2d.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_ShapeIntersector2d.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_ShapeIntersector2d.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_ShapeIntersector2d.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_ShapeIntersector2d.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_ShapeIntersector2d.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_ShapeIntersector2d.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_ShapeScanner.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_ShapeScanner.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_ShapeScanner.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_ShapeScanner.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_ShapeScanner.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_ShapeScanner.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_ShapeScanner.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_ShapeScanner.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_TypeLineCurve.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_TypeLineCurve.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_TypeLineCurve.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_TypeLineCurve.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_VPointInter.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_VPointInter.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_VPointInter.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_VPointInter.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_VPointInter.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_VPointInter.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_VPointInter.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_VPointInter.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_VPointInter.lxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_VPointInter.lxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_VPointInter.lxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_VPointInter.lxx diff --git a/src/TopOpeBRep/TopOpeBRep_VPointInterClassifier.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_VPointInterClassifier.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_VPointInterClassifier.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_VPointInterClassifier.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_VPointInterClassifier.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_VPointInterClassifier.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_VPointInterClassifier.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_VPointInterClassifier.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_VPointInterIterator.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_VPointInterIterator.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_VPointInterIterator.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_VPointInterIterator.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_VPointInterIterator.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_VPointInterIterator.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_VPointInterIterator.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_VPointInterIterator.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_WPointInter.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_WPointInter.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_WPointInter.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_WPointInter.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_WPointInter.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_WPointInter.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_WPointInter.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_WPointInter.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_WPointInterIterator.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_WPointInterIterator.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_WPointInterIterator.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_WPointInterIterator.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_WPointInterIterator.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_WPointInterIterator.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_WPointInterIterator.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_WPointInterIterator.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_define.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_define.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_define.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_define.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_kpart.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_kpart.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_kpart.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_kpart.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_mergePDS.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_mergePDS.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_mergePDS.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_mergePDS.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_sort.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_sort.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_sort.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_sort.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_trace.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_trace.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_trace.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_trace.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_traceALWL.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_traceALWL.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_traceALWL.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_traceALWL.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_traceBOOPNINT.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_traceBOOPNINT.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_traceBOOPNINT.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_traceBOOPNINT.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_traceSIFF.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_traceSIFF.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_traceSIFF.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_traceSIFF.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_traceSIFF.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_traceSIFF.hxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_traceSIFF.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_traceSIFF.hxx diff --git a/src/TopOpeBRep/TopOpeBRep_vpr.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_vpr.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_vpr.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_vpr.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_vprclo.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_vprclo.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_vprclo.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_vprclo.cxx diff --git a/src/TopOpeBRep/TopOpeBRep_vprdeg.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_vprdeg.cxx similarity index 100% rename from src/TopOpeBRep/TopOpeBRep_vprdeg.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRep/TopOpeBRep_vprdeg.cxx diff --git a/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/FILES.cmake b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/FILES.cmake new file mode 100644 index 0000000000..46ca612d89 --- /dev/null +++ b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/FILES.cmake @@ -0,0 +1,128 @@ +# Source files for TopOpeBRepBuild package +set(OCCT_TopOpeBRepBuild_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TopOpeBRepBuild_FILES + TopOpeBRepBuild_Area1dBuilder.cxx + TopOpeBRepBuild_Area1dBuilder.hxx + TopOpeBRepBuild_Area2dBuilder.cxx + TopOpeBRepBuild_Area2dBuilder.hxx + TopOpeBRepBuild_Area3dBuilder.cxx + TopOpeBRepBuild_Area3dBuilder.hxx + TopOpeBRepBuild_AreaBuilder.cxx + TopOpeBRepBuild_AreaBuilder.hxx + TopOpeBRepBuild_BlockBuilder.cxx + TopOpeBRepBuild_BlockBuilder.hxx + TopOpeBRepBuild_BlockIterator.cxx + TopOpeBRepBuild_BlockIterator.hxx + TopOpeBRepBuild_BlockIterator.lxx + TopOpeBRepBuild_BuildEdges.cxx + TopOpeBRepBuild_Builder.cxx + TopOpeBRepBuild_Builder.hxx + TopOpeBRepBuild_Builder1.cxx + TopOpeBRepBuild_Builder1.hxx + TopOpeBRepBuild_Builder1_1.cxx + TopOpeBRepBuild_Builder1_2.cxx + TopOpeBRepBuild_BuilderON.cxx + TopOpeBRepBuild_BuilderON.hxx + TopOpeBRepBuild_BuilderON2d.cxx + TopOpeBRepBuild_BuildFaces.cxx + TopOpeBRepBuild_BuildVertices.cxx + TopOpeBRepBuild_CompositeClassifier.cxx + TopOpeBRepBuild_CompositeClassifier.hxx + TopOpeBRepBuild_CorrectFace2d.cxx + TopOpeBRepBuild_CorrectFace2d.hxx + TopOpeBRepBuild_DataMapIteratorOfDataMapOfShapeListOfShapeListOfShape.hxx + TopOpeBRepBuild_DataMapOfShapeListOfShapeListOfShape.hxx + TopOpeBRepBuild_define.hxx + TopOpeBRepBuild_EdgeBuilder.cxx + TopOpeBRepBuild_EdgeBuilder.hxx + TopOpeBRepBuild_End.cxx + TopOpeBRepBuild_FaceAreaBuilder.cxx + TopOpeBRepBuild_FaceAreaBuilder.hxx + TopOpeBRepBuild_FaceBuilder.cxx + TopOpeBRepBuild_FaceBuilder.hxx + TopOpeBRepBuild_fctwes.cxx + TopOpeBRepBuild_ffsfs.cxx + TopOpeBRepBuild_ffwesk.cxx + TopOpeBRepBuild_FREGU.cxx + TopOpeBRepBuild_FuseFace.cxx + TopOpeBRepBuild_FuseFace.hxx + TopOpeBRepBuild_FuseFace.lxx + TopOpeBRepBuild_GIter.cxx + TopOpeBRepBuild_GIter.hxx + TopOpeBRepBuild_Grid.cxx + TopOpeBRepBuild_Griddump.cxx + TopOpeBRepBuild_GridEE.cxx + TopOpeBRepBuild_GridFF.cxx + TopOpeBRepBuild_GridSS.cxx + TopOpeBRepBuild_GTool.cxx + TopOpeBRepBuild_GTool.hxx + TopOpeBRepBuild_GTopo.cxx + TopOpeBRepBuild_GTopo.hxx + TopOpeBRepBuild_HBuilder.cxx + TopOpeBRepBuild_HBuilder.hxx + TopOpeBRepBuild_IndexedDataMapOfShapeVertexInfo.hxx + TopOpeBRepBuild_keep.cxx + TopOpeBRepBuild_KPart.cxx + TopOpeBRepBuild_kpkole.cxx + TopOpeBRepBuild_kpresu.hxx + TopOpeBRepBuild_ListIteratorOfListOfListOfLoop.hxx + TopOpeBRepBuild_ListIteratorOfListOfLoop.hxx + TopOpeBRepBuild_ListIteratorOfListOfPave.hxx + TopOpeBRepBuild_ListIteratorOfListOfShapeListOfShape.hxx + TopOpeBRepBuild_ListOfListOfLoop.hxx + TopOpeBRepBuild_ListOfLoop.hxx + TopOpeBRepBuild_ListOfPave.hxx + TopOpeBRepBuild_ListOfShapeListOfShape.hxx + TopOpeBRepBuild_Loop.cxx + TopOpeBRepBuild_Loop.hxx + TopOpeBRepBuild_LoopClassifier.cxx + TopOpeBRepBuild_LoopClassifier.hxx + TopOpeBRepBuild_LoopEnum.hxx + TopOpeBRepBuild_LoopSet.cxx + TopOpeBRepBuild_LoopSet.hxx + TopOpeBRepBuild_makeedges.cxx + TopOpeBRepBuild_makefaces.cxx + TopOpeBRepBuild_makesolids.cxx + TopOpeBRepBuild_Merge.cxx + TopOpeBRepBuild_on.cxx + TopOpeBRepBuild_Pave.cxx + TopOpeBRepBuild_Pave.hxx + TopOpeBRepBuild_PaveClassifier.cxx + TopOpeBRepBuild_PaveClassifier.hxx + TopOpeBRepBuild_PaveSet.cxx + TopOpeBRepBuild_PaveSet.hxx + TopOpeBRepBuild_PBuilder.hxx + TopOpeBRepBuild_PGTopo.hxx + TopOpeBRepBuild_PWireEdgeSet.hxx + TopOpeBRepBuild_Section.cxx + TopOpeBRepBuild_ShapeListOfShape.cxx + TopOpeBRepBuild_ShapeListOfShape.hxx + TopOpeBRepBuild_ShapeSet.cxx + TopOpeBRepBuild_ShapeSet.hxx + TopOpeBRepBuild_ShellFaceClassifier.cxx + TopOpeBRepBuild_ShellFaceClassifier.hxx + TopOpeBRepBuild_ShellFaceSet.cxx + TopOpeBRepBuild_ShellFaceSet.hxx + TopOpeBRepBuild_ShellToSolid.cxx + TopOpeBRepBuild_ShellToSolid.hxx + TopOpeBRepBuild_SolidAreaBuilder.cxx + TopOpeBRepBuild_SolidAreaBuilder.hxx + TopOpeBRepBuild_SolidBuilder.cxx + TopOpeBRepBuild_SolidBuilder.hxx + TopOpeBRepBuild_SREGU.cxx + TopOpeBRepBuild_Tools.cxx + TopOpeBRepBuild_Tools.hxx + TopOpeBRepBuild_Tools2d.cxx + TopOpeBRepBuild_Tools2d.hxx + TopOpeBRepBuild_Tools_1.cxx + TopOpeBRepBuild_trace.cxx + TopOpeBRepBuild_VertexInfo.cxx + TopOpeBRepBuild_VertexInfo.hxx + TopOpeBRepBuild_WireEdgeClassifier.cxx + TopOpeBRepBuild_WireEdgeClassifier.hxx + TopOpeBRepBuild_WireEdgeSet.cxx + TopOpeBRepBuild_WireEdgeSet.hxx + TopOpeBRepBuild_WireToFace.cxx + TopOpeBRepBuild_WireToFace.hxx +) diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Area1dBuilder.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Area1dBuilder.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_Area1dBuilder.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Area1dBuilder.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Area1dBuilder.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Area1dBuilder.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_Area1dBuilder.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Area1dBuilder.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Area2dBuilder.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Area2dBuilder.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_Area2dBuilder.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Area2dBuilder.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Area2dBuilder.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Area2dBuilder.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_Area2dBuilder.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Area2dBuilder.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Area3dBuilder.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Area3dBuilder.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_Area3dBuilder.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Area3dBuilder.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Area3dBuilder.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Area3dBuilder.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_Area3dBuilder.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Area3dBuilder.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_AreaBuilder.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_AreaBuilder.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_AreaBuilder.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_AreaBuilder.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_AreaBuilder.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_AreaBuilder.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_AreaBuilder.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_AreaBuilder.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_BlockBuilder.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_BlockBuilder.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_BlockBuilder.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_BlockBuilder.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_BlockBuilder.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_BlockBuilder.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_BlockBuilder.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_BlockBuilder.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_BlockIterator.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_BlockIterator.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_BlockIterator.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_BlockIterator.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_BlockIterator.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_BlockIterator.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_BlockIterator.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_BlockIterator.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_BlockIterator.lxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_BlockIterator.lxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_BlockIterator.lxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_BlockIterator.lxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_BuildEdges.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_BuildEdges.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_BuildEdges.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_BuildEdges.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_BuildFaces.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_BuildFaces.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_BuildFaces.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_BuildFaces.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_BuildVertices.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_BuildVertices.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_BuildVertices.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_BuildVertices.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Builder.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Builder.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_Builder.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Builder.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Builder.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Builder.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_Builder.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Builder.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Builder1.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Builder1.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_Builder1.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Builder1.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Builder1.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Builder1.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_Builder1.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Builder1.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Builder1_1.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Builder1_1.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_Builder1_1.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Builder1_1.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Builder1_2.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Builder1_2.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_Builder1_2.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Builder1_2.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_BuilderON.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_BuilderON.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_BuilderON.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_BuilderON.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_BuilderON.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_BuilderON.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_BuilderON.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_BuilderON.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_BuilderON2d.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_BuilderON2d.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_BuilderON2d.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_BuilderON2d.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_CompositeClassifier.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_CompositeClassifier.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_CompositeClassifier.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_CompositeClassifier.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_CompositeClassifier.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_CompositeClassifier.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_CompositeClassifier.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_CompositeClassifier.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_CorrectFace2d.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_CorrectFace2d.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_CorrectFace2d.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_CorrectFace2d.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_CorrectFace2d.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_CorrectFace2d.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_CorrectFace2d.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_CorrectFace2d.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_DataMapIteratorOfDataMapOfShapeListOfShapeListOfShape.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_DataMapIteratorOfDataMapOfShapeListOfShapeListOfShape.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_DataMapIteratorOfDataMapOfShapeListOfShapeListOfShape.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_DataMapIteratorOfDataMapOfShapeListOfShapeListOfShape.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_DataMapOfShapeListOfShapeListOfShape.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_DataMapOfShapeListOfShapeListOfShape.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_DataMapOfShapeListOfShapeListOfShape.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_DataMapOfShapeListOfShapeListOfShape.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_EdgeBuilder.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_EdgeBuilder.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_EdgeBuilder.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_EdgeBuilder.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_EdgeBuilder.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_EdgeBuilder.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_EdgeBuilder.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_EdgeBuilder.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_End.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_End.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_End.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_End.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_FREGU.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_FREGU.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_FREGU.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_FREGU.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_FaceAreaBuilder.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_FaceAreaBuilder.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_FaceAreaBuilder.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_FaceAreaBuilder.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_FaceAreaBuilder.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_FaceAreaBuilder.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_FaceAreaBuilder.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_FaceAreaBuilder.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_FaceBuilder.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_FaceBuilder.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_FaceBuilder.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_FaceBuilder.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_FaceBuilder.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_FaceBuilder.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_FaceBuilder.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_FaceBuilder.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_FuseFace.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_FuseFace.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_FuseFace.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_FuseFace.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_FuseFace.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_FuseFace.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_FuseFace.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_FuseFace.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_FuseFace.lxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_FuseFace.lxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_FuseFace.lxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_FuseFace.lxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_GIter.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_GIter.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_GIter.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_GIter.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_GIter.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_GIter.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_GIter.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_GIter.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_GTool.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_GTool.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_GTool.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_GTool.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_GTool.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_GTool.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_GTool.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_GTool.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_GTopo.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_GTopo.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_GTopo.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_GTopo.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_GTopo.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_GTopo.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_GTopo.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_GTopo.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Grid.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Grid.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_Grid.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Grid.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_GridEE.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_GridEE.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_GridEE.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_GridEE.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_GridFF.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_GridFF.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_GridFF.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_GridFF.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_GridSS.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_GridSS.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_GridSS.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_GridSS.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Griddump.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Griddump.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_Griddump.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Griddump.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_HBuilder.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_HBuilder.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_HBuilder.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_HBuilder.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_HBuilder.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_HBuilder.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_HBuilder.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_HBuilder.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_IndexedDataMapOfShapeVertexInfo.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_IndexedDataMapOfShapeVertexInfo.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_IndexedDataMapOfShapeVertexInfo.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_IndexedDataMapOfShapeVertexInfo.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_KPart.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_KPart.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_KPart.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_KPart.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_ListIteratorOfListOfListOfLoop.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ListIteratorOfListOfListOfLoop.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_ListIteratorOfListOfListOfLoop.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ListIteratorOfListOfListOfLoop.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_ListIteratorOfListOfLoop.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ListIteratorOfListOfLoop.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_ListIteratorOfListOfLoop.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ListIteratorOfListOfLoop.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_ListIteratorOfListOfPave.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ListIteratorOfListOfPave.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_ListIteratorOfListOfPave.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ListIteratorOfListOfPave.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_ListIteratorOfListOfShapeListOfShape.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ListIteratorOfListOfShapeListOfShape.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_ListIteratorOfListOfShapeListOfShape.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ListIteratorOfListOfShapeListOfShape.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_ListOfListOfLoop.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ListOfListOfLoop.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_ListOfListOfLoop.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ListOfListOfLoop.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_ListOfLoop.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ListOfLoop.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_ListOfLoop.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ListOfLoop.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_ListOfPave.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ListOfPave.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_ListOfPave.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ListOfPave.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_ListOfShapeListOfShape.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ListOfShapeListOfShape.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_ListOfShapeListOfShape.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ListOfShapeListOfShape.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Loop.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Loop.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_Loop.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Loop.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Loop.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Loop.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_Loop.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Loop.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_LoopClassifier.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_LoopClassifier.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_LoopClassifier.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_LoopClassifier.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_LoopClassifier.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_LoopClassifier.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_LoopClassifier.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_LoopClassifier.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_LoopEnum.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_LoopEnum.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_LoopEnum.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_LoopEnum.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_LoopSet.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_LoopSet.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_LoopSet.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_LoopSet.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_LoopSet.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_LoopSet.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_LoopSet.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_LoopSet.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Merge.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Merge.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_Merge.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Merge.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_PBuilder.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_PBuilder.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_PBuilder.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_PBuilder.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_PGTopo.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_PGTopo.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_PGTopo.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_PGTopo.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_PWireEdgeSet.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_PWireEdgeSet.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_PWireEdgeSet.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_PWireEdgeSet.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Pave.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Pave.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_Pave.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Pave.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Pave.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Pave.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_Pave.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Pave.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_PaveClassifier.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_PaveClassifier.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_PaveClassifier.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_PaveClassifier.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_PaveClassifier.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_PaveClassifier.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_PaveClassifier.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_PaveClassifier.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_PaveSet.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_PaveSet.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_PaveSet.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_PaveSet.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_PaveSet.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_PaveSet.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_PaveSet.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_PaveSet.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_SREGU.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_SREGU.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_SREGU.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_SREGU.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Section.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Section.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_Section.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Section.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_ShapeListOfShape.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ShapeListOfShape.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_ShapeListOfShape.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ShapeListOfShape.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_ShapeListOfShape.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ShapeListOfShape.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_ShapeListOfShape.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ShapeListOfShape.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_ShapeSet.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ShapeSet.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_ShapeSet.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ShapeSet.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_ShapeSet.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ShapeSet.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_ShapeSet.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ShapeSet.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_ShellFaceClassifier.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ShellFaceClassifier.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_ShellFaceClassifier.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ShellFaceClassifier.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_ShellFaceClassifier.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ShellFaceClassifier.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_ShellFaceClassifier.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ShellFaceClassifier.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_ShellFaceSet.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ShellFaceSet.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_ShellFaceSet.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ShellFaceSet.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_ShellFaceSet.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ShellFaceSet.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_ShellFaceSet.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ShellFaceSet.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_ShellToSolid.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ShellToSolid.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_ShellToSolid.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ShellToSolid.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_ShellToSolid.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ShellToSolid.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_ShellToSolid.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ShellToSolid.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_SolidAreaBuilder.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_SolidAreaBuilder.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_SolidAreaBuilder.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_SolidAreaBuilder.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_SolidAreaBuilder.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_SolidAreaBuilder.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_SolidAreaBuilder.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_SolidAreaBuilder.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_SolidBuilder.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_SolidBuilder.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_SolidBuilder.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_SolidBuilder.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_SolidBuilder.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_SolidBuilder.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_SolidBuilder.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_SolidBuilder.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Tools.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Tools.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_Tools.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Tools.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Tools.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Tools.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_Tools.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Tools.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Tools2d.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Tools2d.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_Tools2d.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Tools2d.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Tools2d.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Tools2d.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_Tools2d.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Tools2d.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Tools_1.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Tools_1.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_Tools_1.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_Tools_1.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_VertexInfo.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_VertexInfo.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_VertexInfo.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_VertexInfo.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_VertexInfo.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_VertexInfo.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_VertexInfo.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_VertexInfo.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_WireEdgeClassifier.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_WireEdgeClassifier.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_WireEdgeClassifier.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_WireEdgeClassifier.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_WireEdgeClassifier.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_WireEdgeClassifier.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_WireEdgeClassifier.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_WireEdgeClassifier.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_WireEdgeSet.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_WireEdgeSet.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_WireEdgeSet.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_WireEdgeSet.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_WireEdgeSet.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_WireEdgeSet.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_WireEdgeSet.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_WireEdgeSet.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_WireToFace.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_WireToFace.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_WireToFace.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_WireToFace.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_WireToFace.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_WireToFace.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_WireToFace.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_WireToFace.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_define.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_define.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_define.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_define.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_fctwes.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_fctwes.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_fctwes.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_fctwes.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_ffsfs.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ffsfs.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_ffsfs.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ffsfs.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_ffwesk.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ffwesk.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_ffwesk.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_ffwesk.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_keep.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_keep.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_keep.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_keep.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_kpkole.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_kpkole.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_kpkole.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_kpkole.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_kpresu.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_kpresu.hxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_kpresu.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_kpresu.hxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_makeedges.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_makeedges.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_makeedges.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_makeedges.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_makefaces.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_makefaces.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_makefaces.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_makefaces.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_makesolids.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_makesolids.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_makesolids.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_makesolids.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_on.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_on.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_on.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_on.cxx diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_trace.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_trace.cxx similarity index 100% rename from src/TopOpeBRepBuild/TopOpeBRepBuild_trace.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepBuild/TopOpeBRepBuild_trace.cxx diff --git a/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/FILES.cmake b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/FILES.cmake new file mode 100644 index 0000000000..99069b7090 --- /dev/null +++ b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/FILES.cmake @@ -0,0 +1,152 @@ +# Source files for TopOpeBRepDS package +set(OCCT_TopOpeBRepDS_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TopOpeBRepDS_FILES + TopOpeBRepDS.cxx + TopOpeBRepDS.hxx + TopOpeBRepDS_Array1OfDataMapOfIntegerListOfInterference.hxx + TopOpeBRepDS_Association.cxx + TopOpeBRepDS_Association.hxx + TopOpeBRepDS_BuildTool.cxx + TopOpeBRepDS_BuildTool.hxx + TopOpeBRepDS_Check.cxx + TopOpeBRepDS_Check.hxx + TopOpeBRepDS_CheckStatus.hxx + TopOpeBRepDS_Config.hxx + TopOpeBRepDS_connex.cxx + TopOpeBRepDS_connex.hxx + TopOpeBRepDS_Curve.cxx + TopOpeBRepDS_Curve.hxx + TopOpeBRepDS_CurveData.cxx + TopOpeBRepDS_CurveData.hxx + TopOpeBRepDS_CurveExplorer.cxx + TopOpeBRepDS_CurveExplorer.hxx + TopOpeBRepDS_CurveIterator.cxx + TopOpeBRepDS_CurveIterator.hxx + TopOpeBRepDS_CurvePointInterference.cxx + TopOpeBRepDS_CurvePointInterference.hxx + TopOpeBRepDS_DataMapIteratorOfDataMapOfCheckStatus.hxx + TopOpeBRepDS_DataMapIteratorOfDataMapOfIntegerListOfInterference.hxx + TopOpeBRepDS_DataMapIteratorOfDataMapOfInterferenceListOfInterference.hxx + TopOpeBRepDS_DataMapIteratorOfDataMapOfInterferenceShape.hxx + TopOpeBRepDS_DataMapIteratorOfDataMapOfShapeListOfShapeOn1State.hxx + TopOpeBRepDS_DataMapIteratorOfDataMapOfShapeState.hxx + TopOpeBRepDS_DataMapIteratorOfMapOfCurve.hxx + TopOpeBRepDS_DataMapIteratorOfMapOfIntegerShapeData.hxx + TopOpeBRepDS_DataMapIteratorOfMapOfPoint.hxx + TopOpeBRepDS_DataMapIteratorOfMapOfSurface.hxx + TopOpeBRepDS_DataMapIteratorOfShapeSurface.hxx + TopOpeBRepDS_DataMapOfCheckStatus.hxx + TopOpeBRepDS_DataMapOfIntegerListOfInterference.hxx + TopOpeBRepDS_DataMapOfInterferenceListOfInterference.hxx + TopOpeBRepDS_DataMapOfInterferenceShape.hxx + TopOpeBRepDS_DataMapOfShapeListOfShapeOn1State.hxx + TopOpeBRepDS_DataMapOfShapeState.hxx + TopOpeBRepDS_DataStructure.cxx + TopOpeBRepDS_DataStructure.hxx + TopOpeBRepDS_define.hxx + TopOpeBRepDS_DoubleMapIteratorOfDoubleMapOfIntegerShape.hxx + TopOpeBRepDS_DoubleMapOfIntegerShape.hxx + TopOpeBRepDS_DRAW.cxx + TopOpeBRepDS_DRAW.hxx + TopOpeBRepDS_Dumper.cxx + TopOpeBRepDS_Dumper.hxx + TopOpeBRepDS_Edge3dInterferenceTool.cxx + TopOpeBRepDS_Edge3dInterferenceTool.hxx + TopOpeBRepDS_EdgeInterferenceTool.cxx + TopOpeBRepDS_EdgeInterferenceTool.hxx + TopOpeBRepDS_EdgeVertexInterference.cxx + TopOpeBRepDS_EdgeVertexInterference.hxx + TopOpeBRepDS_EIR.cxx + TopOpeBRepDS_EIR.hxx + TopOpeBRepDS_Explorer.cxx + TopOpeBRepDS_Explorer.hxx + TopOpeBRepDS_EXPORT.cxx + TopOpeBRepDS_EXPORT.hxx + TopOpeBRepDS_FaceEdgeInterference.cxx + TopOpeBRepDS_FaceEdgeInterference.hxx + TopOpeBRepDS_FaceInterferenceTool.cxx + TopOpeBRepDS_FaceInterferenceTool.hxx + TopOpeBRepDS_Filter.cxx + TopOpeBRepDS_Filter.hxx + TopOpeBRepDS_FilterCurveInterferences.cxx + TopOpeBRepDS_FilterEdgeInterferences.cxx + TopOpeBRepDS_FilterFaceInterferences.cxx + TopOpeBRepDS_FIR.cxx + TopOpeBRepDS_FIR.hxx + TopOpeBRepDS_funk.cxx + TopOpeBRepDS_GapFiller.cxx + TopOpeBRepDS_GapFiller.hxx + TopOpeBRepDS_GapTool.cxx + TopOpeBRepDS_GapTool.hxx + TopOpeBRepDS_GeometryData.cxx + TopOpeBRepDS_GeometryData.hxx + TopOpeBRepDS_HArray1OfDataMapOfIntegerListOfInterference.hxx + TopOpeBRepDS_HDataStructure.cxx + TopOpeBRepDS_HDataStructure.hxx + TopOpeBRepDS_IndexedDataMapOfShapeWithState.hxx + TopOpeBRepDS_IndexedDataMapOfVertexPoint.hxx + TopOpeBRepDS_Interference.cxx + TopOpeBRepDS_Interference.hxx + TopOpeBRepDS_InterferenceIterator.cxx + TopOpeBRepDS_InterferenceIterator.hxx + TopOpeBRepDS_InterferenceTool.cxx + TopOpeBRepDS_InterferenceTool.hxx + TopOpeBRepDS_Kind.hxx + TopOpeBRepDS_ListIteratorOfListOfInterference.hxx + TopOpeBRepDS_ListOfInterference.hxx + TopOpeBRepDS_ListOfShapeOn1State.cxx + TopOpeBRepDS_ListOfShapeOn1State.hxx + TopOpeBRepDS_MapOfCurve.hxx + TopOpeBRepDS_MapOfIntegerShapeData.hxx + TopOpeBRepDS_MapOfPoint.hxx + TopOpeBRepDS_MapOfShapeData.hxx + TopOpeBRepDS_MapOfSurface.hxx + TopOpeBRepDS_Marker.cxx + TopOpeBRepDS_Marker.hxx + TopOpeBRepDS_PDataStructure.hxx + TopOpeBRepDS_Point.cxx + TopOpeBRepDS_Point.hxx + TopOpeBRepDS_PointData.cxx + TopOpeBRepDS_PointData.hxx + TopOpeBRepDS_PointExplorer.cxx + TopOpeBRepDS_PointExplorer.hxx + TopOpeBRepDS_PointIterator.cxx + TopOpeBRepDS_PointIterator.hxx + TopOpeBRepDS_ProcessEdgeInterferences.cxx + TopOpeBRepDS_ProcessFaceInterferences.cxx + TopOpeBRepDS_ProcessInterferencesTool.cxx + TopOpeBRepDS_ProcessInterferencesTool.hxx + TopOpeBRepDS_redu.cxx + TopOpeBRepDS_Reducer.cxx + TopOpeBRepDS_Reducer.hxx + TopOpeBRepDS_repvg.cxx + TopOpeBRepDS_repvg.hxx + TopOpeBRepDS_samdom.cxx + TopOpeBRepDS_samdom.hxx + TopOpeBRepDS_ShapeData.cxx + TopOpeBRepDS_ShapeData.hxx + TopOpeBRepDS_ShapeShapeInterference.cxx + TopOpeBRepDS_ShapeShapeInterference.hxx + TopOpeBRepDS_ShapeSurface.hxx + TopOpeBRepDS_ShapeWithState.cxx + TopOpeBRepDS_ShapeWithState.hxx + TopOpeBRepDS_SolidSurfaceInterference.cxx + TopOpeBRepDS_SolidSurfaceInterference.hxx + TopOpeBRepDS_Surface.cxx + TopOpeBRepDS_Surface.hxx + TopOpeBRepDS_SurfaceCurveInterference.cxx + TopOpeBRepDS_SurfaceCurveInterference.hxx + TopOpeBRepDS_SurfaceData.cxx + TopOpeBRepDS_SurfaceData.hxx + TopOpeBRepDS_SurfaceExplorer.cxx + TopOpeBRepDS_SurfaceExplorer.hxx + TopOpeBRepDS_SurfaceIterator.cxx + TopOpeBRepDS_SurfaceIterator.hxx + TopOpeBRepDS_TKI.cxx + TopOpeBRepDS_TKI.hxx + TopOpeBRepDS_TOOL.cxx + TopOpeBRepDS_TOOL.hxx + TopOpeBRepDS_Transition.cxx + TopOpeBRepDS_Transition.hxx +) diff --git a/src/TopOpeBRepDS/TopOpeBRepDS.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Array1OfDataMapOfIntegerListOfInterference.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Array1OfDataMapOfIntegerListOfInterference.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Array1OfDataMapOfIntegerListOfInterference.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Array1OfDataMapOfIntegerListOfInterference.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Association.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Association.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Association.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Association.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Association.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Association.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Association.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Association.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_BuildTool.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_BuildTool.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_BuildTool.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_BuildTool.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_BuildTool.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_BuildTool.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_BuildTool.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_BuildTool.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Check.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Check.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Check.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Check.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Check.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Check.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Check.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Check.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_CheckStatus.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_CheckStatus.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_CheckStatus.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_CheckStatus.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Config.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Config.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Config.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Config.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Curve.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Curve.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Curve.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Curve.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Curve.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Curve.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Curve.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Curve.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_CurveData.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_CurveData.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_CurveData.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_CurveData.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_CurveData.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_CurveData.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_CurveData.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_CurveData.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_CurveExplorer.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_CurveExplorer.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_CurveExplorer.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_CurveExplorer.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_CurveExplorer.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_CurveExplorer.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_CurveExplorer.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_CurveExplorer.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_CurveIterator.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_CurveIterator.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_CurveIterator.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_CurveIterator.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_CurveIterator.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_CurveIterator.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_CurveIterator.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_CurveIterator.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_CurvePointInterference.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_CurvePointInterference.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_CurvePointInterference.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_CurvePointInterference.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_CurvePointInterference.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_CurvePointInterference.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_CurvePointInterference.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_CurvePointInterference.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_DRAW.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DRAW.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_DRAW.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DRAW.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_DRAW.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DRAW.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_DRAW.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DRAW.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfDataMapOfCheckStatus.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfDataMapOfCheckStatus.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfDataMapOfCheckStatus.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfDataMapOfCheckStatus.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfDataMapOfIntegerListOfInterference.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfDataMapOfIntegerListOfInterference.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfDataMapOfIntegerListOfInterference.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfDataMapOfIntegerListOfInterference.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfDataMapOfInterferenceListOfInterference.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfDataMapOfInterferenceListOfInterference.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfDataMapOfInterferenceListOfInterference.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfDataMapOfInterferenceListOfInterference.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfDataMapOfInterferenceShape.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfDataMapOfInterferenceShape.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfDataMapOfInterferenceShape.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfDataMapOfInterferenceShape.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfDataMapOfShapeListOfShapeOn1State.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfDataMapOfShapeListOfShapeOn1State.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfDataMapOfShapeListOfShapeOn1State.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfDataMapOfShapeListOfShapeOn1State.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfDataMapOfShapeState.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfDataMapOfShapeState.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfDataMapOfShapeState.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfDataMapOfShapeState.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfMapOfCurve.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfMapOfCurve.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfMapOfCurve.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfMapOfCurve.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfMapOfIntegerShapeData.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfMapOfIntegerShapeData.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfMapOfIntegerShapeData.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfMapOfIntegerShapeData.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfMapOfPoint.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfMapOfPoint.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfMapOfPoint.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfMapOfPoint.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfMapOfSurface.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfMapOfSurface.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfMapOfSurface.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfMapOfSurface.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfShapeSurface.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfShapeSurface.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfShapeSurface.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapIteratorOfShapeSurface.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_DataMapOfCheckStatus.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapOfCheckStatus.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_DataMapOfCheckStatus.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapOfCheckStatus.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_DataMapOfIntegerListOfInterference.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapOfIntegerListOfInterference.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_DataMapOfIntegerListOfInterference.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapOfIntegerListOfInterference.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_DataMapOfInterferenceListOfInterference.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapOfInterferenceListOfInterference.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_DataMapOfInterferenceListOfInterference.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapOfInterferenceListOfInterference.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_DataMapOfInterferenceShape.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapOfInterferenceShape.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_DataMapOfInterferenceShape.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapOfInterferenceShape.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_DataMapOfShapeListOfShapeOn1State.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapOfShapeListOfShapeOn1State.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_DataMapOfShapeListOfShapeOn1State.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapOfShapeListOfShapeOn1State.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_DataMapOfShapeState.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapOfShapeState.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_DataMapOfShapeState.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataMapOfShapeState.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_DataStructure.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataStructure.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_DataStructure.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataStructure.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_DataStructure.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataStructure.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_DataStructure.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DataStructure.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_DoubleMapIteratorOfDoubleMapOfIntegerShape.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DoubleMapIteratorOfDoubleMapOfIntegerShape.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_DoubleMapIteratorOfDoubleMapOfIntegerShape.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DoubleMapIteratorOfDoubleMapOfIntegerShape.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_DoubleMapOfIntegerShape.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DoubleMapOfIntegerShape.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_DoubleMapOfIntegerShape.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_DoubleMapOfIntegerShape.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Dumper.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Dumper.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Dumper.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Dumper.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Dumper.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Dumper.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Dumper.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Dumper.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_EIR.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_EIR.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_EIR.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_EIR.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_EIR.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_EIR.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_EIR.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_EIR.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_EXPORT.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_EXPORT.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_EXPORT.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_EXPORT.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_EXPORT.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_EXPORT.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_EXPORT.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_EXPORT.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Edge3dInterferenceTool.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Edge3dInterferenceTool.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Edge3dInterferenceTool.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Edge3dInterferenceTool.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Edge3dInterferenceTool.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Edge3dInterferenceTool.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Edge3dInterferenceTool.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Edge3dInterferenceTool.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_EdgeInterferenceTool.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_EdgeInterferenceTool.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_EdgeInterferenceTool.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_EdgeInterferenceTool.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_EdgeInterferenceTool.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_EdgeInterferenceTool.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_EdgeInterferenceTool.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_EdgeInterferenceTool.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_EdgeVertexInterference.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_EdgeVertexInterference.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_EdgeVertexInterference.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_EdgeVertexInterference.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_EdgeVertexInterference.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_EdgeVertexInterference.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_EdgeVertexInterference.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_EdgeVertexInterference.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Explorer.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Explorer.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Explorer.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Explorer.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Explorer.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Explorer.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Explorer.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Explorer.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_FIR.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_FIR.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_FIR.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_FIR.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_FIR.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_FIR.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_FIR.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_FIR.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_FaceEdgeInterference.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_FaceEdgeInterference.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_FaceEdgeInterference.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_FaceEdgeInterference.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_FaceEdgeInterference.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_FaceEdgeInterference.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_FaceEdgeInterference.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_FaceEdgeInterference.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_FaceInterferenceTool.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_FaceInterferenceTool.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_FaceInterferenceTool.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_FaceInterferenceTool.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_FaceInterferenceTool.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_FaceInterferenceTool.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_FaceInterferenceTool.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_FaceInterferenceTool.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Filter.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Filter.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Filter.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Filter.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Filter.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Filter.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Filter.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Filter.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_FilterCurveInterferences.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_FilterCurveInterferences.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_FilterCurveInterferences.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_FilterCurveInterferences.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_FilterEdgeInterferences.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_FilterEdgeInterferences.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_FilterEdgeInterferences.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_FilterEdgeInterferences.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_FilterFaceInterferences.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_FilterFaceInterferences.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_FilterFaceInterferences.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_FilterFaceInterferences.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_GapFiller.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_GapFiller.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_GapFiller.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_GapFiller.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_GapFiller.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_GapFiller.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_GapFiller.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_GapFiller.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_GapTool.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_GapTool.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_GapTool.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_GapTool.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_GapTool.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_GapTool.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_GapTool.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_GapTool.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_GeometryData.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_GeometryData.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_GeometryData.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_GeometryData.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_GeometryData.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_GeometryData.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_GeometryData.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_GeometryData.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_HArray1OfDataMapOfIntegerListOfInterference.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_HArray1OfDataMapOfIntegerListOfInterference.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_HArray1OfDataMapOfIntegerListOfInterference.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_HArray1OfDataMapOfIntegerListOfInterference.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_HDataStructure.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_HDataStructure.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_HDataStructure.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_HDataStructure.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_HDataStructure.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_HDataStructure.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_HDataStructure.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_HDataStructure.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_IndexedDataMapOfShapeWithState.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_IndexedDataMapOfShapeWithState.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_IndexedDataMapOfShapeWithState.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_IndexedDataMapOfShapeWithState.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_IndexedDataMapOfVertexPoint.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_IndexedDataMapOfVertexPoint.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_IndexedDataMapOfVertexPoint.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_IndexedDataMapOfVertexPoint.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Interference.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Interference.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Interference.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Interference.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Interference.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Interference.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Interference.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Interference.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_InterferenceIterator.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_InterferenceIterator.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_InterferenceIterator.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_InterferenceIterator.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_InterferenceIterator.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_InterferenceIterator.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_InterferenceIterator.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_InterferenceIterator.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_InterferenceTool.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_InterferenceTool.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_InterferenceTool.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_InterferenceTool.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_InterferenceTool.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_InterferenceTool.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_InterferenceTool.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_InterferenceTool.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Kind.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Kind.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Kind.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Kind.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_ListIteratorOfListOfInterference.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ListIteratorOfListOfInterference.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_ListIteratorOfListOfInterference.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ListIteratorOfListOfInterference.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_ListOfInterference.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ListOfInterference.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_ListOfInterference.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ListOfInterference.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_ListOfShapeOn1State.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ListOfShapeOn1State.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_ListOfShapeOn1State.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ListOfShapeOn1State.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_ListOfShapeOn1State.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ListOfShapeOn1State.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_ListOfShapeOn1State.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ListOfShapeOn1State.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_MapOfCurve.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_MapOfCurve.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_MapOfCurve.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_MapOfCurve.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_MapOfIntegerShapeData.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_MapOfIntegerShapeData.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_MapOfIntegerShapeData.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_MapOfIntegerShapeData.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_MapOfPoint.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_MapOfPoint.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_MapOfPoint.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_MapOfPoint.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_MapOfShapeData.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_MapOfShapeData.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_MapOfShapeData.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_MapOfShapeData.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_MapOfSurface.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_MapOfSurface.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_MapOfSurface.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_MapOfSurface.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Marker.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Marker.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Marker.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Marker.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Marker.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Marker.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Marker.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Marker.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_PDataStructure.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_PDataStructure.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_PDataStructure.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_PDataStructure.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Point.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Point.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Point.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Point.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Point.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Point.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Point.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Point.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_PointData.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_PointData.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_PointData.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_PointData.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_PointData.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_PointData.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_PointData.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_PointData.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_PointExplorer.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_PointExplorer.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_PointExplorer.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_PointExplorer.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_PointExplorer.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_PointExplorer.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_PointExplorer.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_PointExplorer.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_PointIterator.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_PointIterator.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_PointIterator.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_PointIterator.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_PointIterator.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_PointIterator.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_PointIterator.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_PointIterator.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_ProcessEdgeInterferences.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ProcessEdgeInterferences.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_ProcessEdgeInterferences.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ProcessEdgeInterferences.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_ProcessFaceInterferences.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ProcessFaceInterferences.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_ProcessFaceInterferences.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ProcessFaceInterferences.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_ProcessInterferencesTool.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ProcessInterferencesTool.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_ProcessInterferencesTool.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ProcessInterferencesTool.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_ProcessInterferencesTool.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ProcessInterferencesTool.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_ProcessInterferencesTool.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ProcessInterferencesTool.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Reducer.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Reducer.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Reducer.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Reducer.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Reducer.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Reducer.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Reducer.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Reducer.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_ShapeData.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ShapeData.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_ShapeData.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ShapeData.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_ShapeData.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ShapeData.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_ShapeData.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ShapeData.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_ShapeShapeInterference.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ShapeShapeInterference.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_ShapeShapeInterference.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ShapeShapeInterference.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_ShapeShapeInterference.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ShapeShapeInterference.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_ShapeShapeInterference.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ShapeShapeInterference.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_ShapeSurface.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ShapeSurface.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_ShapeSurface.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ShapeSurface.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_ShapeWithState.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ShapeWithState.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_ShapeWithState.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ShapeWithState.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_ShapeWithState.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ShapeWithState.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_ShapeWithState.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_ShapeWithState.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_SolidSurfaceInterference.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_SolidSurfaceInterference.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_SolidSurfaceInterference.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_SolidSurfaceInterference.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_SolidSurfaceInterference.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_SolidSurfaceInterference.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_SolidSurfaceInterference.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_SolidSurfaceInterference.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Surface.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Surface.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Surface.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Surface.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Surface.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Surface.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Surface.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Surface.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_SurfaceCurveInterference.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_SurfaceCurveInterference.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_SurfaceCurveInterference.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_SurfaceCurveInterference.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_SurfaceCurveInterference.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_SurfaceCurveInterference.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_SurfaceCurveInterference.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_SurfaceCurveInterference.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_SurfaceData.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_SurfaceData.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_SurfaceData.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_SurfaceData.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_SurfaceData.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_SurfaceData.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_SurfaceData.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_SurfaceData.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_SurfaceExplorer.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_SurfaceExplorer.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_SurfaceExplorer.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_SurfaceExplorer.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_SurfaceExplorer.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_SurfaceExplorer.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_SurfaceExplorer.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_SurfaceExplorer.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_SurfaceIterator.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_SurfaceIterator.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_SurfaceIterator.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_SurfaceIterator.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_SurfaceIterator.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_SurfaceIterator.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_SurfaceIterator.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_SurfaceIterator.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_TKI.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_TKI.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_TKI.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_TKI.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_TKI.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_TKI.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_TKI.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_TKI.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_TOOL.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_TOOL.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_TOOL.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_TOOL.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_TOOL.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_TOOL.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_TOOL.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_TOOL.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Transition.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Transition.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Transition.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Transition.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_Transition.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Transition.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_Transition.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_Transition.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_connex.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_connex.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_connex.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_connex.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_connex.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_connex.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_connex.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_connex.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_define.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_define.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_define.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_define.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_funk.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_funk.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_funk.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_funk.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_redu.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_redu.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_redu.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_redu.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_repvg.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_repvg.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_repvg.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_repvg.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_repvg.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_repvg.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_repvg.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_repvg.hxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_samdom.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_samdom.cxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_samdom.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_samdom.cxx diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_samdom.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_samdom.hxx similarity index 100% rename from src/TopOpeBRepDS/TopOpeBRepDS_samdom.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepDS/TopOpeBRepDS_samdom.hxx diff --git a/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/FILES.cmake b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/FILES.cmake new file mode 100644 index 0000000000..c3eec51c5d --- /dev/null +++ b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/FILES.cmake @@ -0,0 +1,95 @@ +# Source files for TopOpeBRepTool package +set(OCCT_TopOpeBRepTool_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TopOpeBRepTool_FILES + FILES + TopOpeBRepTool.cxx + TopOpeBRepTool.hxx + TopOpeBRepTool_2d.cxx + TopOpeBRepTool_2d.hxx + TopOpeBRepTool_AncestorsTool.cxx + TopOpeBRepTool_AncestorsTool.hxx + TopOpeBRepTool_box.cxx + TopOpeBRepTool_box.hxx + TopOpeBRepTool_BoxSort.cxx + TopOpeBRepTool_BoxSort.hxx + TopOpeBRepTool_C2DF.cxx + TopOpeBRepTool_C2DF.hxx + TopOpeBRepTool_CLASSI.cxx + TopOpeBRepTool_CLASSI.hxx + TopOpeBRepTool_connexity.cxx + TopOpeBRepTool_connexity.hxx + TopOpeBRepTool_CORRISO.cxx + TopOpeBRepTool_CORRISO.hxx + TopOpeBRepTool_CurveTool.cxx + TopOpeBRepTool_CurveTool.hxx + TopOpeBRepTool_DataMapIteratorOfDataMapOfOrientedShapeC2DF.hxx + TopOpeBRepTool_DataMapIteratorOfDataMapOfShapeface.hxx + TopOpeBRepTool_DataMapIteratorOfDataMapOfShapeListOfC2DF.hxx + TopOpeBRepTool_DataMapOfOrientedShapeC2DF.hxx + TopOpeBRepTool_DataMapOfShapeface.hxx + TopOpeBRepTool_DataMapOfShapeListOfC2DF.hxx + TopOpeBRepTool_define.hxx + TopOpeBRepTool_defineG.hxx + TopOpeBRepTool_DRAW.cxx + TopOpeBRepTool_DRAW.hxx + TopOpeBRepTool_EXPORT.hxx + TopOpeBRepTool_face.cxx + TopOpeBRepTool_face.hxx + TopOpeBRepTool_faulty.cxx + TopOpeBRepTool_FuseEdges.cxx + TopOpeBRepTool_FuseEdges.hxx + TopOpeBRepTool_GEOMETRY.cxx + TopOpeBRepTool_GEOMETRY.hxx + TopOpeBRepTool_GeomTool.cxx + TopOpeBRepTool_GeomTool.hxx + TopOpeBRepTool_HBoxTool.cxx + TopOpeBRepTool_HBoxTool.hxx + TopOpeBRepTool_IndexedDataMapOfShapeBox.hxx + TopOpeBRepTool_IndexedDataMapOfShapeBox2d.hxx + TopOpeBRepTool_IndexedDataMapOfShapeconnexity.hxx + TopOpeBRepTool_IndexedDataMapOfSolidClassifier.hxx + TopOpeBRepTool_KRO.hxx + TopOpeBRepTool_ListIteratorOfListOfC2DF.hxx + TopOpeBRepTool_ListOfC2DF.hxx + TopOpeBRepTool_makeTransition.cxx + TopOpeBRepTool_makeTransition.hxx + TopOpeBRepTool_matter.cxx + TopOpeBRepTool_mkTondgE.cxx + TopOpeBRepTool_mkTondgE.hxx + TopOpeBRepTool_OutCurveType.hxx + TopOpeBRepTool_Plos.hxx + TopOpeBRepTool_PROJECT.cxx + TopOpeBRepTool_PROJECT.hxx + TopOpeBRepTool_PShapeClassifier.hxx + TopOpeBRepTool_PSoClassif.hxx + TopOpeBRepTool_PURGE.cxx + TopOpeBRepTool_PURGE.hxx + TopOpeBRepTool_PurgeInternalEdges.cxx + TopOpeBRepTool_PurgeInternalEdges.hxx + TopOpeBRepTool_RegularizeS.cxx + TopOpeBRepTool_RegularizeW.cxx + TopOpeBRepTool_REGUS.cxx + TopOpeBRepTool_REGUS.hxx + TopOpeBRepTool_REGUW.cxx + TopOpeBRepTool_REGUW.hxx + TopOpeBRepTool_SC.cxx + TopOpeBRepTool_SC.hxx + TopOpeBRepTool_ShapeClassifier.cxx + TopOpeBRepTool_ShapeClassifier.hxx + TopOpeBRepTool_ShapeExplorer.hxx + TopOpeBRepTool_ShapeTool.cxx + TopOpeBRepTool_ShapeTool.hxx + TopOpeBRepTool_SolidClassifier.cxx + TopOpeBRepTool_SolidClassifier.hxx + TopOpeBRepTool_STATE.cxx + TopOpeBRepTool_STATE.hxx + TopOpeBRepTool_tol.cxx + TopOpeBRepTool_tol.hxx + TopOpeBRepTool_TOOL.cxx + TopOpeBRepTool_TOOL.hxx + TopOpeBRepTool_TOPOLOGY.cxx + TopOpeBRepTool_TOPOLOGY.hxx + TopOpeBRepTool_trace.cxx + TopOpeBRepTool_traceSTATE.cxx +) diff --git a/src/TopOpeBRepTool/TopOpeBRepTool.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_2d.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_2d.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_2d.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_2d.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_2d.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_2d.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_2d.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_2d.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_AncestorsTool.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_AncestorsTool.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_AncestorsTool.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_AncestorsTool.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_AncestorsTool.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_AncestorsTool.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_AncestorsTool.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_AncestorsTool.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_BoxSort.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_BoxSort.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_BoxSort.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_BoxSort.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_BoxSort.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_BoxSort.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_BoxSort.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_BoxSort.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_C2DF.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_C2DF.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_C2DF.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_C2DF.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_C2DF.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_C2DF.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_C2DF.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_C2DF.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_CLASSI.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_CLASSI.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_CLASSI.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_CLASSI.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_CLASSI.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_CLASSI.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_CLASSI.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_CLASSI.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_CORRISO.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_CORRISO.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_CORRISO.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_CORRISO.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_CORRISO.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_CORRISO.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_CORRISO.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_CORRISO.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_CurveTool.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_CurveTool.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_CurveTool.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_CurveTool.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_CurveTool.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_CurveTool.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_CurveTool.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_CurveTool.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_DRAW.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_DRAW.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_DRAW.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_DRAW.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_DRAW.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_DRAW.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_DRAW.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_DRAW.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_DataMapIteratorOfDataMapOfOrientedShapeC2DF.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_DataMapIteratorOfDataMapOfOrientedShapeC2DF.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_DataMapIteratorOfDataMapOfOrientedShapeC2DF.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_DataMapIteratorOfDataMapOfOrientedShapeC2DF.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_DataMapIteratorOfDataMapOfShapeListOfC2DF.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_DataMapIteratorOfDataMapOfShapeListOfC2DF.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_DataMapIteratorOfDataMapOfShapeListOfC2DF.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_DataMapIteratorOfDataMapOfShapeListOfC2DF.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_DataMapIteratorOfDataMapOfShapeface.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_DataMapIteratorOfDataMapOfShapeface.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_DataMapIteratorOfDataMapOfShapeface.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_DataMapIteratorOfDataMapOfShapeface.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_DataMapOfOrientedShapeC2DF.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_DataMapOfOrientedShapeC2DF.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_DataMapOfOrientedShapeC2DF.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_DataMapOfOrientedShapeC2DF.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_DataMapOfShapeListOfC2DF.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_DataMapOfShapeListOfC2DF.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_DataMapOfShapeListOfC2DF.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_DataMapOfShapeListOfC2DF.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_DataMapOfShapeface.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_DataMapOfShapeface.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_DataMapOfShapeface.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_DataMapOfShapeface.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_EXPORT.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_EXPORT.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_EXPORT.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_EXPORT.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_FuseEdges.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_FuseEdges.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_FuseEdges.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_FuseEdges.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_FuseEdges.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_FuseEdges.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_FuseEdges.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_FuseEdges.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_GEOMETRY.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_GEOMETRY.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_GEOMETRY.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_GEOMETRY.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_GEOMETRY.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_GEOMETRY.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_GEOMETRY.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_GEOMETRY.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_GeomTool.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_GeomTool.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_GeomTool.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_GeomTool.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_GeomTool.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_GeomTool.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_GeomTool.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_GeomTool.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_HBoxTool.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_HBoxTool.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_HBoxTool.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_HBoxTool.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_HBoxTool.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_HBoxTool.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_HBoxTool.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_HBoxTool.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_IndexedDataMapOfShapeBox.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_IndexedDataMapOfShapeBox.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_IndexedDataMapOfShapeBox.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_IndexedDataMapOfShapeBox.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_IndexedDataMapOfShapeBox2d.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_IndexedDataMapOfShapeBox2d.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_IndexedDataMapOfShapeBox2d.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_IndexedDataMapOfShapeBox2d.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_IndexedDataMapOfShapeconnexity.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_IndexedDataMapOfShapeconnexity.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_IndexedDataMapOfShapeconnexity.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_IndexedDataMapOfShapeconnexity.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_IndexedDataMapOfSolidClassifier.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_IndexedDataMapOfSolidClassifier.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_IndexedDataMapOfSolidClassifier.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_IndexedDataMapOfSolidClassifier.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_KRO.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_KRO.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_KRO.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_KRO.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_ListIteratorOfListOfC2DF.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_ListIteratorOfListOfC2DF.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_ListIteratorOfListOfC2DF.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_ListIteratorOfListOfC2DF.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_ListOfC2DF.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_ListOfC2DF.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_ListOfC2DF.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_ListOfC2DF.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_OutCurveType.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_OutCurveType.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_OutCurveType.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_OutCurveType.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_PROJECT.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_PROJECT.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_PROJECT.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_PROJECT.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_PROJECT.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_PROJECT.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_PROJECT.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_PROJECT.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_PShapeClassifier.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_PShapeClassifier.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_PShapeClassifier.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_PShapeClassifier.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_PSoClassif.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_PSoClassif.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_PSoClassif.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_PSoClassif.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_PURGE.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_PURGE.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_PURGE.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_PURGE.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_PURGE.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_PURGE.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_PURGE.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_PURGE.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_Plos.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_Plos.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_Plos.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_Plos.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_PurgeInternalEdges.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_PurgeInternalEdges.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_PurgeInternalEdges.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_PurgeInternalEdges.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_PurgeInternalEdges.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_PurgeInternalEdges.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_PurgeInternalEdges.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_PurgeInternalEdges.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_REGUS.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_REGUS.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_REGUS.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_REGUS.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_REGUS.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_REGUS.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_REGUS.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_REGUS.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_REGUW.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_REGUW.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_REGUW.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_REGUW.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_REGUW.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_REGUW.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_REGUW.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_REGUW.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_RegularizeS.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_RegularizeS.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_RegularizeS.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_RegularizeS.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_RegularizeW.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_RegularizeW.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_RegularizeW.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_RegularizeW.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_SC.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_SC.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_SC.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_SC.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_SC.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_SC.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_SC.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_SC.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_STATE.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_STATE.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_STATE.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_STATE.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_STATE.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_STATE.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_STATE.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_STATE.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_ShapeClassifier.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_ShapeClassifier.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_ShapeClassifier.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_ShapeClassifier.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_ShapeClassifier.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_ShapeClassifier.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_ShapeClassifier.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_ShapeClassifier.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_ShapeExplorer.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_ShapeExplorer.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_ShapeExplorer.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_ShapeExplorer.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_ShapeTool.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_ShapeTool.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_ShapeTool.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_ShapeTool.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_ShapeTool.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_ShapeTool.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_ShapeTool.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_ShapeTool.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_SolidClassifier.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_SolidClassifier.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_SolidClassifier.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_SolidClassifier.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_SolidClassifier.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_SolidClassifier.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_SolidClassifier.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_SolidClassifier.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_TOOL.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_TOOL.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_TOOL.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_TOOL.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_TOOL.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_TOOL.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_TOOL.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_TOOL.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_TOPOLOGY.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_TOPOLOGY.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_TOPOLOGY.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_TOPOLOGY.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_TOPOLOGY.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_TOPOLOGY.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_TOPOLOGY.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_TOPOLOGY.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_box.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_box.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_box.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_box.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_box.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_box.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_box.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_box.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_connexity.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_connexity.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_connexity.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_connexity.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_connexity.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_connexity.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_connexity.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_connexity.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_define.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_define.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_define.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_define.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_defineG.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_defineG.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_defineG.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_defineG.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_face.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_face.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_face.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_face.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_face.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_face.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_face.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_face.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_faulty.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_faulty.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_faulty.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_faulty.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_makeTransition.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_makeTransition.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_makeTransition.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_makeTransition.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_makeTransition.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_makeTransition.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_makeTransition.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_makeTransition.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_matter.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_matter.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_matter.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_matter.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_mkTondgE.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_mkTondgE.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_mkTondgE.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_mkTondgE.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_mkTondgE.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_mkTondgE.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_mkTondgE.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_mkTondgE.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_tol.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_tol.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_tol.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_tol.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_tol.hxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_tol.hxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_tol.hxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_tol.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_trace.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_trace.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_trace.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_trace.cxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_traceSTATE.cxx b/src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_traceSTATE.cxx similarity index 100% rename from src/TopOpeBRepTool/TopOpeBRepTool_traceSTATE.cxx rename to src/ModelingAlgorithms/TKBool/TopOpeBRepTool/TopOpeBRepTool_traceSTATE.cxx diff --git a/src/TKExpress/CMakeLists.txt b/src/ModelingAlgorithms/TKExpress/CMakeLists.txt similarity index 100% rename from src/TKExpress/CMakeLists.txt rename to src/ModelingAlgorithms/TKExpress/CMakeLists.txt diff --git a/src/ModelingAlgorithms/TKExpress/EXTERNLIB.cmake b/src/ModelingAlgorithms/TKExpress/EXTERNLIB.cmake new file mode 100644 index 0000000000..c492698dd1 --- /dev/null +++ b/src/ModelingAlgorithms/TKExpress/EXTERNLIB.cmake @@ -0,0 +1,4 @@ +# External dependencies for TKExpress +set(OCCT_TKExpress_EXTERNAL_LIBS + TKernel +) diff --git a/src/Expr/Expr.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr.cxx similarity index 100% rename from src/Expr/Expr.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr.cxx diff --git a/src/Expr/Expr.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr.hxx similarity index 100% rename from src/Expr/Expr.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr.hxx diff --git a/src/Expr/Expr_Absolute.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Absolute.cxx similarity index 100% rename from src/Expr/Expr_Absolute.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Absolute.cxx diff --git a/src/Expr/Expr_Absolute.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Absolute.hxx similarity index 100% rename from src/Expr/Expr_Absolute.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Absolute.hxx diff --git a/src/Expr/Expr_ArcCosine.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_ArcCosine.cxx similarity index 100% rename from src/Expr/Expr_ArcCosine.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_ArcCosine.cxx diff --git a/src/Expr/Expr_ArcCosine.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_ArcCosine.hxx similarity index 100% rename from src/Expr/Expr_ArcCosine.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_ArcCosine.hxx diff --git a/src/Expr/Expr_ArcSine.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_ArcSine.cxx similarity index 100% rename from src/Expr/Expr_ArcSine.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_ArcSine.cxx diff --git a/src/Expr/Expr_ArcSine.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_ArcSine.hxx similarity index 100% rename from src/Expr/Expr_ArcSine.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_ArcSine.hxx diff --git a/src/Expr/Expr_ArcTangent.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_ArcTangent.cxx similarity index 100% rename from src/Expr/Expr_ArcTangent.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_ArcTangent.cxx diff --git a/src/Expr/Expr_ArcTangent.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_ArcTangent.hxx similarity index 100% rename from src/Expr/Expr_ArcTangent.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_ArcTangent.hxx diff --git a/src/Expr/Expr_ArgCosh.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_ArgCosh.cxx similarity index 100% rename from src/Expr/Expr_ArgCosh.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_ArgCosh.cxx diff --git a/src/Expr/Expr_ArgCosh.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_ArgCosh.hxx similarity index 100% rename from src/Expr/Expr_ArgCosh.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_ArgCosh.hxx diff --git a/src/Expr/Expr_ArgSinh.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_ArgSinh.cxx similarity index 100% rename from src/Expr/Expr_ArgSinh.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_ArgSinh.cxx diff --git a/src/Expr/Expr_ArgSinh.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_ArgSinh.hxx similarity index 100% rename from src/Expr/Expr_ArgSinh.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_ArgSinh.hxx diff --git a/src/Expr/Expr_ArgTanh.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_ArgTanh.cxx similarity index 100% rename from src/Expr/Expr_ArgTanh.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_ArgTanh.cxx diff --git a/src/Expr/Expr_ArgTanh.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_ArgTanh.hxx similarity index 100% rename from src/Expr/Expr_ArgTanh.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_ArgTanh.hxx diff --git a/src/Expr/Expr_Array1OfGeneralExpression.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Array1OfGeneralExpression.hxx similarity index 100% rename from src/Expr/Expr_Array1OfGeneralExpression.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Array1OfGeneralExpression.hxx diff --git a/src/Expr/Expr_Array1OfNamedUnknown.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Array1OfNamedUnknown.hxx similarity index 100% rename from src/Expr/Expr_Array1OfNamedUnknown.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Array1OfNamedUnknown.hxx diff --git a/src/Expr/Expr_Array1OfSingleRelation.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Array1OfSingleRelation.hxx similarity index 100% rename from src/Expr/Expr_Array1OfSingleRelation.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Array1OfSingleRelation.hxx diff --git a/src/Expr/Expr_BinaryExpression.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_BinaryExpression.cxx similarity index 100% rename from src/Expr/Expr_BinaryExpression.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_BinaryExpression.cxx diff --git a/src/Expr/Expr_BinaryExpression.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_BinaryExpression.hxx similarity index 100% rename from src/Expr/Expr_BinaryExpression.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_BinaryExpression.hxx diff --git a/src/Expr/Expr_BinaryExpression.lxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_BinaryExpression.lxx similarity index 100% rename from src/Expr/Expr_BinaryExpression.lxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_BinaryExpression.lxx diff --git a/src/Expr/Expr_BinaryFunction.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_BinaryFunction.cxx similarity index 100% rename from src/Expr/Expr_BinaryFunction.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_BinaryFunction.cxx diff --git a/src/Expr/Expr_BinaryFunction.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_BinaryFunction.hxx similarity index 100% rename from src/Expr/Expr_BinaryFunction.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_BinaryFunction.hxx diff --git a/src/Expr/Expr_Cosh.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Cosh.cxx similarity index 100% rename from src/Expr/Expr_Cosh.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Cosh.cxx diff --git a/src/Expr/Expr_Cosh.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Cosh.hxx similarity index 100% rename from src/Expr/Expr_Cosh.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Cosh.hxx diff --git a/src/Expr/Expr_Cosine.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Cosine.cxx similarity index 100% rename from src/Expr/Expr_Cosine.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Cosine.cxx diff --git a/src/Expr/Expr_Cosine.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Cosine.hxx similarity index 100% rename from src/Expr/Expr_Cosine.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Cosine.hxx diff --git a/src/Expr/Expr_Difference.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Difference.cxx similarity index 100% rename from src/Expr/Expr_Difference.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Difference.cxx diff --git a/src/Expr/Expr_Difference.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Difference.hxx similarity index 100% rename from src/Expr/Expr_Difference.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Difference.hxx diff --git a/src/Expr/Expr_Different.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Different.cxx similarity index 100% rename from src/Expr/Expr_Different.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Different.cxx diff --git a/src/Expr/Expr_Different.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Different.hxx similarity index 100% rename from src/Expr/Expr_Different.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Different.hxx diff --git a/src/Expr/Expr_Division.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Division.cxx similarity index 100% rename from src/Expr/Expr_Division.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Division.cxx diff --git a/src/Expr/Expr_Division.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Division.hxx similarity index 100% rename from src/Expr/Expr_Division.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Division.hxx diff --git a/src/Expr/Expr_Equal.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Equal.cxx similarity index 100% rename from src/Expr/Expr_Equal.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Equal.cxx diff --git a/src/Expr/Expr_Equal.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Equal.hxx similarity index 100% rename from src/Expr/Expr_Equal.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Equal.hxx diff --git a/src/Expr/Expr_Exponential.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Exponential.cxx similarity index 100% rename from src/Expr/Expr_Exponential.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Exponential.cxx diff --git a/src/Expr/Expr_Exponential.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Exponential.hxx similarity index 100% rename from src/Expr/Expr_Exponential.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Exponential.hxx diff --git a/src/Expr/Expr_Exponentiate.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Exponentiate.cxx similarity index 100% rename from src/Expr/Expr_Exponentiate.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Exponentiate.cxx diff --git a/src/Expr/Expr_Exponentiate.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Exponentiate.hxx similarity index 100% rename from src/Expr/Expr_Exponentiate.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Exponentiate.hxx diff --git a/src/Expr/Expr_ExprFailure.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_ExprFailure.hxx similarity index 100% rename from src/Expr/Expr_ExprFailure.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_ExprFailure.hxx diff --git a/src/Expr/Expr_FunctionDerivative.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_FunctionDerivative.cxx similarity index 100% rename from src/Expr/Expr_FunctionDerivative.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_FunctionDerivative.cxx diff --git a/src/Expr/Expr_FunctionDerivative.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_FunctionDerivative.hxx similarity index 100% rename from src/Expr/Expr_FunctionDerivative.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_FunctionDerivative.hxx diff --git a/src/Expr/Expr_GeneralExpression.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_GeneralExpression.cxx similarity index 100% rename from src/Expr/Expr_GeneralExpression.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_GeneralExpression.cxx diff --git a/src/Expr/Expr_GeneralExpression.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_GeneralExpression.hxx similarity index 100% rename from src/Expr/Expr_GeneralExpression.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_GeneralExpression.hxx diff --git a/src/Expr/Expr_GeneralFunction.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_GeneralFunction.cxx similarity index 100% rename from src/Expr/Expr_GeneralFunction.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_GeneralFunction.cxx diff --git a/src/Expr/Expr_GeneralFunction.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_GeneralFunction.hxx similarity index 100% rename from src/Expr/Expr_GeneralFunction.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_GeneralFunction.hxx diff --git a/src/Expr/Expr_GeneralRelation.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_GeneralRelation.cxx similarity index 100% rename from src/Expr/Expr_GeneralRelation.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_GeneralRelation.cxx diff --git a/src/Expr/Expr_GeneralRelation.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_GeneralRelation.hxx similarity index 100% rename from src/Expr/Expr_GeneralRelation.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_GeneralRelation.hxx diff --git a/src/Expr/Expr_GreaterThan.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_GreaterThan.cxx similarity index 100% rename from src/Expr/Expr_GreaterThan.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_GreaterThan.cxx diff --git a/src/Expr/Expr_GreaterThan.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_GreaterThan.hxx similarity index 100% rename from src/Expr/Expr_GreaterThan.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_GreaterThan.hxx diff --git a/src/Expr/Expr_GreaterThanOrEqual.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_GreaterThanOrEqual.cxx similarity index 100% rename from src/Expr/Expr_GreaterThanOrEqual.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_GreaterThanOrEqual.cxx diff --git a/src/Expr/Expr_GreaterThanOrEqual.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_GreaterThanOrEqual.hxx similarity index 100% rename from src/Expr/Expr_GreaterThanOrEqual.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_GreaterThanOrEqual.hxx diff --git a/src/Expr/Expr_InvalidAssignment.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_InvalidAssignment.hxx similarity index 100% rename from src/Expr/Expr_InvalidAssignment.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_InvalidAssignment.hxx diff --git a/src/Expr/Expr_InvalidFunction.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_InvalidFunction.hxx similarity index 100% rename from src/Expr/Expr_InvalidFunction.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_InvalidFunction.hxx diff --git a/src/Expr/Expr_InvalidOperand.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_InvalidOperand.hxx similarity index 100% rename from src/Expr/Expr_InvalidOperand.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_InvalidOperand.hxx diff --git a/src/Expr/Expr_LessThan.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_LessThan.cxx similarity index 100% rename from src/Expr/Expr_LessThan.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_LessThan.cxx diff --git a/src/Expr/Expr_LessThan.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_LessThan.hxx similarity index 100% rename from src/Expr/Expr_LessThan.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_LessThan.hxx diff --git a/src/Expr/Expr_LessThanOrEqual.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_LessThanOrEqual.cxx similarity index 100% rename from src/Expr/Expr_LessThanOrEqual.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_LessThanOrEqual.cxx diff --git a/src/Expr/Expr_LessThanOrEqual.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_LessThanOrEqual.hxx similarity index 100% rename from src/Expr/Expr_LessThanOrEqual.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_LessThanOrEqual.hxx diff --git a/src/Expr/Expr_LogOf10.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_LogOf10.cxx similarity index 100% rename from src/Expr/Expr_LogOf10.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_LogOf10.cxx diff --git a/src/Expr/Expr_LogOf10.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_LogOf10.hxx similarity index 100% rename from src/Expr/Expr_LogOf10.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_LogOf10.hxx diff --git a/src/Expr/Expr_LogOfe.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_LogOfe.cxx similarity index 100% rename from src/Expr/Expr_LogOfe.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_LogOfe.cxx diff --git a/src/Expr/Expr_LogOfe.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_LogOfe.hxx similarity index 100% rename from src/Expr/Expr_LogOfe.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_LogOfe.hxx diff --git a/src/Expr/Expr_MapOfNamedUnknown.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_MapOfNamedUnknown.hxx similarity index 100% rename from src/Expr/Expr_MapOfNamedUnknown.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_MapOfNamedUnknown.hxx diff --git a/src/Expr/Expr_NamedConstant.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_NamedConstant.cxx similarity index 100% rename from src/Expr/Expr_NamedConstant.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_NamedConstant.cxx diff --git a/src/Expr/Expr_NamedConstant.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_NamedConstant.hxx similarity index 100% rename from src/Expr/Expr_NamedConstant.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_NamedConstant.hxx diff --git a/src/Expr/Expr_NamedConstant.lxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_NamedConstant.lxx similarity index 100% rename from src/Expr/Expr_NamedConstant.lxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_NamedConstant.lxx diff --git a/src/Expr/Expr_NamedExpression.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_NamedExpression.cxx similarity index 100% rename from src/Expr/Expr_NamedExpression.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_NamedExpression.cxx diff --git a/src/Expr/Expr_NamedExpression.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_NamedExpression.hxx similarity index 100% rename from src/Expr/Expr_NamedExpression.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_NamedExpression.hxx diff --git a/src/Expr/Expr_NamedFunction.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_NamedFunction.cxx similarity index 100% rename from src/Expr/Expr_NamedFunction.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_NamedFunction.cxx diff --git a/src/Expr/Expr_NamedFunction.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_NamedFunction.hxx similarity index 100% rename from src/Expr/Expr_NamedFunction.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_NamedFunction.hxx diff --git a/src/Expr/Expr_NamedUnknown.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_NamedUnknown.cxx similarity index 100% rename from src/Expr/Expr_NamedUnknown.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_NamedUnknown.cxx diff --git a/src/Expr/Expr_NamedUnknown.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_NamedUnknown.hxx similarity index 100% rename from src/Expr/Expr_NamedUnknown.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_NamedUnknown.hxx diff --git a/src/Expr/Expr_NamedUnknown.lxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_NamedUnknown.lxx similarity index 100% rename from src/Expr/Expr_NamedUnknown.lxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_NamedUnknown.lxx diff --git a/src/Expr/Expr_NotAssigned.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_NotAssigned.hxx similarity index 100% rename from src/Expr/Expr_NotAssigned.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_NotAssigned.hxx diff --git a/src/Expr/Expr_NotEvaluable.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_NotEvaluable.hxx similarity index 100% rename from src/Expr/Expr_NotEvaluable.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_NotEvaluable.hxx diff --git a/src/Expr/Expr_NumericValue.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_NumericValue.cxx similarity index 100% rename from src/Expr/Expr_NumericValue.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_NumericValue.cxx diff --git a/src/Expr/Expr_NumericValue.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_NumericValue.hxx similarity index 100% rename from src/Expr/Expr_NumericValue.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_NumericValue.hxx diff --git a/src/Expr/Expr_Operators.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Operators.cxx similarity index 100% rename from src/Expr/Expr_Operators.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Operators.cxx diff --git a/src/Expr/Expr_Operators.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Operators.hxx similarity index 100% rename from src/Expr/Expr_Operators.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Operators.hxx diff --git a/src/Expr/Expr_PolyExpression.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_PolyExpression.cxx similarity index 100% rename from src/Expr/Expr_PolyExpression.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_PolyExpression.cxx diff --git a/src/Expr/Expr_PolyExpression.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_PolyExpression.hxx similarity index 100% rename from src/Expr/Expr_PolyExpression.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_PolyExpression.hxx diff --git a/src/Expr/Expr_PolyExpression.lxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_PolyExpression.lxx similarity index 100% rename from src/Expr/Expr_PolyExpression.lxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_PolyExpression.lxx diff --git a/src/Expr/Expr_PolyFunction.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_PolyFunction.cxx similarity index 100% rename from src/Expr/Expr_PolyFunction.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_PolyFunction.cxx diff --git a/src/Expr/Expr_PolyFunction.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_PolyFunction.hxx similarity index 100% rename from src/Expr/Expr_PolyFunction.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_PolyFunction.hxx diff --git a/src/Expr/Expr_Product.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Product.cxx similarity index 100% rename from src/Expr/Expr_Product.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Product.cxx diff --git a/src/Expr/Expr_Product.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Product.hxx similarity index 100% rename from src/Expr/Expr_Product.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Product.hxx diff --git a/src/Expr/Expr_RUIterator.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_RUIterator.cxx similarity index 100% rename from src/Expr/Expr_RUIterator.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_RUIterator.cxx diff --git a/src/Expr/Expr_RUIterator.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_RUIterator.hxx similarity index 100% rename from src/Expr/Expr_RUIterator.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_RUIterator.hxx diff --git a/src/Expr/Expr_RelationIterator.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_RelationIterator.cxx similarity index 100% rename from src/Expr/Expr_RelationIterator.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_RelationIterator.cxx diff --git a/src/Expr/Expr_RelationIterator.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_RelationIterator.hxx similarity index 100% rename from src/Expr/Expr_RelationIterator.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_RelationIterator.hxx diff --git a/src/Expr/Expr_SequenceOfGeneralExpression.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_SequenceOfGeneralExpression.hxx similarity index 100% rename from src/Expr/Expr_SequenceOfGeneralExpression.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_SequenceOfGeneralExpression.hxx diff --git a/src/Expr/Expr_SequenceOfGeneralRelation.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_SequenceOfGeneralRelation.hxx similarity index 100% rename from src/Expr/Expr_SequenceOfGeneralRelation.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_SequenceOfGeneralRelation.hxx diff --git a/src/Expr/Expr_Sign.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Sign.cxx similarity index 100% rename from src/Expr/Expr_Sign.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Sign.cxx diff --git a/src/Expr/Expr_Sign.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Sign.hxx similarity index 100% rename from src/Expr/Expr_Sign.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Sign.hxx diff --git a/src/Expr/Expr_Sine.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Sine.cxx similarity index 100% rename from src/Expr/Expr_Sine.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Sine.cxx diff --git a/src/Expr/Expr_Sine.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Sine.hxx similarity index 100% rename from src/Expr/Expr_Sine.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Sine.hxx diff --git a/src/Expr/Expr_SingleRelation.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_SingleRelation.cxx similarity index 100% rename from src/Expr/Expr_SingleRelation.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_SingleRelation.cxx diff --git a/src/Expr/Expr_SingleRelation.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_SingleRelation.hxx similarity index 100% rename from src/Expr/Expr_SingleRelation.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_SingleRelation.hxx diff --git a/src/Expr/Expr_Sinh.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Sinh.cxx similarity index 100% rename from src/Expr/Expr_Sinh.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Sinh.cxx diff --git a/src/Expr/Expr_Sinh.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Sinh.hxx similarity index 100% rename from src/Expr/Expr_Sinh.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Sinh.hxx diff --git a/src/Expr/Expr_Square.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Square.cxx similarity index 100% rename from src/Expr/Expr_Square.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Square.cxx diff --git a/src/Expr/Expr_Square.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Square.hxx similarity index 100% rename from src/Expr/Expr_Square.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Square.hxx diff --git a/src/Expr/Expr_SquareRoot.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_SquareRoot.cxx similarity index 100% rename from src/Expr/Expr_SquareRoot.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_SquareRoot.cxx diff --git a/src/Expr/Expr_SquareRoot.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_SquareRoot.hxx similarity index 100% rename from src/Expr/Expr_SquareRoot.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_SquareRoot.hxx diff --git a/src/Expr/Expr_Sum.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Sum.cxx similarity index 100% rename from src/Expr/Expr_Sum.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Sum.cxx diff --git a/src/Expr/Expr_Sum.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Sum.hxx similarity index 100% rename from src/Expr/Expr_Sum.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Sum.hxx diff --git a/src/Expr/Expr_SystemRelation.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_SystemRelation.cxx similarity index 100% rename from src/Expr/Expr_SystemRelation.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_SystemRelation.cxx diff --git a/src/Expr/Expr_SystemRelation.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_SystemRelation.hxx similarity index 100% rename from src/Expr/Expr_SystemRelation.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_SystemRelation.hxx diff --git a/src/Expr/Expr_Tangent.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Tangent.cxx similarity index 100% rename from src/Expr/Expr_Tangent.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Tangent.cxx diff --git a/src/Expr/Expr_Tangent.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Tangent.hxx similarity index 100% rename from src/Expr/Expr_Tangent.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Tangent.hxx diff --git a/src/Expr/Expr_Tanh.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Tanh.cxx similarity index 100% rename from src/Expr/Expr_Tanh.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Tanh.cxx diff --git a/src/Expr/Expr_Tanh.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_Tanh.hxx similarity index 100% rename from src/Expr/Expr_Tanh.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_Tanh.hxx diff --git a/src/Expr/Expr_UnaryExpression.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_UnaryExpression.cxx similarity index 100% rename from src/Expr/Expr_UnaryExpression.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_UnaryExpression.cxx diff --git a/src/Expr/Expr_UnaryExpression.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_UnaryExpression.hxx similarity index 100% rename from src/Expr/Expr_UnaryExpression.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_UnaryExpression.hxx diff --git a/src/Expr/Expr_UnaryExpression.lxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_UnaryExpression.lxx similarity index 100% rename from src/Expr/Expr_UnaryExpression.lxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_UnaryExpression.lxx diff --git a/src/Expr/Expr_UnaryFunction.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_UnaryFunction.cxx similarity index 100% rename from src/Expr/Expr_UnaryFunction.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_UnaryFunction.cxx diff --git a/src/Expr/Expr_UnaryFunction.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_UnaryFunction.hxx similarity index 100% rename from src/Expr/Expr_UnaryFunction.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_UnaryFunction.hxx diff --git a/src/Expr/Expr_UnaryMinus.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_UnaryMinus.cxx similarity index 100% rename from src/Expr/Expr_UnaryMinus.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_UnaryMinus.cxx diff --git a/src/Expr/Expr_UnaryMinus.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_UnaryMinus.hxx similarity index 100% rename from src/Expr/Expr_UnaryMinus.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_UnaryMinus.hxx diff --git a/src/Expr/Expr_UnknownIterator.cxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_UnknownIterator.cxx similarity index 100% rename from src/Expr/Expr_UnknownIterator.cxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_UnknownIterator.cxx diff --git a/src/Expr/Expr_UnknownIterator.hxx b/src/ModelingAlgorithms/TKExpress/Expr/Expr_UnknownIterator.hxx similarity index 100% rename from src/Expr/Expr_UnknownIterator.hxx rename to src/ModelingAlgorithms/TKExpress/Expr/Expr_UnknownIterator.hxx diff --git a/src/ModelingAlgorithms/TKExpress/Expr/FILES.cmake b/src/ModelingAlgorithms/TKExpress/Expr/FILES.cmake new file mode 100644 index 0000000000..f6b08bd846 --- /dev/null +++ b/src/ModelingAlgorithms/TKExpress/Expr/FILES.cmake @@ -0,0 +1,128 @@ +# Source files for Expr package +set(OCCT_Expr_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Expr_FILES + Expr.cxx + Expr.hxx + Expr_Absolute.cxx + Expr_Absolute.hxx + Expr_ArcCosine.cxx + Expr_ArcCosine.hxx + Expr_ArcSine.cxx + Expr_ArcSine.hxx + Expr_ArcTangent.cxx + Expr_ArcTangent.hxx + Expr_ArgCosh.cxx + Expr_ArgCosh.hxx + Expr_ArgSinh.cxx + Expr_ArgSinh.hxx + Expr_ArgTanh.cxx + Expr_ArgTanh.hxx + Expr_Array1OfGeneralExpression.hxx + Expr_Array1OfNamedUnknown.hxx + Expr_Array1OfSingleRelation.hxx + Expr_BinaryExpression.cxx + Expr_BinaryExpression.hxx + Expr_BinaryExpression.lxx + Expr_BinaryFunction.cxx + Expr_BinaryFunction.hxx + Expr_Cosh.cxx + Expr_Cosh.hxx + Expr_Cosine.cxx + Expr_Cosine.hxx + Expr_Difference.cxx + Expr_Difference.hxx + Expr_Different.cxx + Expr_Different.hxx + Expr_Division.cxx + Expr_Division.hxx + Expr_Equal.cxx + Expr_Equal.hxx + Expr_Exponential.cxx + Expr_Exponential.hxx + Expr_Exponentiate.cxx + Expr_Exponentiate.hxx + Expr_ExprFailure.hxx + Expr_FunctionDerivative.cxx + Expr_FunctionDerivative.hxx + Expr_GeneralExpression.cxx + Expr_GeneralExpression.hxx + Expr_GeneralFunction.cxx + Expr_GeneralFunction.hxx + Expr_GeneralRelation.cxx + Expr_GeneralRelation.hxx + Expr_GreaterThan.cxx + Expr_GreaterThan.hxx + Expr_GreaterThanOrEqual.cxx + Expr_GreaterThanOrEqual.hxx + Expr_InvalidAssignment.hxx + Expr_InvalidFunction.hxx + Expr_InvalidOperand.hxx + Expr_LessThan.cxx + Expr_LessThan.hxx + Expr_LessThanOrEqual.cxx + Expr_LessThanOrEqual.hxx + Expr_LogOf10.cxx + Expr_LogOf10.hxx + Expr_LogOfe.cxx + Expr_LogOfe.hxx + Expr_MapOfNamedUnknown.hxx + Expr_NamedConstant.cxx + Expr_NamedConstant.hxx + Expr_NamedConstant.lxx + Expr_NamedExpression.cxx + Expr_NamedExpression.hxx + Expr_NamedFunction.cxx + Expr_NamedFunction.hxx + Expr_NamedUnknown.cxx + Expr_NamedUnknown.hxx + Expr_NamedUnknown.lxx + Expr_NotAssigned.hxx + Expr_NotEvaluable.hxx + Expr_NumericValue.cxx + Expr_NumericValue.hxx + Expr_Operators.cxx + Expr_Operators.hxx + Expr_PolyExpression.cxx + Expr_PolyExpression.hxx + Expr_PolyExpression.lxx + Expr_PolyFunction.cxx + Expr_PolyFunction.hxx + Expr_Product.cxx + Expr_Product.hxx + Expr_RelationIterator.cxx + Expr_RelationIterator.hxx + Expr_RUIterator.cxx + Expr_RUIterator.hxx + Expr_SequenceOfGeneralExpression.hxx + Expr_SequenceOfGeneralRelation.hxx + Expr_Sign.cxx + Expr_Sign.hxx + Expr_Sine.cxx + Expr_Sine.hxx + Expr_SingleRelation.cxx + Expr_SingleRelation.hxx + Expr_Sinh.cxx + Expr_Sinh.hxx + Expr_Square.cxx + Expr_Square.hxx + Expr_SquareRoot.cxx + Expr_SquareRoot.hxx + Expr_Sum.cxx + Expr_Sum.hxx + Expr_SystemRelation.cxx + Expr_SystemRelation.hxx + Expr_Tangent.cxx + Expr_Tangent.hxx + Expr_Tanh.cxx + Expr_Tanh.hxx + Expr_UnaryExpression.cxx + Expr_UnaryExpression.hxx + Expr_UnaryExpression.lxx + Expr_UnaryFunction.cxx + Expr_UnaryFunction.hxx + Expr_UnaryMinus.cxx + Expr_UnaryMinus.hxx + Expr_UnknownIterator.cxx + Expr_UnknownIterator.hxx +) diff --git a/src/ExprIntrp/ExprIntrp.cxx b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp.cxx similarity index 100% rename from src/ExprIntrp/ExprIntrp.cxx rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp.cxx diff --git a/src/ExprIntrp/ExprIntrp.hxx b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp.hxx similarity index 100% rename from src/ExprIntrp/ExprIntrp.hxx rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp.hxx diff --git a/src/ExprIntrp/ExprIntrp.lex b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp.lex similarity index 100% rename from src/ExprIntrp/ExprIntrp.lex rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp.lex diff --git a/src/ExprIntrp/ExprIntrp.tab.c b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp.tab.c similarity index 100% rename from src/ExprIntrp/ExprIntrp.tab.c rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp.tab.c diff --git a/src/ExprIntrp/ExprIntrp.tab.h b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp.tab.h similarity index 100% rename from src/ExprIntrp/ExprIntrp.tab.h rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp.tab.h diff --git a/src/ExprIntrp/ExprIntrp.yacc b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp.yacc similarity index 100% rename from src/ExprIntrp/ExprIntrp.yacc rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp.yacc diff --git a/src/ExprIntrp/ExprIntrp_Analysis.cxx b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_Analysis.cxx similarity index 100% rename from src/ExprIntrp/ExprIntrp_Analysis.cxx rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_Analysis.cxx diff --git a/src/ExprIntrp/ExprIntrp_Analysis.hxx b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_Analysis.hxx similarity index 100% rename from src/ExprIntrp/ExprIntrp_Analysis.hxx rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_Analysis.hxx diff --git a/src/ExprIntrp/ExprIntrp_GenExp.cxx b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_GenExp.cxx similarity index 100% rename from src/ExprIntrp/ExprIntrp_GenExp.cxx rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_GenExp.cxx diff --git a/src/ExprIntrp/ExprIntrp_GenExp.hxx b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_GenExp.hxx similarity index 100% rename from src/ExprIntrp/ExprIntrp_GenExp.hxx rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_GenExp.hxx diff --git a/src/ExprIntrp/ExprIntrp_GenFct.cxx b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_GenFct.cxx similarity index 100% rename from src/ExprIntrp/ExprIntrp_GenFct.cxx rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_GenFct.cxx diff --git a/src/ExprIntrp/ExprIntrp_GenFct.hxx b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_GenFct.hxx similarity index 100% rename from src/ExprIntrp/ExprIntrp_GenFct.hxx rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_GenFct.hxx diff --git a/src/ExprIntrp/ExprIntrp_GenRel.cxx b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_GenRel.cxx similarity index 100% rename from src/ExprIntrp/ExprIntrp_GenRel.cxx rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_GenRel.cxx diff --git a/src/ExprIntrp/ExprIntrp_GenRel.hxx b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_GenRel.hxx similarity index 100% rename from src/ExprIntrp/ExprIntrp_GenRel.hxx rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_GenRel.hxx diff --git a/src/ExprIntrp/ExprIntrp_Generator.cxx b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_Generator.cxx similarity index 100% rename from src/ExprIntrp/ExprIntrp_Generator.cxx rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_Generator.cxx diff --git a/src/ExprIntrp/ExprIntrp_Generator.hxx b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_Generator.hxx similarity index 100% rename from src/ExprIntrp/ExprIntrp_Generator.hxx rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_Generator.hxx diff --git a/src/ExprIntrp/ExprIntrp_ListIteratorOfStackOfGeneralExpression.hxx b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_ListIteratorOfStackOfGeneralExpression.hxx similarity index 100% rename from src/ExprIntrp/ExprIntrp_ListIteratorOfStackOfGeneralExpression.hxx rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_ListIteratorOfStackOfGeneralExpression.hxx diff --git a/src/ExprIntrp/ExprIntrp_ListIteratorOfStackOfGeneralFunction.hxx b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_ListIteratorOfStackOfGeneralFunction.hxx similarity index 100% rename from src/ExprIntrp/ExprIntrp_ListIteratorOfStackOfGeneralFunction.hxx rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_ListIteratorOfStackOfGeneralFunction.hxx diff --git a/src/ExprIntrp/ExprIntrp_ListIteratorOfStackOfGeneralRelation.hxx b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_ListIteratorOfStackOfGeneralRelation.hxx similarity index 100% rename from src/ExprIntrp/ExprIntrp_ListIteratorOfStackOfGeneralRelation.hxx rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_ListIteratorOfStackOfGeneralRelation.hxx diff --git a/src/ExprIntrp/ExprIntrp_SequenceOfNamedExpression.hxx b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_SequenceOfNamedExpression.hxx similarity index 100% rename from src/ExprIntrp/ExprIntrp_SequenceOfNamedExpression.hxx rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_SequenceOfNamedExpression.hxx diff --git a/src/ExprIntrp/ExprIntrp_SequenceOfNamedFunction.hxx b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_SequenceOfNamedFunction.hxx similarity index 100% rename from src/ExprIntrp/ExprIntrp_SequenceOfNamedFunction.hxx rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_SequenceOfNamedFunction.hxx diff --git a/src/ExprIntrp/ExprIntrp_StackOfGeneralExpression.hxx b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_StackOfGeneralExpression.hxx similarity index 100% rename from src/ExprIntrp/ExprIntrp_StackOfGeneralExpression.hxx rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_StackOfGeneralExpression.hxx diff --git a/src/ExprIntrp/ExprIntrp_StackOfGeneralFunction.hxx b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_StackOfGeneralFunction.hxx similarity index 100% rename from src/ExprIntrp/ExprIntrp_StackOfGeneralFunction.hxx rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_StackOfGeneralFunction.hxx diff --git a/src/ExprIntrp/ExprIntrp_StackOfGeneralRelation.hxx b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_StackOfGeneralRelation.hxx similarity index 100% rename from src/ExprIntrp/ExprIntrp_StackOfGeneralRelation.hxx rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_StackOfGeneralRelation.hxx diff --git a/src/ExprIntrp/ExprIntrp_SyntaxError.hxx b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_SyntaxError.hxx similarity index 100% rename from src/ExprIntrp/ExprIntrp_SyntaxError.hxx rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_SyntaxError.hxx diff --git a/src/ExprIntrp/ExprIntrp_yaccanal.hxx b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_yaccanal.hxx similarity index 100% rename from src/ExprIntrp/ExprIntrp_yaccanal.hxx rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_yaccanal.hxx diff --git a/src/ExprIntrp/ExprIntrp_yaccintrf.cxx b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_yaccintrf.cxx similarity index 100% rename from src/ExprIntrp/ExprIntrp_yaccintrf.cxx rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_yaccintrf.cxx diff --git a/src/ExprIntrp/ExprIntrp_yaccintrf.hxx b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_yaccintrf.hxx similarity index 100% rename from src/ExprIntrp/ExprIntrp_yaccintrf.hxx rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_yaccintrf.hxx diff --git a/src/ExprIntrp/ExprIntrp_yacclex.cxx b/src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_yacclex.cxx similarity index 100% rename from src/ExprIntrp/ExprIntrp_yacclex.cxx rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/ExprIntrp_yacclex.cxx diff --git a/src/ModelingAlgorithms/TKExpress/ExprIntrp/FILES.cmake b/src/ModelingAlgorithms/TKExpress/ExprIntrp/FILES.cmake new file mode 100644 index 0000000000..79d48e6936 --- /dev/null +++ b/src/ModelingAlgorithms/TKExpress/ExprIntrp/FILES.cmake @@ -0,0 +1,35 @@ +# Source files for ExprIntrp package +set(OCCT_ExprIntrp_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_ExprIntrp_FILES + ExprIntrp.cxx + ExprIntrp.hxx + ExprIntrp.lex + ExprIntrp.tab.c + ExprIntrp.tab.h + ExprIntrp.yacc + ExprIntrp_Analysis.cxx + ExprIntrp_Analysis.hxx + ExprIntrp_Generator.cxx + ExprIntrp_Generator.hxx + ExprIntrp_GenExp.cxx + ExprIntrp_GenExp.hxx + ExprIntrp_GenFct.cxx + ExprIntrp_GenFct.hxx + ExprIntrp_GenRel.cxx + ExprIntrp_GenRel.hxx + ExprIntrp_ListIteratorOfStackOfGeneralExpression.hxx + ExprIntrp_ListIteratorOfStackOfGeneralFunction.hxx + ExprIntrp_ListIteratorOfStackOfGeneralRelation.hxx + ExprIntrp_SequenceOfNamedExpression.hxx + ExprIntrp_SequenceOfNamedFunction.hxx + ExprIntrp_StackOfGeneralExpression.hxx + ExprIntrp_StackOfGeneralFunction.hxx + ExprIntrp_StackOfGeneralRelation.hxx + ExprIntrp_SyntaxError.hxx + ExprIntrp_yaccanal.hxx + ExprIntrp_yaccintrf.cxx + ExprIntrp_yaccintrf.hxx + ExprIntrp_yacclex.cxx + lex.ExprIntrp.c +) diff --git a/src/ExprIntrp/lex.ExprIntrp.c b/src/ModelingAlgorithms/TKExpress/ExprIntrp/lex.ExprIntrp.c similarity index 100% rename from src/ExprIntrp/lex.ExprIntrp.c rename to src/ModelingAlgorithms/TKExpress/ExprIntrp/lex.ExprIntrp.c diff --git a/src/ModelingAlgorithms/TKExpress/FILES.cmake b/src/ModelingAlgorithms/TKExpress/FILES.cmake new file mode 100644 index 0000000000..8f1d7728a6 --- /dev/null +++ b/src/ModelingAlgorithms/TKExpress/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKExpress +set(OCCT_TKExpress_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKExpress_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ModelingAlgorithms/TKExpress/PACKAGES.cmake b/src/ModelingAlgorithms/TKExpress/PACKAGES.cmake new file mode 100644 index 0000000000..d66c9ebc28 --- /dev/null +++ b/src/ModelingAlgorithms/TKExpress/PACKAGES.cmake @@ -0,0 +1,5 @@ +# Auto-generated list of packages for TKExpress toolkit +set(OCCT_TKExpress_LIST_OF_PACKAGES + Expr + ExprIntrp +) diff --git a/src/BRepFeat/BRepFeat.cxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat.cxx similarity index 100% rename from src/BRepFeat/BRepFeat.cxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat.cxx diff --git a/src/BRepFeat/BRepFeat.hxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat.hxx similarity index 100% rename from src/BRepFeat/BRepFeat.hxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat.hxx diff --git a/src/BRepFeat/BRepFeat_Builder.cxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_Builder.cxx similarity index 100% rename from src/BRepFeat/BRepFeat_Builder.cxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_Builder.cxx diff --git a/src/BRepFeat/BRepFeat_Builder.hxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_Builder.hxx similarity index 100% rename from src/BRepFeat/BRepFeat_Builder.hxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_Builder.hxx diff --git a/src/BRepFeat/BRepFeat_Form.cxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_Form.cxx similarity index 100% rename from src/BRepFeat/BRepFeat_Form.cxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_Form.cxx diff --git a/src/BRepFeat/BRepFeat_Form.hxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_Form.hxx similarity index 100% rename from src/BRepFeat/BRepFeat_Form.hxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_Form.hxx diff --git a/src/BRepFeat/BRepFeat_Form.lxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_Form.lxx similarity index 100% rename from src/BRepFeat/BRepFeat_Form.lxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_Form.lxx diff --git a/src/BRepFeat/BRepFeat_Gluer.cxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_Gluer.cxx similarity index 100% rename from src/BRepFeat/BRepFeat_Gluer.cxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_Gluer.cxx diff --git a/src/BRepFeat/BRepFeat_Gluer.hxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_Gluer.hxx similarity index 100% rename from src/BRepFeat/BRepFeat_Gluer.hxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_Gluer.hxx diff --git a/src/BRepFeat/BRepFeat_Gluer.lxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_Gluer.lxx similarity index 100% rename from src/BRepFeat/BRepFeat_Gluer.lxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_Gluer.lxx diff --git a/src/BRepFeat/BRepFeat_MakeCylindricalHole.cxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeCylindricalHole.cxx similarity index 100% rename from src/BRepFeat/BRepFeat_MakeCylindricalHole.cxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeCylindricalHole.cxx diff --git a/src/BRepFeat/BRepFeat_MakeCylindricalHole.hxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeCylindricalHole.hxx similarity index 100% rename from src/BRepFeat/BRepFeat_MakeCylindricalHole.hxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeCylindricalHole.hxx diff --git a/src/BRepFeat/BRepFeat_MakeCylindricalHole.lxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeCylindricalHole.lxx similarity index 100% rename from src/BRepFeat/BRepFeat_MakeCylindricalHole.lxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeCylindricalHole.lxx diff --git a/src/BRepFeat/BRepFeat_MakeDPrism.cxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeDPrism.cxx similarity index 100% rename from src/BRepFeat/BRepFeat_MakeDPrism.cxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeDPrism.cxx diff --git a/src/BRepFeat/BRepFeat_MakeDPrism.hxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeDPrism.hxx similarity index 100% rename from src/BRepFeat/BRepFeat_MakeDPrism.hxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeDPrism.hxx diff --git a/src/BRepFeat/BRepFeat_MakeLinearForm.cxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeLinearForm.cxx similarity index 100% rename from src/BRepFeat/BRepFeat_MakeLinearForm.cxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeLinearForm.cxx diff --git a/src/BRepFeat/BRepFeat_MakeLinearForm.hxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeLinearForm.hxx similarity index 100% rename from src/BRepFeat/BRepFeat_MakeLinearForm.hxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeLinearForm.hxx diff --git a/src/BRepFeat/BRepFeat_MakeLinearForm.lxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeLinearForm.lxx similarity index 100% rename from src/BRepFeat/BRepFeat_MakeLinearForm.lxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeLinearForm.lxx diff --git a/src/BRepFeat/BRepFeat_MakePipe.cxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakePipe.cxx similarity index 100% rename from src/BRepFeat/BRepFeat_MakePipe.cxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakePipe.cxx diff --git a/src/BRepFeat/BRepFeat_MakePipe.hxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakePipe.hxx similarity index 100% rename from src/BRepFeat/BRepFeat_MakePipe.hxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakePipe.hxx diff --git a/src/BRepFeat/BRepFeat_MakePipe.lxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakePipe.lxx similarity index 100% rename from src/BRepFeat/BRepFeat_MakePipe.lxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakePipe.lxx diff --git a/src/BRepFeat/BRepFeat_MakePrism.cxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakePrism.cxx similarity index 100% rename from src/BRepFeat/BRepFeat_MakePrism.cxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakePrism.cxx diff --git a/src/BRepFeat/BRepFeat_MakePrism.hxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakePrism.hxx similarity index 100% rename from src/BRepFeat/BRepFeat_MakePrism.hxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakePrism.hxx diff --git a/src/BRepFeat/BRepFeat_MakePrism.lxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakePrism.lxx similarity index 100% rename from src/BRepFeat/BRepFeat_MakePrism.lxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakePrism.lxx diff --git a/src/BRepFeat/BRepFeat_MakeRevol.cxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeRevol.cxx similarity index 100% rename from src/BRepFeat/BRepFeat_MakeRevol.cxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeRevol.cxx diff --git a/src/BRepFeat/BRepFeat_MakeRevol.hxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeRevol.hxx similarity index 100% rename from src/BRepFeat/BRepFeat_MakeRevol.hxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeRevol.hxx diff --git a/src/BRepFeat/BRepFeat_MakeRevol.lxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeRevol.lxx similarity index 100% rename from src/BRepFeat/BRepFeat_MakeRevol.lxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeRevol.lxx diff --git a/src/BRepFeat/BRepFeat_MakeRevolutionForm.cxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeRevolutionForm.cxx similarity index 100% rename from src/BRepFeat/BRepFeat_MakeRevolutionForm.cxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeRevolutionForm.cxx diff --git a/src/BRepFeat/BRepFeat_MakeRevolutionForm.hxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeRevolutionForm.hxx similarity index 100% rename from src/BRepFeat/BRepFeat_MakeRevolutionForm.hxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeRevolutionForm.hxx diff --git a/src/BRepFeat/BRepFeat_MakeRevolutionForm.lxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeRevolutionForm.lxx similarity index 100% rename from src/BRepFeat/BRepFeat_MakeRevolutionForm.lxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_MakeRevolutionForm.lxx diff --git a/src/BRepFeat/BRepFeat_PerfSelection.hxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_PerfSelection.hxx similarity index 100% rename from src/BRepFeat/BRepFeat_PerfSelection.hxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_PerfSelection.hxx diff --git a/src/BRepFeat/BRepFeat_RibSlot.cxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_RibSlot.cxx similarity index 100% rename from src/BRepFeat/BRepFeat_RibSlot.cxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_RibSlot.cxx diff --git a/src/BRepFeat/BRepFeat_RibSlot.hxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_RibSlot.hxx similarity index 100% rename from src/BRepFeat/BRepFeat_RibSlot.hxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_RibSlot.hxx diff --git a/src/BRepFeat/BRepFeat_RibSlot.lxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_RibSlot.lxx similarity index 100% rename from src/BRepFeat/BRepFeat_RibSlot.lxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_RibSlot.lxx diff --git a/src/BRepFeat/BRepFeat_SplitShape.cxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_SplitShape.cxx similarity index 100% rename from src/BRepFeat/BRepFeat_SplitShape.cxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_SplitShape.cxx diff --git a/src/BRepFeat/BRepFeat_SplitShape.hxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_SplitShape.hxx similarity index 100% rename from src/BRepFeat/BRepFeat_SplitShape.hxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_SplitShape.hxx diff --git a/src/BRepFeat/BRepFeat_SplitShape.lxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_SplitShape.lxx similarity index 100% rename from src/BRepFeat/BRepFeat_SplitShape.lxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_SplitShape.lxx diff --git a/src/BRepFeat/BRepFeat_Status.hxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_Status.hxx similarity index 100% rename from src/BRepFeat/BRepFeat_Status.hxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_Status.hxx diff --git a/src/BRepFeat/BRepFeat_StatusError.hxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_StatusError.hxx similarity index 100% rename from src/BRepFeat/BRepFeat_StatusError.hxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_StatusError.hxx diff --git a/src/BRepFeat/BRepFeat_trace.cxx b/src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_trace.cxx similarity index 100% rename from src/BRepFeat/BRepFeat_trace.cxx rename to src/ModelingAlgorithms/TKFeat/BRepFeat/BRepFeat_trace.cxx diff --git a/src/ModelingAlgorithms/TKFeat/BRepFeat/FILES.cmake b/src/ModelingAlgorithms/TKFeat/BRepFeat/FILES.cmake new file mode 100644 index 0000000000..ad7fdb70a4 --- /dev/null +++ b/src/ModelingAlgorithms/TKFeat/BRepFeat/FILES.cmake @@ -0,0 +1,45 @@ +# Source files for BRepFeat package +set(OCCT_BRepFeat_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepFeat_FILES + BRepFeat.cxx + BRepFeat.hxx + BRepFeat_Builder.cxx + BRepFeat_Builder.hxx + BRepFeat_Form.cxx + BRepFeat_Form.hxx + BRepFeat_Form.lxx + BRepFeat_Gluer.cxx + BRepFeat_Gluer.hxx + BRepFeat_Gluer.lxx + BRepFeat_MakeCylindricalHole.cxx + BRepFeat_MakeCylindricalHole.hxx + BRepFeat_MakeCylindricalHole.lxx + BRepFeat_MakeDPrism.cxx + BRepFeat_MakeDPrism.hxx + BRepFeat_MakeLinearForm.cxx + BRepFeat_MakeLinearForm.hxx + BRepFeat_MakeLinearForm.lxx + BRepFeat_MakePipe.cxx + BRepFeat_MakePipe.hxx + BRepFeat_MakePipe.lxx + BRepFeat_MakePrism.cxx + BRepFeat_MakePrism.hxx + BRepFeat_MakePrism.lxx + BRepFeat_MakeRevol.cxx + BRepFeat_MakeRevol.hxx + BRepFeat_MakeRevol.lxx + BRepFeat_MakeRevolutionForm.cxx + BRepFeat_MakeRevolutionForm.hxx + BRepFeat_MakeRevolutionForm.lxx + BRepFeat_PerfSelection.hxx + BRepFeat_RibSlot.cxx + BRepFeat_RibSlot.hxx + BRepFeat_RibSlot.lxx + BRepFeat_SplitShape.cxx + BRepFeat_SplitShape.hxx + BRepFeat_SplitShape.lxx + BRepFeat_Status.hxx + BRepFeat_StatusError.hxx + BRepFeat_trace.cxx +) diff --git a/src/TKFeat/CMakeLists.txt b/src/ModelingAlgorithms/TKFeat/CMakeLists.txt similarity index 100% rename from src/TKFeat/CMakeLists.txt rename to src/ModelingAlgorithms/TKFeat/CMakeLists.txt diff --git a/src/ModelingAlgorithms/TKFeat/EXTERNLIB.cmake b/src/ModelingAlgorithms/TKFeat/EXTERNLIB.cmake new file mode 100644 index 0000000000..8efab4965c --- /dev/null +++ b/src/ModelingAlgorithms/TKFeat/EXTERNLIB.cmake @@ -0,0 +1,15 @@ +# External dependencies for TKFeat +set(OCCT_TKFeat_EXTERNAL_LIBS + TKBRep + TKTopAlgo + TKGeomAlgo + TKMath + TKernel + TKGeomBase + TKPrim + TKG2d + TKBO + TKG3d + TKBool + TKShHealing +) diff --git a/src/ModelingAlgorithms/TKFeat/FILES.cmake b/src/ModelingAlgorithms/TKFeat/FILES.cmake new file mode 100644 index 0000000000..72c25ba00d --- /dev/null +++ b/src/ModelingAlgorithms/TKFeat/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKFeat +set(OCCT_TKFeat_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKFeat_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ModelingAlgorithms/TKFeat/LocOpe/FILES.cmake b/src/ModelingAlgorithms/TKFeat/LocOpe/FILES.cmake new file mode 100644 index 0000000000..3095f6bd2d --- /dev/null +++ b/src/ModelingAlgorithms/TKFeat/LocOpe/FILES.cmake @@ -0,0 +1,66 @@ +# Source files for LocOpe package +set(OCCT_LocOpe_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_LocOpe_FILES + LocOpe.cxx + LocOpe.hxx + LocOpe_BuildShape.cxx + LocOpe_BuildShape.hxx + LocOpe_BuildShape.lxx + LocOpe_BuildWires.cxx + LocOpe_BuildWires.hxx + LocOpe_CSIntersector.cxx + LocOpe_CSIntersector.hxx + LocOpe_CSIntersector.lxx + LocOpe_CurveShapeIntersector.cxx + LocOpe_CurveShapeIntersector.hxx + LocOpe_CurveShapeIntersector.lxx + LocOpe_DataMapIteratorOfDataMapOfShapePnt.hxx + LocOpe_DataMapOfShapePnt.hxx + LocOpe_DPrism.cxx + LocOpe_DPrism.hxx + LocOpe_FindEdges.cxx + LocOpe_FindEdges.hxx + LocOpe_FindEdges.lxx + LocOpe_FindEdgesInFace.cxx + LocOpe_FindEdgesInFace.hxx + LocOpe_FindEdgesInFace.lxx + LocOpe_GeneratedShape.cxx + LocOpe_GeneratedShape.hxx + LocOpe_Generator.cxx + LocOpe_Generator.hxx + LocOpe_Generator.lxx + LocOpe_GluedShape.cxx + LocOpe_GluedShape.hxx + LocOpe_Gluer.cxx + LocOpe_Gluer.hxx + LocOpe_Gluer.lxx + LocOpe_LinearForm.cxx + LocOpe_LinearForm.hxx + LocOpe_LinearForm.lxx + LocOpe_Operation.hxx + LocOpe_Pipe.cxx + LocOpe_Pipe.hxx + LocOpe_Pipe.lxx + LocOpe_PntFace.hxx + LocOpe_Prism.cxx + LocOpe_Prism.hxx + LocOpe_Revol.cxx + LocOpe_Revol.hxx + LocOpe_RevolutionForm.cxx + LocOpe_RevolutionForm.hxx + LocOpe_SequenceOfCirc.hxx + LocOpe_SequenceOfLin.hxx + LocOpe_SequenceOfPntFace.hxx + LocOpe_SplitDrafts.cxx + LocOpe_SplitDrafts.hxx + LocOpe_Spliter.cxx + LocOpe_Spliter.hxx + LocOpe_Spliter.lxx + LocOpe_SplitShape.cxx + LocOpe_SplitShape.hxx + LocOpe_SplitShape.lxx + LocOpe_WiresOnShape.cxx + LocOpe_WiresOnShape.hxx + LocOpe_WiresOnShape.lxx +) diff --git a/src/LocOpe/LocOpe.cxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe.cxx similarity index 100% rename from src/LocOpe/LocOpe.cxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe.cxx diff --git a/src/LocOpe/LocOpe.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe.hxx similarity index 100% rename from src/LocOpe/LocOpe.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe.hxx diff --git a/src/LocOpe/LocOpe_BuildShape.cxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_BuildShape.cxx similarity index 100% rename from src/LocOpe/LocOpe_BuildShape.cxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_BuildShape.cxx diff --git a/src/LocOpe/LocOpe_BuildShape.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_BuildShape.hxx similarity index 100% rename from src/LocOpe/LocOpe_BuildShape.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_BuildShape.hxx diff --git a/src/LocOpe/LocOpe_BuildShape.lxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_BuildShape.lxx similarity index 100% rename from src/LocOpe/LocOpe_BuildShape.lxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_BuildShape.lxx diff --git a/src/LocOpe/LocOpe_BuildWires.cxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_BuildWires.cxx similarity index 100% rename from src/LocOpe/LocOpe_BuildWires.cxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_BuildWires.cxx diff --git a/src/LocOpe/LocOpe_BuildWires.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_BuildWires.hxx similarity index 100% rename from src/LocOpe/LocOpe_BuildWires.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_BuildWires.hxx diff --git a/src/LocOpe/LocOpe_CSIntersector.cxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_CSIntersector.cxx similarity index 100% rename from src/LocOpe/LocOpe_CSIntersector.cxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_CSIntersector.cxx diff --git a/src/LocOpe/LocOpe_CSIntersector.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_CSIntersector.hxx similarity index 100% rename from src/LocOpe/LocOpe_CSIntersector.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_CSIntersector.hxx diff --git a/src/LocOpe/LocOpe_CSIntersector.lxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_CSIntersector.lxx similarity index 100% rename from src/LocOpe/LocOpe_CSIntersector.lxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_CSIntersector.lxx diff --git a/src/LocOpe/LocOpe_CurveShapeIntersector.cxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_CurveShapeIntersector.cxx similarity index 100% rename from src/LocOpe/LocOpe_CurveShapeIntersector.cxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_CurveShapeIntersector.cxx diff --git a/src/LocOpe/LocOpe_CurveShapeIntersector.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_CurveShapeIntersector.hxx similarity index 100% rename from src/LocOpe/LocOpe_CurveShapeIntersector.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_CurveShapeIntersector.hxx diff --git a/src/LocOpe/LocOpe_CurveShapeIntersector.lxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_CurveShapeIntersector.lxx similarity index 100% rename from src/LocOpe/LocOpe_CurveShapeIntersector.lxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_CurveShapeIntersector.lxx diff --git a/src/LocOpe/LocOpe_DPrism.cxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_DPrism.cxx similarity index 100% rename from src/LocOpe/LocOpe_DPrism.cxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_DPrism.cxx diff --git a/src/LocOpe/LocOpe_DPrism.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_DPrism.hxx similarity index 100% rename from src/LocOpe/LocOpe_DPrism.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_DPrism.hxx diff --git a/src/LocOpe/LocOpe_DataMapIteratorOfDataMapOfShapePnt.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_DataMapIteratorOfDataMapOfShapePnt.hxx similarity index 100% rename from src/LocOpe/LocOpe_DataMapIteratorOfDataMapOfShapePnt.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_DataMapIteratorOfDataMapOfShapePnt.hxx diff --git a/src/LocOpe/LocOpe_DataMapOfShapePnt.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_DataMapOfShapePnt.hxx similarity index 100% rename from src/LocOpe/LocOpe_DataMapOfShapePnt.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_DataMapOfShapePnt.hxx diff --git a/src/LocOpe/LocOpe_FindEdges.cxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_FindEdges.cxx similarity index 100% rename from src/LocOpe/LocOpe_FindEdges.cxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_FindEdges.cxx diff --git a/src/LocOpe/LocOpe_FindEdges.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_FindEdges.hxx similarity index 100% rename from src/LocOpe/LocOpe_FindEdges.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_FindEdges.hxx diff --git a/src/LocOpe/LocOpe_FindEdges.lxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_FindEdges.lxx similarity index 100% rename from src/LocOpe/LocOpe_FindEdges.lxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_FindEdges.lxx diff --git a/src/LocOpe/LocOpe_FindEdgesInFace.cxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_FindEdgesInFace.cxx similarity index 100% rename from src/LocOpe/LocOpe_FindEdgesInFace.cxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_FindEdgesInFace.cxx diff --git a/src/LocOpe/LocOpe_FindEdgesInFace.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_FindEdgesInFace.hxx similarity index 100% rename from src/LocOpe/LocOpe_FindEdgesInFace.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_FindEdgesInFace.hxx diff --git a/src/LocOpe/LocOpe_FindEdgesInFace.lxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_FindEdgesInFace.lxx similarity index 100% rename from src/LocOpe/LocOpe_FindEdgesInFace.lxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_FindEdgesInFace.lxx diff --git a/src/LocOpe/LocOpe_GeneratedShape.cxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_GeneratedShape.cxx similarity index 100% rename from src/LocOpe/LocOpe_GeneratedShape.cxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_GeneratedShape.cxx diff --git a/src/LocOpe/LocOpe_GeneratedShape.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_GeneratedShape.hxx similarity index 100% rename from src/LocOpe/LocOpe_GeneratedShape.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_GeneratedShape.hxx diff --git a/src/LocOpe/LocOpe_Generator.cxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Generator.cxx similarity index 100% rename from src/LocOpe/LocOpe_Generator.cxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Generator.cxx diff --git a/src/LocOpe/LocOpe_Generator.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Generator.hxx similarity index 100% rename from src/LocOpe/LocOpe_Generator.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Generator.hxx diff --git a/src/LocOpe/LocOpe_Generator.lxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Generator.lxx similarity index 100% rename from src/LocOpe/LocOpe_Generator.lxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Generator.lxx diff --git a/src/LocOpe/LocOpe_GluedShape.cxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_GluedShape.cxx similarity index 100% rename from src/LocOpe/LocOpe_GluedShape.cxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_GluedShape.cxx diff --git a/src/LocOpe/LocOpe_GluedShape.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_GluedShape.hxx similarity index 100% rename from src/LocOpe/LocOpe_GluedShape.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_GluedShape.hxx diff --git a/src/LocOpe/LocOpe_Gluer.cxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Gluer.cxx similarity index 100% rename from src/LocOpe/LocOpe_Gluer.cxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Gluer.cxx diff --git a/src/LocOpe/LocOpe_Gluer.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Gluer.hxx similarity index 100% rename from src/LocOpe/LocOpe_Gluer.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Gluer.hxx diff --git a/src/LocOpe/LocOpe_Gluer.lxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Gluer.lxx similarity index 100% rename from src/LocOpe/LocOpe_Gluer.lxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Gluer.lxx diff --git a/src/LocOpe/LocOpe_LinearForm.cxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_LinearForm.cxx similarity index 100% rename from src/LocOpe/LocOpe_LinearForm.cxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_LinearForm.cxx diff --git a/src/LocOpe/LocOpe_LinearForm.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_LinearForm.hxx similarity index 100% rename from src/LocOpe/LocOpe_LinearForm.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_LinearForm.hxx diff --git a/src/LocOpe/LocOpe_LinearForm.lxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_LinearForm.lxx similarity index 100% rename from src/LocOpe/LocOpe_LinearForm.lxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_LinearForm.lxx diff --git a/src/LocOpe/LocOpe_Operation.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Operation.hxx similarity index 100% rename from src/LocOpe/LocOpe_Operation.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Operation.hxx diff --git a/src/LocOpe/LocOpe_Pipe.cxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Pipe.cxx similarity index 100% rename from src/LocOpe/LocOpe_Pipe.cxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Pipe.cxx diff --git a/src/LocOpe/LocOpe_Pipe.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Pipe.hxx similarity index 100% rename from src/LocOpe/LocOpe_Pipe.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Pipe.hxx diff --git a/src/LocOpe/LocOpe_Pipe.lxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Pipe.lxx similarity index 100% rename from src/LocOpe/LocOpe_Pipe.lxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Pipe.lxx diff --git a/src/LocOpe/LocOpe_PntFace.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_PntFace.hxx similarity index 100% rename from src/LocOpe/LocOpe_PntFace.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_PntFace.hxx diff --git a/src/LocOpe/LocOpe_Prism.cxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Prism.cxx similarity index 100% rename from src/LocOpe/LocOpe_Prism.cxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Prism.cxx diff --git a/src/LocOpe/LocOpe_Prism.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Prism.hxx similarity index 100% rename from src/LocOpe/LocOpe_Prism.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Prism.hxx diff --git a/src/LocOpe/LocOpe_Revol.cxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Revol.cxx similarity index 100% rename from src/LocOpe/LocOpe_Revol.cxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Revol.cxx diff --git a/src/LocOpe/LocOpe_Revol.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Revol.hxx similarity index 100% rename from src/LocOpe/LocOpe_Revol.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Revol.hxx diff --git a/src/LocOpe/LocOpe_RevolutionForm.cxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_RevolutionForm.cxx similarity index 100% rename from src/LocOpe/LocOpe_RevolutionForm.cxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_RevolutionForm.cxx diff --git a/src/LocOpe/LocOpe_RevolutionForm.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_RevolutionForm.hxx similarity index 100% rename from src/LocOpe/LocOpe_RevolutionForm.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_RevolutionForm.hxx diff --git a/src/LocOpe/LocOpe_SequenceOfCirc.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_SequenceOfCirc.hxx similarity index 100% rename from src/LocOpe/LocOpe_SequenceOfCirc.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_SequenceOfCirc.hxx diff --git a/src/LocOpe/LocOpe_SequenceOfLin.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_SequenceOfLin.hxx similarity index 100% rename from src/LocOpe/LocOpe_SequenceOfLin.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_SequenceOfLin.hxx diff --git a/src/LocOpe/LocOpe_SequenceOfPntFace.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_SequenceOfPntFace.hxx similarity index 100% rename from src/LocOpe/LocOpe_SequenceOfPntFace.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_SequenceOfPntFace.hxx diff --git a/src/LocOpe/LocOpe_SplitDrafts.cxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_SplitDrafts.cxx similarity index 100% rename from src/LocOpe/LocOpe_SplitDrafts.cxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_SplitDrafts.cxx diff --git a/src/LocOpe/LocOpe_SplitDrafts.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_SplitDrafts.hxx similarity index 100% rename from src/LocOpe/LocOpe_SplitDrafts.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_SplitDrafts.hxx diff --git a/src/LocOpe/LocOpe_SplitShape.cxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_SplitShape.cxx similarity index 100% rename from src/LocOpe/LocOpe_SplitShape.cxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_SplitShape.cxx diff --git a/src/LocOpe/LocOpe_SplitShape.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_SplitShape.hxx similarity index 100% rename from src/LocOpe/LocOpe_SplitShape.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_SplitShape.hxx diff --git a/src/LocOpe/LocOpe_SplitShape.lxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_SplitShape.lxx similarity index 100% rename from src/LocOpe/LocOpe_SplitShape.lxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_SplitShape.lxx diff --git a/src/LocOpe/LocOpe_Spliter.cxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Spliter.cxx similarity index 100% rename from src/LocOpe/LocOpe_Spliter.cxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Spliter.cxx diff --git a/src/LocOpe/LocOpe_Spliter.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Spliter.hxx similarity index 100% rename from src/LocOpe/LocOpe_Spliter.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Spliter.hxx diff --git a/src/LocOpe/LocOpe_Spliter.lxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Spliter.lxx similarity index 100% rename from src/LocOpe/LocOpe_Spliter.lxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_Spliter.lxx diff --git a/src/LocOpe/LocOpe_WiresOnShape.cxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_WiresOnShape.cxx similarity index 100% rename from src/LocOpe/LocOpe_WiresOnShape.cxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_WiresOnShape.cxx diff --git a/src/LocOpe/LocOpe_WiresOnShape.hxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_WiresOnShape.hxx similarity index 100% rename from src/LocOpe/LocOpe_WiresOnShape.hxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_WiresOnShape.hxx diff --git a/src/LocOpe/LocOpe_WiresOnShape.lxx b/src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_WiresOnShape.lxx similarity index 100% rename from src/LocOpe/LocOpe_WiresOnShape.lxx rename to src/ModelingAlgorithms/TKFeat/LocOpe/LocOpe_WiresOnShape.lxx diff --git a/src/ModelingAlgorithms/TKFeat/PACKAGES.cmake b/src/ModelingAlgorithms/TKFeat/PACKAGES.cmake new file mode 100644 index 0000000000..aef5bddbad --- /dev/null +++ b/src/ModelingAlgorithms/TKFeat/PACKAGES.cmake @@ -0,0 +1,5 @@ +# Auto-generated list of packages for TKFeat toolkit +set(OCCT_TKFeat_LIST_OF_PACKAGES + LocOpe + BRepFeat +) diff --git a/src/BRepBlend/BRepBlend_AppFunc.cxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppFunc.cxx similarity index 100% rename from src/BRepBlend/BRepBlend_AppFunc.cxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppFunc.cxx diff --git a/src/BRepBlend/BRepBlend_AppFunc.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppFunc.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_AppFunc.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppFunc.hxx diff --git a/src/BRepBlend/BRepBlend_AppFuncRoot.cxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppFuncRoot.cxx similarity index 100% rename from src/BRepBlend/BRepBlend_AppFuncRoot.cxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppFuncRoot.cxx diff --git a/src/BRepBlend/BRepBlend_AppFuncRoot.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppFuncRoot.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_AppFuncRoot.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppFuncRoot.hxx diff --git a/src/BRepBlend/BRepBlend_AppFuncRst.cxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppFuncRst.cxx similarity index 100% rename from src/BRepBlend/BRepBlend_AppFuncRst.cxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppFuncRst.cxx diff --git a/src/BRepBlend/BRepBlend_AppFuncRst.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppFuncRst.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_AppFuncRst.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppFuncRst.hxx diff --git a/src/BRepBlend/BRepBlend_AppFuncRstRst.cxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppFuncRstRst.cxx similarity index 100% rename from src/BRepBlend/BRepBlend_AppFuncRstRst.cxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppFuncRstRst.cxx diff --git a/src/BRepBlend/BRepBlend_AppFuncRstRst.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppFuncRstRst.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_AppFuncRstRst.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppFuncRstRst.hxx diff --git a/src/BRepBlend/BRepBlend_AppSurf.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppSurf.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_AppSurf.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppSurf.hxx diff --git a/src/BRepBlend/BRepBlend_AppSurf_0.cxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppSurf_0.cxx similarity index 100% rename from src/BRepBlend/BRepBlend_AppSurf_0.cxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppSurf_0.cxx diff --git a/src/BRepBlend/BRepBlend_AppSurface.cxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppSurface.cxx similarity index 100% rename from src/BRepBlend/BRepBlend_AppSurface.cxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppSurface.cxx diff --git a/src/BRepBlend/BRepBlend_AppSurface.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppSurface.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_AppSurface.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppSurface.hxx diff --git a/src/BRepBlend/BRepBlend_AppSurface.lxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppSurface.lxx similarity index 100% rename from src/BRepBlend/BRepBlend_AppSurface.lxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_AppSurface.lxx diff --git a/src/BRepBlend/BRepBlend_BlendTool.cxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_BlendTool.cxx similarity index 100% rename from src/BRepBlend/BRepBlend_BlendTool.cxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_BlendTool.cxx diff --git a/src/BRepBlend/BRepBlend_BlendTool.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_BlendTool.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_BlendTool.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_BlendTool.hxx diff --git a/src/BRepBlend/BRepBlend_BlendTool.lxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_BlendTool.lxx similarity index 100% rename from src/BRepBlend/BRepBlend_BlendTool.lxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_BlendTool.lxx diff --git a/src/BRepBlend/BRepBlend_CSCircular.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_CSCircular.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_CSCircular.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_CSCircular.hxx diff --git a/src/BRepBlend/BRepBlend_CSConstRad.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_CSConstRad.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_CSConstRad.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_CSConstRad.hxx diff --git a/src/BRepBlend/BRepBlend_CSWalking.cxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_CSWalking.cxx similarity index 100% rename from src/BRepBlend/BRepBlend_CSWalking.cxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_CSWalking.cxx diff --git a/src/BRepBlend/BRepBlend_CSWalking.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_CSWalking.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_CSWalking.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_CSWalking.hxx diff --git a/src/BRepBlend/BRepBlend_ChAsym.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_ChAsym.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_ChAsym.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_ChAsym.hxx diff --git a/src/BRepBlend/BRepBlend_ChAsymInv.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_ChAsymInv.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_ChAsymInv.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_ChAsymInv.hxx diff --git a/src/BRepBlend/BRepBlend_ChamfInv.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_ChamfInv.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_ChamfInv.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_ChamfInv.hxx diff --git a/src/BRepBlend/BRepBlend_Chamfer.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_Chamfer.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_Chamfer.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_Chamfer.hxx diff --git a/src/BRepBlend/BRepBlend_ConstRad.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_ConstRad.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_ConstRad.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_ConstRad.hxx diff --git a/src/BRepBlend/BRepBlend_ConstRadInv.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_ConstRadInv.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_ConstRadInv.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_ConstRadInv.hxx diff --git a/src/BRepBlend/BRepBlend_ConstThroat.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_ConstThroat.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_ConstThroat.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_ConstThroat.hxx diff --git a/src/BRepBlend/BRepBlend_ConstThroatInv.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_ConstThroatInv.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_ConstThroatInv.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_ConstThroatInv.hxx diff --git a/src/BRepBlend/BRepBlend_ConstThroatWithPenetration.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_ConstThroatWithPenetration.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_ConstThroatWithPenetration.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_ConstThroatWithPenetration.hxx diff --git a/src/BRepBlend/BRepBlend_ConstThroatWithPenetrationInv.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_ConstThroatWithPenetrationInv.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_ConstThroatWithPenetrationInv.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_ConstThroatWithPenetrationInv.hxx diff --git a/src/BRepBlend/BRepBlend_CurvPointRadInv.cxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_CurvPointRadInv.cxx similarity index 100% rename from src/BRepBlend/BRepBlend_CurvPointRadInv.cxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_CurvPointRadInv.cxx diff --git a/src/BRepBlend/BRepBlend_CurvPointRadInv.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_CurvPointRadInv.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_CurvPointRadInv.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_CurvPointRadInv.hxx diff --git a/src/BRepBlend/BRepBlend_EvolRad.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_EvolRad.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_EvolRad.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_EvolRad.hxx diff --git a/src/BRepBlend/BRepBlend_EvolRadInv.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_EvolRadInv.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_EvolRadInv.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_EvolRadInv.hxx diff --git a/src/BRepBlend/BRepBlend_Extremity.cxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_Extremity.cxx similarity index 100% rename from src/BRepBlend/BRepBlend_Extremity.cxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_Extremity.cxx diff --git a/src/BRepBlend/BRepBlend_Extremity.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_Extremity.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_Extremity.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_Extremity.hxx diff --git a/src/BRepBlend/BRepBlend_Extremity.lxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_Extremity.lxx similarity index 100% rename from src/BRepBlend/BRepBlend_Extremity.lxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_Extremity.lxx diff --git a/src/BRepBlend/BRepBlend_HCurve2dTool.cxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_HCurve2dTool.cxx similarity index 100% rename from src/BRepBlend/BRepBlend_HCurve2dTool.cxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_HCurve2dTool.cxx diff --git a/src/BRepBlend/BRepBlend_HCurve2dTool.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_HCurve2dTool.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_HCurve2dTool.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_HCurve2dTool.hxx diff --git a/src/BRepBlend/BRepBlend_HCurve2dTool.lxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_HCurve2dTool.lxx similarity index 100% rename from src/BRepBlend/BRepBlend_HCurve2dTool.lxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_HCurve2dTool.lxx diff --git a/src/BRepBlend/BRepBlend_HCurveTool.cxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_HCurveTool.cxx similarity index 100% rename from src/BRepBlend/BRepBlend_HCurveTool.cxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_HCurveTool.cxx diff --git a/src/BRepBlend/BRepBlend_HCurveTool.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_HCurveTool.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_HCurveTool.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_HCurveTool.hxx diff --git a/src/BRepBlend/BRepBlend_HCurveTool.lxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_HCurveTool.lxx similarity index 100% rename from src/BRepBlend/BRepBlend_HCurveTool.lxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_HCurveTool.lxx diff --git a/src/BRepBlend/BRepBlend_Line.cxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_Line.cxx similarity index 100% rename from src/BRepBlend/BRepBlend_Line.cxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_Line.cxx diff --git a/src/BRepBlend/BRepBlend_Line.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_Line.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_Line.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_Line.hxx diff --git a/src/BRepBlend/BRepBlend_Line.lxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_Line.lxx similarity index 100% rename from src/BRepBlend/BRepBlend_Line.lxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_Line.lxx diff --git a/src/BRepBlend/BRepBlend_PointOnRst.cxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_PointOnRst.cxx similarity index 100% rename from src/BRepBlend/BRepBlend_PointOnRst.cxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_PointOnRst.cxx diff --git a/src/BRepBlend/BRepBlend_PointOnRst.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_PointOnRst.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_PointOnRst.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_PointOnRst.hxx diff --git a/src/BRepBlend/BRepBlend_PointOnRst.lxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_PointOnRst.lxx similarity index 100% rename from src/BRepBlend/BRepBlend_PointOnRst.lxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_PointOnRst.lxx diff --git a/src/BRepBlend/BRepBlend_RstRstConstRad.cxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_RstRstConstRad.cxx similarity index 100% rename from src/BRepBlend/BRepBlend_RstRstConstRad.cxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_RstRstConstRad.cxx diff --git a/src/BRepBlend/BRepBlend_RstRstConstRad.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_RstRstConstRad.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_RstRstConstRad.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_RstRstConstRad.hxx diff --git a/src/BRepBlend/BRepBlend_RstRstEvolRad.cxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_RstRstEvolRad.cxx similarity index 100% rename from src/BRepBlend/BRepBlend_RstRstEvolRad.cxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_RstRstEvolRad.cxx diff --git a/src/BRepBlend/BRepBlend_RstRstEvolRad.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_RstRstEvolRad.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_RstRstEvolRad.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_RstRstEvolRad.hxx diff --git a/src/BRepBlend/BRepBlend_RstRstLineBuilder.cxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_RstRstLineBuilder.cxx similarity index 100% rename from src/BRepBlend/BRepBlend_RstRstLineBuilder.cxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_RstRstLineBuilder.cxx diff --git a/src/BRepBlend/BRepBlend_RstRstLineBuilder.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_RstRstLineBuilder.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_RstRstLineBuilder.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_RstRstLineBuilder.hxx diff --git a/src/BRepBlend/BRepBlend_RstRstLineBuilder.lxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_RstRstLineBuilder.lxx similarity index 100% rename from src/BRepBlend/BRepBlend_RstRstLineBuilder.lxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_RstRstLineBuilder.lxx diff --git a/src/BRepBlend/BRepBlend_Ruled.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_Ruled.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_Ruled.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_Ruled.hxx diff --git a/src/BRepBlend/BRepBlend_RuledInv.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_RuledInv.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_RuledInv.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_RuledInv.hxx diff --git a/src/BRepBlend/BRepBlend_SequenceOfLine.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SequenceOfLine.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_SequenceOfLine.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SequenceOfLine.hxx diff --git a/src/BRepBlend/BRepBlend_SequenceOfPointOnRst.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SequenceOfPointOnRst.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_SequenceOfPointOnRst.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SequenceOfPointOnRst.hxx diff --git a/src/BRepBlend/BRepBlend_SurfCurvConstRadInv.cxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfCurvConstRadInv.cxx similarity index 100% rename from src/BRepBlend/BRepBlend_SurfCurvConstRadInv.cxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfCurvConstRadInv.cxx diff --git a/src/BRepBlend/BRepBlend_SurfCurvConstRadInv.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfCurvConstRadInv.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_SurfCurvConstRadInv.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfCurvConstRadInv.hxx diff --git a/src/BRepBlend/BRepBlend_SurfCurvEvolRadInv.cxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfCurvEvolRadInv.cxx similarity index 100% rename from src/BRepBlend/BRepBlend_SurfCurvEvolRadInv.cxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfCurvEvolRadInv.cxx diff --git a/src/BRepBlend/BRepBlend_SurfCurvEvolRadInv.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfCurvEvolRadInv.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_SurfCurvEvolRadInv.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfCurvEvolRadInv.hxx diff --git a/src/BRepBlend/BRepBlend_SurfPointConstRadInv.cxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfPointConstRadInv.cxx similarity index 100% rename from src/BRepBlend/BRepBlend_SurfPointConstRadInv.cxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfPointConstRadInv.cxx diff --git a/src/BRepBlend/BRepBlend_SurfPointConstRadInv.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfPointConstRadInv.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_SurfPointConstRadInv.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfPointConstRadInv.hxx diff --git a/src/BRepBlend/BRepBlend_SurfPointEvolRadInv.cxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfPointEvolRadInv.cxx similarity index 100% rename from src/BRepBlend/BRepBlend_SurfPointEvolRadInv.cxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfPointEvolRadInv.cxx diff --git a/src/BRepBlend/BRepBlend_SurfPointEvolRadInv.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfPointEvolRadInv.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_SurfPointEvolRadInv.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfPointEvolRadInv.hxx diff --git a/src/BRepBlend/BRepBlend_SurfRstConstRad.cxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfRstConstRad.cxx similarity index 100% rename from src/BRepBlend/BRepBlend_SurfRstConstRad.cxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfRstConstRad.cxx diff --git a/src/BRepBlend/BRepBlend_SurfRstConstRad.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfRstConstRad.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_SurfRstConstRad.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfRstConstRad.hxx diff --git a/src/BRepBlend/BRepBlend_SurfRstEvolRad.cxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfRstEvolRad.cxx similarity index 100% rename from src/BRepBlend/BRepBlend_SurfRstEvolRad.cxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfRstEvolRad.cxx diff --git a/src/BRepBlend/BRepBlend_SurfRstEvolRad.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfRstEvolRad.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_SurfRstEvolRad.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfRstEvolRad.hxx diff --git a/src/BRepBlend/BRepBlend_SurfRstLineBuilder.cxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfRstLineBuilder.cxx similarity index 100% rename from src/BRepBlend/BRepBlend_SurfRstLineBuilder.cxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfRstLineBuilder.cxx diff --git a/src/BRepBlend/BRepBlend_SurfRstLineBuilder.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfRstLineBuilder.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_SurfRstLineBuilder.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfRstLineBuilder.hxx diff --git a/src/BRepBlend/BRepBlend_SurfRstLineBuilder.lxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfRstLineBuilder.lxx similarity index 100% rename from src/BRepBlend/BRepBlend_SurfRstLineBuilder.lxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_SurfRstLineBuilder.lxx diff --git a/src/BRepBlend/BRepBlend_Walking.cxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_Walking.cxx similarity index 100% rename from src/BRepBlend/BRepBlend_Walking.cxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_Walking.cxx diff --git a/src/BRepBlend/BRepBlend_Walking.hxx b/src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_Walking.hxx similarity index 100% rename from src/BRepBlend/BRepBlend_Walking.hxx rename to src/ModelingAlgorithms/TKFillet/BRepBlend/BRepBlend_Walking.hxx diff --git a/src/ModelingAlgorithms/TKFillet/BRepBlend/FILES.cmake b/src/ModelingAlgorithms/TKFillet/BRepBlend/FILES.cmake new file mode 100644 index 0000000000..64e5162aa6 --- /dev/null +++ b/src/ModelingAlgorithms/TKFillet/BRepBlend/FILES.cmake @@ -0,0 +1,82 @@ +# Source files for BRepBlend package +set(OCCT_BRepBlend_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepBlend_FILES + BRepBlend_AppFunc.cxx + BRepBlend_AppFunc.hxx + BRepBlend_AppFuncRoot.cxx + BRepBlend_AppFuncRoot.hxx + BRepBlend_AppFuncRst.cxx + BRepBlend_AppFuncRst.hxx + BRepBlend_AppFuncRstRst.cxx + BRepBlend_AppFuncRstRst.hxx + BRepBlend_AppSurf.hxx + BRepBlend_AppSurf_0.cxx + BRepBlend_AppSurface.cxx + BRepBlend_AppSurface.hxx + BRepBlend_AppSurface.lxx + BRepBlend_BlendTool.cxx + BRepBlend_BlendTool.hxx + BRepBlend_BlendTool.lxx + BRepBlend_Chamfer.hxx + BRepBlend_ChamfInv.hxx + BRepBlend_ConstThroat.hxx + BRepBlend_ConstThroatInv.hxx + BRepBlend_ConstThroatWithPenetration.hxx + BRepBlend_ConstThroatWithPenetrationInv.hxx + BRepBlend_ChAsym.hxx + BRepBlend_ChAsymInv.hxx + BRepBlend_ConstRad.hxx + BRepBlend_ConstRadInv.hxx + BRepBlend_CSCircular.hxx + BRepBlend_CSConstRad.hxx + BRepBlend_CSWalking.hxx + BRepBlend_CSWalking.cxx + BRepBlend_CurvPointRadInv.cxx + BRepBlend_CurvPointRadInv.hxx + BRepBlend_EvolRad.hxx + BRepBlend_EvolRadInv.hxx + BRepBlend_Extremity.cxx + BRepBlend_Extremity.hxx + BRepBlend_Extremity.lxx + BRepBlend_HCurve2dTool.cxx + BRepBlend_HCurve2dTool.hxx + BRepBlend_HCurve2dTool.lxx + BRepBlend_HCurveTool.cxx + BRepBlend_HCurveTool.hxx + BRepBlend_HCurveTool.lxx + BRepBlend_Line.cxx + BRepBlend_Line.hxx + BRepBlend_Line.lxx + BRepBlend_PointOnRst.cxx + BRepBlend_PointOnRst.hxx + BRepBlend_PointOnRst.lxx + BRepBlend_RstRstConstRad.cxx + BRepBlend_RstRstConstRad.hxx + BRepBlend_RstRstEvolRad.cxx + BRepBlend_RstRstEvolRad.hxx + BRepBlend_RstRstLineBuilder.cxx + BRepBlend_RstRstLineBuilder.hxx + BRepBlend_RstRstLineBuilder.lxx + BRepBlend_Ruled.hxx + BRepBlend_RuledInv.hxx + BRepBlend_SequenceOfLine.hxx + BRepBlend_SequenceOfPointOnRst.hxx + BRepBlend_SurfCurvConstRadInv.cxx + BRepBlend_SurfCurvConstRadInv.hxx + BRepBlend_SurfCurvEvolRadInv.cxx + BRepBlend_SurfCurvEvolRadInv.hxx + BRepBlend_SurfPointConstRadInv.cxx + BRepBlend_SurfPointConstRadInv.hxx + BRepBlend_SurfPointEvolRadInv.cxx + BRepBlend_SurfPointEvolRadInv.hxx + BRepBlend_SurfRstConstRad.cxx + BRepBlend_SurfRstConstRad.hxx + BRepBlend_SurfRstEvolRad.cxx + BRepBlend_SurfRstEvolRad.hxx + BRepBlend_SurfRstLineBuilder.cxx + BRepBlend_SurfRstLineBuilder.hxx + BRepBlend_SurfRstLineBuilder.lxx + BRepBlend_Walking.hxx + BRepBlend_Walking.cxx +) diff --git a/src/BRepFilletAPI/BRepFilletAPI_LocalOperation.hxx b/src/ModelingAlgorithms/TKFillet/BRepFilletAPI/BRepFilletAPI_LocalOperation.hxx similarity index 100% rename from src/BRepFilletAPI/BRepFilletAPI_LocalOperation.hxx rename to src/ModelingAlgorithms/TKFillet/BRepFilletAPI/BRepFilletAPI_LocalOperation.hxx diff --git a/src/BRepFilletAPI/BRepFilletAPI_MakeChamfer.cxx b/src/ModelingAlgorithms/TKFillet/BRepFilletAPI/BRepFilletAPI_MakeChamfer.cxx similarity index 100% rename from src/BRepFilletAPI/BRepFilletAPI_MakeChamfer.cxx rename to src/ModelingAlgorithms/TKFillet/BRepFilletAPI/BRepFilletAPI_MakeChamfer.cxx diff --git a/src/BRepFilletAPI/BRepFilletAPI_MakeChamfer.hxx b/src/ModelingAlgorithms/TKFillet/BRepFilletAPI/BRepFilletAPI_MakeChamfer.hxx similarity index 100% rename from src/BRepFilletAPI/BRepFilletAPI_MakeChamfer.hxx rename to src/ModelingAlgorithms/TKFillet/BRepFilletAPI/BRepFilletAPI_MakeChamfer.hxx diff --git a/src/BRepFilletAPI/BRepFilletAPI_MakeFillet.cxx b/src/ModelingAlgorithms/TKFillet/BRepFilletAPI/BRepFilletAPI_MakeFillet.cxx similarity index 100% rename from src/BRepFilletAPI/BRepFilletAPI_MakeFillet.cxx rename to src/ModelingAlgorithms/TKFillet/BRepFilletAPI/BRepFilletAPI_MakeFillet.cxx diff --git a/src/BRepFilletAPI/BRepFilletAPI_MakeFillet.hxx b/src/ModelingAlgorithms/TKFillet/BRepFilletAPI/BRepFilletAPI_MakeFillet.hxx similarity index 100% rename from src/BRepFilletAPI/BRepFilletAPI_MakeFillet.hxx rename to src/ModelingAlgorithms/TKFillet/BRepFilletAPI/BRepFilletAPI_MakeFillet.hxx diff --git a/src/BRepFilletAPI/BRepFilletAPI_MakeFillet2d.cxx b/src/ModelingAlgorithms/TKFillet/BRepFilletAPI/BRepFilletAPI_MakeFillet2d.cxx similarity index 100% rename from src/BRepFilletAPI/BRepFilletAPI_MakeFillet2d.cxx rename to src/ModelingAlgorithms/TKFillet/BRepFilletAPI/BRepFilletAPI_MakeFillet2d.cxx diff --git a/src/BRepFilletAPI/BRepFilletAPI_MakeFillet2d.hxx b/src/ModelingAlgorithms/TKFillet/BRepFilletAPI/BRepFilletAPI_MakeFillet2d.hxx similarity index 100% rename from src/BRepFilletAPI/BRepFilletAPI_MakeFillet2d.hxx rename to src/ModelingAlgorithms/TKFillet/BRepFilletAPI/BRepFilletAPI_MakeFillet2d.hxx diff --git a/src/BRepFilletAPI/BRepFilletAPI_MakeFillet2d.lxx b/src/ModelingAlgorithms/TKFillet/BRepFilletAPI/BRepFilletAPI_MakeFillet2d.lxx similarity index 100% rename from src/BRepFilletAPI/BRepFilletAPI_MakeFillet2d.lxx rename to src/ModelingAlgorithms/TKFillet/BRepFilletAPI/BRepFilletAPI_MakeFillet2d.lxx diff --git a/src/ModelingAlgorithms/TKFillet/BRepFilletAPI/FILES.cmake b/src/ModelingAlgorithms/TKFillet/BRepFilletAPI/FILES.cmake new file mode 100644 index 0000000000..895c3f092f --- /dev/null +++ b/src/ModelingAlgorithms/TKFillet/BRepFilletAPI/FILES.cmake @@ -0,0 +1,13 @@ +# Source files for BRepFilletAPI package +set(OCCT_BRepFilletAPI_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepFilletAPI_FILES + BRepFilletAPI_LocalOperation.hxx + BRepFilletAPI_MakeChamfer.cxx + BRepFilletAPI_MakeChamfer.hxx + BRepFilletAPI_MakeFillet.cxx + BRepFilletAPI_MakeFillet.hxx + BRepFilletAPI_MakeFillet2d.cxx + BRepFilletAPI_MakeFillet2d.hxx + BRepFilletAPI_MakeFillet2d.lxx +) diff --git a/src/Blend/Blend_AppFunction.cxx b/src/ModelingAlgorithms/TKFillet/Blend/Blend_AppFunction.cxx similarity index 100% rename from src/Blend/Blend_AppFunction.cxx rename to src/ModelingAlgorithms/TKFillet/Blend/Blend_AppFunction.cxx diff --git a/src/Blend/Blend_AppFunction.hxx b/src/ModelingAlgorithms/TKFillet/Blend/Blend_AppFunction.hxx similarity index 100% rename from src/Blend/Blend_AppFunction.hxx rename to src/ModelingAlgorithms/TKFillet/Blend/Blend_AppFunction.hxx diff --git a/src/Blend/Blend_CSFunction.cxx b/src/ModelingAlgorithms/TKFillet/Blend/Blend_CSFunction.cxx similarity index 100% rename from src/Blend/Blend_CSFunction.cxx rename to src/ModelingAlgorithms/TKFillet/Blend/Blend_CSFunction.cxx diff --git a/src/Blend/Blend_CSFunction.hxx b/src/ModelingAlgorithms/TKFillet/Blend/Blend_CSFunction.hxx similarity index 100% rename from src/Blend/Blend_CSFunction.hxx rename to src/ModelingAlgorithms/TKFillet/Blend/Blend_CSFunction.hxx diff --git a/src/Blend/Blend_CurvPointFuncInv.cxx b/src/ModelingAlgorithms/TKFillet/Blend/Blend_CurvPointFuncInv.cxx similarity index 100% rename from src/Blend/Blend_CurvPointFuncInv.cxx rename to src/ModelingAlgorithms/TKFillet/Blend/Blend_CurvPointFuncInv.cxx diff --git a/src/Blend/Blend_CurvPointFuncInv.hxx b/src/ModelingAlgorithms/TKFillet/Blend/Blend_CurvPointFuncInv.hxx similarity index 100% rename from src/Blend/Blend_CurvPointFuncInv.hxx rename to src/ModelingAlgorithms/TKFillet/Blend/Blend_CurvPointFuncInv.hxx diff --git a/src/Blend/Blend_Debug.cxx b/src/ModelingAlgorithms/TKFillet/Blend/Blend_Debug.cxx similarity index 100% rename from src/Blend/Blend_Debug.cxx rename to src/ModelingAlgorithms/TKFillet/Blend/Blend_Debug.cxx diff --git a/src/Blend/Blend_DecrochStatus.hxx b/src/ModelingAlgorithms/TKFillet/Blend/Blend_DecrochStatus.hxx similarity index 100% rename from src/Blend/Blend_DecrochStatus.hxx rename to src/ModelingAlgorithms/TKFillet/Blend/Blend_DecrochStatus.hxx diff --git a/src/Blend/Blend_FuncInv.cxx b/src/ModelingAlgorithms/TKFillet/Blend/Blend_FuncInv.cxx similarity index 100% rename from src/Blend/Blend_FuncInv.cxx rename to src/ModelingAlgorithms/TKFillet/Blend/Blend_FuncInv.cxx diff --git a/src/Blend/Blend_FuncInv.hxx b/src/ModelingAlgorithms/TKFillet/Blend/Blend_FuncInv.hxx similarity index 100% rename from src/Blend/Blend_FuncInv.hxx rename to src/ModelingAlgorithms/TKFillet/Blend/Blend_FuncInv.hxx diff --git a/src/Blend/Blend_Function.cxx b/src/ModelingAlgorithms/TKFillet/Blend/Blend_Function.cxx similarity index 100% rename from src/Blend/Blend_Function.cxx rename to src/ModelingAlgorithms/TKFillet/Blend/Blend_Function.cxx diff --git a/src/Blend/Blend_Function.hxx b/src/ModelingAlgorithms/TKFillet/Blend/Blend_Function.hxx similarity index 100% rename from src/Blend/Blend_Function.hxx rename to src/ModelingAlgorithms/TKFillet/Blend/Blend_Function.hxx diff --git a/src/Blend/Blend_Point.cxx b/src/ModelingAlgorithms/TKFillet/Blend/Blend_Point.cxx similarity index 100% rename from src/Blend/Blend_Point.cxx rename to src/ModelingAlgorithms/TKFillet/Blend/Blend_Point.cxx diff --git a/src/Blend/Blend_Point.hxx b/src/ModelingAlgorithms/TKFillet/Blend/Blend_Point.hxx similarity index 100% rename from src/Blend/Blend_Point.hxx rename to src/ModelingAlgorithms/TKFillet/Blend/Blend_Point.hxx diff --git a/src/Blend/Blend_Point.lxx b/src/ModelingAlgorithms/TKFillet/Blend/Blend_Point.lxx similarity index 100% rename from src/Blend/Blend_Point.lxx rename to src/ModelingAlgorithms/TKFillet/Blend/Blend_Point.lxx diff --git a/src/Blend/Blend_RstRstFunction.cxx b/src/ModelingAlgorithms/TKFillet/Blend/Blend_RstRstFunction.cxx similarity index 100% rename from src/Blend/Blend_RstRstFunction.cxx rename to src/ModelingAlgorithms/TKFillet/Blend/Blend_RstRstFunction.cxx diff --git a/src/Blend/Blend_RstRstFunction.hxx b/src/ModelingAlgorithms/TKFillet/Blend/Blend_RstRstFunction.hxx similarity index 100% rename from src/Blend/Blend_RstRstFunction.hxx rename to src/ModelingAlgorithms/TKFillet/Blend/Blend_RstRstFunction.hxx diff --git a/src/Blend/Blend_SequenceOfPoint.hxx b/src/ModelingAlgorithms/TKFillet/Blend/Blend_SequenceOfPoint.hxx similarity index 100% rename from src/Blend/Blend_SequenceOfPoint.hxx rename to src/ModelingAlgorithms/TKFillet/Blend/Blend_SequenceOfPoint.hxx diff --git a/src/Blend/Blend_Status.hxx b/src/ModelingAlgorithms/TKFillet/Blend/Blend_Status.hxx similarity index 100% rename from src/Blend/Blend_Status.hxx rename to src/ModelingAlgorithms/TKFillet/Blend/Blend_Status.hxx diff --git a/src/Blend/Blend_SurfCurvFuncInv.cxx b/src/ModelingAlgorithms/TKFillet/Blend/Blend_SurfCurvFuncInv.cxx similarity index 100% rename from src/Blend/Blend_SurfCurvFuncInv.cxx rename to src/ModelingAlgorithms/TKFillet/Blend/Blend_SurfCurvFuncInv.cxx diff --git a/src/Blend/Blend_SurfCurvFuncInv.hxx b/src/ModelingAlgorithms/TKFillet/Blend/Blend_SurfCurvFuncInv.hxx similarity index 100% rename from src/Blend/Blend_SurfCurvFuncInv.hxx rename to src/ModelingAlgorithms/TKFillet/Blend/Blend_SurfCurvFuncInv.hxx diff --git a/src/Blend/Blend_SurfPointFuncInv.cxx b/src/ModelingAlgorithms/TKFillet/Blend/Blend_SurfPointFuncInv.cxx similarity index 100% rename from src/Blend/Blend_SurfPointFuncInv.cxx rename to src/ModelingAlgorithms/TKFillet/Blend/Blend_SurfPointFuncInv.cxx diff --git a/src/Blend/Blend_SurfPointFuncInv.hxx b/src/ModelingAlgorithms/TKFillet/Blend/Blend_SurfPointFuncInv.hxx similarity index 100% rename from src/Blend/Blend_SurfPointFuncInv.hxx rename to src/ModelingAlgorithms/TKFillet/Blend/Blend_SurfPointFuncInv.hxx diff --git a/src/Blend/Blend_SurfRstFunction.cxx b/src/ModelingAlgorithms/TKFillet/Blend/Blend_SurfRstFunction.cxx similarity index 100% rename from src/Blend/Blend_SurfRstFunction.cxx rename to src/ModelingAlgorithms/TKFillet/Blend/Blend_SurfRstFunction.cxx diff --git a/src/Blend/Blend_SurfRstFunction.hxx b/src/ModelingAlgorithms/TKFillet/Blend/Blend_SurfRstFunction.hxx similarity index 100% rename from src/Blend/Blend_SurfRstFunction.hxx rename to src/ModelingAlgorithms/TKFillet/Blend/Blend_SurfRstFunction.hxx diff --git a/src/ModelingAlgorithms/TKFillet/Blend/FILES.cmake b/src/ModelingAlgorithms/TKFillet/Blend/FILES.cmake new file mode 100644 index 0000000000..d6c61e90f0 --- /dev/null +++ b/src/ModelingAlgorithms/TKFillet/Blend/FILES.cmake @@ -0,0 +1,30 @@ +# Source files for Blend package +set(OCCT_Blend_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Blend_FILES + Blend_AppFunction.cxx + Blend_AppFunction.hxx + Blend_CSFunction.cxx + Blend_CSFunction.hxx + Blend_CurvPointFuncInv.cxx + Blend_CurvPointFuncInv.hxx + Blend_Debug.cxx + Blend_DecrochStatus.hxx + Blend_FuncInv.cxx + Blend_FuncInv.hxx + Blend_Function.cxx + Blend_Function.hxx + Blend_Point.cxx + Blend_Point.hxx + Blend_Point.lxx + Blend_RstRstFunction.cxx + Blend_RstRstFunction.hxx + Blend_SequenceOfPoint.hxx + Blend_Status.hxx + Blend_SurfCurvFuncInv.cxx + Blend_SurfCurvFuncInv.hxx + Blend_SurfPointFuncInv.cxx + Blend_SurfPointFuncInv.hxx + Blend_SurfRstFunction.cxx + Blend_SurfRstFunction.hxx +) diff --git a/src/BlendFunc/BlendFunc.cxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc.cxx similarity index 100% rename from src/BlendFunc/BlendFunc.cxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc.cxx diff --git a/src/BlendFunc/BlendFunc.hxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc.hxx similarity index 100% rename from src/BlendFunc/BlendFunc.hxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc.hxx diff --git a/src/BlendFunc/BlendFunc_CSCircular.cxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_CSCircular.cxx similarity index 100% rename from src/BlendFunc/BlendFunc_CSCircular.cxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_CSCircular.cxx diff --git a/src/BlendFunc/BlendFunc_CSCircular.hxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_CSCircular.hxx similarity index 100% rename from src/BlendFunc/BlendFunc_CSCircular.hxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_CSCircular.hxx diff --git a/src/BlendFunc/BlendFunc_CSConstRad.cxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_CSConstRad.cxx similarity index 100% rename from src/BlendFunc/BlendFunc_CSConstRad.cxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_CSConstRad.cxx diff --git a/src/BlendFunc/BlendFunc_CSConstRad.hxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_CSConstRad.hxx similarity index 100% rename from src/BlendFunc/BlendFunc_CSConstRad.hxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_CSConstRad.hxx diff --git a/src/BlendFunc/BlendFunc_ChAsym.cxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ChAsym.cxx similarity index 100% rename from src/BlendFunc/BlendFunc_ChAsym.cxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ChAsym.cxx diff --git a/src/BlendFunc/BlendFunc_ChAsym.hxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ChAsym.hxx similarity index 100% rename from src/BlendFunc/BlendFunc_ChAsym.hxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ChAsym.hxx diff --git a/src/BlendFunc/BlendFunc_ChAsymInv.cxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ChAsymInv.cxx similarity index 100% rename from src/BlendFunc/BlendFunc_ChAsymInv.cxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ChAsymInv.cxx diff --git a/src/BlendFunc/BlendFunc_ChAsymInv.hxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ChAsymInv.hxx similarity index 100% rename from src/BlendFunc/BlendFunc_ChAsymInv.hxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ChAsymInv.hxx diff --git a/src/BlendFunc/BlendFunc_ChamfInv.cxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ChamfInv.cxx similarity index 100% rename from src/BlendFunc/BlendFunc_ChamfInv.cxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ChamfInv.cxx diff --git a/src/BlendFunc/BlendFunc_ChamfInv.hxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ChamfInv.hxx similarity index 100% rename from src/BlendFunc/BlendFunc_ChamfInv.hxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ChamfInv.hxx diff --git a/src/BlendFunc/BlendFunc_Chamfer.cxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_Chamfer.cxx similarity index 100% rename from src/BlendFunc/BlendFunc_Chamfer.cxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_Chamfer.cxx diff --git a/src/BlendFunc/BlendFunc_Chamfer.hxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_Chamfer.hxx similarity index 100% rename from src/BlendFunc/BlendFunc_Chamfer.hxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_Chamfer.hxx diff --git a/src/BlendFunc/BlendFunc_ConstRad.cxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ConstRad.cxx similarity index 100% rename from src/BlendFunc/BlendFunc_ConstRad.cxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ConstRad.cxx diff --git a/src/BlendFunc/BlendFunc_ConstRad.hxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ConstRad.hxx similarity index 100% rename from src/BlendFunc/BlendFunc_ConstRad.hxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ConstRad.hxx diff --git a/src/BlendFunc/BlendFunc_ConstRadInv.cxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ConstRadInv.cxx similarity index 100% rename from src/BlendFunc/BlendFunc_ConstRadInv.cxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ConstRadInv.cxx diff --git a/src/BlendFunc/BlendFunc_ConstRadInv.hxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ConstRadInv.hxx similarity index 100% rename from src/BlendFunc/BlendFunc_ConstRadInv.hxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ConstRadInv.hxx diff --git a/src/BlendFunc/BlendFunc_ConstThroat.cxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ConstThroat.cxx similarity index 100% rename from src/BlendFunc/BlendFunc_ConstThroat.cxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ConstThroat.cxx diff --git a/src/BlendFunc/BlendFunc_ConstThroat.hxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ConstThroat.hxx similarity index 100% rename from src/BlendFunc/BlendFunc_ConstThroat.hxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ConstThroat.hxx diff --git a/src/BlendFunc/BlendFunc_ConstThroatInv.cxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ConstThroatInv.cxx similarity index 100% rename from src/BlendFunc/BlendFunc_ConstThroatInv.cxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ConstThroatInv.cxx diff --git a/src/BlendFunc/BlendFunc_ConstThroatInv.hxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ConstThroatInv.hxx similarity index 100% rename from src/BlendFunc/BlendFunc_ConstThroatInv.hxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ConstThroatInv.hxx diff --git a/src/BlendFunc/BlendFunc_ConstThroatWithPenetration.cxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ConstThroatWithPenetration.cxx similarity index 100% rename from src/BlendFunc/BlendFunc_ConstThroatWithPenetration.cxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ConstThroatWithPenetration.cxx diff --git a/src/BlendFunc/BlendFunc_ConstThroatWithPenetration.hxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ConstThroatWithPenetration.hxx similarity index 100% rename from src/BlendFunc/BlendFunc_ConstThroatWithPenetration.hxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ConstThroatWithPenetration.hxx diff --git a/src/BlendFunc/BlendFunc_ConstThroatWithPenetrationInv.cxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ConstThroatWithPenetrationInv.cxx similarity index 100% rename from src/BlendFunc/BlendFunc_ConstThroatWithPenetrationInv.cxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ConstThroatWithPenetrationInv.cxx diff --git a/src/BlendFunc/BlendFunc_ConstThroatWithPenetrationInv.hxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ConstThroatWithPenetrationInv.hxx similarity index 100% rename from src/BlendFunc/BlendFunc_ConstThroatWithPenetrationInv.hxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_ConstThroatWithPenetrationInv.hxx diff --git a/src/BlendFunc/BlendFunc_Corde.cxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_Corde.cxx similarity index 100% rename from src/BlendFunc/BlendFunc_Corde.cxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_Corde.cxx diff --git a/src/BlendFunc/BlendFunc_Corde.hxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_Corde.hxx similarity index 100% rename from src/BlendFunc/BlendFunc_Corde.hxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_Corde.hxx diff --git a/src/BlendFunc/BlendFunc_EvolRad.cxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_EvolRad.cxx similarity index 100% rename from src/BlendFunc/BlendFunc_EvolRad.cxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_EvolRad.cxx diff --git a/src/BlendFunc/BlendFunc_EvolRad.hxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_EvolRad.hxx similarity index 100% rename from src/BlendFunc/BlendFunc_EvolRad.hxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_EvolRad.hxx diff --git a/src/BlendFunc/BlendFunc_EvolRadInv.cxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_EvolRadInv.cxx similarity index 100% rename from src/BlendFunc/BlendFunc_EvolRadInv.cxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_EvolRadInv.cxx diff --git a/src/BlendFunc/BlendFunc_EvolRadInv.hxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_EvolRadInv.hxx similarity index 100% rename from src/BlendFunc/BlendFunc_EvolRadInv.hxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_EvolRadInv.hxx diff --git a/src/BlendFunc/BlendFunc_GenChamfInv.cxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_GenChamfInv.cxx similarity index 100% rename from src/BlendFunc/BlendFunc_GenChamfInv.cxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_GenChamfInv.cxx diff --git a/src/BlendFunc/BlendFunc_GenChamfInv.hxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_GenChamfInv.hxx similarity index 100% rename from src/BlendFunc/BlendFunc_GenChamfInv.hxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_GenChamfInv.hxx diff --git a/src/BlendFunc/BlendFunc_GenChamfer.cxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_GenChamfer.cxx similarity index 100% rename from src/BlendFunc/BlendFunc_GenChamfer.cxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_GenChamfer.cxx diff --git a/src/BlendFunc/BlendFunc_GenChamfer.hxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_GenChamfer.hxx similarity index 100% rename from src/BlendFunc/BlendFunc_GenChamfer.hxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_GenChamfer.hxx diff --git a/src/BlendFunc/BlendFunc_Ruled.cxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_Ruled.cxx similarity index 100% rename from src/BlendFunc/BlendFunc_Ruled.cxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_Ruled.cxx diff --git a/src/BlendFunc/BlendFunc_Ruled.hxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_Ruled.hxx similarity index 100% rename from src/BlendFunc/BlendFunc_Ruled.hxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_Ruled.hxx diff --git a/src/BlendFunc/BlendFunc_RuledInv.cxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_RuledInv.cxx similarity index 100% rename from src/BlendFunc/BlendFunc_RuledInv.cxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_RuledInv.cxx diff --git a/src/BlendFunc/BlendFunc_RuledInv.hxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_RuledInv.hxx similarity index 100% rename from src/BlendFunc/BlendFunc_RuledInv.hxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_RuledInv.hxx diff --git a/src/BlendFunc/BlendFunc_SectionShape.hxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_SectionShape.hxx similarity index 100% rename from src/BlendFunc/BlendFunc_SectionShape.hxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_SectionShape.hxx diff --git a/src/BlendFunc/BlendFunc_Tensor.cxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_Tensor.cxx similarity index 100% rename from src/BlendFunc/BlendFunc_Tensor.cxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_Tensor.cxx diff --git a/src/BlendFunc/BlendFunc_Tensor.hxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_Tensor.hxx similarity index 100% rename from src/BlendFunc/BlendFunc_Tensor.hxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_Tensor.hxx diff --git a/src/BlendFunc/BlendFunc_Tensor.lxx b/src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_Tensor.lxx similarity index 100% rename from src/BlendFunc/BlendFunc_Tensor.lxx rename to src/ModelingAlgorithms/TKFillet/BlendFunc/BlendFunc_Tensor.lxx diff --git a/src/ModelingAlgorithms/TKFillet/BlendFunc/FILES.cmake b/src/ModelingAlgorithms/TKFillet/BlendFunc/FILES.cmake new file mode 100644 index 0000000000..44703375ad --- /dev/null +++ b/src/ModelingAlgorithms/TKFillet/BlendFunc/FILES.cmake @@ -0,0 +1,49 @@ +# Source files for BlendFunc package +set(OCCT_BlendFunc_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BlendFunc_FILES + BlendFunc.cxx + BlendFunc.hxx + BlendFunc_GenChamfer.cxx + BlendFunc_GenChamfer.hxx + BlendFunc_GenChamfInv.cxx + BlendFunc_GenChamfInv.hxx + BlendFunc_Chamfer.cxx + BlendFunc_Chamfer.hxx + BlendFunc_ChamfInv.cxx + BlendFunc_ChamfInv.hxx + BlendFunc_ChAsym.cxx + BlendFunc_ChAsym.hxx + BlendFunc_ChAsymInv.cxx + BlendFunc_ChAsymInv.hxx + BlendFunc_ConstRad.cxx + BlendFunc_ConstRad.hxx + BlendFunc_ConstRadInv.cxx + BlendFunc_ConstRadInv.hxx + BlendFunc_Corde.cxx + BlendFunc_Corde.hxx + BlendFunc_CSCircular.cxx + BlendFunc_CSCircular.hxx + BlendFunc_CSConstRad.cxx + BlendFunc_CSConstRad.hxx + BlendFunc_EvolRad.cxx + BlendFunc_EvolRad.hxx + BlendFunc_EvolRadInv.cxx + BlendFunc_EvolRadInv.hxx + BlendFunc_Ruled.cxx + BlendFunc_Ruled.hxx + BlendFunc_RuledInv.cxx + BlendFunc_RuledInv.hxx + BlendFunc_SectionShape.hxx + BlendFunc_Tensor.cxx + BlendFunc_Tensor.hxx + BlendFunc_Tensor.lxx + BlendFunc_ConstThroat.cxx + BlendFunc_ConstThroat.hxx + BlendFunc_ConstThroatInv.cxx + BlendFunc_ConstThroatInv.hxx + BlendFunc_ConstThroatWithPenetration.cxx + BlendFunc_ConstThroatWithPenetration.hxx + BlendFunc_ConstThroatWithPenetrationInv.cxx + BlendFunc_ConstThroatWithPenetrationInv.hxx +) diff --git a/src/TKFillet/CMakeLists.txt b/src/ModelingAlgorithms/TKFillet/CMakeLists.txt similarity index 100% rename from src/TKFillet/CMakeLists.txt rename to src/ModelingAlgorithms/TKFillet/CMakeLists.txt diff --git a/src/ChFi2d/ChFi2d.cxx b/src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d.cxx similarity index 100% rename from src/ChFi2d/ChFi2d.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d.cxx diff --git a/src/ChFi2d/ChFi2d.hxx b/src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d.hxx similarity index 100% rename from src/ChFi2d/ChFi2d.hxx rename to src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d.hxx diff --git a/src/ChFi2d/ChFi2d_AnaFilletAlgo.cxx b/src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_AnaFilletAlgo.cxx similarity index 100% rename from src/ChFi2d/ChFi2d_AnaFilletAlgo.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_AnaFilletAlgo.cxx diff --git a/src/ChFi2d/ChFi2d_AnaFilletAlgo.hxx b/src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_AnaFilletAlgo.hxx similarity index 100% rename from src/ChFi2d/ChFi2d_AnaFilletAlgo.hxx rename to src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_AnaFilletAlgo.hxx diff --git a/src/ChFi2d/ChFi2d_Builder.cxx b/src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_Builder.cxx similarity index 100% rename from src/ChFi2d/ChFi2d_Builder.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_Builder.cxx diff --git a/src/ChFi2d/ChFi2d_Builder.hxx b/src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_Builder.hxx similarity index 100% rename from src/ChFi2d/ChFi2d_Builder.hxx rename to src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_Builder.hxx diff --git a/src/ChFi2d/ChFi2d_Builder.lxx b/src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_Builder.lxx similarity index 100% rename from src/ChFi2d/ChFi2d_Builder.lxx rename to src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_Builder.lxx diff --git a/src/ChFi2d/ChFi2d_Builder_0.cxx b/src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_Builder_0.cxx similarity index 100% rename from src/ChFi2d/ChFi2d_Builder_0.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_Builder_0.cxx diff --git a/src/ChFi2d/ChFi2d_ChamferAPI.cxx b/src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_ChamferAPI.cxx similarity index 100% rename from src/ChFi2d/ChFi2d_ChamferAPI.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_ChamferAPI.cxx diff --git a/src/ChFi2d/ChFi2d_ChamferAPI.hxx b/src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_ChamferAPI.hxx similarity index 100% rename from src/ChFi2d/ChFi2d_ChamferAPI.hxx rename to src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_ChamferAPI.hxx diff --git a/src/ChFi2d/ChFi2d_ConstructionError.hxx b/src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_ConstructionError.hxx similarity index 100% rename from src/ChFi2d/ChFi2d_ConstructionError.hxx rename to src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_ConstructionError.hxx diff --git a/src/ChFi2d/ChFi2d_FilletAPI.cxx b/src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_FilletAPI.cxx similarity index 100% rename from src/ChFi2d/ChFi2d_FilletAPI.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_FilletAPI.cxx diff --git a/src/ChFi2d/ChFi2d_FilletAPI.hxx b/src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_FilletAPI.hxx similarity index 100% rename from src/ChFi2d/ChFi2d_FilletAPI.hxx rename to src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_FilletAPI.hxx diff --git a/src/ChFi2d/ChFi2d_FilletAlgo.cxx b/src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_FilletAlgo.cxx similarity index 100% rename from src/ChFi2d/ChFi2d_FilletAlgo.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_FilletAlgo.cxx diff --git a/src/ChFi2d/ChFi2d_FilletAlgo.hxx b/src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_FilletAlgo.hxx similarity index 100% rename from src/ChFi2d/ChFi2d_FilletAlgo.hxx rename to src/ModelingAlgorithms/TKFillet/ChFi2d/ChFi2d_FilletAlgo.hxx diff --git a/src/ModelingAlgorithms/TKFillet/ChFi2d/FILES.cmake b/src/ModelingAlgorithms/TKFillet/ChFi2d/FILES.cmake new file mode 100644 index 0000000000..4de815b1b6 --- /dev/null +++ b/src/ModelingAlgorithms/TKFillet/ChFi2d/FILES.cmake @@ -0,0 +1,20 @@ +# Source files for ChFi2d package +set(OCCT_ChFi2d_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_ChFi2d_FILES + ChFi2d.cxx + ChFi2d.hxx + ChFi2d_AnaFilletAlgo.cxx + ChFi2d_AnaFilletAlgo.hxx + ChFi2d_Builder.cxx + ChFi2d_Builder.hxx + ChFi2d_Builder.lxx + ChFi2d_Builder_0.cxx + ChFi2d_ChamferAPI.cxx + ChFi2d_ChamferAPI.hxx + ChFi2d_ConstructionError.hxx + ChFi2d_FilletAlgo.cxx + ChFi2d_FilletAlgo.hxx + ChFi2d_FilletAPI.cxx + ChFi2d_FilletAPI.hxx +) diff --git a/src/ChFi3d/ChFi3d.cxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d.cxx similarity index 100% rename from src/ChFi3d/ChFi3d.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d.cxx diff --git a/src/ChFi3d/ChFi3d.hxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d.hxx similarity index 100% rename from src/ChFi3d/ChFi3d.hxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d.hxx diff --git a/src/ChFi3d/ChFi3d_Builder.cxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Builder.cxx similarity index 100% rename from src/ChFi3d/ChFi3d_Builder.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Builder.cxx diff --git a/src/ChFi3d/ChFi3d_Builder.hxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Builder.hxx similarity index 100% rename from src/ChFi3d/ChFi3d_Builder.hxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Builder.hxx diff --git a/src/ChFi3d/ChFi3d_Builder_0.cxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Builder_0.cxx similarity index 100% rename from src/ChFi3d/ChFi3d_Builder_0.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Builder_0.cxx diff --git a/src/ChFi3d/ChFi3d_Builder_0.hxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Builder_0.hxx similarity index 100% rename from src/ChFi3d/ChFi3d_Builder_0.hxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Builder_0.hxx diff --git a/src/ChFi3d/ChFi3d_Builder_1.cxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Builder_1.cxx similarity index 100% rename from src/ChFi3d/ChFi3d_Builder_1.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Builder_1.cxx diff --git a/src/ChFi3d/ChFi3d_Builder_2.cxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Builder_2.cxx similarity index 100% rename from src/ChFi3d/ChFi3d_Builder_2.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Builder_2.cxx diff --git a/src/ChFi3d/ChFi3d_Builder_6.cxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Builder_6.cxx similarity index 100% rename from src/ChFi3d/ChFi3d_Builder_6.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Builder_6.cxx diff --git a/src/ChFi3d/ChFi3d_Builder_C1.cxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Builder_C1.cxx similarity index 100% rename from src/ChFi3d/ChFi3d_Builder_C1.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Builder_C1.cxx diff --git a/src/ChFi3d/ChFi3d_Builder_C2.cxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Builder_C2.cxx similarity index 100% rename from src/ChFi3d/ChFi3d_Builder_C2.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Builder_C2.cxx diff --git a/src/ChFi3d/ChFi3d_Builder_CnCrn.cxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Builder_CnCrn.cxx similarity index 100% rename from src/ChFi3d/ChFi3d_Builder_CnCrn.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Builder_CnCrn.cxx diff --git a/src/ChFi3d/ChFi3d_Builder_NotImp.cxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Builder_NotImp.cxx similarity index 100% rename from src/ChFi3d/ChFi3d_Builder_NotImp.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Builder_NotImp.cxx diff --git a/src/ChFi3d/ChFi3d_Builder_SpKP.cxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Builder_SpKP.cxx similarity index 100% rename from src/ChFi3d/ChFi3d_Builder_SpKP.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Builder_SpKP.cxx diff --git a/src/ChFi3d/ChFi3d_ChBuilder.cxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_ChBuilder.cxx similarity index 100% rename from src/ChFi3d/ChFi3d_ChBuilder.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_ChBuilder.cxx diff --git a/src/ChFi3d/ChFi3d_ChBuilder.hxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_ChBuilder.hxx similarity index 100% rename from src/ChFi3d/ChFi3d_ChBuilder.hxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_ChBuilder.hxx diff --git a/src/ChFi3d/ChFi3d_ChBuilder_C2.cxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_ChBuilder_C2.cxx similarity index 100% rename from src/ChFi3d/ChFi3d_ChBuilder_C2.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_ChBuilder_C2.cxx diff --git a/src/ChFi3d/ChFi3d_ChBuilder_C3.cxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_ChBuilder_C3.cxx similarity index 100% rename from src/ChFi3d/ChFi3d_ChBuilder_C3.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_ChBuilder_C3.cxx diff --git a/src/ChFi3d/ChFi3d_Debug.cxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Debug.cxx similarity index 100% rename from src/ChFi3d/ChFi3d_Debug.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_Debug.cxx diff --git a/src/ChFi3d/ChFi3d_FilBuilder.cxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_FilBuilder.cxx similarity index 100% rename from src/ChFi3d/ChFi3d_FilBuilder.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_FilBuilder.cxx diff --git a/src/ChFi3d/ChFi3d_FilBuilder.hxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_FilBuilder.hxx similarity index 100% rename from src/ChFi3d/ChFi3d_FilBuilder.hxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_FilBuilder.hxx diff --git a/src/ChFi3d/ChFi3d_FilBuilder_C2.cxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_FilBuilder_C2.cxx similarity index 100% rename from src/ChFi3d/ChFi3d_FilBuilder_C2.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_FilBuilder_C2.cxx diff --git a/src/ChFi3d/ChFi3d_FilBuilder_C3.cxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_FilBuilder_C3.cxx similarity index 100% rename from src/ChFi3d/ChFi3d_FilBuilder_C3.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_FilBuilder_C3.cxx diff --git a/src/ChFi3d/ChFi3d_FilletShape.hxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_FilletShape.hxx similarity index 100% rename from src/ChFi3d/ChFi3d_FilletShape.hxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_FilletShape.hxx diff --git a/src/ChFi3d/ChFi3d_SearchSing.cxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_SearchSing.cxx similarity index 100% rename from src/ChFi3d/ChFi3d_SearchSing.cxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_SearchSing.cxx diff --git a/src/ChFi3d/ChFi3d_SearchSing.hxx b/src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_SearchSing.hxx similarity index 100% rename from src/ChFi3d/ChFi3d_SearchSing.hxx rename to src/ModelingAlgorithms/TKFillet/ChFi3d/ChFi3d_SearchSing.hxx diff --git a/src/ModelingAlgorithms/TKFillet/ChFi3d/FILES.cmake b/src/ModelingAlgorithms/TKFillet/ChFi3d/FILES.cmake new file mode 100644 index 0000000000..af0b0e1a5b --- /dev/null +++ b/src/ModelingAlgorithms/TKFillet/ChFi3d/FILES.cmake @@ -0,0 +1,31 @@ +# Source files for ChFi3d package +set(OCCT_ChFi3d_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_ChFi3d_FILES + ChFi3d.cxx + ChFi3d.hxx + ChFi3d_Builder.cxx + ChFi3d_Builder.hxx + ChFi3d_Builder_0.cxx + ChFi3d_Builder_0.hxx + ChFi3d_Builder_1.cxx + ChFi3d_Builder_2.cxx + ChFi3d_Builder_6.cxx + ChFi3d_Builder_C1.cxx + ChFi3d_Builder_C2.cxx + ChFi3d_Builder_CnCrn.cxx + ChFi3d_Builder_NotImp.cxx + ChFi3d_Builder_SpKP.cxx + ChFi3d_ChBuilder.cxx + ChFi3d_ChBuilder.hxx + ChFi3d_ChBuilder_C2.cxx + ChFi3d_ChBuilder_C3.cxx + ChFi3d_Debug.cxx + ChFi3d_FilBuilder.cxx + ChFi3d_FilBuilder.hxx + ChFi3d_FilBuilder_C2.cxx + ChFi3d_FilBuilder_C3.cxx + ChFi3d_FilletShape.hxx + ChFi3d_SearchSing.cxx + ChFi3d_SearchSing.hxx +) diff --git a/src/ChFiDS/ChFiDS_ChamfMethod.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_ChamfMethod.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_ChamfMethod.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_ChamfMethod.hxx diff --git a/src/ChFiDS/ChFiDS_ChamfMode.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_ChamfMode.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_ChamfMode.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_ChamfMode.hxx diff --git a/src/ChFiDS/ChFiDS_ChamfSpine.cxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_ChamfSpine.cxx similarity index 100% rename from src/ChFiDS/ChFiDS_ChamfSpine.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_ChamfSpine.cxx diff --git a/src/ChFiDS/ChFiDS_ChamfSpine.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_ChamfSpine.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_ChamfSpine.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_ChamfSpine.hxx diff --git a/src/ChFiDS/ChFiDS_CircSection.cxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_CircSection.cxx similarity index 100% rename from src/ChFiDS/ChFiDS_CircSection.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_CircSection.cxx diff --git a/src/ChFiDS/ChFiDS_CircSection.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_CircSection.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_CircSection.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_CircSection.hxx diff --git a/src/ChFiDS/ChFiDS_CommonPoint.cxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_CommonPoint.cxx similarity index 100% rename from src/ChFiDS/ChFiDS_CommonPoint.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_CommonPoint.cxx diff --git a/src/ChFiDS/ChFiDS_CommonPoint.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_CommonPoint.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_CommonPoint.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_CommonPoint.hxx diff --git a/src/ChFiDS/ChFiDS_ElSpine.cxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_ElSpine.cxx similarity index 100% rename from src/ChFiDS/ChFiDS_ElSpine.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_ElSpine.cxx diff --git a/src/ChFiDS/ChFiDS_ElSpine.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_ElSpine.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_ElSpine.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_ElSpine.hxx diff --git a/src/ChFiDS/ChFiDS_ErrorStatus.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_ErrorStatus.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_ErrorStatus.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_ErrorStatus.hxx diff --git a/src/ChFiDS/ChFiDS_FaceInterference.cxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_FaceInterference.cxx similarity index 100% rename from src/ChFiDS/ChFiDS_FaceInterference.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_FaceInterference.cxx diff --git a/src/ChFiDS/ChFiDS_FaceInterference.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_FaceInterference.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_FaceInterference.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_FaceInterference.hxx diff --git a/src/ChFiDS/ChFiDS_FaceInterference.lxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_FaceInterference.lxx similarity index 100% rename from src/ChFiDS/ChFiDS_FaceInterference.lxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_FaceInterference.lxx diff --git a/src/ChFiDS/ChFiDS_FilSpine.cxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_FilSpine.cxx similarity index 100% rename from src/ChFiDS/ChFiDS_FilSpine.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_FilSpine.cxx diff --git a/src/ChFiDS/ChFiDS_FilSpine.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_FilSpine.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_FilSpine.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_FilSpine.hxx diff --git a/src/ChFiDS/ChFiDS_HData.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_HData.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_HData.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_HData.hxx diff --git a/src/ChFiDS/ChFiDS_IndexedDataMapOfVertexListOfStripe.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_IndexedDataMapOfVertexListOfStripe.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_IndexedDataMapOfVertexListOfStripe.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_IndexedDataMapOfVertexListOfStripe.hxx diff --git a/src/ChFiDS/ChFiDS_ListIteratorOfListOfHElSpine.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_ListIteratorOfListOfHElSpine.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_ListIteratorOfListOfHElSpine.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_ListIteratorOfListOfHElSpine.hxx diff --git a/src/ChFiDS/ChFiDS_ListIteratorOfListOfStripe.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_ListIteratorOfListOfStripe.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_ListIteratorOfListOfStripe.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_ListIteratorOfListOfStripe.hxx diff --git a/src/ChFiDS/ChFiDS_ListIteratorOfRegularities.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_ListIteratorOfRegularities.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_ListIteratorOfRegularities.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_ListIteratorOfRegularities.hxx diff --git a/src/ChFiDS/ChFiDS_ListOfHElSpine.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_ListOfHElSpine.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_ListOfHElSpine.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_ListOfHElSpine.hxx diff --git a/src/ChFiDS/ChFiDS_ListOfStripe.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_ListOfStripe.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_ListOfStripe.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_ListOfStripe.hxx diff --git a/src/ChFiDS/ChFiDS_Map.cxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_Map.cxx similarity index 100% rename from src/ChFiDS/ChFiDS_Map.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_Map.cxx diff --git a/src/ChFiDS/ChFiDS_Map.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_Map.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_Map.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_Map.hxx diff --git a/src/ChFiDS/ChFiDS_Regul.cxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_Regul.cxx similarity index 100% rename from src/ChFiDS/ChFiDS_Regul.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_Regul.cxx diff --git a/src/ChFiDS/ChFiDS_Regul.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_Regul.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_Regul.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_Regul.hxx diff --git a/src/ChFiDS/ChFiDS_Regularities.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_Regularities.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_Regularities.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_Regularities.hxx diff --git a/src/ChFiDS/ChFiDS_SecArray1.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_SecArray1.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_SecArray1.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_SecArray1.hxx diff --git a/src/ChFiDS/ChFiDS_SecHArray1.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_SecHArray1.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_SecHArray1.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_SecHArray1.hxx diff --git a/src/ChFiDS/ChFiDS_SequenceOfSpine.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_SequenceOfSpine.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_SequenceOfSpine.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_SequenceOfSpine.hxx diff --git a/src/ChFiDS/ChFiDS_SequenceOfSurfData.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_SequenceOfSurfData.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_SequenceOfSurfData.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_SequenceOfSurfData.hxx diff --git a/src/ChFiDS/ChFiDS_Spine.cxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_Spine.cxx similarity index 100% rename from src/ChFiDS/ChFiDS_Spine.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_Spine.cxx diff --git a/src/ChFiDS/ChFiDS_Spine.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_Spine.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_Spine.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_Spine.hxx diff --git a/src/ChFiDS/ChFiDS_Spine.lxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_Spine.lxx similarity index 100% rename from src/ChFiDS/ChFiDS_Spine.lxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_Spine.lxx diff --git a/src/ChFiDS/ChFiDS_State.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_State.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_State.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_State.hxx diff --git a/src/ChFiDS/ChFiDS_Stripe.cxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_Stripe.cxx similarity index 100% rename from src/ChFiDS/ChFiDS_Stripe.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_Stripe.cxx diff --git a/src/ChFiDS/ChFiDS_Stripe.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_Stripe.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_Stripe.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_Stripe.hxx diff --git a/src/ChFiDS/ChFiDS_Stripe.lxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_Stripe.lxx similarity index 100% rename from src/ChFiDS/ChFiDS_Stripe.lxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_Stripe.lxx diff --git a/src/ChFiDS/ChFiDS_StripeArray1.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_StripeArray1.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_StripeArray1.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_StripeArray1.hxx diff --git a/src/ChFiDS/ChFiDS_StripeMap.cxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_StripeMap.cxx similarity index 100% rename from src/ChFiDS/ChFiDS_StripeMap.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_StripeMap.cxx diff --git a/src/ChFiDS/ChFiDS_StripeMap.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_StripeMap.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_StripeMap.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_StripeMap.hxx diff --git a/src/ChFiDS/ChFiDS_StripeMap.lxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_StripeMap.lxx similarity index 100% rename from src/ChFiDS/ChFiDS_StripeMap.lxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_StripeMap.lxx diff --git a/src/ChFiDS/ChFiDS_SurfData.cxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_SurfData.cxx similarity index 100% rename from src/ChFiDS/ChFiDS_SurfData.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_SurfData.cxx diff --git a/src/ChFiDS/ChFiDS_SurfData.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_SurfData.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_SurfData.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_SurfData.hxx diff --git a/src/ChFiDS/ChFiDS_SurfData.lxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_SurfData.lxx similarity index 100% rename from src/ChFiDS/ChFiDS_SurfData.lxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_SurfData.lxx diff --git a/src/ChFiDS/ChFiDS_TypeOfConcavity.hxx b/src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_TypeOfConcavity.hxx similarity index 100% rename from src/ChFiDS/ChFiDS_TypeOfConcavity.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiDS/ChFiDS_TypeOfConcavity.hxx diff --git a/src/ModelingAlgorithms/TKFillet/ChFiDS/FILES.cmake b/src/ModelingAlgorithms/TKFillet/ChFiDS/FILES.cmake new file mode 100644 index 0000000000..36a5950f63 --- /dev/null +++ b/src/ModelingAlgorithms/TKFillet/ChFiDS/FILES.cmake @@ -0,0 +1,52 @@ +# Source files for ChFiDS package +set(OCCT_ChFiDS_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_ChFiDS_FILES + ChFiDS_ChamfMethod.hxx + ChFiDS_ChamfMode.hxx + ChFiDS_ChamfSpine.cxx + ChFiDS_ChamfSpine.hxx + ChFiDS_CircSection.cxx + ChFiDS_CircSection.hxx + ChFiDS_CommonPoint.cxx + ChFiDS_CommonPoint.hxx + ChFiDS_ElSpine.cxx + ChFiDS_ElSpine.hxx + ChFiDS_ErrorStatus.hxx + ChFiDS_FaceInterference.cxx + ChFiDS_FaceInterference.hxx + ChFiDS_FaceInterference.lxx + ChFiDS_FilSpine.cxx + ChFiDS_FilSpine.hxx + ChFiDS_HData.hxx + ChFiDS_IndexedDataMapOfVertexListOfStripe.hxx + ChFiDS_ListIteratorOfListOfHElSpine.hxx + ChFiDS_ListIteratorOfListOfStripe.hxx + ChFiDS_ListIteratorOfRegularities.hxx + ChFiDS_ListOfHElSpine.hxx + ChFiDS_ListOfStripe.hxx + ChFiDS_Map.cxx + ChFiDS_Map.hxx + ChFiDS_Regul.cxx + ChFiDS_Regul.hxx + ChFiDS_Regularities.hxx + ChFiDS_SecArray1.hxx + ChFiDS_SecHArray1.hxx + ChFiDS_SequenceOfSpine.hxx + ChFiDS_SequenceOfSurfData.hxx + ChFiDS_Spine.cxx + ChFiDS_Spine.hxx + ChFiDS_Spine.lxx + ChFiDS_State.hxx + ChFiDS_Stripe.cxx + ChFiDS_Stripe.hxx + ChFiDS_Stripe.lxx + ChFiDS_StripeArray1.hxx + ChFiDS_StripeMap.cxx + ChFiDS_StripeMap.hxx + ChFiDS_StripeMap.lxx + ChFiDS_SurfData.cxx + ChFiDS_SurfData.hxx + ChFiDS_SurfData.lxx + ChFiDS_TypeOfConcavity.hxx +) diff --git a/src/ChFiKPart/ChFiKPart_ComputeData.cxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData.cxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData.cxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData.hxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData.hxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData.hxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_CS.cxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_CS.cxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_CS.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_CS.cxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_CS.hxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_CS.hxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_CS.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_CS.hxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnCon.cxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnCon.cxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnCon.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnCon.cxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnCon.hxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnCon.hxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnCon.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnCon.hxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnCyl.cxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnCyl.cxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnCyl.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnCyl.cxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnCyl.hxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnCyl.hxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnCyl.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnCyl.hxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnPln.cxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnPln.cxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnPln.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnPln.cxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnPln.hxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnPln.hxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnPln.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_ChAsymPlnPln.hxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_ChPlnCon.cxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_ChPlnCon.cxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_ChPlnCon.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_ChPlnCon.cxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_ChPlnCon.hxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_ChPlnCon.hxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_ChPlnCon.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_ChPlnCon.hxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_ChPlnCyl.cxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_ChPlnCyl.cxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_ChPlnCyl.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_ChPlnCyl.cxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_ChPlnCyl.hxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_ChPlnCyl.hxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_ChPlnCyl.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_ChPlnCyl.hxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_ChPlnPln.cxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_ChPlnPln.cxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_ChPlnPln.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_ChPlnPln.cxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_ChPlnPln.hxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_ChPlnPln.hxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_ChPlnPln.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_ChPlnPln.hxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_Fcts.cxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_Fcts.cxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_Fcts.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_Fcts.cxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_Fcts.hxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_Fcts.hxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_Fcts.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_Fcts.hxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_FilPlnCon.cxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_FilPlnCon.cxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_FilPlnCon.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_FilPlnCon.cxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_FilPlnCon.hxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_FilPlnCon.hxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_FilPlnCon.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_FilPlnCon.hxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_FilPlnCyl.cxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_FilPlnCyl.cxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_FilPlnCyl.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_FilPlnCyl.cxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_FilPlnCyl.hxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_FilPlnCyl.hxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_FilPlnCyl.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_FilPlnCyl.hxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_FilPlnPln.cxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_FilPlnPln.cxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_FilPlnPln.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_FilPlnPln.cxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_FilPlnPln.hxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_FilPlnPln.hxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_FilPlnPln.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_FilPlnPln.hxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_Rotule.cxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_Rotule.cxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_Rotule.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_Rotule.cxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_Rotule.hxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_Rotule.hxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_Rotule.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_Rotule.hxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_Sphere.cxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_Sphere.cxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_Sphere.cxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_Sphere.cxx diff --git a/src/ChFiKPart/ChFiKPart_ComputeData_Sphere.hxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_Sphere.hxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_ComputeData_Sphere.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_ComputeData_Sphere.hxx diff --git a/src/ChFiKPart/ChFiKPart_DataMapIteratorOfRstMap.hxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_DataMapIteratorOfRstMap.hxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_DataMapIteratorOfRstMap.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_DataMapIteratorOfRstMap.hxx diff --git a/src/ChFiKPart/ChFiKPart_RstMap.hxx b/src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_RstMap.hxx similarity index 100% rename from src/ChFiKPart/ChFiKPart_RstMap.hxx rename to src/ModelingAlgorithms/TKFillet/ChFiKPart/ChFiKPart_RstMap.hxx diff --git a/src/ModelingAlgorithms/TKFillet/ChFiKPart/FILES.cmake b/src/ModelingAlgorithms/TKFillet/ChFiKPart/FILES.cmake new file mode 100644 index 0000000000..cd3b132856 --- /dev/null +++ b/src/ModelingAlgorithms/TKFillet/ChFiKPart/FILES.cmake @@ -0,0 +1,35 @@ +# Source files for ChFiKPart package +set(OCCT_ChFiKPart_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_ChFiKPart_FILES + ChFiKPart_ComputeData.cxx + ChFiKPart_ComputeData.hxx + ChFiKPart_ComputeData_ChAsymPlnCon.cxx + ChFiKPart_ComputeData_ChAsymPlnCon.hxx + ChFiKPart_ComputeData_ChAsymPlnCyl.cxx + ChFiKPart_ComputeData_ChAsymPlnCyl.hxx + ChFiKPart_ComputeData_ChAsymPlnPln.cxx + ChFiKPart_ComputeData_ChAsymPlnPln.hxx + ChFiKPart_ComputeData_ChPlnCon.cxx + ChFiKPart_ComputeData_ChPlnCon.hxx + ChFiKPart_ComputeData_ChPlnCyl.cxx + ChFiKPart_ComputeData_ChPlnCyl.hxx + ChFiKPart_ComputeData_ChPlnPln.cxx + ChFiKPart_ComputeData_ChPlnPln.hxx + ChFiKPart_ComputeData_CS.cxx + ChFiKPart_ComputeData_CS.hxx + ChFiKPart_ComputeData_Fcts.cxx + ChFiKPart_ComputeData_Fcts.hxx + ChFiKPart_ComputeData_FilPlnCon.cxx + ChFiKPart_ComputeData_FilPlnCon.hxx + ChFiKPart_ComputeData_FilPlnCyl.cxx + ChFiKPart_ComputeData_FilPlnCyl.hxx + ChFiKPart_ComputeData_FilPlnPln.cxx + ChFiKPart_ComputeData_FilPlnPln.hxx + ChFiKPart_ComputeData_Rotule.cxx + ChFiKPart_ComputeData_Rotule.hxx + ChFiKPart_ComputeData_Sphere.cxx + ChFiKPart_ComputeData_Sphere.hxx + ChFiKPart_DataMapIteratorOfRstMap.hxx + ChFiKPart_RstMap.hxx +) diff --git a/src/ModelingAlgorithms/TKFillet/EXTERNLIB.cmake b/src/ModelingAlgorithms/TKFillet/EXTERNLIB.cmake new file mode 100644 index 0000000000..91e63cdb51 --- /dev/null +++ b/src/ModelingAlgorithms/TKFillet/EXTERNLIB.cmake @@ -0,0 +1,14 @@ +# External dependencies for TKFillet +set(OCCT_TKFillet_EXTERNAL_LIBS + TKBRep + TKernel + TKMath + TKGeomBase + TKGeomAlgo + TKG2d + TKTopAlgo + TKG3d + TKBool + TKShHealing + TKBO +) diff --git a/src/ModelingAlgorithms/TKFillet/FILES.cmake b/src/ModelingAlgorithms/TKFillet/FILES.cmake new file mode 100644 index 0000000000..58cd50d0d4 --- /dev/null +++ b/src/ModelingAlgorithms/TKFillet/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKFillet +set(OCCT_TKFillet_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKFillet_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ModelingAlgorithms/TKFillet/FilletSurf/FILES.cmake b/src/ModelingAlgorithms/TKFillet/FilletSurf/FILES.cmake new file mode 100644 index 0000000000..793290eef5 --- /dev/null +++ b/src/ModelingAlgorithms/TKFillet/FilletSurf/FILES.cmake @@ -0,0 +1,12 @@ +# Source files for FilletSurf package +set(OCCT_FilletSurf_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_FilletSurf_FILES + FilletSurf_Builder.cxx + FilletSurf_Builder.hxx + FilletSurf_ErrorTypeStatus.hxx + FilletSurf_InternalBuilder.cxx + FilletSurf_InternalBuilder.hxx + FilletSurf_StatusDone.hxx + FilletSurf_StatusType.hxx +) diff --git a/src/FilletSurf/FilletSurf_Builder.cxx b/src/ModelingAlgorithms/TKFillet/FilletSurf/FilletSurf_Builder.cxx similarity index 100% rename from src/FilletSurf/FilletSurf_Builder.cxx rename to src/ModelingAlgorithms/TKFillet/FilletSurf/FilletSurf_Builder.cxx diff --git a/src/FilletSurf/FilletSurf_Builder.hxx b/src/ModelingAlgorithms/TKFillet/FilletSurf/FilletSurf_Builder.hxx similarity index 100% rename from src/FilletSurf/FilletSurf_Builder.hxx rename to src/ModelingAlgorithms/TKFillet/FilletSurf/FilletSurf_Builder.hxx diff --git a/src/FilletSurf/FilletSurf_ErrorTypeStatus.hxx b/src/ModelingAlgorithms/TKFillet/FilletSurf/FilletSurf_ErrorTypeStatus.hxx similarity index 100% rename from src/FilletSurf/FilletSurf_ErrorTypeStatus.hxx rename to src/ModelingAlgorithms/TKFillet/FilletSurf/FilletSurf_ErrorTypeStatus.hxx diff --git a/src/FilletSurf/FilletSurf_InternalBuilder.cxx b/src/ModelingAlgorithms/TKFillet/FilletSurf/FilletSurf_InternalBuilder.cxx similarity index 100% rename from src/FilletSurf/FilletSurf_InternalBuilder.cxx rename to src/ModelingAlgorithms/TKFillet/FilletSurf/FilletSurf_InternalBuilder.cxx diff --git a/src/FilletSurf/FilletSurf_InternalBuilder.hxx b/src/ModelingAlgorithms/TKFillet/FilletSurf/FilletSurf_InternalBuilder.hxx similarity index 100% rename from src/FilletSurf/FilletSurf_InternalBuilder.hxx rename to src/ModelingAlgorithms/TKFillet/FilletSurf/FilletSurf_InternalBuilder.hxx diff --git a/src/FilletSurf/FilletSurf_StatusDone.hxx b/src/ModelingAlgorithms/TKFillet/FilletSurf/FilletSurf_StatusDone.hxx similarity index 100% rename from src/FilletSurf/FilletSurf_StatusDone.hxx rename to src/ModelingAlgorithms/TKFillet/FilletSurf/FilletSurf_StatusDone.hxx diff --git a/src/FilletSurf/FilletSurf_StatusType.hxx b/src/ModelingAlgorithms/TKFillet/FilletSurf/FilletSurf_StatusType.hxx similarity index 100% rename from src/FilletSurf/FilletSurf_StatusType.hxx rename to src/ModelingAlgorithms/TKFillet/FilletSurf/FilletSurf_StatusType.hxx diff --git a/src/ModelingAlgorithms/TKFillet/PACKAGES.cmake b/src/ModelingAlgorithms/TKFillet/PACKAGES.cmake new file mode 100644 index 0000000000..a8a4ab37c6 --- /dev/null +++ b/src/ModelingAlgorithms/TKFillet/PACKAGES.cmake @@ -0,0 +1,12 @@ +# Auto-generated list of packages for TKFillet toolkit +set(OCCT_TKFillet_LIST_OF_PACKAGES + ChFiDS + ChFi2d + ChFi3d + ChFiKPart + Blend + BRepBlend + BlendFunc + BRepFilletAPI + FilletSurf +) diff --git a/src/AppBlend/AppBlend_AppSurf.gxx b/src/ModelingAlgorithms/TKGeomAlgo/AppBlend/AppBlend_AppSurf.gxx similarity index 100% rename from src/AppBlend/AppBlend_AppSurf.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/AppBlend/AppBlend_AppSurf.gxx diff --git a/src/AppBlend/AppBlend_AppSurf.lxx b/src/ModelingAlgorithms/TKGeomAlgo/AppBlend/AppBlend_AppSurf.lxx similarity index 100% rename from src/AppBlend/AppBlend_AppSurf.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/AppBlend/AppBlend_AppSurf.lxx diff --git a/src/AppBlend/AppBlend_Approx.cxx b/src/ModelingAlgorithms/TKGeomAlgo/AppBlend/AppBlend_Approx.cxx similarity index 100% rename from src/AppBlend/AppBlend_Approx.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/AppBlend/AppBlend_Approx.cxx diff --git a/src/AppBlend/AppBlend_Approx.hxx b/src/ModelingAlgorithms/TKGeomAlgo/AppBlend/AppBlend_Approx.hxx similarity index 100% rename from src/AppBlend/AppBlend_Approx.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/AppBlend/AppBlend_Approx.hxx diff --git a/src/AppBlend/AppBlend_Debug.cxx b/src/ModelingAlgorithms/TKGeomAlgo/AppBlend/AppBlend_Debug.cxx similarity index 100% rename from src/AppBlend/AppBlend_Debug.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/AppBlend/AppBlend_Debug.cxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/AppBlend/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/AppBlend/FILES.cmake new file mode 100644 index 0000000000..3454cb8038 --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/AppBlend/FILES.cmake @@ -0,0 +1,10 @@ +# Source files for AppBlend package +set(OCCT_AppBlend_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_AppBlend_FILES + AppBlend_Approx.cxx + AppBlend_Approx.hxx + AppBlend_AppSurf.gxx + AppBlend_AppSurf.lxx + AppBlend_Debug.cxx +) diff --git a/src/ApproxInt/ApproxInt_Approx.gxx b/src/ModelingAlgorithms/TKGeomAlgo/ApproxInt/ApproxInt_Approx.gxx similarity index 100% rename from src/ApproxInt/ApproxInt_Approx.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/ApproxInt/ApproxInt_Approx.gxx diff --git a/src/ApproxInt/ApproxInt_ImpPrmSvSurfaces.gxx b/src/ModelingAlgorithms/TKGeomAlgo/ApproxInt/ApproxInt_ImpPrmSvSurfaces.gxx similarity index 100% rename from src/ApproxInt/ApproxInt_ImpPrmSvSurfaces.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/ApproxInt/ApproxInt_ImpPrmSvSurfaces.gxx diff --git a/src/ApproxInt/ApproxInt_KnotTools.cxx b/src/ModelingAlgorithms/TKGeomAlgo/ApproxInt/ApproxInt_KnotTools.cxx similarity index 100% rename from src/ApproxInt/ApproxInt_KnotTools.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/ApproxInt/ApproxInt_KnotTools.cxx diff --git a/src/ApproxInt/ApproxInt_KnotTools.hxx b/src/ModelingAlgorithms/TKGeomAlgo/ApproxInt/ApproxInt_KnotTools.hxx similarity index 100% rename from src/ApproxInt/ApproxInt_KnotTools.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/ApproxInt/ApproxInt_KnotTools.hxx diff --git a/src/ApproxInt/ApproxInt_MultiLine.gxx b/src/ModelingAlgorithms/TKGeomAlgo/ApproxInt/ApproxInt_MultiLine.gxx similarity index 100% rename from src/ApproxInt/ApproxInt_MultiLine.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/ApproxInt/ApproxInt_MultiLine.gxx diff --git a/src/ApproxInt/ApproxInt_MultiLineTool.lxx b/src/ModelingAlgorithms/TKGeomAlgo/ApproxInt/ApproxInt_MultiLineTool.lxx similarity index 100% rename from src/ApproxInt/ApproxInt_MultiLineTool.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/ApproxInt/ApproxInt_MultiLineTool.lxx diff --git a/src/ApproxInt/ApproxInt_PrmPrmSvSurfaces.gxx b/src/ModelingAlgorithms/TKGeomAlgo/ApproxInt/ApproxInt_PrmPrmSvSurfaces.gxx similarity index 100% rename from src/ApproxInt/ApproxInt_PrmPrmSvSurfaces.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/ApproxInt/ApproxInt_PrmPrmSvSurfaces.gxx diff --git a/src/ApproxInt/ApproxInt_SvSurfaces.cxx b/src/ModelingAlgorithms/TKGeomAlgo/ApproxInt/ApproxInt_SvSurfaces.cxx similarity index 100% rename from src/ApproxInt/ApproxInt_SvSurfaces.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/ApproxInt/ApproxInt_SvSurfaces.cxx diff --git a/src/ApproxInt/ApproxInt_SvSurfaces.hxx b/src/ModelingAlgorithms/TKGeomAlgo/ApproxInt/ApproxInt_SvSurfaces.hxx similarity index 100% rename from src/ApproxInt/ApproxInt_SvSurfaces.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/ApproxInt/ApproxInt_SvSurfaces.hxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/ApproxInt/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/ApproxInt/FILES.cmake new file mode 100644 index 0000000000..a462cb5d88 --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/ApproxInt/FILES.cmake @@ -0,0 +1,14 @@ +# Source files for ApproxInt package +set(OCCT_ApproxInt_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_ApproxInt_FILES + ApproxInt_Approx.gxx + ApproxInt_ImpPrmSvSurfaces.gxx + ApproxInt_MultiLine.gxx + ApproxInt_KnotTools.hxx + ApproxInt_KnotTools.cxx + ApproxInt_MultiLineTool.lxx + ApproxInt_PrmPrmSvSurfaces.gxx + ApproxInt_SvSurfaces.cxx + ApproxInt_SvSurfaces.hxx +) diff --git a/src/TKGeomAlgo/CMakeLists.txt b/src/ModelingAlgorithms/TKGeomAlgo/CMakeLists.txt similarity index 100% rename from src/TKGeomAlgo/CMakeLists.txt rename to src/ModelingAlgorithms/TKGeomAlgo/CMakeLists.txt diff --git a/src/ModelingAlgorithms/TKGeomAlgo/EXTERNLIB.cmake b/src/ModelingAlgorithms/TKGeomAlgo/EXTERNLIB.cmake new file mode 100644 index 0000000000..3bd10d3f87 --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/EXTERNLIB.cmake @@ -0,0 +1,9 @@ +# External dependencies for TKGeomAlgo +set(OCCT_TKGeomAlgo_EXTERNAL_LIBS + TKernel + TKMath + TKG3d + TKG2d + TKGeomBase + TKBRep +) diff --git a/src/ModelingAlgorithms/TKGeomAlgo/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/FILES.cmake new file mode 100644 index 0000000000..4ad88de903 --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKGeomAlgo +set(OCCT_TKGeomAlgo_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKGeomAlgo_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FILES.cmake new file mode 100644 index 0000000000..46e5f33488 --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FILES.cmake @@ -0,0 +1,35 @@ +# Source files for FairCurve package +set(OCCT_FairCurve_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_FairCurve_FILES + FairCurve_AnalysisCode.hxx + FairCurve_Batten.cxx + FairCurve_Batten.hxx + FairCurve_Batten.lxx + FairCurve_BattenLaw.cxx + FairCurve_BattenLaw.hxx + FairCurve_BattenLaw.lxx + FairCurve_DistributionOfEnergy.cxx + FairCurve_DistributionOfEnergy.hxx + FairCurve_DistributionOfJerk.cxx + FairCurve_DistributionOfJerk.hxx + FairCurve_DistributionOfSagging.cxx + FairCurve_DistributionOfSagging.hxx + FairCurve_DistributionOfTension.cxx + FairCurve_DistributionOfTension.hxx + FairCurve_DistributionOfTension.lxx + FairCurve_Energy.cxx + FairCurve_Energy.hxx + FairCurve_Energy.lxx + FairCurve_EnergyOfBatten.cxx + FairCurve_EnergyOfBatten.hxx + FairCurve_EnergyOfBatten.lxx + FairCurve_EnergyOfMVC.cxx + FairCurve_EnergyOfMVC.hxx + FairCurve_EnergyOfMVC.lxx + FairCurve_MinimalVariation.cxx + FairCurve_MinimalVariation.hxx + FairCurve_MinimalVariation.lxx + FairCurve_Newton.cxx + FairCurve_Newton.hxx +) diff --git a/src/FairCurve/FairCurve_AnalysisCode.hxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_AnalysisCode.hxx similarity index 100% rename from src/FairCurve/FairCurve_AnalysisCode.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_AnalysisCode.hxx diff --git a/src/FairCurve/FairCurve_Batten.cxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_Batten.cxx similarity index 100% rename from src/FairCurve/FairCurve_Batten.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_Batten.cxx diff --git a/src/FairCurve/FairCurve_Batten.hxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_Batten.hxx similarity index 100% rename from src/FairCurve/FairCurve_Batten.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_Batten.hxx diff --git a/src/FairCurve/FairCurve_Batten.lxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_Batten.lxx similarity index 100% rename from src/FairCurve/FairCurve_Batten.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_Batten.lxx diff --git a/src/FairCurve/FairCurve_BattenLaw.cxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_BattenLaw.cxx similarity index 100% rename from src/FairCurve/FairCurve_BattenLaw.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_BattenLaw.cxx diff --git a/src/FairCurve/FairCurve_BattenLaw.hxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_BattenLaw.hxx similarity index 100% rename from src/FairCurve/FairCurve_BattenLaw.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_BattenLaw.hxx diff --git a/src/FairCurve/FairCurve_BattenLaw.lxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_BattenLaw.lxx similarity index 100% rename from src/FairCurve/FairCurve_BattenLaw.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_BattenLaw.lxx diff --git a/src/FairCurve/FairCurve_DistributionOfEnergy.cxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_DistributionOfEnergy.cxx similarity index 100% rename from src/FairCurve/FairCurve_DistributionOfEnergy.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_DistributionOfEnergy.cxx diff --git a/src/FairCurve/FairCurve_DistributionOfEnergy.hxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_DistributionOfEnergy.hxx similarity index 100% rename from src/FairCurve/FairCurve_DistributionOfEnergy.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_DistributionOfEnergy.hxx diff --git a/src/FairCurve/FairCurve_DistributionOfJerk.cxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_DistributionOfJerk.cxx similarity index 100% rename from src/FairCurve/FairCurve_DistributionOfJerk.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_DistributionOfJerk.cxx diff --git a/src/FairCurve/FairCurve_DistributionOfJerk.hxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_DistributionOfJerk.hxx similarity index 100% rename from src/FairCurve/FairCurve_DistributionOfJerk.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_DistributionOfJerk.hxx diff --git a/src/FairCurve/FairCurve_DistributionOfSagging.cxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_DistributionOfSagging.cxx similarity index 100% rename from src/FairCurve/FairCurve_DistributionOfSagging.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_DistributionOfSagging.cxx diff --git a/src/FairCurve/FairCurve_DistributionOfSagging.hxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_DistributionOfSagging.hxx similarity index 100% rename from src/FairCurve/FairCurve_DistributionOfSagging.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_DistributionOfSagging.hxx diff --git a/src/FairCurve/FairCurve_DistributionOfTension.cxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_DistributionOfTension.cxx similarity index 100% rename from src/FairCurve/FairCurve_DistributionOfTension.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_DistributionOfTension.cxx diff --git a/src/FairCurve/FairCurve_DistributionOfTension.hxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_DistributionOfTension.hxx similarity index 100% rename from src/FairCurve/FairCurve_DistributionOfTension.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_DistributionOfTension.hxx diff --git a/src/FairCurve/FairCurve_DistributionOfTension.lxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_DistributionOfTension.lxx similarity index 100% rename from src/FairCurve/FairCurve_DistributionOfTension.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_DistributionOfTension.lxx diff --git a/src/FairCurve/FairCurve_Energy.cxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_Energy.cxx similarity index 100% rename from src/FairCurve/FairCurve_Energy.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_Energy.cxx diff --git a/src/FairCurve/FairCurve_Energy.hxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_Energy.hxx similarity index 100% rename from src/FairCurve/FairCurve_Energy.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_Energy.hxx diff --git a/src/FairCurve/FairCurve_Energy.lxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_Energy.lxx similarity index 100% rename from src/FairCurve/FairCurve_Energy.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_Energy.lxx diff --git a/src/FairCurve/FairCurve_EnergyOfBatten.cxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_EnergyOfBatten.cxx similarity index 100% rename from src/FairCurve/FairCurve_EnergyOfBatten.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_EnergyOfBatten.cxx diff --git a/src/FairCurve/FairCurve_EnergyOfBatten.hxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_EnergyOfBatten.hxx similarity index 100% rename from src/FairCurve/FairCurve_EnergyOfBatten.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_EnergyOfBatten.hxx diff --git a/src/FairCurve/FairCurve_EnergyOfBatten.lxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_EnergyOfBatten.lxx similarity index 100% rename from src/FairCurve/FairCurve_EnergyOfBatten.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_EnergyOfBatten.lxx diff --git a/src/FairCurve/FairCurve_EnergyOfMVC.cxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_EnergyOfMVC.cxx similarity index 100% rename from src/FairCurve/FairCurve_EnergyOfMVC.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_EnergyOfMVC.cxx diff --git a/src/FairCurve/FairCurve_EnergyOfMVC.hxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_EnergyOfMVC.hxx similarity index 100% rename from src/FairCurve/FairCurve_EnergyOfMVC.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_EnergyOfMVC.hxx diff --git a/src/FairCurve/FairCurve_EnergyOfMVC.lxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_EnergyOfMVC.lxx similarity index 100% rename from src/FairCurve/FairCurve_EnergyOfMVC.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_EnergyOfMVC.lxx diff --git a/src/FairCurve/FairCurve_MinimalVariation.cxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_MinimalVariation.cxx similarity index 100% rename from src/FairCurve/FairCurve_MinimalVariation.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_MinimalVariation.cxx diff --git a/src/FairCurve/FairCurve_MinimalVariation.hxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_MinimalVariation.hxx similarity index 100% rename from src/FairCurve/FairCurve_MinimalVariation.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_MinimalVariation.hxx diff --git a/src/FairCurve/FairCurve_MinimalVariation.lxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_MinimalVariation.lxx similarity index 100% rename from src/FairCurve/FairCurve_MinimalVariation.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_MinimalVariation.lxx diff --git a/src/FairCurve/FairCurve_Newton.cxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_Newton.cxx similarity index 100% rename from src/FairCurve/FairCurve_Newton.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_Newton.cxx diff --git a/src/FairCurve/FairCurve_Newton.hxx b/src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_Newton.hxx similarity index 100% rename from src/FairCurve/FairCurve_Newton.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/FairCurve/FairCurve_Newton.hxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/GccAna/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/FILES.cmake new file mode 100644 index 0000000000..f802dbaccb --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/FILES.cmake @@ -0,0 +1,66 @@ +# Source files for GccAna package +set(OCCT_GccAna_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_GccAna_FILES + GccAna_Circ2d2TanOn.cxx + GccAna_Circ2d2TanOn.hxx + GccAna_Circ2d2TanOn_1.cxx + GccAna_Circ2d2TanOn_2.cxx + GccAna_Circ2d2TanOn_3.cxx + GccAna_Circ2d2TanOn_4.cxx + GccAna_Circ2d2TanOn_5.cxx + GccAna_Circ2d2TanOn_6.cxx + GccAna_Circ2d2TanOn_7.cxx + GccAna_Circ2d2TanOn_8.cxx + GccAna_Circ2d2TanOn_9.cxx + GccAna_Circ2d2TanOn_10.cxx + GccAna_Circ2d2TanOn_11.cxx + GccAna_Circ2d2TanRad.cxx + GccAna_Circ2d2TanRad.hxx + GccAna_Circ2d2TanRad_1.cxx + GccAna_Circ2d2TanRad_2.cxx + GccAna_Circ2d2TanRad_3.cxx + GccAna_Circ2d2TanRad_4.cxx + GccAna_Circ2d2TanRad_5.cxx + GccAna_Circ2d3Tan.cxx + GccAna_Circ2d3Tan.hxx + GccAna_Circ2d3Tan_1.cxx + GccAna_Circ2d3Tan_2.cxx + GccAna_Circ2d3Tan_3.cxx + GccAna_Circ2d3Tan_4.cxx + GccAna_Circ2d3Tan_5.cxx + GccAna_Circ2d3Tan_6.cxx + GccAna_Circ2d3Tan_7.cxx + GccAna_Circ2d3Tan_8.cxx + GccAna_Circ2d3Tan_9.cxx + GccAna_Circ2dBisec.cxx + GccAna_Circ2dBisec.hxx + GccAna_Circ2dTanCen.cxx + GccAna_Circ2dTanCen.hxx + GccAna_Circ2dTanOnRad.cxx + GccAna_Circ2dTanOnRad.hxx + GccAna_Circ2dTanOnRad_1.cxx + GccAna_Circ2dTanOnRad_2.cxx + GccAna_Circ2dTanOnRad_3.cxx + GccAna_Circ2dTanOnRad_4.cxx + GccAna_Circ2dTanOnRad_5.cxx + GccAna_CircLin2dBisec.cxx + GccAna_CircLin2dBisec.hxx + GccAna_CircPnt2dBisec.cxx + GccAna_CircPnt2dBisec.hxx + GccAna_Lin2d2Tan.cxx + GccAna_Lin2d2Tan.hxx + GccAna_Lin2dBisec.cxx + GccAna_Lin2dBisec.hxx + GccAna_Lin2dTanObl.cxx + GccAna_Lin2dTanObl.hxx + GccAna_Lin2dTanPar.cxx + GccAna_Lin2dTanPar.hxx + GccAna_Lin2dTanPer.cxx + GccAna_Lin2dTanPer.hxx + GccAna_LinPnt2dBisec.cxx + GccAna_LinPnt2dBisec.hxx + GccAna_NoSolution.hxx + GccAna_Pnt2dBisec.cxx + GccAna_Pnt2dBisec.hxx +) diff --git a/src/GccAna/GccAna_Circ2d2TanOn.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d2TanOn.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn.cxx diff --git a/src/GccAna/GccAna_Circ2d2TanOn.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn.hxx similarity index 100% rename from src/GccAna/GccAna_Circ2d2TanOn.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn.hxx diff --git a/src/GccAna/GccAna_Circ2d2TanOn_1.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn_1.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d2TanOn_1.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn_1.cxx diff --git a/src/GccAna/GccAna_Circ2d2TanOn_10.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn_10.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d2TanOn_10.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn_10.cxx diff --git a/src/GccAna/GccAna_Circ2d2TanOn_11.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn_11.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d2TanOn_11.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn_11.cxx diff --git a/src/GccAna/GccAna_Circ2d2TanOn_2.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn_2.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d2TanOn_2.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn_2.cxx diff --git a/src/GccAna/GccAna_Circ2d2TanOn_3.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn_3.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d2TanOn_3.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn_3.cxx diff --git a/src/GccAna/GccAna_Circ2d2TanOn_4.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn_4.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d2TanOn_4.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn_4.cxx diff --git a/src/GccAna/GccAna_Circ2d2TanOn_5.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn_5.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d2TanOn_5.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn_5.cxx diff --git a/src/GccAna/GccAna_Circ2d2TanOn_6.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn_6.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d2TanOn_6.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn_6.cxx diff --git a/src/GccAna/GccAna_Circ2d2TanOn_7.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn_7.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d2TanOn_7.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn_7.cxx diff --git a/src/GccAna/GccAna_Circ2d2TanOn_8.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn_8.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d2TanOn_8.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn_8.cxx diff --git a/src/GccAna/GccAna_Circ2d2TanOn_9.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn_9.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d2TanOn_9.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanOn_9.cxx diff --git a/src/GccAna/GccAna_Circ2d2TanRad.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanRad.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d2TanRad.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanRad.cxx diff --git a/src/GccAna/GccAna_Circ2d2TanRad.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanRad.hxx similarity index 100% rename from src/GccAna/GccAna_Circ2d2TanRad.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanRad.hxx diff --git a/src/GccAna/GccAna_Circ2d2TanRad_1.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanRad_1.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d2TanRad_1.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanRad_1.cxx diff --git a/src/GccAna/GccAna_Circ2d2TanRad_2.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanRad_2.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d2TanRad_2.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanRad_2.cxx diff --git a/src/GccAna/GccAna_Circ2d2TanRad_3.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanRad_3.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d2TanRad_3.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanRad_3.cxx diff --git a/src/GccAna/GccAna_Circ2d2TanRad_4.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanRad_4.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d2TanRad_4.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanRad_4.cxx diff --git a/src/GccAna/GccAna_Circ2d2TanRad_5.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanRad_5.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d2TanRad_5.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d2TanRad_5.cxx diff --git a/src/GccAna/GccAna_Circ2d3Tan.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d3Tan.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d3Tan.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d3Tan.cxx diff --git a/src/GccAna/GccAna_Circ2d3Tan.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d3Tan.hxx similarity index 100% rename from src/GccAna/GccAna_Circ2d3Tan.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d3Tan.hxx diff --git a/src/GccAna/GccAna_Circ2d3Tan_1.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d3Tan_1.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d3Tan_1.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d3Tan_1.cxx diff --git a/src/GccAna/GccAna_Circ2d3Tan_2.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d3Tan_2.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d3Tan_2.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d3Tan_2.cxx diff --git a/src/GccAna/GccAna_Circ2d3Tan_3.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d3Tan_3.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d3Tan_3.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d3Tan_3.cxx diff --git a/src/GccAna/GccAna_Circ2d3Tan_4.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d3Tan_4.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d3Tan_4.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d3Tan_4.cxx diff --git a/src/GccAna/GccAna_Circ2d3Tan_5.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d3Tan_5.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d3Tan_5.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d3Tan_5.cxx diff --git a/src/GccAna/GccAna_Circ2d3Tan_6.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d3Tan_6.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d3Tan_6.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d3Tan_6.cxx diff --git a/src/GccAna/GccAna_Circ2d3Tan_7.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d3Tan_7.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d3Tan_7.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d3Tan_7.cxx diff --git a/src/GccAna/GccAna_Circ2d3Tan_8.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d3Tan_8.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d3Tan_8.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d3Tan_8.cxx diff --git a/src/GccAna/GccAna_Circ2d3Tan_9.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d3Tan_9.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2d3Tan_9.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2d3Tan_9.cxx diff --git a/src/GccAna/GccAna_Circ2dBisec.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2dBisec.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2dBisec.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2dBisec.cxx diff --git a/src/GccAna/GccAna_Circ2dBisec.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2dBisec.hxx similarity index 100% rename from src/GccAna/GccAna_Circ2dBisec.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2dBisec.hxx diff --git a/src/GccAna/GccAna_Circ2dTanCen.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2dTanCen.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2dTanCen.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2dTanCen.cxx diff --git a/src/GccAna/GccAna_Circ2dTanCen.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2dTanCen.hxx similarity index 100% rename from src/GccAna/GccAna_Circ2dTanCen.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2dTanCen.hxx diff --git a/src/GccAna/GccAna_Circ2dTanOnRad.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2dTanOnRad.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2dTanOnRad.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2dTanOnRad.cxx diff --git a/src/GccAna/GccAna_Circ2dTanOnRad.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2dTanOnRad.hxx similarity index 100% rename from src/GccAna/GccAna_Circ2dTanOnRad.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2dTanOnRad.hxx diff --git a/src/GccAna/GccAna_Circ2dTanOnRad_1.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2dTanOnRad_1.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2dTanOnRad_1.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2dTanOnRad_1.cxx diff --git a/src/GccAna/GccAna_Circ2dTanOnRad_2.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2dTanOnRad_2.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2dTanOnRad_2.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2dTanOnRad_2.cxx diff --git a/src/GccAna/GccAna_Circ2dTanOnRad_3.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2dTanOnRad_3.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2dTanOnRad_3.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2dTanOnRad_3.cxx diff --git a/src/GccAna/GccAna_Circ2dTanOnRad_4.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2dTanOnRad_4.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2dTanOnRad_4.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2dTanOnRad_4.cxx diff --git a/src/GccAna/GccAna_Circ2dTanOnRad_5.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2dTanOnRad_5.cxx similarity index 100% rename from src/GccAna/GccAna_Circ2dTanOnRad_5.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Circ2dTanOnRad_5.cxx diff --git a/src/GccAna/GccAna_CircLin2dBisec.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_CircLin2dBisec.cxx similarity index 100% rename from src/GccAna/GccAna_CircLin2dBisec.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_CircLin2dBisec.cxx diff --git a/src/GccAna/GccAna_CircLin2dBisec.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_CircLin2dBisec.hxx similarity index 100% rename from src/GccAna/GccAna_CircLin2dBisec.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_CircLin2dBisec.hxx diff --git a/src/GccAna/GccAna_CircPnt2dBisec.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_CircPnt2dBisec.cxx similarity index 100% rename from src/GccAna/GccAna_CircPnt2dBisec.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_CircPnt2dBisec.cxx diff --git a/src/GccAna/GccAna_CircPnt2dBisec.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_CircPnt2dBisec.hxx similarity index 100% rename from src/GccAna/GccAna_CircPnt2dBisec.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_CircPnt2dBisec.hxx diff --git a/src/GccAna/GccAna_Lin2d2Tan.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Lin2d2Tan.cxx similarity index 100% rename from src/GccAna/GccAna_Lin2d2Tan.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Lin2d2Tan.cxx diff --git a/src/GccAna/GccAna_Lin2d2Tan.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Lin2d2Tan.hxx similarity index 100% rename from src/GccAna/GccAna_Lin2d2Tan.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Lin2d2Tan.hxx diff --git a/src/GccAna/GccAna_Lin2dBisec.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Lin2dBisec.cxx similarity index 100% rename from src/GccAna/GccAna_Lin2dBisec.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Lin2dBisec.cxx diff --git a/src/GccAna/GccAna_Lin2dBisec.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Lin2dBisec.hxx similarity index 100% rename from src/GccAna/GccAna_Lin2dBisec.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Lin2dBisec.hxx diff --git a/src/GccAna/GccAna_Lin2dTanObl.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Lin2dTanObl.cxx similarity index 100% rename from src/GccAna/GccAna_Lin2dTanObl.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Lin2dTanObl.cxx diff --git a/src/GccAna/GccAna_Lin2dTanObl.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Lin2dTanObl.hxx similarity index 100% rename from src/GccAna/GccAna_Lin2dTanObl.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Lin2dTanObl.hxx diff --git a/src/GccAna/GccAna_Lin2dTanPar.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Lin2dTanPar.cxx similarity index 100% rename from src/GccAna/GccAna_Lin2dTanPar.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Lin2dTanPar.cxx diff --git a/src/GccAna/GccAna_Lin2dTanPar.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Lin2dTanPar.hxx similarity index 100% rename from src/GccAna/GccAna_Lin2dTanPar.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Lin2dTanPar.hxx diff --git a/src/GccAna/GccAna_Lin2dTanPer.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Lin2dTanPer.cxx similarity index 100% rename from src/GccAna/GccAna_Lin2dTanPer.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Lin2dTanPer.cxx diff --git a/src/GccAna/GccAna_Lin2dTanPer.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Lin2dTanPer.hxx similarity index 100% rename from src/GccAna/GccAna_Lin2dTanPer.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Lin2dTanPer.hxx diff --git a/src/GccAna/GccAna_LinPnt2dBisec.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_LinPnt2dBisec.cxx similarity index 100% rename from src/GccAna/GccAna_LinPnt2dBisec.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_LinPnt2dBisec.cxx diff --git a/src/GccAna/GccAna_LinPnt2dBisec.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_LinPnt2dBisec.hxx similarity index 100% rename from src/GccAna/GccAna_LinPnt2dBisec.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_LinPnt2dBisec.hxx diff --git a/src/GccAna/GccAna_NoSolution.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_NoSolution.hxx similarity index 100% rename from src/GccAna/GccAna_NoSolution.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_NoSolution.hxx diff --git a/src/GccAna/GccAna_Pnt2dBisec.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Pnt2dBisec.cxx similarity index 100% rename from src/GccAna/GccAna_Pnt2dBisec.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Pnt2dBisec.cxx diff --git a/src/GccAna/GccAna_Pnt2dBisec.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Pnt2dBisec.hxx similarity index 100% rename from src/GccAna/GccAna_Pnt2dBisec.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccAna/GccAna_Pnt2dBisec.hxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/GccEnt/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/GccEnt/FILES.cmake new file mode 100644 index 0000000000..bef89130ef --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/GccEnt/FILES.cmake @@ -0,0 +1,14 @@ +# Source files for GccEnt package +set(OCCT_GccEnt_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_GccEnt_FILES + GccEnt.cxx + GccEnt.hxx + GccEnt_Array1OfPosition.hxx + GccEnt_BadQualifier.hxx + GccEnt_Position.hxx + GccEnt_QualifiedCirc.cxx + GccEnt_QualifiedCirc.hxx + GccEnt_QualifiedLin.cxx + GccEnt_QualifiedLin.hxx +) diff --git a/src/GccEnt/GccEnt.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccEnt/GccEnt.cxx similarity index 100% rename from src/GccEnt/GccEnt.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccEnt/GccEnt.cxx diff --git a/src/GccEnt/GccEnt.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccEnt/GccEnt.hxx similarity index 100% rename from src/GccEnt/GccEnt.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccEnt/GccEnt.hxx diff --git a/src/GccEnt/GccEnt_Array1OfPosition.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccEnt/GccEnt_Array1OfPosition.hxx similarity index 100% rename from src/GccEnt/GccEnt_Array1OfPosition.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccEnt/GccEnt_Array1OfPosition.hxx diff --git a/src/GccEnt/GccEnt_BadQualifier.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccEnt/GccEnt_BadQualifier.hxx similarity index 100% rename from src/GccEnt/GccEnt_BadQualifier.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccEnt/GccEnt_BadQualifier.hxx diff --git a/src/GccEnt/GccEnt_Position.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccEnt/GccEnt_Position.hxx similarity index 100% rename from src/GccEnt/GccEnt_Position.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccEnt/GccEnt_Position.hxx diff --git a/src/GccEnt/GccEnt_QualifiedCirc.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccEnt/GccEnt_QualifiedCirc.cxx similarity index 100% rename from src/GccEnt/GccEnt_QualifiedCirc.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccEnt/GccEnt_QualifiedCirc.cxx diff --git a/src/GccEnt/GccEnt_QualifiedCirc.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccEnt/GccEnt_QualifiedCirc.hxx similarity index 100% rename from src/GccEnt/GccEnt_QualifiedCirc.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccEnt/GccEnt_QualifiedCirc.hxx diff --git a/src/GccEnt/GccEnt_QualifiedLin.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccEnt/GccEnt_QualifiedLin.cxx similarity index 100% rename from src/GccEnt/GccEnt_QualifiedLin.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccEnt/GccEnt_QualifiedLin.cxx diff --git a/src/GccEnt/GccEnt_QualifiedLin.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccEnt/GccEnt_QualifiedLin.hxx similarity index 100% rename from src/GccEnt/GccEnt_QualifiedLin.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccEnt/GccEnt_QualifiedLin.hxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/GccInt/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/GccInt/FILES.cmake new file mode 100644 index 0000000000..c9bf9cecc3 --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/GccInt/FILES.cmake @@ -0,0 +1,20 @@ +# Source files for GccInt package +set(OCCT_GccInt_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_GccInt_FILES + GccInt_BCirc.cxx + GccInt_BCirc.hxx + GccInt_BElips.cxx + GccInt_BElips.hxx + GccInt_BHyper.cxx + GccInt_BHyper.hxx + GccInt_Bisec.cxx + GccInt_Bisec.hxx + GccInt_BLine.cxx + GccInt_BLine.hxx + GccInt_BParab.cxx + GccInt_BParab.hxx + GccInt_BPoint.cxx + GccInt_BPoint.hxx + GccInt_IType.hxx +) diff --git a/src/GccInt/GccInt_BCirc.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_BCirc.cxx similarity index 100% rename from src/GccInt/GccInt_BCirc.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_BCirc.cxx diff --git a/src/GccInt/GccInt_BCirc.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_BCirc.hxx similarity index 100% rename from src/GccInt/GccInt_BCirc.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_BCirc.hxx diff --git a/src/GccInt/GccInt_BElips.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_BElips.cxx similarity index 100% rename from src/GccInt/GccInt_BElips.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_BElips.cxx diff --git a/src/GccInt/GccInt_BElips.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_BElips.hxx similarity index 100% rename from src/GccInt/GccInt_BElips.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_BElips.hxx diff --git a/src/GccInt/GccInt_BHyper.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_BHyper.cxx similarity index 100% rename from src/GccInt/GccInt_BHyper.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_BHyper.cxx diff --git a/src/GccInt/GccInt_BHyper.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_BHyper.hxx similarity index 100% rename from src/GccInt/GccInt_BHyper.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_BHyper.hxx diff --git a/src/GccInt/GccInt_BLine.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_BLine.cxx similarity index 100% rename from src/GccInt/GccInt_BLine.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_BLine.cxx diff --git a/src/GccInt/GccInt_BLine.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_BLine.hxx similarity index 100% rename from src/GccInt/GccInt_BLine.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_BLine.hxx diff --git a/src/GccInt/GccInt_BParab.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_BParab.cxx similarity index 100% rename from src/GccInt/GccInt_BParab.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_BParab.cxx diff --git a/src/GccInt/GccInt_BParab.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_BParab.hxx similarity index 100% rename from src/GccInt/GccInt_BParab.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_BParab.hxx diff --git a/src/GccInt/GccInt_BPoint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_BPoint.cxx similarity index 100% rename from src/GccInt/GccInt_BPoint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_BPoint.cxx diff --git a/src/GccInt/GccInt_BPoint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_BPoint.hxx similarity index 100% rename from src/GccInt/GccInt_BPoint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_BPoint.hxx diff --git a/src/GccInt/GccInt_Bisec.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_Bisec.cxx similarity index 100% rename from src/GccInt/GccInt_Bisec.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_Bisec.cxx diff --git a/src/GccInt/GccInt_Bisec.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_Bisec.hxx similarity index 100% rename from src/GccInt/GccInt_Bisec.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_Bisec.hxx diff --git a/src/GccInt/GccInt_IType.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_IType.hxx similarity index 100% rename from src/GccInt/GccInt_IType.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GccInt/GccInt_IType.hxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/FILES.cmake new file mode 100644 index 0000000000..2df7f89526 --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/FILES.cmake @@ -0,0 +1,18 @@ +# Source files for Geom2dAPI package +set(OCCT_Geom2dAPI_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Geom2dAPI_FILES + Geom2dAPI_ExtremaCurveCurve.cxx + Geom2dAPI_ExtremaCurveCurve.hxx + Geom2dAPI_ExtremaCurveCurve.lxx + Geom2dAPI_InterCurveCurve.cxx + Geom2dAPI_InterCurveCurve.hxx + Geom2dAPI_InterCurveCurve.lxx + Geom2dAPI_Interpolate.cxx + Geom2dAPI_Interpolate.hxx + Geom2dAPI_PointsToBSpline.cxx + Geom2dAPI_PointsToBSpline.hxx + Geom2dAPI_ProjectPointOnCurve.cxx + Geom2dAPI_ProjectPointOnCurve.hxx + Geom2dAPI_ProjectPointOnCurve.lxx +) diff --git a/src/Geom2dAPI/Geom2dAPI_ExtremaCurveCurve.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_ExtremaCurveCurve.cxx similarity index 100% rename from src/Geom2dAPI/Geom2dAPI_ExtremaCurveCurve.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_ExtremaCurveCurve.cxx diff --git a/src/Geom2dAPI/Geom2dAPI_ExtremaCurveCurve.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_ExtremaCurveCurve.hxx similarity index 100% rename from src/Geom2dAPI/Geom2dAPI_ExtremaCurveCurve.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_ExtremaCurveCurve.hxx diff --git a/src/Geom2dAPI/Geom2dAPI_ExtremaCurveCurve.lxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_ExtremaCurveCurve.lxx similarity index 100% rename from src/Geom2dAPI/Geom2dAPI_ExtremaCurveCurve.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_ExtremaCurveCurve.lxx diff --git a/src/Geom2dAPI/Geom2dAPI_InterCurveCurve.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_InterCurveCurve.cxx similarity index 100% rename from src/Geom2dAPI/Geom2dAPI_InterCurveCurve.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_InterCurveCurve.cxx diff --git a/src/Geom2dAPI/Geom2dAPI_InterCurveCurve.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_InterCurveCurve.hxx similarity index 100% rename from src/Geom2dAPI/Geom2dAPI_InterCurveCurve.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_InterCurveCurve.hxx diff --git a/src/Geom2dAPI/Geom2dAPI_InterCurveCurve.lxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_InterCurveCurve.lxx similarity index 100% rename from src/Geom2dAPI/Geom2dAPI_InterCurveCurve.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_InterCurveCurve.lxx diff --git a/src/Geom2dAPI/Geom2dAPI_Interpolate.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_Interpolate.cxx similarity index 100% rename from src/Geom2dAPI/Geom2dAPI_Interpolate.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_Interpolate.cxx diff --git a/src/Geom2dAPI/Geom2dAPI_Interpolate.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_Interpolate.hxx similarity index 100% rename from src/Geom2dAPI/Geom2dAPI_Interpolate.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_Interpolate.hxx diff --git a/src/Geom2dAPI/Geom2dAPI_PointsToBSpline.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_PointsToBSpline.cxx similarity index 100% rename from src/Geom2dAPI/Geom2dAPI_PointsToBSpline.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_PointsToBSpline.cxx diff --git a/src/Geom2dAPI/Geom2dAPI_PointsToBSpline.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_PointsToBSpline.hxx similarity index 100% rename from src/Geom2dAPI/Geom2dAPI_PointsToBSpline.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_PointsToBSpline.hxx diff --git a/src/Geom2dAPI/Geom2dAPI_ProjectPointOnCurve.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_ProjectPointOnCurve.cxx similarity index 100% rename from src/Geom2dAPI/Geom2dAPI_ProjectPointOnCurve.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_ProjectPointOnCurve.cxx diff --git a/src/Geom2dAPI/Geom2dAPI_ProjectPointOnCurve.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_ProjectPointOnCurve.hxx similarity index 100% rename from src/Geom2dAPI/Geom2dAPI_ProjectPointOnCurve.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_ProjectPointOnCurve.hxx diff --git a/src/Geom2dAPI/Geom2dAPI_ProjectPointOnCurve.lxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_ProjectPointOnCurve.lxx similarity index 100% rename from src/Geom2dAPI/Geom2dAPI_ProjectPointOnCurve.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dAPI/Geom2dAPI_ProjectPointOnCurve.lxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/FILES.cmake new file mode 100644 index 0000000000..bee5b24ae8 --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/FILES.cmake @@ -0,0 +1,59 @@ +# Source files for Geom2dGcc package +set(OCCT_Geom2dGcc_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Geom2dGcc_FILES + Geom2dGcc.cxx + Geom2dGcc.hxx + Geom2dGcc_Circ2d2TanOn.cxx + Geom2dGcc_Circ2d2TanOn.hxx + Geom2dGcc_Circ2d2TanOnGeo.cxx + Geom2dGcc_Circ2d2TanOnGeo.hxx + Geom2dGcc_Circ2d2TanOnIter.cxx + Geom2dGcc_Circ2d2TanOnIter.hxx + Geom2dGcc_Circ2d2TanRad.cxx + Geom2dGcc_Circ2d2TanRad.hxx + Geom2dGcc_Circ2d2TanRadGeo.cxx + Geom2dGcc_Circ2d2TanRadGeo.hxx + Geom2dGcc_Circ2d3Tan.cxx + Geom2dGcc_Circ2d3Tan.hxx + Geom2dGcc_Circ2d3TanIter.cxx + Geom2dGcc_Circ2d3TanIter.hxx + Geom2dGcc_Circ2dTanCen.cxx + Geom2dGcc_Circ2dTanCen.hxx + Geom2dGcc_Circ2dTanCenGeo.cxx + Geom2dGcc_Circ2dTanCenGeo.hxx + Geom2dGcc_Circ2dTanOnRad.cxx + Geom2dGcc_Circ2dTanOnRad.hxx + Geom2dGcc_Circ2dTanOnRadGeo.cxx + Geom2dGcc_Circ2dTanOnRadGeo.hxx + Geom2dGcc_CurveTool.cxx + Geom2dGcc_CurveTool.hxx + Geom2dGcc_FunctionTanCirCu.cxx + Geom2dGcc_FunctionTanCirCu.hxx + Geom2dGcc_FunctionTanCuCu.cxx + Geom2dGcc_FunctionTanCuCu.hxx + Geom2dGcc_FunctionTanCuCuCu.cxx + Geom2dGcc_FunctionTanCuCuCu.hxx + Geom2dGcc_FunctionTanCuCuOnCu.cxx + Geom2dGcc_FunctionTanCuCuOnCu.hxx + Geom2dGcc_FunctionTanCuPnt.cxx + Geom2dGcc_FunctionTanCuPnt.hxx + Geom2dGcc_FunctionTanObl.cxx + Geom2dGcc_FunctionTanObl.hxx + Geom2dGcc_IsParallel.hxx + Geom2dGcc_Lin2d2Tan.cxx + Geom2dGcc_Lin2d2Tan.hxx + Geom2dGcc_Lin2d2TanIter.cxx + Geom2dGcc_Lin2d2TanIter.hxx + Geom2dGcc_Lin2dTanObl.cxx + Geom2dGcc_Lin2dTanObl.hxx + Geom2dGcc_Lin2dTanOblIter.cxx + Geom2dGcc_Lin2dTanOblIter.hxx + Geom2dGcc_QCurve.cxx + Geom2dGcc_QCurve.hxx + Geom2dGcc_QualifiedCurve.cxx + Geom2dGcc_QualifiedCurve.hxx + Geom2dGcc_Type1.hxx + Geom2dGcc_Type2.hxx + Geom2dGcc_Type3.hxx +) diff --git a/src/Geom2dGcc/Geom2dGcc.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc.cxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc.cxx diff --git a/src/Geom2dGcc/Geom2dGcc.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2d2TanOn.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d2TanOn.cxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Circ2d2TanOn.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d2TanOn.cxx diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2d2TanOn.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d2TanOn.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Circ2d2TanOn.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d2TanOn.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2d2TanOnGeo.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d2TanOnGeo.cxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Circ2d2TanOnGeo.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d2TanOnGeo.cxx diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2d2TanOnGeo.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d2TanOnGeo.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Circ2d2TanOnGeo.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d2TanOnGeo.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2d2TanOnIter.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d2TanOnIter.cxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Circ2d2TanOnIter.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d2TanOnIter.cxx diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2d2TanOnIter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d2TanOnIter.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Circ2d2TanOnIter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d2TanOnIter.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2d2TanRad.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d2TanRad.cxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Circ2d2TanRad.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d2TanRad.cxx diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2d2TanRad.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d2TanRad.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Circ2d2TanRad.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d2TanRad.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2d2TanRadGeo.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d2TanRadGeo.cxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Circ2d2TanRadGeo.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d2TanRadGeo.cxx diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2d2TanRadGeo.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d2TanRadGeo.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Circ2d2TanRadGeo.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d2TanRadGeo.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2d3Tan.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d3Tan.cxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Circ2d3Tan.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d3Tan.cxx diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2d3Tan.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d3Tan.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Circ2d3Tan.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d3Tan.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2d3TanIter.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d3TanIter.cxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Circ2d3TanIter.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d3TanIter.cxx diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2d3TanIter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d3TanIter.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Circ2d3TanIter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2d3TanIter.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2dTanCen.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2dTanCen.cxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Circ2dTanCen.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2dTanCen.cxx diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2dTanCen.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2dTanCen.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Circ2dTanCen.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2dTanCen.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2dTanCenGeo.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2dTanCenGeo.cxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Circ2dTanCenGeo.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2dTanCenGeo.cxx diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2dTanCenGeo.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2dTanCenGeo.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Circ2dTanCenGeo.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2dTanCenGeo.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2dTanOnRad.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2dTanOnRad.cxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Circ2dTanOnRad.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2dTanOnRad.cxx diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2dTanOnRad.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2dTanOnRad.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Circ2dTanOnRad.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2dTanOnRad.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2dTanOnRadGeo.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2dTanOnRadGeo.cxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Circ2dTanOnRadGeo.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2dTanOnRadGeo.cxx diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2dTanOnRadGeo.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2dTanOnRadGeo.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Circ2dTanOnRadGeo.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Circ2dTanOnRadGeo.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_CurveTool.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_CurveTool.cxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_CurveTool.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_CurveTool.cxx diff --git a/src/Geom2dGcc/Geom2dGcc_CurveTool.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_CurveTool.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_CurveTool.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_CurveTool.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_FunctionTanCirCu.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_FunctionTanCirCu.cxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_FunctionTanCirCu.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_FunctionTanCirCu.cxx diff --git a/src/Geom2dGcc/Geom2dGcc_FunctionTanCirCu.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_FunctionTanCirCu.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_FunctionTanCirCu.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_FunctionTanCirCu.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_FunctionTanCuCu.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_FunctionTanCuCu.cxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_FunctionTanCuCu.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_FunctionTanCuCu.cxx diff --git a/src/Geom2dGcc/Geom2dGcc_FunctionTanCuCu.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_FunctionTanCuCu.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_FunctionTanCuCu.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_FunctionTanCuCu.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_FunctionTanCuCuCu.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_FunctionTanCuCuCu.cxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_FunctionTanCuCuCu.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_FunctionTanCuCuCu.cxx diff --git a/src/Geom2dGcc/Geom2dGcc_FunctionTanCuCuCu.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_FunctionTanCuCuCu.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_FunctionTanCuCuCu.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_FunctionTanCuCuCu.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_FunctionTanCuCuOnCu.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_FunctionTanCuCuOnCu.cxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_FunctionTanCuCuOnCu.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_FunctionTanCuCuOnCu.cxx diff --git a/src/Geom2dGcc/Geom2dGcc_FunctionTanCuCuOnCu.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_FunctionTanCuCuOnCu.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_FunctionTanCuCuOnCu.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_FunctionTanCuCuOnCu.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_FunctionTanCuPnt.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_FunctionTanCuPnt.cxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_FunctionTanCuPnt.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_FunctionTanCuPnt.cxx diff --git a/src/Geom2dGcc/Geom2dGcc_FunctionTanCuPnt.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_FunctionTanCuPnt.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_FunctionTanCuPnt.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_FunctionTanCuPnt.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_FunctionTanObl.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_FunctionTanObl.cxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_FunctionTanObl.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_FunctionTanObl.cxx diff --git a/src/Geom2dGcc/Geom2dGcc_FunctionTanObl.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_FunctionTanObl.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_FunctionTanObl.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_FunctionTanObl.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_IsParallel.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_IsParallel.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_IsParallel.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_IsParallel.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_Lin2d2Tan.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Lin2d2Tan.cxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Lin2d2Tan.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Lin2d2Tan.cxx diff --git a/src/Geom2dGcc/Geom2dGcc_Lin2d2Tan.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Lin2d2Tan.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Lin2d2Tan.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Lin2d2Tan.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_Lin2d2TanIter.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Lin2d2TanIter.cxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Lin2d2TanIter.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Lin2d2TanIter.cxx diff --git a/src/Geom2dGcc/Geom2dGcc_Lin2d2TanIter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Lin2d2TanIter.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Lin2d2TanIter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Lin2d2TanIter.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_Lin2dTanObl.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Lin2dTanObl.cxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Lin2dTanObl.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Lin2dTanObl.cxx diff --git a/src/Geom2dGcc/Geom2dGcc_Lin2dTanObl.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Lin2dTanObl.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Lin2dTanObl.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Lin2dTanObl.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_Lin2dTanOblIter.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Lin2dTanOblIter.cxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Lin2dTanOblIter.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Lin2dTanOblIter.cxx diff --git a/src/Geom2dGcc/Geom2dGcc_Lin2dTanOblIter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Lin2dTanOblIter.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Lin2dTanOblIter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Lin2dTanOblIter.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_QCurve.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_QCurve.cxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_QCurve.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_QCurve.cxx diff --git a/src/Geom2dGcc/Geom2dGcc_QCurve.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_QCurve.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_QCurve.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_QCurve.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_QualifiedCurve.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_QualifiedCurve.cxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_QualifiedCurve.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_QualifiedCurve.cxx diff --git a/src/Geom2dGcc/Geom2dGcc_QualifiedCurve.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_QualifiedCurve.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_QualifiedCurve.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_QualifiedCurve.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_Type1.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Type1.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Type1.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Type1.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_Type2.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Type2.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Type2.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Type2.hxx diff --git a/src/Geom2dGcc/Geom2dGcc_Type3.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Type3.hxx similarity index 100% rename from src/Geom2dGcc/Geom2dGcc_Type3.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dGcc/Geom2dGcc_Type3.hxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/FILES.cmake new file mode 100644 index 0000000000..c13d7ef8be --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/FILES.cmake @@ -0,0 +1,25 @@ +# Source files for Geom2dHatch package +set(OCCT_Geom2dHatch_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Geom2dHatch_FILES + Geom2dHatch_Classifier.hxx + Geom2dHatch_Classifier_0.cxx + Geom2dHatch_DataMapIteratorOfHatchings.hxx + Geom2dHatch_DataMapIteratorOfMapOfElements.hxx + Geom2dHatch_Element.cxx + Geom2dHatch_Element.hxx + Geom2dHatch_Elements.cxx + Geom2dHatch_Elements.hxx + Geom2dHatch_FClass2dOfClassifier.hxx + Geom2dHatch_FClass2dOfClassifier_0.cxx + Geom2dHatch_Hatcher.cxx + Geom2dHatch_Hatcher.hxx + Geom2dHatch_Hatcher.lxx + Geom2dHatch_Hatching.cxx + Geom2dHatch_Hatching.hxx + Geom2dHatch_Hatchings.hxx + Geom2dHatch_Intersector.cxx + Geom2dHatch_Intersector.hxx + Geom2dHatch_Intersector.lxx + Geom2dHatch_MapOfElements.hxx +) diff --git a/src/Geom2dHatch/Geom2dHatch_Classifier.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Classifier.hxx similarity index 100% rename from src/Geom2dHatch/Geom2dHatch_Classifier.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Classifier.hxx diff --git a/src/Geom2dHatch/Geom2dHatch_Classifier_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Classifier_0.cxx similarity index 100% rename from src/Geom2dHatch/Geom2dHatch_Classifier_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Classifier_0.cxx diff --git a/src/Geom2dHatch/Geom2dHatch_DataMapIteratorOfHatchings.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_DataMapIteratorOfHatchings.hxx similarity index 100% rename from src/Geom2dHatch/Geom2dHatch_DataMapIteratorOfHatchings.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_DataMapIteratorOfHatchings.hxx diff --git a/src/Geom2dHatch/Geom2dHatch_DataMapIteratorOfMapOfElements.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_DataMapIteratorOfMapOfElements.hxx similarity index 100% rename from src/Geom2dHatch/Geom2dHatch_DataMapIteratorOfMapOfElements.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_DataMapIteratorOfMapOfElements.hxx diff --git a/src/Geom2dHatch/Geom2dHatch_Element.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Element.cxx similarity index 100% rename from src/Geom2dHatch/Geom2dHatch_Element.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Element.cxx diff --git a/src/Geom2dHatch/Geom2dHatch_Element.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Element.hxx similarity index 100% rename from src/Geom2dHatch/Geom2dHatch_Element.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Element.hxx diff --git a/src/Geom2dHatch/Geom2dHatch_Elements.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Elements.cxx similarity index 100% rename from src/Geom2dHatch/Geom2dHatch_Elements.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Elements.cxx diff --git a/src/Geom2dHatch/Geom2dHatch_Elements.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Elements.hxx similarity index 100% rename from src/Geom2dHatch/Geom2dHatch_Elements.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Elements.hxx diff --git a/src/Geom2dHatch/Geom2dHatch_FClass2dOfClassifier.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_FClass2dOfClassifier.hxx similarity index 100% rename from src/Geom2dHatch/Geom2dHatch_FClass2dOfClassifier.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_FClass2dOfClassifier.hxx diff --git a/src/Geom2dHatch/Geom2dHatch_FClass2dOfClassifier_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_FClass2dOfClassifier_0.cxx similarity index 100% rename from src/Geom2dHatch/Geom2dHatch_FClass2dOfClassifier_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_FClass2dOfClassifier_0.cxx diff --git a/src/Geom2dHatch/Geom2dHatch_Hatcher.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Hatcher.cxx similarity index 100% rename from src/Geom2dHatch/Geom2dHatch_Hatcher.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Hatcher.cxx diff --git a/src/Geom2dHatch/Geom2dHatch_Hatcher.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Hatcher.hxx similarity index 100% rename from src/Geom2dHatch/Geom2dHatch_Hatcher.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Hatcher.hxx diff --git a/src/Geom2dHatch/Geom2dHatch_Hatcher.lxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Hatcher.lxx similarity index 100% rename from src/Geom2dHatch/Geom2dHatch_Hatcher.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Hatcher.lxx diff --git a/src/Geom2dHatch/Geom2dHatch_Hatching.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Hatching.cxx similarity index 100% rename from src/Geom2dHatch/Geom2dHatch_Hatching.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Hatching.cxx diff --git a/src/Geom2dHatch/Geom2dHatch_Hatching.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Hatching.hxx similarity index 100% rename from src/Geom2dHatch/Geom2dHatch_Hatching.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Hatching.hxx diff --git a/src/Geom2dHatch/Geom2dHatch_Hatchings.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Hatchings.hxx similarity index 100% rename from src/Geom2dHatch/Geom2dHatch_Hatchings.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Hatchings.hxx diff --git a/src/Geom2dHatch/Geom2dHatch_Intersector.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Intersector.cxx similarity index 100% rename from src/Geom2dHatch/Geom2dHatch_Intersector.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Intersector.cxx diff --git a/src/Geom2dHatch/Geom2dHatch_Intersector.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Intersector.hxx similarity index 100% rename from src/Geom2dHatch/Geom2dHatch_Intersector.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Intersector.hxx diff --git a/src/Geom2dHatch/Geom2dHatch_Intersector.lxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Intersector.lxx similarity index 100% rename from src/Geom2dHatch/Geom2dHatch_Intersector.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_Intersector.lxx diff --git a/src/Geom2dHatch/Geom2dHatch_MapOfElements.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_MapOfElements.hxx similarity index 100% rename from src/Geom2dHatch/Geom2dHatch_MapOfElements.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dHatch/Geom2dHatch_MapOfElements.hxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/FILES.cmake new file mode 100644 index 0000000000..4452ffb279 --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/FILES.cmake @@ -0,0 +1,34 @@ +# Source files for Geom2dInt package +set(OCCT_Geom2dInt_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Geom2dInt_FILES + Geom2dInt_ExactIntersectionPointOfTheIntPCurvePCurveOfGInter.hxx + Geom2dInt_ExactIntersectionPointOfTheIntPCurvePCurveOfGInter_0.cxx + Geom2dInt_Geom2dCurveTool.cxx + Geom2dInt_Geom2dCurveTool.hxx + Geom2dInt_Geom2dCurveTool.lxx + Geom2dInt_GInter.hxx + Geom2dInt_GInter_0.cxx + Geom2dInt_IntConicCurveOfGInter.hxx + Geom2dInt_IntConicCurveOfGInter_0.cxx + Geom2dInt_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfGInter.hxx + Geom2dInt_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfGInter_0.cxx + Geom2dInt_PCLocFOfTheLocateExtPCOfTheProjPCurOfGInter.hxx + Geom2dInt_PCLocFOfTheLocateExtPCOfTheProjPCurOfGInter_0.cxx + Geom2dInt_TheCurveLocatorOfTheProjPCurOfGInter.hxx + Geom2dInt_TheCurveLocatorOfTheProjPCurOfGInter_0.cxx + Geom2dInt_TheDistBetweenPCurvesOfTheIntPCurvePCurveOfGInter.hxx + Geom2dInt_TheDistBetweenPCurvesOfTheIntPCurvePCurveOfGInter_0.cxx + Geom2dInt_TheIntConicCurveOfGInter.hxx + Geom2dInt_TheIntConicCurveOfGInter_0.cxx + Geom2dInt_TheIntersectorOfTheIntConicCurveOfGInter.hxx + Geom2dInt_TheIntersectorOfTheIntConicCurveOfGInter_0.cxx + Geom2dInt_TheIntPCurvePCurveOfGInter.hxx + Geom2dInt_TheIntPCurvePCurveOfGInter_0.cxx + Geom2dInt_TheLocateExtPCOfTheProjPCurOfGInter.hxx + Geom2dInt_TheLocateExtPCOfTheProjPCurOfGInter_0.cxx + Geom2dInt_ThePolygon2dOfTheIntPCurvePCurveOfGInter.hxx + Geom2dInt_ThePolygon2dOfTheIntPCurvePCurveOfGInter_0.cxx + Geom2dInt_TheProjPCurOfGInter.hxx + Geom2dInt_TheProjPCurOfGInter_0.cxx +) diff --git a/src/Geom2dInt/Geom2dInt_ExactIntersectionPointOfTheIntPCurvePCurveOfGInter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_ExactIntersectionPointOfTheIntPCurvePCurveOfGInter.hxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_ExactIntersectionPointOfTheIntPCurvePCurveOfGInter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_ExactIntersectionPointOfTheIntPCurvePCurveOfGInter.hxx diff --git a/src/Geom2dInt/Geom2dInt_ExactIntersectionPointOfTheIntPCurvePCurveOfGInter_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_ExactIntersectionPointOfTheIntPCurvePCurveOfGInter_0.cxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_ExactIntersectionPointOfTheIntPCurvePCurveOfGInter_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_ExactIntersectionPointOfTheIntPCurvePCurveOfGInter_0.cxx diff --git a/src/Geom2dInt/Geom2dInt_GInter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_GInter.hxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_GInter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_GInter.hxx diff --git a/src/Geom2dInt/Geom2dInt_GInter_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_GInter_0.cxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_GInter_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_GInter_0.cxx diff --git a/src/Geom2dInt/Geom2dInt_Geom2dCurveTool.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_Geom2dCurveTool.cxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_Geom2dCurveTool.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_Geom2dCurveTool.cxx diff --git a/src/Geom2dInt/Geom2dInt_Geom2dCurveTool.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_Geom2dCurveTool.hxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_Geom2dCurveTool.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_Geom2dCurveTool.hxx diff --git a/src/Geom2dInt/Geom2dInt_Geom2dCurveTool.lxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_Geom2dCurveTool.lxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_Geom2dCurveTool.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_Geom2dCurveTool.lxx diff --git a/src/Geom2dInt/Geom2dInt_IntConicCurveOfGInter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_IntConicCurveOfGInter.hxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_IntConicCurveOfGInter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_IntConicCurveOfGInter.hxx diff --git a/src/Geom2dInt/Geom2dInt_IntConicCurveOfGInter_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_IntConicCurveOfGInter_0.cxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_IntConicCurveOfGInter_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_IntConicCurveOfGInter_0.cxx diff --git a/src/Geom2dInt/Geom2dInt_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfGInter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfGInter.hxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfGInter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfGInter.hxx diff --git a/src/Geom2dInt/Geom2dInt_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfGInter_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfGInter_0.cxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfGInter_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfGInter_0.cxx diff --git a/src/Geom2dInt/Geom2dInt_PCLocFOfTheLocateExtPCOfTheProjPCurOfGInter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_PCLocFOfTheLocateExtPCOfTheProjPCurOfGInter.hxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_PCLocFOfTheLocateExtPCOfTheProjPCurOfGInter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_PCLocFOfTheLocateExtPCOfTheProjPCurOfGInter.hxx diff --git a/src/Geom2dInt/Geom2dInt_PCLocFOfTheLocateExtPCOfTheProjPCurOfGInter_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_PCLocFOfTheLocateExtPCOfTheProjPCurOfGInter_0.cxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_PCLocFOfTheLocateExtPCOfTheProjPCurOfGInter_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_PCLocFOfTheLocateExtPCOfTheProjPCurOfGInter_0.cxx diff --git a/src/Geom2dInt/Geom2dInt_TheCurveLocatorOfTheProjPCurOfGInter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheCurveLocatorOfTheProjPCurOfGInter.hxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_TheCurveLocatorOfTheProjPCurOfGInter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheCurveLocatorOfTheProjPCurOfGInter.hxx diff --git a/src/Geom2dInt/Geom2dInt_TheCurveLocatorOfTheProjPCurOfGInter_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheCurveLocatorOfTheProjPCurOfGInter_0.cxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_TheCurveLocatorOfTheProjPCurOfGInter_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheCurveLocatorOfTheProjPCurOfGInter_0.cxx diff --git a/src/Geom2dInt/Geom2dInt_TheDistBetweenPCurvesOfTheIntPCurvePCurveOfGInter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheDistBetweenPCurvesOfTheIntPCurvePCurveOfGInter.hxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_TheDistBetweenPCurvesOfTheIntPCurvePCurveOfGInter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheDistBetweenPCurvesOfTheIntPCurvePCurveOfGInter.hxx diff --git a/src/Geom2dInt/Geom2dInt_TheDistBetweenPCurvesOfTheIntPCurvePCurveOfGInter_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheDistBetweenPCurvesOfTheIntPCurvePCurveOfGInter_0.cxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_TheDistBetweenPCurvesOfTheIntPCurvePCurveOfGInter_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheDistBetweenPCurvesOfTheIntPCurvePCurveOfGInter_0.cxx diff --git a/src/Geom2dInt/Geom2dInt_TheIntConicCurveOfGInter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheIntConicCurveOfGInter.hxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_TheIntConicCurveOfGInter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheIntConicCurveOfGInter.hxx diff --git a/src/Geom2dInt/Geom2dInt_TheIntConicCurveOfGInter_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheIntConicCurveOfGInter_0.cxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_TheIntConicCurveOfGInter_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheIntConicCurveOfGInter_0.cxx diff --git a/src/Geom2dInt/Geom2dInt_TheIntPCurvePCurveOfGInter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheIntPCurvePCurveOfGInter.hxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_TheIntPCurvePCurveOfGInter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheIntPCurvePCurveOfGInter.hxx diff --git a/src/Geom2dInt/Geom2dInt_TheIntPCurvePCurveOfGInter_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheIntPCurvePCurveOfGInter_0.cxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_TheIntPCurvePCurveOfGInter_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheIntPCurvePCurveOfGInter_0.cxx diff --git a/src/Geom2dInt/Geom2dInt_TheIntersectorOfTheIntConicCurveOfGInter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheIntersectorOfTheIntConicCurveOfGInter.hxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_TheIntersectorOfTheIntConicCurveOfGInter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheIntersectorOfTheIntConicCurveOfGInter.hxx diff --git a/src/Geom2dInt/Geom2dInt_TheIntersectorOfTheIntConicCurveOfGInter_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheIntersectorOfTheIntConicCurveOfGInter_0.cxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_TheIntersectorOfTheIntConicCurveOfGInter_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheIntersectorOfTheIntConicCurveOfGInter_0.cxx diff --git a/src/Geom2dInt/Geom2dInt_TheLocateExtPCOfTheProjPCurOfGInter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheLocateExtPCOfTheProjPCurOfGInter.hxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_TheLocateExtPCOfTheProjPCurOfGInter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheLocateExtPCOfTheProjPCurOfGInter.hxx diff --git a/src/Geom2dInt/Geom2dInt_TheLocateExtPCOfTheProjPCurOfGInter_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheLocateExtPCOfTheProjPCurOfGInter_0.cxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_TheLocateExtPCOfTheProjPCurOfGInter_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheLocateExtPCOfTheProjPCurOfGInter_0.cxx diff --git a/src/Geom2dInt/Geom2dInt_ThePolygon2dOfTheIntPCurvePCurveOfGInter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_ThePolygon2dOfTheIntPCurvePCurveOfGInter.hxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_ThePolygon2dOfTheIntPCurvePCurveOfGInter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_ThePolygon2dOfTheIntPCurvePCurveOfGInter.hxx diff --git a/src/Geom2dInt/Geom2dInt_ThePolygon2dOfTheIntPCurvePCurveOfGInter_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_ThePolygon2dOfTheIntPCurvePCurveOfGInter_0.cxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_ThePolygon2dOfTheIntPCurvePCurveOfGInter_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_ThePolygon2dOfTheIntPCurvePCurveOfGInter_0.cxx diff --git a/src/Geom2dInt/Geom2dInt_TheProjPCurOfGInter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheProjPCurOfGInter.hxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_TheProjPCurOfGInter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheProjPCurOfGInter.hxx diff --git a/src/Geom2dInt/Geom2dInt_TheProjPCurOfGInter_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheProjPCurOfGInter_0.cxx similarity index 100% rename from src/Geom2dInt/Geom2dInt_TheProjPCurOfGInter_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Geom2dInt/Geom2dInt_TheProjPCurOfGInter_0.cxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/FILES.cmake new file mode 100644 index 0000000000..e7582c671b --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/FILES.cmake @@ -0,0 +1,32 @@ +# Source files for GeomAPI package +set(OCCT_GeomAPI_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_GeomAPI_FILES + GeomAPI.cxx + GeomAPI.hxx + GeomAPI_ExtremaCurveCurve.cxx + GeomAPI_ExtremaCurveCurve.hxx + GeomAPI_ExtremaCurveCurve.lxx + GeomAPI_ExtremaCurveSurface.cxx + GeomAPI_ExtremaCurveSurface.hxx + GeomAPI_ExtremaCurveSurface.lxx + GeomAPI_ExtremaSurfaceSurface.cxx + GeomAPI_ExtremaSurfaceSurface.hxx + GeomAPI_ExtremaSurfaceSurface.lxx + GeomAPI_IntCS.cxx + GeomAPI_IntCS.hxx + GeomAPI_Interpolate.cxx + GeomAPI_Interpolate.hxx + GeomAPI_IntSS.hxx + GeomAPI_IntSS.lxx + GeomAPI_PointsToBSpline.cxx + GeomAPI_PointsToBSpline.hxx + GeomAPI_PointsToBSplineSurface.cxx + GeomAPI_PointsToBSplineSurface.hxx + GeomAPI_ProjectPointOnCurve.cxx + GeomAPI_ProjectPointOnCurve.hxx + GeomAPI_ProjectPointOnCurve.lxx + GeomAPI_ProjectPointOnSurf.cxx + GeomAPI_ProjectPointOnSurf.hxx + GeomAPI_ProjectPointOnSurf.lxx +) diff --git a/src/GeomAPI/GeomAPI.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI.cxx similarity index 100% rename from src/GeomAPI/GeomAPI.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI.cxx diff --git a/src/GeomAPI/GeomAPI.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI.hxx similarity index 100% rename from src/GeomAPI/GeomAPI.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI.hxx diff --git a/src/GeomAPI/GeomAPI_ExtremaCurveCurve.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ExtremaCurveCurve.cxx similarity index 100% rename from src/GeomAPI/GeomAPI_ExtremaCurveCurve.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ExtremaCurveCurve.cxx diff --git a/src/GeomAPI/GeomAPI_ExtremaCurveCurve.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ExtremaCurveCurve.hxx similarity index 100% rename from src/GeomAPI/GeomAPI_ExtremaCurveCurve.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ExtremaCurveCurve.hxx diff --git a/src/GeomAPI/GeomAPI_ExtremaCurveCurve.lxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ExtremaCurveCurve.lxx similarity index 100% rename from src/GeomAPI/GeomAPI_ExtremaCurveCurve.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ExtremaCurveCurve.lxx diff --git a/src/GeomAPI/GeomAPI_ExtremaCurveSurface.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ExtremaCurveSurface.cxx similarity index 100% rename from src/GeomAPI/GeomAPI_ExtremaCurveSurface.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ExtremaCurveSurface.cxx diff --git a/src/GeomAPI/GeomAPI_ExtremaCurveSurface.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ExtremaCurveSurface.hxx similarity index 100% rename from src/GeomAPI/GeomAPI_ExtremaCurveSurface.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ExtremaCurveSurface.hxx diff --git a/src/GeomAPI/GeomAPI_ExtremaCurveSurface.lxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ExtremaCurveSurface.lxx similarity index 100% rename from src/GeomAPI/GeomAPI_ExtremaCurveSurface.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ExtremaCurveSurface.lxx diff --git a/src/GeomAPI/GeomAPI_ExtremaSurfaceSurface.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ExtremaSurfaceSurface.cxx similarity index 100% rename from src/GeomAPI/GeomAPI_ExtremaSurfaceSurface.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ExtremaSurfaceSurface.cxx diff --git a/src/GeomAPI/GeomAPI_ExtremaSurfaceSurface.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ExtremaSurfaceSurface.hxx similarity index 100% rename from src/GeomAPI/GeomAPI_ExtremaSurfaceSurface.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ExtremaSurfaceSurface.hxx diff --git a/src/GeomAPI/GeomAPI_ExtremaSurfaceSurface.lxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ExtremaSurfaceSurface.lxx similarity index 100% rename from src/GeomAPI/GeomAPI_ExtremaSurfaceSurface.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ExtremaSurfaceSurface.lxx diff --git a/src/GeomAPI/GeomAPI_IntCS.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_IntCS.cxx similarity index 100% rename from src/GeomAPI/GeomAPI_IntCS.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_IntCS.cxx diff --git a/src/GeomAPI/GeomAPI_IntCS.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_IntCS.hxx similarity index 100% rename from src/GeomAPI/GeomAPI_IntCS.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_IntCS.hxx diff --git a/src/GeomAPI/GeomAPI_IntSS.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_IntSS.hxx similarity index 100% rename from src/GeomAPI/GeomAPI_IntSS.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_IntSS.hxx diff --git a/src/GeomAPI/GeomAPI_IntSS.lxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_IntSS.lxx similarity index 100% rename from src/GeomAPI/GeomAPI_IntSS.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_IntSS.lxx diff --git a/src/GeomAPI/GeomAPI_Interpolate.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_Interpolate.cxx similarity index 100% rename from src/GeomAPI/GeomAPI_Interpolate.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_Interpolate.cxx diff --git a/src/GeomAPI/GeomAPI_Interpolate.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_Interpolate.hxx similarity index 100% rename from src/GeomAPI/GeomAPI_Interpolate.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_Interpolate.hxx diff --git a/src/GeomAPI/GeomAPI_PointsToBSpline.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_PointsToBSpline.cxx similarity index 100% rename from src/GeomAPI/GeomAPI_PointsToBSpline.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_PointsToBSpline.cxx diff --git a/src/GeomAPI/GeomAPI_PointsToBSpline.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_PointsToBSpline.hxx similarity index 100% rename from src/GeomAPI/GeomAPI_PointsToBSpline.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_PointsToBSpline.hxx diff --git a/src/GeomAPI/GeomAPI_PointsToBSplineSurface.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_PointsToBSplineSurface.cxx similarity index 100% rename from src/GeomAPI/GeomAPI_PointsToBSplineSurface.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_PointsToBSplineSurface.cxx diff --git a/src/GeomAPI/GeomAPI_PointsToBSplineSurface.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_PointsToBSplineSurface.hxx similarity index 100% rename from src/GeomAPI/GeomAPI_PointsToBSplineSurface.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_PointsToBSplineSurface.hxx diff --git a/src/GeomAPI/GeomAPI_ProjectPointOnCurve.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ProjectPointOnCurve.cxx similarity index 100% rename from src/GeomAPI/GeomAPI_ProjectPointOnCurve.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ProjectPointOnCurve.cxx diff --git a/src/GeomAPI/GeomAPI_ProjectPointOnCurve.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ProjectPointOnCurve.hxx similarity index 100% rename from src/GeomAPI/GeomAPI_ProjectPointOnCurve.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ProjectPointOnCurve.hxx diff --git a/src/GeomAPI/GeomAPI_ProjectPointOnCurve.lxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ProjectPointOnCurve.lxx similarity index 100% rename from src/GeomAPI/GeomAPI_ProjectPointOnCurve.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ProjectPointOnCurve.lxx diff --git a/src/GeomAPI/GeomAPI_ProjectPointOnSurf.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ProjectPointOnSurf.cxx similarity index 100% rename from src/GeomAPI/GeomAPI_ProjectPointOnSurf.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ProjectPointOnSurf.cxx diff --git a/src/GeomAPI/GeomAPI_ProjectPointOnSurf.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ProjectPointOnSurf.hxx similarity index 100% rename from src/GeomAPI/GeomAPI_ProjectPointOnSurf.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ProjectPointOnSurf.hxx diff --git a/src/GeomAPI/GeomAPI_ProjectPointOnSurf.lxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ProjectPointOnSurf.lxx similarity index 100% rename from src/GeomAPI/GeomAPI_ProjectPointOnSurf.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomAPI/GeomAPI_ProjectPointOnSurf.lxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/FILES.cmake new file mode 100644 index 0000000000..e7f85b94a8 --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/FILES.cmake @@ -0,0 +1,134 @@ +# Source files for GeomFill package +set(OCCT_GeomFill_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_GeomFill_FILES + GeomFill.cxx + GeomFill.hxx + GeomFill_ApproxStyle.hxx + GeomFill_AppSurf.hxx + GeomFill_AppSurf_0.cxx + GeomFill_AppSweep.hxx + GeomFill_AppSweep_0.cxx + GeomFill_Array1OfLocationLaw.hxx + GeomFill_Array1OfSectionLaw.hxx + GeomFill_BezierCurves.cxx + GeomFill_BezierCurves.hxx + GeomFill_BezierCurves.lxx + GeomFill_Boundary.cxx + GeomFill_Boundary.hxx + GeomFill_BoundWithSurf.cxx + GeomFill_BoundWithSurf.hxx + GeomFill_BSplineCurves.cxx + GeomFill_BSplineCurves.hxx + GeomFill_BSplineCurves.lxx + GeomFill_CircularBlendFunc.cxx + GeomFill_CircularBlendFunc.hxx + GeomFill_ConstantBiNormal.cxx + GeomFill_ConstantBiNormal.hxx + GeomFill_ConstrainedFilling.cxx + GeomFill_ConstrainedFilling.hxx + GeomFill_Coons.cxx + GeomFill_Coons.hxx + GeomFill_CoonsAlgPatch.cxx + GeomFill_CoonsAlgPatch.hxx + GeomFill_CornerState.cxx + GeomFill_CornerState.hxx + GeomFill_CorrectedFrenet.cxx + GeomFill_CorrectedFrenet.hxx + GeomFill_CurveAndTrihedron.cxx + GeomFill_CurveAndTrihedron.hxx + GeomFill_Curved.cxx + GeomFill_Curved.hxx + GeomFill_Darboux.cxx + GeomFill_Darboux.hxx + GeomFill_DegeneratedBound.cxx + GeomFill_DegeneratedBound.hxx + GeomFill_DiscreteTrihedron.cxx + GeomFill_DiscreteTrihedron.hxx + GeomFill_DraftTrihedron.cxx + GeomFill_DraftTrihedron.hxx + GeomFill_EvolvedSection.cxx + GeomFill_EvolvedSection.hxx + GeomFill_Filling.cxx + GeomFill_Filling.hxx + GeomFill_FillingStyle.hxx + GeomFill_Fixed.cxx + GeomFill_Fixed.hxx + GeomFill_Frenet.cxx + GeomFill_Frenet.hxx + GeomFill_FunctionDraft.cxx + GeomFill_FunctionDraft.hxx + GeomFill_FunctionGuide.cxx + GeomFill_FunctionGuide.hxx + GeomFill_Generator.cxx + GeomFill_Generator.hxx + GeomFill_Generator.lxx + GeomFill_GuideTrihedronAC.cxx + GeomFill_GuideTrihedronAC.hxx + GeomFill_GuideTrihedronPlan.cxx + GeomFill_GuideTrihedronPlan.hxx + GeomFill_HArray1OfLocationLaw.hxx + GeomFill_HArray1OfSectionLaw.hxx + GeomFill_HSequenceOfAx2.hxx + GeomFill_Line.cxx + GeomFill_Line.hxx + GeomFill_Line.lxx + GeomFill_LocationDraft.cxx + GeomFill_LocationDraft.hxx + GeomFill_LocationGuide.cxx + GeomFill_LocationGuide.hxx + GeomFill_LocationLaw.cxx + GeomFill_LocationLaw.hxx + GeomFill_LocFunction.cxx + GeomFill_LocFunction.hxx + GeomFill_NSections.cxx + GeomFill_NSections.hxx + GeomFill_Pipe.cxx + GeomFill_Pipe.hxx + GeomFill_Pipe.lxx + GeomFill_PipeError.hxx + GeomFill_PlanFunc.cxx + GeomFill_PlanFunc.hxx + GeomFill_PolynomialConvertor.cxx + GeomFill_PolynomialConvertor.hxx + GeomFill_Profiler.cxx + GeomFill_Profiler.hxx + GeomFill_Profiler.lxx + GeomFill_QuasiAngularConvertor.cxx + GeomFill_QuasiAngularConvertor.hxx + GeomFill_SectionGenerator.cxx + GeomFill_SectionGenerator.hxx + GeomFill_SectionLaw.cxx + GeomFill_SectionLaw.hxx + GeomFill_SectionPlacement.cxx + GeomFill_SectionPlacement.hxx + GeomFill_SequenceOfAx2.hxx + GeomFill_SequenceOfTrsf.hxx + GeomFill_SimpleBound.cxx + GeomFill_SimpleBound.hxx + GeomFill_SnglrFunc.cxx + GeomFill_SnglrFunc.hxx + GeomFill_Stretch.cxx + GeomFill_Stretch.hxx + GeomFill_Sweep.cxx + GeomFill_Sweep.hxx + GeomFill_SweepFunction.cxx + GeomFill_SweepFunction.hxx + GeomFill_SweepSectionGenerator.cxx + GeomFill_SweepSectionGenerator.hxx + GeomFill_SweepSectionGenerator.lxx + GeomFill_Tensor.cxx + GeomFill_Tensor.hxx + GeomFill_Tensor.lxx + GeomFill_TgtField.cxx + GeomFill_TgtField.hxx + GeomFill_TgtOnCoons.cxx + GeomFill_TgtOnCoons.hxx + GeomFill_Trihedron.hxx + GeomFill_TrihedronLaw.cxx + GeomFill_TrihedronLaw.hxx + GeomFill_TrihedronWithGuide.cxx + GeomFill_TrihedronWithGuide.hxx + GeomFill_UniformSection.cxx + GeomFill_UniformSection.hxx +) diff --git a/src/GeomFill/GeomFill.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill.cxx similarity index 100% rename from src/GeomFill/GeomFill.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill.cxx diff --git a/src/GeomFill/GeomFill.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill.hxx similarity index 100% rename from src/GeomFill/GeomFill.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill.hxx diff --git a/src/GeomFill/GeomFill_AppSurf.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_AppSurf.hxx similarity index 100% rename from src/GeomFill/GeomFill_AppSurf.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_AppSurf.hxx diff --git a/src/GeomFill/GeomFill_AppSurf_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_AppSurf_0.cxx similarity index 100% rename from src/GeomFill/GeomFill_AppSurf_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_AppSurf_0.cxx diff --git a/src/GeomFill/GeomFill_AppSweep.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_AppSweep.hxx similarity index 100% rename from src/GeomFill/GeomFill_AppSweep.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_AppSweep.hxx diff --git a/src/GeomFill/GeomFill_AppSweep_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_AppSweep_0.cxx similarity index 100% rename from src/GeomFill/GeomFill_AppSweep_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_AppSweep_0.cxx diff --git a/src/GeomFill/GeomFill_ApproxStyle.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_ApproxStyle.hxx similarity index 100% rename from src/GeomFill/GeomFill_ApproxStyle.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_ApproxStyle.hxx diff --git a/src/GeomFill/GeomFill_Array1OfLocationLaw.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Array1OfLocationLaw.hxx similarity index 100% rename from src/GeomFill/GeomFill_Array1OfLocationLaw.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Array1OfLocationLaw.hxx diff --git a/src/GeomFill/GeomFill_Array1OfSectionLaw.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Array1OfSectionLaw.hxx similarity index 100% rename from src/GeomFill/GeomFill_Array1OfSectionLaw.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Array1OfSectionLaw.hxx diff --git a/src/GeomFill/GeomFill_BSplineCurves.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_BSplineCurves.cxx similarity index 100% rename from src/GeomFill/GeomFill_BSplineCurves.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_BSplineCurves.cxx diff --git a/src/GeomFill/GeomFill_BSplineCurves.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_BSplineCurves.hxx similarity index 100% rename from src/GeomFill/GeomFill_BSplineCurves.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_BSplineCurves.hxx diff --git a/src/GeomFill/GeomFill_BSplineCurves.lxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_BSplineCurves.lxx similarity index 100% rename from src/GeomFill/GeomFill_BSplineCurves.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_BSplineCurves.lxx diff --git a/src/GeomFill/GeomFill_BezierCurves.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_BezierCurves.cxx similarity index 100% rename from src/GeomFill/GeomFill_BezierCurves.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_BezierCurves.cxx diff --git a/src/GeomFill/GeomFill_BezierCurves.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_BezierCurves.hxx similarity index 100% rename from src/GeomFill/GeomFill_BezierCurves.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_BezierCurves.hxx diff --git a/src/GeomFill/GeomFill_BezierCurves.lxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_BezierCurves.lxx similarity index 100% rename from src/GeomFill/GeomFill_BezierCurves.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_BezierCurves.lxx diff --git a/src/GeomFill/GeomFill_BoundWithSurf.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_BoundWithSurf.cxx similarity index 100% rename from src/GeomFill/GeomFill_BoundWithSurf.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_BoundWithSurf.cxx diff --git a/src/GeomFill/GeomFill_BoundWithSurf.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_BoundWithSurf.hxx similarity index 100% rename from src/GeomFill/GeomFill_BoundWithSurf.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_BoundWithSurf.hxx diff --git a/src/GeomFill/GeomFill_Boundary.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Boundary.cxx similarity index 100% rename from src/GeomFill/GeomFill_Boundary.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Boundary.cxx diff --git a/src/GeomFill/GeomFill_Boundary.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Boundary.hxx similarity index 100% rename from src/GeomFill/GeomFill_Boundary.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Boundary.hxx diff --git a/src/GeomFill/GeomFill_CircularBlendFunc.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_CircularBlendFunc.cxx similarity index 100% rename from src/GeomFill/GeomFill_CircularBlendFunc.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_CircularBlendFunc.cxx diff --git a/src/GeomFill/GeomFill_CircularBlendFunc.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_CircularBlendFunc.hxx similarity index 100% rename from src/GeomFill/GeomFill_CircularBlendFunc.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_CircularBlendFunc.hxx diff --git a/src/GeomFill/GeomFill_ConstantBiNormal.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_ConstantBiNormal.cxx similarity index 100% rename from src/GeomFill/GeomFill_ConstantBiNormal.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_ConstantBiNormal.cxx diff --git a/src/GeomFill/GeomFill_ConstantBiNormal.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_ConstantBiNormal.hxx similarity index 100% rename from src/GeomFill/GeomFill_ConstantBiNormal.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_ConstantBiNormal.hxx diff --git a/src/GeomFill/GeomFill_ConstrainedFilling.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_ConstrainedFilling.cxx similarity index 100% rename from src/GeomFill/GeomFill_ConstrainedFilling.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_ConstrainedFilling.cxx diff --git a/src/GeomFill/GeomFill_ConstrainedFilling.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_ConstrainedFilling.hxx similarity index 100% rename from src/GeomFill/GeomFill_ConstrainedFilling.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_ConstrainedFilling.hxx diff --git a/src/GeomFill/GeomFill_Coons.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Coons.cxx similarity index 100% rename from src/GeomFill/GeomFill_Coons.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Coons.cxx diff --git a/src/GeomFill/GeomFill_Coons.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Coons.hxx similarity index 100% rename from src/GeomFill/GeomFill_Coons.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Coons.hxx diff --git a/src/GeomFill/GeomFill_CoonsAlgPatch.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_CoonsAlgPatch.cxx similarity index 100% rename from src/GeomFill/GeomFill_CoonsAlgPatch.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_CoonsAlgPatch.cxx diff --git a/src/GeomFill/GeomFill_CoonsAlgPatch.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_CoonsAlgPatch.hxx similarity index 100% rename from src/GeomFill/GeomFill_CoonsAlgPatch.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_CoonsAlgPatch.hxx diff --git a/src/GeomFill/GeomFill_CornerState.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_CornerState.cxx similarity index 100% rename from src/GeomFill/GeomFill_CornerState.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_CornerState.cxx diff --git a/src/GeomFill/GeomFill_CornerState.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_CornerState.hxx similarity index 100% rename from src/GeomFill/GeomFill_CornerState.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_CornerState.hxx diff --git a/src/GeomFill/GeomFill_CorrectedFrenet.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_CorrectedFrenet.cxx similarity index 100% rename from src/GeomFill/GeomFill_CorrectedFrenet.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_CorrectedFrenet.cxx diff --git a/src/GeomFill/GeomFill_CorrectedFrenet.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_CorrectedFrenet.hxx similarity index 100% rename from src/GeomFill/GeomFill_CorrectedFrenet.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_CorrectedFrenet.hxx diff --git a/src/GeomFill/GeomFill_CurveAndTrihedron.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_CurveAndTrihedron.cxx similarity index 100% rename from src/GeomFill/GeomFill_CurveAndTrihedron.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_CurveAndTrihedron.cxx diff --git a/src/GeomFill/GeomFill_CurveAndTrihedron.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_CurveAndTrihedron.hxx similarity index 100% rename from src/GeomFill/GeomFill_CurveAndTrihedron.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_CurveAndTrihedron.hxx diff --git a/src/GeomFill/GeomFill_Curved.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Curved.cxx similarity index 100% rename from src/GeomFill/GeomFill_Curved.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Curved.cxx diff --git a/src/GeomFill/GeomFill_Curved.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Curved.hxx similarity index 100% rename from src/GeomFill/GeomFill_Curved.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Curved.hxx diff --git a/src/GeomFill/GeomFill_Darboux.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Darboux.cxx similarity index 100% rename from src/GeomFill/GeomFill_Darboux.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Darboux.cxx diff --git a/src/GeomFill/GeomFill_Darboux.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Darboux.hxx similarity index 100% rename from src/GeomFill/GeomFill_Darboux.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Darboux.hxx diff --git a/src/GeomFill/GeomFill_DegeneratedBound.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_DegeneratedBound.cxx similarity index 100% rename from src/GeomFill/GeomFill_DegeneratedBound.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_DegeneratedBound.cxx diff --git a/src/GeomFill/GeomFill_DegeneratedBound.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_DegeneratedBound.hxx similarity index 100% rename from src/GeomFill/GeomFill_DegeneratedBound.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_DegeneratedBound.hxx diff --git a/src/GeomFill/GeomFill_DiscreteTrihedron.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_DiscreteTrihedron.cxx similarity index 100% rename from src/GeomFill/GeomFill_DiscreteTrihedron.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_DiscreteTrihedron.cxx diff --git a/src/GeomFill/GeomFill_DiscreteTrihedron.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_DiscreteTrihedron.hxx similarity index 100% rename from src/GeomFill/GeomFill_DiscreteTrihedron.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_DiscreteTrihedron.hxx diff --git a/src/GeomFill/GeomFill_DraftTrihedron.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_DraftTrihedron.cxx similarity index 100% rename from src/GeomFill/GeomFill_DraftTrihedron.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_DraftTrihedron.cxx diff --git a/src/GeomFill/GeomFill_DraftTrihedron.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_DraftTrihedron.hxx similarity index 100% rename from src/GeomFill/GeomFill_DraftTrihedron.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_DraftTrihedron.hxx diff --git a/src/GeomFill/GeomFill_EvolvedSection.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_EvolvedSection.cxx similarity index 100% rename from src/GeomFill/GeomFill_EvolvedSection.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_EvolvedSection.cxx diff --git a/src/GeomFill/GeomFill_EvolvedSection.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_EvolvedSection.hxx similarity index 100% rename from src/GeomFill/GeomFill_EvolvedSection.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_EvolvedSection.hxx diff --git a/src/GeomFill/GeomFill_Filling.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Filling.cxx similarity index 100% rename from src/GeomFill/GeomFill_Filling.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Filling.cxx diff --git a/src/GeomFill/GeomFill_Filling.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Filling.hxx similarity index 100% rename from src/GeomFill/GeomFill_Filling.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Filling.hxx diff --git a/src/GeomFill/GeomFill_FillingStyle.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_FillingStyle.hxx similarity index 100% rename from src/GeomFill/GeomFill_FillingStyle.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_FillingStyle.hxx diff --git a/src/GeomFill/GeomFill_Fixed.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Fixed.cxx similarity index 100% rename from src/GeomFill/GeomFill_Fixed.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Fixed.cxx diff --git a/src/GeomFill/GeomFill_Fixed.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Fixed.hxx similarity index 100% rename from src/GeomFill/GeomFill_Fixed.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Fixed.hxx diff --git a/src/GeomFill/GeomFill_Frenet.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Frenet.cxx similarity index 100% rename from src/GeomFill/GeomFill_Frenet.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Frenet.cxx diff --git a/src/GeomFill/GeomFill_Frenet.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Frenet.hxx similarity index 100% rename from src/GeomFill/GeomFill_Frenet.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Frenet.hxx diff --git a/src/GeomFill/GeomFill_FunctionDraft.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_FunctionDraft.cxx similarity index 100% rename from src/GeomFill/GeomFill_FunctionDraft.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_FunctionDraft.cxx diff --git a/src/GeomFill/GeomFill_FunctionDraft.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_FunctionDraft.hxx similarity index 100% rename from src/GeomFill/GeomFill_FunctionDraft.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_FunctionDraft.hxx diff --git a/src/GeomFill/GeomFill_FunctionGuide.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_FunctionGuide.cxx similarity index 100% rename from src/GeomFill/GeomFill_FunctionGuide.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_FunctionGuide.cxx diff --git a/src/GeomFill/GeomFill_FunctionGuide.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_FunctionGuide.hxx similarity index 100% rename from src/GeomFill/GeomFill_FunctionGuide.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_FunctionGuide.hxx diff --git a/src/GeomFill/GeomFill_Generator.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Generator.cxx similarity index 100% rename from src/GeomFill/GeomFill_Generator.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Generator.cxx diff --git a/src/GeomFill/GeomFill_Generator.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Generator.hxx similarity index 100% rename from src/GeomFill/GeomFill_Generator.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Generator.hxx diff --git a/src/GeomFill/GeomFill_Generator.lxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Generator.lxx similarity index 100% rename from src/GeomFill/GeomFill_Generator.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Generator.lxx diff --git a/src/GeomFill/GeomFill_GuideTrihedronAC.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_GuideTrihedronAC.cxx similarity index 100% rename from src/GeomFill/GeomFill_GuideTrihedronAC.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_GuideTrihedronAC.cxx diff --git a/src/GeomFill/GeomFill_GuideTrihedronAC.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_GuideTrihedronAC.hxx similarity index 100% rename from src/GeomFill/GeomFill_GuideTrihedronAC.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_GuideTrihedronAC.hxx diff --git a/src/GeomFill/GeomFill_GuideTrihedronPlan.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_GuideTrihedronPlan.cxx similarity index 100% rename from src/GeomFill/GeomFill_GuideTrihedronPlan.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_GuideTrihedronPlan.cxx diff --git a/src/GeomFill/GeomFill_GuideTrihedronPlan.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_GuideTrihedronPlan.hxx similarity index 100% rename from src/GeomFill/GeomFill_GuideTrihedronPlan.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_GuideTrihedronPlan.hxx diff --git a/src/GeomFill/GeomFill_HArray1OfLocationLaw.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_HArray1OfLocationLaw.hxx similarity index 100% rename from src/GeomFill/GeomFill_HArray1OfLocationLaw.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_HArray1OfLocationLaw.hxx diff --git a/src/GeomFill/GeomFill_HArray1OfSectionLaw.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_HArray1OfSectionLaw.hxx similarity index 100% rename from src/GeomFill/GeomFill_HArray1OfSectionLaw.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_HArray1OfSectionLaw.hxx diff --git a/src/GeomFill/GeomFill_HSequenceOfAx2.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_HSequenceOfAx2.hxx similarity index 100% rename from src/GeomFill/GeomFill_HSequenceOfAx2.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_HSequenceOfAx2.hxx diff --git a/src/GeomFill/GeomFill_Line.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Line.cxx similarity index 100% rename from src/GeomFill/GeomFill_Line.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Line.cxx diff --git a/src/GeomFill/GeomFill_Line.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Line.hxx similarity index 100% rename from src/GeomFill/GeomFill_Line.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Line.hxx diff --git a/src/GeomFill/GeomFill_Line.lxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Line.lxx similarity index 100% rename from src/GeomFill/GeomFill_Line.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Line.lxx diff --git a/src/GeomFill/GeomFill_LocFunction.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_LocFunction.cxx similarity index 100% rename from src/GeomFill/GeomFill_LocFunction.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_LocFunction.cxx diff --git a/src/GeomFill/GeomFill_LocFunction.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_LocFunction.hxx similarity index 100% rename from src/GeomFill/GeomFill_LocFunction.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_LocFunction.hxx diff --git a/src/GeomFill/GeomFill_LocationDraft.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_LocationDraft.cxx similarity index 100% rename from src/GeomFill/GeomFill_LocationDraft.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_LocationDraft.cxx diff --git a/src/GeomFill/GeomFill_LocationDraft.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_LocationDraft.hxx similarity index 100% rename from src/GeomFill/GeomFill_LocationDraft.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_LocationDraft.hxx diff --git a/src/GeomFill/GeomFill_LocationGuide.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_LocationGuide.cxx similarity index 100% rename from src/GeomFill/GeomFill_LocationGuide.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_LocationGuide.cxx diff --git a/src/GeomFill/GeomFill_LocationGuide.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_LocationGuide.hxx similarity index 100% rename from src/GeomFill/GeomFill_LocationGuide.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_LocationGuide.hxx diff --git a/src/GeomFill/GeomFill_LocationLaw.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_LocationLaw.cxx similarity index 100% rename from src/GeomFill/GeomFill_LocationLaw.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_LocationLaw.cxx diff --git a/src/GeomFill/GeomFill_LocationLaw.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_LocationLaw.hxx similarity index 100% rename from src/GeomFill/GeomFill_LocationLaw.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_LocationLaw.hxx diff --git a/src/GeomFill/GeomFill_NSections.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_NSections.cxx similarity index 100% rename from src/GeomFill/GeomFill_NSections.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_NSections.cxx diff --git a/src/GeomFill/GeomFill_NSections.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_NSections.hxx similarity index 100% rename from src/GeomFill/GeomFill_NSections.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_NSections.hxx diff --git a/src/GeomFill/GeomFill_Pipe.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Pipe.cxx similarity index 100% rename from src/GeomFill/GeomFill_Pipe.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Pipe.cxx diff --git a/src/GeomFill/GeomFill_Pipe.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Pipe.hxx similarity index 100% rename from src/GeomFill/GeomFill_Pipe.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Pipe.hxx diff --git a/src/GeomFill/GeomFill_Pipe.lxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Pipe.lxx similarity index 100% rename from src/GeomFill/GeomFill_Pipe.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Pipe.lxx diff --git a/src/GeomFill/GeomFill_PipeError.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_PipeError.hxx similarity index 100% rename from src/GeomFill/GeomFill_PipeError.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_PipeError.hxx diff --git a/src/GeomFill/GeomFill_PlanFunc.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_PlanFunc.cxx similarity index 100% rename from src/GeomFill/GeomFill_PlanFunc.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_PlanFunc.cxx diff --git a/src/GeomFill/GeomFill_PlanFunc.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_PlanFunc.hxx similarity index 100% rename from src/GeomFill/GeomFill_PlanFunc.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_PlanFunc.hxx diff --git a/src/GeomFill/GeomFill_PolynomialConvertor.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_PolynomialConvertor.cxx similarity index 100% rename from src/GeomFill/GeomFill_PolynomialConvertor.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_PolynomialConvertor.cxx diff --git a/src/GeomFill/GeomFill_PolynomialConvertor.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_PolynomialConvertor.hxx similarity index 100% rename from src/GeomFill/GeomFill_PolynomialConvertor.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_PolynomialConvertor.hxx diff --git a/src/GeomFill/GeomFill_Profiler.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Profiler.cxx similarity index 100% rename from src/GeomFill/GeomFill_Profiler.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Profiler.cxx diff --git a/src/GeomFill/GeomFill_Profiler.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Profiler.hxx similarity index 100% rename from src/GeomFill/GeomFill_Profiler.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Profiler.hxx diff --git a/src/GeomFill/GeomFill_Profiler.lxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Profiler.lxx similarity index 100% rename from src/GeomFill/GeomFill_Profiler.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Profiler.lxx diff --git a/src/GeomFill/GeomFill_QuasiAngularConvertor.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_QuasiAngularConvertor.cxx similarity index 100% rename from src/GeomFill/GeomFill_QuasiAngularConvertor.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_QuasiAngularConvertor.cxx diff --git a/src/GeomFill/GeomFill_QuasiAngularConvertor.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_QuasiAngularConvertor.hxx similarity index 100% rename from src/GeomFill/GeomFill_QuasiAngularConvertor.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_QuasiAngularConvertor.hxx diff --git a/src/GeomFill/GeomFill_SectionGenerator.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SectionGenerator.cxx similarity index 100% rename from src/GeomFill/GeomFill_SectionGenerator.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SectionGenerator.cxx diff --git a/src/GeomFill/GeomFill_SectionGenerator.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SectionGenerator.hxx similarity index 100% rename from src/GeomFill/GeomFill_SectionGenerator.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SectionGenerator.hxx diff --git a/src/GeomFill/GeomFill_SectionLaw.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SectionLaw.cxx similarity index 100% rename from src/GeomFill/GeomFill_SectionLaw.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SectionLaw.cxx diff --git a/src/GeomFill/GeomFill_SectionLaw.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SectionLaw.hxx similarity index 100% rename from src/GeomFill/GeomFill_SectionLaw.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SectionLaw.hxx diff --git a/src/GeomFill/GeomFill_SectionPlacement.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SectionPlacement.cxx similarity index 100% rename from src/GeomFill/GeomFill_SectionPlacement.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SectionPlacement.cxx diff --git a/src/GeomFill/GeomFill_SectionPlacement.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SectionPlacement.hxx similarity index 100% rename from src/GeomFill/GeomFill_SectionPlacement.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SectionPlacement.hxx diff --git a/src/GeomFill/GeomFill_SequenceOfAx2.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SequenceOfAx2.hxx similarity index 100% rename from src/GeomFill/GeomFill_SequenceOfAx2.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SequenceOfAx2.hxx diff --git a/src/GeomFill/GeomFill_SequenceOfTrsf.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SequenceOfTrsf.hxx similarity index 100% rename from src/GeomFill/GeomFill_SequenceOfTrsf.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SequenceOfTrsf.hxx diff --git a/src/GeomFill/GeomFill_SimpleBound.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SimpleBound.cxx similarity index 100% rename from src/GeomFill/GeomFill_SimpleBound.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SimpleBound.cxx diff --git a/src/GeomFill/GeomFill_SimpleBound.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SimpleBound.hxx similarity index 100% rename from src/GeomFill/GeomFill_SimpleBound.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SimpleBound.hxx diff --git a/src/GeomFill/GeomFill_SnglrFunc.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SnglrFunc.cxx similarity index 100% rename from src/GeomFill/GeomFill_SnglrFunc.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SnglrFunc.cxx diff --git a/src/GeomFill/GeomFill_SnglrFunc.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SnglrFunc.hxx similarity index 100% rename from src/GeomFill/GeomFill_SnglrFunc.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SnglrFunc.hxx diff --git a/src/GeomFill/GeomFill_Stretch.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Stretch.cxx similarity index 100% rename from src/GeomFill/GeomFill_Stretch.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Stretch.cxx diff --git a/src/GeomFill/GeomFill_Stretch.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Stretch.hxx similarity index 100% rename from src/GeomFill/GeomFill_Stretch.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Stretch.hxx diff --git a/src/GeomFill/GeomFill_Sweep.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Sweep.cxx similarity index 100% rename from src/GeomFill/GeomFill_Sweep.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Sweep.cxx diff --git a/src/GeomFill/GeomFill_Sweep.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Sweep.hxx similarity index 100% rename from src/GeomFill/GeomFill_Sweep.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Sweep.hxx diff --git a/src/GeomFill/GeomFill_SweepFunction.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SweepFunction.cxx similarity index 100% rename from src/GeomFill/GeomFill_SweepFunction.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SweepFunction.cxx diff --git a/src/GeomFill/GeomFill_SweepFunction.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SweepFunction.hxx similarity index 100% rename from src/GeomFill/GeomFill_SweepFunction.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SweepFunction.hxx diff --git a/src/GeomFill/GeomFill_SweepSectionGenerator.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SweepSectionGenerator.cxx similarity index 100% rename from src/GeomFill/GeomFill_SweepSectionGenerator.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SweepSectionGenerator.cxx diff --git a/src/GeomFill/GeomFill_SweepSectionGenerator.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SweepSectionGenerator.hxx similarity index 100% rename from src/GeomFill/GeomFill_SweepSectionGenerator.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SweepSectionGenerator.hxx diff --git a/src/GeomFill/GeomFill_SweepSectionGenerator.lxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SweepSectionGenerator.lxx similarity index 100% rename from src/GeomFill/GeomFill_SweepSectionGenerator.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_SweepSectionGenerator.lxx diff --git a/src/GeomFill/GeomFill_Tensor.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Tensor.cxx similarity index 100% rename from src/GeomFill/GeomFill_Tensor.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Tensor.cxx diff --git a/src/GeomFill/GeomFill_Tensor.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Tensor.hxx similarity index 100% rename from src/GeomFill/GeomFill_Tensor.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Tensor.hxx diff --git a/src/GeomFill/GeomFill_Tensor.lxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Tensor.lxx similarity index 100% rename from src/GeomFill/GeomFill_Tensor.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Tensor.lxx diff --git a/src/GeomFill/GeomFill_TgtField.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_TgtField.cxx similarity index 100% rename from src/GeomFill/GeomFill_TgtField.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_TgtField.cxx diff --git a/src/GeomFill/GeomFill_TgtField.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_TgtField.hxx similarity index 100% rename from src/GeomFill/GeomFill_TgtField.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_TgtField.hxx diff --git a/src/GeomFill/GeomFill_TgtOnCoons.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_TgtOnCoons.cxx similarity index 100% rename from src/GeomFill/GeomFill_TgtOnCoons.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_TgtOnCoons.cxx diff --git a/src/GeomFill/GeomFill_TgtOnCoons.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_TgtOnCoons.hxx similarity index 100% rename from src/GeomFill/GeomFill_TgtOnCoons.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_TgtOnCoons.hxx diff --git a/src/GeomFill/GeomFill_Trihedron.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Trihedron.hxx similarity index 100% rename from src/GeomFill/GeomFill_Trihedron.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_Trihedron.hxx diff --git a/src/GeomFill/GeomFill_TrihedronLaw.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_TrihedronLaw.cxx similarity index 100% rename from src/GeomFill/GeomFill_TrihedronLaw.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_TrihedronLaw.cxx diff --git a/src/GeomFill/GeomFill_TrihedronLaw.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_TrihedronLaw.hxx similarity index 100% rename from src/GeomFill/GeomFill_TrihedronLaw.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_TrihedronLaw.hxx diff --git a/src/GeomFill/GeomFill_TrihedronWithGuide.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_TrihedronWithGuide.cxx similarity index 100% rename from src/GeomFill/GeomFill_TrihedronWithGuide.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_TrihedronWithGuide.cxx diff --git a/src/GeomFill/GeomFill_TrihedronWithGuide.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_TrihedronWithGuide.hxx similarity index 100% rename from src/GeomFill/GeomFill_TrihedronWithGuide.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_TrihedronWithGuide.hxx diff --git a/src/GeomFill/GeomFill_UniformSection.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_UniformSection.cxx similarity index 100% rename from src/GeomFill/GeomFill_UniformSection.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_UniformSection.cxx diff --git a/src/GeomFill/GeomFill_UniformSection.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_UniformSection.hxx similarity index 100% rename from src/GeomFill/GeomFill_UniformSection.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomFill/GeomFill_UniformSection.hxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/FILES.cmake new file mode 100644 index 0000000000..cb252ce08d --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/FILES.cmake @@ -0,0 +1,67 @@ +# Source files for GeomInt package +set(OCCT_GeomInt_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_GeomInt_FILES + GeomInt.cxx + GeomInt.hxx + GeomInt_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfWLApprox.hxx + GeomInt_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfWLApprox_0.cxx + GeomInt_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfWLApprox.hxx + GeomInt_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfWLApprox_0.cxx + GeomInt_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfWLApprox.hxx + GeomInt_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfWLApprox_0.cxx + GeomInt_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfWLApprox.hxx + GeomInt_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfWLApprox_0.cxx + GeomInt_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfWLApprox.hxx + GeomInt_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfWLApprox_0.cxx + GeomInt_IntSS.cxx + GeomInt_IntSS.hxx + GeomInt_IntSS.lxx + GeomInt_IntSS_1.cxx + GeomInt_LineConstructor.cxx + GeomInt_LineConstructor.hxx + GeomInt_LineConstructor.lxx + GeomInt_LineTool.cxx + GeomInt_LineTool.hxx + GeomInt_MyBSplGradientOfTheComputeLineOfWLApprox.hxx + GeomInt_MyBSplGradientOfTheComputeLineOfWLApprox_0.cxx + GeomInt_MyGradientbisOfTheComputeLineOfWLApprox.hxx + GeomInt_MyGradientbisOfTheComputeLineOfWLApprox_0.cxx + GeomInt_MyGradientOfTheComputeLineBezierOfWLApprox.hxx + GeomInt_MyGradientOfTheComputeLineBezierOfWLApprox_0.cxx + GeomInt_ParameterAndOrientation.cxx + GeomInt_ParameterAndOrientation.hxx + GeomInt_ParFunctionOfMyGradientbisOfTheComputeLineOfWLApprox.hxx + GeomInt_ParFunctionOfMyGradientbisOfTheComputeLineOfWLApprox_0.cxx + GeomInt_ParFunctionOfMyGradientOfTheComputeLineBezierOfWLApprox.hxx + GeomInt_ParFunctionOfMyGradientOfTheComputeLineBezierOfWLApprox_0.cxx + GeomInt_ParLeastSquareOfMyGradientbisOfTheComputeLineOfWLApprox.hxx + GeomInt_ParLeastSquareOfMyGradientbisOfTheComputeLineOfWLApprox_0.cxx + GeomInt_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfWLApprox.hxx + GeomInt_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfWLApprox_0.cxx + GeomInt_ResConstraintOfMyGradientbisOfTheComputeLineOfWLApprox.hxx + GeomInt_ResConstraintOfMyGradientbisOfTheComputeLineOfWLApprox_0.cxx + GeomInt_ResConstraintOfMyGradientOfTheComputeLineBezierOfWLApprox.hxx + GeomInt_ResConstraintOfMyGradientOfTheComputeLineBezierOfWLApprox_0.cxx + GeomInt_SequenceOfParameterAndOrientation.hxx + GeomInt_TheComputeLineBezierOfWLApprox.hxx + GeomInt_TheComputeLineBezierOfWLApprox_0.cxx + GeomInt_TheComputeLineOfWLApprox.hxx + GeomInt_TheComputeLineOfWLApprox_0.cxx + GeomInt_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfWLApprox.hxx + GeomInt_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfWLApprox_0.cxx + GeomInt_TheImpPrmSvSurfacesOfWLApprox.hxx + GeomInt_TheImpPrmSvSurfacesOfWLApprox_0.cxx + GeomInt_TheInt2SOfThePrmPrmSvSurfacesOfWLApprox.hxx + GeomInt_TheInt2SOfThePrmPrmSvSurfacesOfWLApprox_0.cxx + GeomInt_TheMultiLineOfWLApprox.hxx + GeomInt_TheMultiLineOfWLApprox_0.cxx + GeomInt_TheMultiLineToolOfWLApprox.hxx + GeomInt_ThePrmPrmSvSurfacesOfWLApprox.hxx + GeomInt_ThePrmPrmSvSurfacesOfWLApprox_0.cxx + GeomInt_TheZerImpFuncOfTheImpPrmSvSurfacesOfWLApprox.hxx + GeomInt_TheZerImpFuncOfTheImpPrmSvSurfacesOfWLApprox_0.cxx + GeomInt_VectorOfReal.hxx + GeomInt_WLApprox.hxx + GeomInt_WLApprox_0.cxx +) diff --git a/src/GeomInt/GeomInt.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt.cxx similarity index 100% rename from src/GeomInt/GeomInt.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt.cxx diff --git a/src/GeomInt/GeomInt.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt.hxx similarity index 100% rename from src/GeomInt/GeomInt.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt.hxx diff --git a/src/GeomInt/GeomInt_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfWLApprox.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfWLApprox.hxx similarity index 100% rename from src/GeomInt/GeomInt_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfWLApprox.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfWLApprox.hxx diff --git a/src/GeomInt/GeomInt_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfWLApprox_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfWLApprox_0.cxx similarity index 100% rename from src/GeomInt/GeomInt_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfWLApprox_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfWLApprox_0.cxx diff --git a/src/GeomInt/GeomInt_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfWLApprox.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfWLApprox.hxx similarity index 100% rename from src/GeomInt/GeomInt_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfWLApprox.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfWLApprox.hxx diff --git a/src/GeomInt/GeomInt_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfWLApprox_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfWLApprox_0.cxx similarity index 100% rename from src/GeomInt/GeomInt_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfWLApprox_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfWLApprox_0.cxx diff --git a/src/GeomInt/GeomInt_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfWLApprox.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfWLApprox.hxx similarity index 100% rename from src/GeomInt/GeomInt_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfWLApprox.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfWLApprox.hxx diff --git a/src/GeomInt/GeomInt_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfWLApprox_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfWLApprox_0.cxx similarity index 100% rename from src/GeomInt/GeomInt_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfWLApprox_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfWLApprox_0.cxx diff --git a/src/GeomInt/GeomInt_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfWLApprox.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfWLApprox.hxx similarity index 100% rename from src/GeomInt/GeomInt_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfWLApprox.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfWLApprox.hxx diff --git a/src/GeomInt/GeomInt_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfWLApprox_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfWLApprox_0.cxx similarity index 100% rename from src/GeomInt/GeomInt_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfWLApprox_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfWLApprox_0.cxx diff --git a/src/GeomInt/GeomInt_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfWLApprox.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfWLApprox.hxx similarity index 100% rename from src/GeomInt/GeomInt_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfWLApprox.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfWLApprox.hxx diff --git a/src/GeomInt/GeomInt_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfWLApprox_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfWLApprox_0.cxx similarity index 100% rename from src/GeomInt/GeomInt_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfWLApprox_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfWLApprox_0.cxx diff --git a/src/GeomInt/GeomInt_IntSS.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_IntSS.cxx similarity index 100% rename from src/GeomInt/GeomInt_IntSS.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_IntSS.cxx diff --git a/src/GeomInt/GeomInt_IntSS.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_IntSS.hxx similarity index 100% rename from src/GeomInt/GeomInt_IntSS.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_IntSS.hxx diff --git a/src/GeomInt/GeomInt_IntSS.lxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_IntSS.lxx similarity index 100% rename from src/GeomInt/GeomInt_IntSS.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_IntSS.lxx diff --git a/src/GeomInt/GeomInt_IntSS_1.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_IntSS_1.cxx similarity index 100% rename from src/GeomInt/GeomInt_IntSS_1.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_IntSS_1.cxx diff --git a/src/GeomInt/GeomInt_LineConstructor.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_LineConstructor.cxx similarity index 100% rename from src/GeomInt/GeomInt_LineConstructor.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_LineConstructor.cxx diff --git a/src/GeomInt/GeomInt_LineConstructor.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_LineConstructor.hxx similarity index 100% rename from src/GeomInt/GeomInt_LineConstructor.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_LineConstructor.hxx diff --git a/src/GeomInt/GeomInt_LineConstructor.lxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_LineConstructor.lxx similarity index 100% rename from src/GeomInt/GeomInt_LineConstructor.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_LineConstructor.lxx diff --git a/src/GeomInt/GeomInt_LineTool.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_LineTool.cxx similarity index 100% rename from src/GeomInt/GeomInt_LineTool.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_LineTool.cxx diff --git a/src/GeomInt/GeomInt_LineTool.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_LineTool.hxx similarity index 100% rename from src/GeomInt/GeomInt_LineTool.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_LineTool.hxx diff --git a/src/GeomInt/GeomInt_MyBSplGradientOfTheComputeLineOfWLApprox.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_MyBSplGradientOfTheComputeLineOfWLApprox.hxx similarity index 100% rename from src/GeomInt/GeomInt_MyBSplGradientOfTheComputeLineOfWLApprox.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_MyBSplGradientOfTheComputeLineOfWLApprox.hxx diff --git a/src/GeomInt/GeomInt_MyBSplGradientOfTheComputeLineOfWLApprox_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_MyBSplGradientOfTheComputeLineOfWLApprox_0.cxx similarity index 100% rename from src/GeomInt/GeomInt_MyBSplGradientOfTheComputeLineOfWLApprox_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_MyBSplGradientOfTheComputeLineOfWLApprox_0.cxx diff --git a/src/GeomInt/GeomInt_MyGradientOfTheComputeLineBezierOfWLApprox.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_MyGradientOfTheComputeLineBezierOfWLApprox.hxx similarity index 100% rename from src/GeomInt/GeomInt_MyGradientOfTheComputeLineBezierOfWLApprox.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_MyGradientOfTheComputeLineBezierOfWLApprox.hxx diff --git a/src/GeomInt/GeomInt_MyGradientOfTheComputeLineBezierOfWLApprox_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_MyGradientOfTheComputeLineBezierOfWLApprox_0.cxx similarity index 100% rename from src/GeomInt/GeomInt_MyGradientOfTheComputeLineBezierOfWLApprox_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_MyGradientOfTheComputeLineBezierOfWLApprox_0.cxx diff --git a/src/GeomInt/GeomInt_MyGradientbisOfTheComputeLineOfWLApprox.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_MyGradientbisOfTheComputeLineOfWLApprox.hxx similarity index 100% rename from src/GeomInt/GeomInt_MyGradientbisOfTheComputeLineOfWLApprox.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_MyGradientbisOfTheComputeLineOfWLApprox.hxx diff --git a/src/GeomInt/GeomInt_MyGradientbisOfTheComputeLineOfWLApprox_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_MyGradientbisOfTheComputeLineOfWLApprox_0.cxx similarity index 100% rename from src/GeomInt/GeomInt_MyGradientbisOfTheComputeLineOfWLApprox_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_MyGradientbisOfTheComputeLineOfWLApprox_0.cxx diff --git a/src/GeomInt/GeomInt_ParFunctionOfMyGradientOfTheComputeLineBezierOfWLApprox.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ParFunctionOfMyGradientOfTheComputeLineBezierOfWLApprox.hxx similarity index 100% rename from src/GeomInt/GeomInt_ParFunctionOfMyGradientOfTheComputeLineBezierOfWLApprox.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ParFunctionOfMyGradientOfTheComputeLineBezierOfWLApprox.hxx diff --git a/src/GeomInt/GeomInt_ParFunctionOfMyGradientOfTheComputeLineBezierOfWLApprox_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ParFunctionOfMyGradientOfTheComputeLineBezierOfWLApprox_0.cxx similarity index 100% rename from src/GeomInt/GeomInt_ParFunctionOfMyGradientOfTheComputeLineBezierOfWLApprox_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ParFunctionOfMyGradientOfTheComputeLineBezierOfWLApprox_0.cxx diff --git a/src/GeomInt/GeomInt_ParFunctionOfMyGradientbisOfTheComputeLineOfWLApprox.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ParFunctionOfMyGradientbisOfTheComputeLineOfWLApprox.hxx similarity index 100% rename from src/GeomInt/GeomInt_ParFunctionOfMyGradientbisOfTheComputeLineOfWLApprox.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ParFunctionOfMyGradientbisOfTheComputeLineOfWLApprox.hxx diff --git a/src/GeomInt/GeomInt_ParFunctionOfMyGradientbisOfTheComputeLineOfWLApprox_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ParFunctionOfMyGradientbisOfTheComputeLineOfWLApprox_0.cxx similarity index 100% rename from src/GeomInt/GeomInt_ParFunctionOfMyGradientbisOfTheComputeLineOfWLApprox_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ParFunctionOfMyGradientbisOfTheComputeLineOfWLApprox_0.cxx diff --git a/src/GeomInt/GeomInt_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfWLApprox.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfWLApprox.hxx similarity index 100% rename from src/GeomInt/GeomInt_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfWLApprox.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfWLApprox.hxx diff --git a/src/GeomInt/GeomInt_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfWLApprox_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfWLApprox_0.cxx similarity index 100% rename from src/GeomInt/GeomInt_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfWLApprox_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfWLApprox_0.cxx diff --git a/src/GeomInt/GeomInt_ParLeastSquareOfMyGradientbisOfTheComputeLineOfWLApprox.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ParLeastSquareOfMyGradientbisOfTheComputeLineOfWLApprox.hxx similarity index 100% rename from src/GeomInt/GeomInt_ParLeastSquareOfMyGradientbisOfTheComputeLineOfWLApprox.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ParLeastSquareOfMyGradientbisOfTheComputeLineOfWLApprox.hxx diff --git a/src/GeomInt/GeomInt_ParLeastSquareOfMyGradientbisOfTheComputeLineOfWLApprox_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ParLeastSquareOfMyGradientbisOfTheComputeLineOfWLApprox_0.cxx similarity index 100% rename from src/GeomInt/GeomInt_ParLeastSquareOfMyGradientbisOfTheComputeLineOfWLApprox_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ParLeastSquareOfMyGradientbisOfTheComputeLineOfWLApprox_0.cxx diff --git a/src/GeomInt/GeomInt_ParameterAndOrientation.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ParameterAndOrientation.cxx similarity index 100% rename from src/GeomInt/GeomInt_ParameterAndOrientation.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ParameterAndOrientation.cxx diff --git a/src/GeomInt/GeomInt_ParameterAndOrientation.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ParameterAndOrientation.hxx similarity index 100% rename from src/GeomInt/GeomInt_ParameterAndOrientation.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ParameterAndOrientation.hxx diff --git a/src/GeomInt/GeomInt_ResConstraintOfMyGradientOfTheComputeLineBezierOfWLApprox.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ResConstraintOfMyGradientOfTheComputeLineBezierOfWLApprox.hxx similarity index 100% rename from src/GeomInt/GeomInt_ResConstraintOfMyGradientOfTheComputeLineBezierOfWLApprox.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ResConstraintOfMyGradientOfTheComputeLineBezierOfWLApprox.hxx diff --git a/src/GeomInt/GeomInt_ResConstraintOfMyGradientOfTheComputeLineBezierOfWLApprox_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ResConstraintOfMyGradientOfTheComputeLineBezierOfWLApprox_0.cxx similarity index 100% rename from src/GeomInt/GeomInt_ResConstraintOfMyGradientOfTheComputeLineBezierOfWLApprox_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ResConstraintOfMyGradientOfTheComputeLineBezierOfWLApprox_0.cxx diff --git a/src/GeomInt/GeomInt_ResConstraintOfMyGradientbisOfTheComputeLineOfWLApprox.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ResConstraintOfMyGradientbisOfTheComputeLineOfWLApprox.hxx similarity index 100% rename from src/GeomInt/GeomInt_ResConstraintOfMyGradientbisOfTheComputeLineOfWLApprox.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ResConstraintOfMyGradientbisOfTheComputeLineOfWLApprox.hxx diff --git a/src/GeomInt/GeomInt_ResConstraintOfMyGradientbisOfTheComputeLineOfWLApprox_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ResConstraintOfMyGradientbisOfTheComputeLineOfWLApprox_0.cxx similarity index 100% rename from src/GeomInt/GeomInt_ResConstraintOfMyGradientbisOfTheComputeLineOfWLApprox_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ResConstraintOfMyGradientbisOfTheComputeLineOfWLApprox_0.cxx diff --git a/src/GeomInt/GeomInt_SequenceOfParameterAndOrientation.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_SequenceOfParameterAndOrientation.hxx similarity index 100% rename from src/GeomInt/GeomInt_SequenceOfParameterAndOrientation.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_SequenceOfParameterAndOrientation.hxx diff --git a/src/GeomInt/GeomInt_TheComputeLineBezierOfWLApprox.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheComputeLineBezierOfWLApprox.hxx similarity index 100% rename from src/GeomInt/GeomInt_TheComputeLineBezierOfWLApprox.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheComputeLineBezierOfWLApprox.hxx diff --git a/src/GeomInt/GeomInt_TheComputeLineBezierOfWLApprox_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheComputeLineBezierOfWLApprox_0.cxx similarity index 100% rename from src/GeomInt/GeomInt_TheComputeLineBezierOfWLApprox_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheComputeLineBezierOfWLApprox_0.cxx diff --git a/src/GeomInt/GeomInt_TheComputeLineOfWLApprox.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheComputeLineOfWLApprox.hxx similarity index 100% rename from src/GeomInt/GeomInt_TheComputeLineOfWLApprox.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheComputeLineOfWLApprox.hxx diff --git a/src/GeomInt/GeomInt_TheComputeLineOfWLApprox_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheComputeLineOfWLApprox_0.cxx similarity index 100% rename from src/GeomInt/GeomInt_TheComputeLineOfWLApprox_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheComputeLineOfWLApprox_0.cxx diff --git a/src/GeomInt/GeomInt_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfWLApprox.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfWLApprox.hxx similarity index 100% rename from src/GeomInt/GeomInt_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfWLApprox.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfWLApprox.hxx diff --git a/src/GeomInt/GeomInt_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfWLApprox_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfWLApprox_0.cxx similarity index 100% rename from src/GeomInt/GeomInt_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfWLApprox_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfWLApprox_0.cxx diff --git a/src/GeomInt/GeomInt_TheImpPrmSvSurfacesOfWLApprox.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheImpPrmSvSurfacesOfWLApprox.hxx similarity index 100% rename from src/GeomInt/GeomInt_TheImpPrmSvSurfacesOfWLApprox.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheImpPrmSvSurfacesOfWLApprox.hxx diff --git a/src/GeomInt/GeomInt_TheImpPrmSvSurfacesOfWLApprox_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheImpPrmSvSurfacesOfWLApprox_0.cxx similarity index 100% rename from src/GeomInt/GeomInt_TheImpPrmSvSurfacesOfWLApprox_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheImpPrmSvSurfacesOfWLApprox_0.cxx diff --git a/src/GeomInt/GeomInt_TheInt2SOfThePrmPrmSvSurfacesOfWLApprox.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheInt2SOfThePrmPrmSvSurfacesOfWLApprox.hxx similarity index 100% rename from src/GeomInt/GeomInt_TheInt2SOfThePrmPrmSvSurfacesOfWLApprox.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheInt2SOfThePrmPrmSvSurfacesOfWLApprox.hxx diff --git a/src/GeomInt/GeomInt_TheInt2SOfThePrmPrmSvSurfacesOfWLApprox_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheInt2SOfThePrmPrmSvSurfacesOfWLApprox_0.cxx similarity index 100% rename from src/GeomInt/GeomInt_TheInt2SOfThePrmPrmSvSurfacesOfWLApprox_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheInt2SOfThePrmPrmSvSurfacesOfWLApprox_0.cxx diff --git a/src/GeomInt/GeomInt_TheMultiLineOfWLApprox.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheMultiLineOfWLApprox.hxx similarity index 100% rename from src/GeomInt/GeomInt_TheMultiLineOfWLApprox.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheMultiLineOfWLApprox.hxx diff --git a/src/GeomInt/GeomInt_TheMultiLineOfWLApprox_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheMultiLineOfWLApprox_0.cxx similarity index 100% rename from src/GeomInt/GeomInt_TheMultiLineOfWLApprox_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheMultiLineOfWLApprox_0.cxx diff --git a/src/GeomInt/GeomInt_TheMultiLineToolOfWLApprox.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheMultiLineToolOfWLApprox.hxx similarity index 100% rename from src/GeomInt/GeomInt_TheMultiLineToolOfWLApprox.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheMultiLineToolOfWLApprox.hxx diff --git a/src/GeomInt/GeomInt_ThePrmPrmSvSurfacesOfWLApprox.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ThePrmPrmSvSurfacesOfWLApprox.hxx similarity index 100% rename from src/GeomInt/GeomInt_ThePrmPrmSvSurfacesOfWLApprox.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ThePrmPrmSvSurfacesOfWLApprox.hxx diff --git a/src/GeomInt/GeomInt_ThePrmPrmSvSurfacesOfWLApprox_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ThePrmPrmSvSurfacesOfWLApprox_0.cxx similarity index 100% rename from src/GeomInt/GeomInt_ThePrmPrmSvSurfacesOfWLApprox_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_ThePrmPrmSvSurfacesOfWLApprox_0.cxx diff --git a/src/GeomInt/GeomInt_TheZerImpFuncOfTheImpPrmSvSurfacesOfWLApprox.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheZerImpFuncOfTheImpPrmSvSurfacesOfWLApprox.hxx similarity index 100% rename from src/GeomInt/GeomInt_TheZerImpFuncOfTheImpPrmSvSurfacesOfWLApprox.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheZerImpFuncOfTheImpPrmSvSurfacesOfWLApprox.hxx diff --git a/src/GeomInt/GeomInt_TheZerImpFuncOfTheImpPrmSvSurfacesOfWLApprox_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheZerImpFuncOfTheImpPrmSvSurfacesOfWLApprox_0.cxx similarity index 100% rename from src/GeomInt/GeomInt_TheZerImpFuncOfTheImpPrmSvSurfacesOfWLApprox_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_TheZerImpFuncOfTheImpPrmSvSurfacesOfWLApprox_0.cxx diff --git a/src/GeomInt/GeomInt_VectorOfReal.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_VectorOfReal.hxx similarity index 100% rename from src/GeomInt/GeomInt_VectorOfReal.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_VectorOfReal.hxx diff --git a/src/GeomInt/GeomInt_WLApprox.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_WLApprox.hxx similarity index 100% rename from src/GeomInt/GeomInt_WLApprox.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_WLApprox.hxx diff --git a/src/GeomInt/GeomInt_WLApprox_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_WLApprox_0.cxx similarity index 100% rename from src/GeomInt/GeomInt_WLApprox_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomInt/GeomInt_WLApprox_0.cxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/FILES.cmake new file mode 100644 index 0000000000..72b12d825f --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/FILES.cmake @@ -0,0 +1,32 @@ +# Source files for GeomPlate package +set(OCCT_GeomPlate_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_GeomPlate_FILES + GeomPlate_Aij.cxx + GeomPlate_Aij.hxx + GeomPlate_Array1OfHCurve.hxx + GeomPlate_Array1OfSequenceOfReal.hxx + GeomPlate_BuildAveragePlane.cxx + GeomPlate_BuildAveragePlane.hxx + GeomPlate_BuildPlateSurface.cxx + GeomPlate_BuildPlateSurface.hxx + GeomPlate_CurveConstraint.cxx + GeomPlate_CurveConstraint.hxx + GeomPlate_HArray1OfHCurve.hxx + GeomPlate_HArray1OfSequenceOfReal.hxx + GeomPlate_HSequenceOfCurveConstraint.hxx + GeomPlate_HSequenceOfPointConstraint.hxx + GeomPlate_MakeApprox.cxx + GeomPlate_MakeApprox.hxx + GeomPlate_PlateG0Criterion.cxx + GeomPlate_PlateG0Criterion.hxx + GeomPlate_PlateG1Criterion.cxx + GeomPlate_PlateG1Criterion.hxx + GeomPlate_PointConstraint.cxx + GeomPlate_PointConstraint.hxx + GeomPlate_SequenceOfAij.hxx + GeomPlate_SequenceOfCurveConstraint.hxx + GeomPlate_SequenceOfPointConstraint.hxx + GeomPlate_Surface.cxx + GeomPlate_Surface.hxx +) diff --git a/src/GeomPlate/GeomPlate_Aij.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_Aij.cxx similarity index 100% rename from src/GeomPlate/GeomPlate_Aij.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_Aij.cxx diff --git a/src/GeomPlate/GeomPlate_Aij.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_Aij.hxx similarity index 100% rename from src/GeomPlate/GeomPlate_Aij.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_Aij.hxx diff --git a/src/GeomPlate/GeomPlate_Array1OfHCurve.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_Array1OfHCurve.hxx similarity index 100% rename from src/GeomPlate/GeomPlate_Array1OfHCurve.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_Array1OfHCurve.hxx diff --git a/src/GeomPlate/GeomPlate_Array1OfSequenceOfReal.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_Array1OfSequenceOfReal.hxx similarity index 100% rename from src/GeomPlate/GeomPlate_Array1OfSequenceOfReal.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_Array1OfSequenceOfReal.hxx diff --git a/src/GeomPlate/GeomPlate_BuildAveragePlane.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_BuildAveragePlane.cxx similarity index 100% rename from src/GeomPlate/GeomPlate_BuildAveragePlane.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_BuildAveragePlane.cxx diff --git a/src/GeomPlate/GeomPlate_BuildAveragePlane.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_BuildAveragePlane.hxx similarity index 100% rename from src/GeomPlate/GeomPlate_BuildAveragePlane.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_BuildAveragePlane.hxx diff --git a/src/GeomPlate/GeomPlate_BuildPlateSurface.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_BuildPlateSurface.cxx similarity index 100% rename from src/GeomPlate/GeomPlate_BuildPlateSurface.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_BuildPlateSurface.cxx diff --git a/src/GeomPlate/GeomPlate_BuildPlateSurface.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_BuildPlateSurface.hxx similarity index 100% rename from src/GeomPlate/GeomPlate_BuildPlateSurface.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_BuildPlateSurface.hxx diff --git a/src/GeomPlate/GeomPlate_CurveConstraint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_CurveConstraint.cxx similarity index 100% rename from src/GeomPlate/GeomPlate_CurveConstraint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_CurveConstraint.cxx diff --git a/src/GeomPlate/GeomPlate_CurveConstraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_CurveConstraint.hxx similarity index 100% rename from src/GeomPlate/GeomPlate_CurveConstraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_CurveConstraint.hxx diff --git a/src/GeomPlate/GeomPlate_HArray1OfHCurve.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_HArray1OfHCurve.hxx similarity index 100% rename from src/GeomPlate/GeomPlate_HArray1OfHCurve.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_HArray1OfHCurve.hxx diff --git a/src/GeomPlate/GeomPlate_HArray1OfSequenceOfReal.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_HArray1OfSequenceOfReal.hxx similarity index 100% rename from src/GeomPlate/GeomPlate_HArray1OfSequenceOfReal.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_HArray1OfSequenceOfReal.hxx diff --git a/src/GeomPlate/GeomPlate_HSequenceOfCurveConstraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_HSequenceOfCurveConstraint.hxx similarity index 100% rename from src/GeomPlate/GeomPlate_HSequenceOfCurveConstraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_HSequenceOfCurveConstraint.hxx diff --git a/src/GeomPlate/GeomPlate_HSequenceOfPointConstraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_HSequenceOfPointConstraint.hxx similarity index 100% rename from src/GeomPlate/GeomPlate_HSequenceOfPointConstraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_HSequenceOfPointConstraint.hxx diff --git a/src/GeomPlate/GeomPlate_MakeApprox.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_MakeApprox.cxx similarity index 100% rename from src/GeomPlate/GeomPlate_MakeApprox.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_MakeApprox.cxx diff --git a/src/GeomPlate/GeomPlate_MakeApprox.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_MakeApprox.hxx similarity index 100% rename from src/GeomPlate/GeomPlate_MakeApprox.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_MakeApprox.hxx diff --git a/src/GeomPlate/GeomPlate_PlateG0Criterion.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_PlateG0Criterion.cxx similarity index 100% rename from src/GeomPlate/GeomPlate_PlateG0Criterion.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_PlateG0Criterion.cxx diff --git a/src/GeomPlate/GeomPlate_PlateG0Criterion.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_PlateG0Criterion.hxx similarity index 100% rename from src/GeomPlate/GeomPlate_PlateG0Criterion.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_PlateG0Criterion.hxx diff --git a/src/GeomPlate/GeomPlate_PlateG1Criterion.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_PlateG1Criterion.cxx similarity index 100% rename from src/GeomPlate/GeomPlate_PlateG1Criterion.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_PlateG1Criterion.cxx diff --git a/src/GeomPlate/GeomPlate_PlateG1Criterion.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_PlateG1Criterion.hxx similarity index 100% rename from src/GeomPlate/GeomPlate_PlateG1Criterion.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_PlateG1Criterion.hxx diff --git a/src/GeomPlate/GeomPlate_PointConstraint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_PointConstraint.cxx similarity index 100% rename from src/GeomPlate/GeomPlate_PointConstraint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_PointConstraint.cxx diff --git a/src/GeomPlate/GeomPlate_PointConstraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_PointConstraint.hxx similarity index 100% rename from src/GeomPlate/GeomPlate_PointConstraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_PointConstraint.hxx diff --git a/src/GeomPlate/GeomPlate_SequenceOfAij.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_SequenceOfAij.hxx similarity index 100% rename from src/GeomPlate/GeomPlate_SequenceOfAij.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_SequenceOfAij.hxx diff --git a/src/GeomPlate/GeomPlate_SequenceOfCurveConstraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_SequenceOfCurveConstraint.hxx similarity index 100% rename from src/GeomPlate/GeomPlate_SequenceOfCurveConstraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_SequenceOfCurveConstraint.hxx diff --git a/src/GeomPlate/GeomPlate_SequenceOfPointConstraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_SequenceOfPointConstraint.hxx similarity index 100% rename from src/GeomPlate/GeomPlate_SequenceOfPointConstraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_SequenceOfPointConstraint.hxx diff --git a/src/GeomPlate/GeomPlate_Surface.cxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_Surface.cxx similarity index 100% rename from src/GeomPlate/GeomPlate_Surface.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_Surface.cxx diff --git a/src/GeomPlate/GeomPlate_Surface.hxx b/src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_Surface.hxx similarity index 100% rename from src/GeomPlate/GeomPlate_Surface.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/GeomPlate/GeomPlate_Surface.hxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/Hatch/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/Hatch/FILES.cmake new file mode 100644 index 0000000000..844ff61872 --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/Hatch/FILES.cmake @@ -0,0 +1,15 @@ +# Source files for Hatch package +set(OCCT_Hatch_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Hatch_FILES + Hatch_Hatcher.cxx + Hatch_Hatcher.hxx + Hatch_Hatcher.lxx + Hatch_Line.cxx + Hatch_Line.hxx + Hatch_LineForm.hxx + Hatch_Parameter.cxx + Hatch_Parameter.hxx + Hatch_SequenceOfLine.hxx + Hatch_SequenceOfParameter.hxx +) diff --git a/src/Hatch/Hatch_Hatcher.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Hatch/Hatch_Hatcher.cxx similarity index 100% rename from src/Hatch/Hatch_Hatcher.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Hatch/Hatch_Hatcher.cxx diff --git a/src/Hatch/Hatch_Hatcher.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Hatch/Hatch_Hatcher.hxx similarity index 100% rename from src/Hatch/Hatch_Hatcher.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Hatch/Hatch_Hatcher.hxx diff --git a/src/Hatch/Hatch_Hatcher.lxx b/src/ModelingAlgorithms/TKGeomAlgo/Hatch/Hatch_Hatcher.lxx similarity index 100% rename from src/Hatch/Hatch_Hatcher.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/Hatch/Hatch_Hatcher.lxx diff --git a/src/Hatch/Hatch_Line.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Hatch/Hatch_Line.cxx similarity index 100% rename from src/Hatch/Hatch_Line.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Hatch/Hatch_Line.cxx diff --git a/src/Hatch/Hatch_Line.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Hatch/Hatch_Line.hxx similarity index 100% rename from src/Hatch/Hatch_Line.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Hatch/Hatch_Line.hxx diff --git a/src/Hatch/Hatch_LineForm.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Hatch/Hatch_LineForm.hxx similarity index 100% rename from src/Hatch/Hatch_LineForm.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Hatch/Hatch_LineForm.hxx diff --git a/src/Hatch/Hatch_Parameter.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Hatch/Hatch_Parameter.cxx similarity index 100% rename from src/Hatch/Hatch_Parameter.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Hatch/Hatch_Parameter.cxx diff --git a/src/Hatch/Hatch_Parameter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Hatch/Hatch_Parameter.hxx similarity index 100% rename from src/Hatch/Hatch_Parameter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Hatch/Hatch_Parameter.hxx diff --git a/src/Hatch/Hatch_SequenceOfLine.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Hatch/Hatch_SequenceOfLine.hxx similarity index 100% rename from src/Hatch/Hatch_SequenceOfLine.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Hatch/Hatch_SequenceOfLine.hxx diff --git a/src/Hatch/Hatch_SequenceOfParameter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Hatch/Hatch_SequenceOfParameter.hxx similarity index 100% rename from src/Hatch/Hatch_SequenceOfParameter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Hatch/Hatch_SequenceOfParameter.hxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/HatchGen/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/HatchGen/FILES.cmake new file mode 100644 index 0000000000..005c5f195d --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/HatchGen/FILES.cmake @@ -0,0 +1,20 @@ +# Source files for HatchGen package +set(OCCT_HatchGen_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_HatchGen_FILES + HatchGen_Domain.cxx + HatchGen_Domain.hxx + HatchGen_Domain.lxx + HatchGen_Domains.hxx + HatchGen_ErrorStatus.hxx + HatchGen_IntersectionPoint.cxx + HatchGen_IntersectionPoint.hxx + HatchGen_IntersectionType.hxx + HatchGen_PointOnElement.cxx + HatchGen_PointOnElement.hxx + HatchGen_PointOnElement.lxx + HatchGen_PointOnHatching.cxx + HatchGen_PointOnHatching.hxx + HatchGen_PointsOnElement.hxx + HatchGen_PointsOnHatching.hxx +) diff --git a/src/HatchGen/HatchGen_Domain.cxx b/src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_Domain.cxx similarity index 100% rename from src/HatchGen/HatchGen_Domain.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_Domain.cxx diff --git a/src/HatchGen/HatchGen_Domain.hxx b/src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_Domain.hxx similarity index 100% rename from src/HatchGen/HatchGen_Domain.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_Domain.hxx diff --git a/src/HatchGen/HatchGen_Domain.lxx b/src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_Domain.lxx similarity index 100% rename from src/HatchGen/HatchGen_Domain.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_Domain.lxx diff --git a/src/HatchGen/HatchGen_Domains.hxx b/src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_Domains.hxx similarity index 100% rename from src/HatchGen/HatchGen_Domains.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_Domains.hxx diff --git a/src/HatchGen/HatchGen_ErrorStatus.hxx b/src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_ErrorStatus.hxx similarity index 100% rename from src/HatchGen/HatchGen_ErrorStatus.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_ErrorStatus.hxx diff --git a/src/HatchGen/HatchGen_IntersectionPoint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_IntersectionPoint.cxx similarity index 100% rename from src/HatchGen/HatchGen_IntersectionPoint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_IntersectionPoint.cxx diff --git a/src/HatchGen/HatchGen_IntersectionPoint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_IntersectionPoint.hxx similarity index 100% rename from src/HatchGen/HatchGen_IntersectionPoint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_IntersectionPoint.hxx diff --git a/src/HatchGen/HatchGen_IntersectionType.hxx b/src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_IntersectionType.hxx similarity index 100% rename from src/HatchGen/HatchGen_IntersectionType.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_IntersectionType.hxx diff --git a/src/HatchGen/HatchGen_PointOnElement.cxx b/src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_PointOnElement.cxx similarity index 100% rename from src/HatchGen/HatchGen_PointOnElement.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_PointOnElement.cxx diff --git a/src/HatchGen/HatchGen_PointOnElement.hxx b/src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_PointOnElement.hxx similarity index 100% rename from src/HatchGen/HatchGen_PointOnElement.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_PointOnElement.hxx diff --git a/src/HatchGen/HatchGen_PointOnElement.lxx b/src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_PointOnElement.lxx similarity index 100% rename from src/HatchGen/HatchGen_PointOnElement.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_PointOnElement.lxx diff --git a/src/HatchGen/HatchGen_PointOnHatching.cxx b/src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_PointOnHatching.cxx similarity index 100% rename from src/HatchGen/HatchGen_PointOnHatching.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_PointOnHatching.cxx diff --git a/src/HatchGen/HatchGen_PointOnHatching.hxx b/src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_PointOnHatching.hxx similarity index 100% rename from src/HatchGen/HatchGen_PointOnHatching.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_PointOnHatching.hxx diff --git a/src/HatchGen/HatchGen_PointsOnElement.hxx b/src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_PointsOnElement.hxx similarity index 100% rename from src/HatchGen/HatchGen_PointsOnElement.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_PointsOnElement.hxx diff --git a/src/HatchGen/HatchGen_PointsOnHatching.hxx b/src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_PointsOnHatching.hxx similarity index 100% rename from src/HatchGen/HatchGen_PointsOnHatching.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/HatchGen/HatchGen_PointsOnHatching.hxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/FILES.cmake new file mode 100644 index 0000000000..1ac4b607eb --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/FILES.cmake @@ -0,0 +1,35 @@ +# Source files for IntCurve package +set(OCCT_IntCurve_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IntCurve_FILES + IntCurve_DistBetweenPCurvesGen.gxx + IntCurve_ExactIntersectionPoint.gxx + IntCurve_IConicTool.cxx + IntCurve_IConicTool.hxx + IntCurve_IntConicConic.cxx + IntCurve_IntConicConic.hxx + IntCurve_IntConicConic.lxx + IntCurve_IntConicConic_1.cxx + IntCurve_IntConicConic_Tool.cxx + IntCurve_IntConicConic_Tool.hxx + IntCurve_IntConicCurveGen.gxx + IntCurve_IntConicCurveGen.lxx + IntCurve_IntCurveCurveGen.gxx + IntCurve_IntCurveCurveGen.lxx + IntCurve_IntImpConicParConic.hxx + IntCurve_IntImpConicParConic_0.cxx + IntCurve_IntPolyPolyGen.gxx + IntCurve_MyImpParToolOfIntImpConicParConic.hxx + IntCurve_MyImpParToolOfIntImpConicParConic_0.cxx + IntCurve_PConic.cxx + IntCurve_PConic.hxx + IntCurve_PConic.lxx + IntCurve_PConicTool.cxx + IntCurve_PConicTool.hxx + IntCurve_Polygon2dGen.gxx + IntCurve_Polygon2dGen.lxx + IntCurve_ProjectOnPConicTool.cxx + IntCurve_ProjectOnPConicTool.hxx + IntCurve_ProjPCurGen.gxx + IntCurve_UserIntConicCurveGen.gxx +) diff --git a/src/IntCurve/IntCurve_DistBetweenPCurvesGen.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_DistBetweenPCurvesGen.gxx similarity index 100% rename from src/IntCurve/IntCurve_DistBetweenPCurvesGen.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_DistBetweenPCurvesGen.gxx diff --git a/src/IntCurve/IntCurve_ExactIntersectionPoint.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_ExactIntersectionPoint.gxx similarity index 100% rename from src/IntCurve/IntCurve_ExactIntersectionPoint.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_ExactIntersectionPoint.gxx diff --git a/src/IntCurve/IntCurve_IConicTool.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IConicTool.cxx similarity index 100% rename from src/IntCurve/IntCurve_IConicTool.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IConicTool.cxx diff --git a/src/IntCurve/IntCurve_IConicTool.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IConicTool.hxx similarity index 100% rename from src/IntCurve/IntCurve_IConicTool.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IConicTool.hxx diff --git a/src/IntCurve/IntCurve_IntConicConic.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntConicConic.cxx similarity index 100% rename from src/IntCurve/IntCurve_IntConicConic.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntConicConic.cxx diff --git a/src/IntCurve/IntCurve_IntConicConic.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntConicConic.hxx similarity index 100% rename from src/IntCurve/IntCurve_IntConicConic.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntConicConic.hxx diff --git a/src/IntCurve/IntCurve_IntConicConic.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntConicConic.lxx similarity index 100% rename from src/IntCurve/IntCurve_IntConicConic.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntConicConic.lxx diff --git a/src/IntCurve/IntCurve_IntConicConic_1.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntConicConic_1.cxx similarity index 100% rename from src/IntCurve/IntCurve_IntConicConic_1.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntConicConic_1.cxx diff --git a/src/IntCurve/IntCurve_IntConicConic_Tool.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntConicConic_Tool.cxx similarity index 100% rename from src/IntCurve/IntCurve_IntConicConic_Tool.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntConicConic_Tool.cxx diff --git a/src/IntCurve/IntCurve_IntConicConic_Tool.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntConicConic_Tool.hxx similarity index 100% rename from src/IntCurve/IntCurve_IntConicConic_Tool.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntConicConic_Tool.hxx diff --git a/src/IntCurve/IntCurve_IntConicCurveGen.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntConicCurveGen.gxx similarity index 100% rename from src/IntCurve/IntCurve_IntConicCurveGen.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntConicCurveGen.gxx diff --git a/src/IntCurve/IntCurve_IntConicCurveGen.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntConicCurveGen.lxx similarity index 100% rename from src/IntCurve/IntCurve_IntConicCurveGen.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntConicCurveGen.lxx diff --git a/src/IntCurve/IntCurve_IntCurveCurveGen.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntCurveCurveGen.gxx similarity index 100% rename from src/IntCurve/IntCurve_IntCurveCurveGen.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntCurveCurveGen.gxx diff --git a/src/IntCurve/IntCurve_IntCurveCurveGen.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntCurveCurveGen.lxx similarity index 100% rename from src/IntCurve/IntCurve_IntCurveCurveGen.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntCurveCurveGen.lxx diff --git a/src/IntCurve/IntCurve_IntImpConicParConic.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntImpConicParConic.hxx similarity index 100% rename from src/IntCurve/IntCurve_IntImpConicParConic.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntImpConicParConic.hxx diff --git a/src/IntCurve/IntCurve_IntImpConicParConic_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntImpConicParConic_0.cxx similarity index 100% rename from src/IntCurve/IntCurve_IntImpConicParConic_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntImpConicParConic_0.cxx diff --git a/src/IntCurve/IntCurve_IntPolyPolyGen.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntPolyPolyGen.gxx similarity index 100% rename from src/IntCurve/IntCurve_IntPolyPolyGen.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_IntPolyPolyGen.gxx diff --git a/src/IntCurve/IntCurve_MyImpParToolOfIntImpConicParConic.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_MyImpParToolOfIntImpConicParConic.hxx similarity index 100% rename from src/IntCurve/IntCurve_MyImpParToolOfIntImpConicParConic.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_MyImpParToolOfIntImpConicParConic.hxx diff --git a/src/IntCurve/IntCurve_MyImpParToolOfIntImpConicParConic_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_MyImpParToolOfIntImpConicParConic_0.cxx similarity index 100% rename from src/IntCurve/IntCurve_MyImpParToolOfIntImpConicParConic_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_MyImpParToolOfIntImpConicParConic_0.cxx diff --git a/src/IntCurve/IntCurve_PConic.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_PConic.cxx similarity index 100% rename from src/IntCurve/IntCurve_PConic.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_PConic.cxx diff --git a/src/IntCurve/IntCurve_PConic.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_PConic.hxx similarity index 100% rename from src/IntCurve/IntCurve_PConic.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_PConic.hxx diff --git a/src/IntCurve/IntCurve_PConic.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_PConic.lxx similarity index 100% rename from src/IntCurve/IntCurve_PConic.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_PConic.lxx diff --git a/src/IntCurve/IntCurve_PConicTool.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_PConicTool.cxx similarity index 100% rename from src/IntCurve/IntCurve_PConicTool.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_PConicTool.cxx diff --git a/src/IntCurve/IntCurve_PConicTool.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_PConicTool.hxx similarity index 100% rename from src/IntCurve/IntCurve_PConicTool.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_PConicTool.hxx diff --git a/src/IntCurve/IntCurve_Polygon2dGen.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_Polygon2dGen.gxx similarity index 100% rename from src/IntCurve/IntCurve_Polygon2dGen.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_Polygon2dGen.gxx diff --git a/src/IntCurve/IntCurve_Polygon2dGen.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_Polygon2dGen.lxx similarity index 100% rename from src/IntCurve/IntCurve_Polygon2dGen.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_Polygon2dGen.lxx diff --git a/src/IntCurve/IntCurve_ProjPCurGen.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_ProjPCurGen.gxx similarity index 100% rename from src/IntCurve/IntCurve_ProjPCurGen.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_ProjPCurGen.gxx diff --git a/src/IntCurve/IntCurve_ProjectOnPConicTool.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_ProjectOnPConicTool.cxx similarity index 100% rename from src/IntCurve/IntCurve_ProjectOnPConicTool.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_ProjectOnPConicTool.cxx diff --git a/src/IntCurve/IntCurve_ProjectOnPConicTool.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_ProjectOnPConicTool.hxx similarity index 100% rename from src/IntCurve/IntCurve_ProjectOnPConicTool.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_ProjectOnPConicTool.hxx diff --git a/src/IntCurve/IntCurve_UserIntConicCurveGen.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_UserIntConicCurveGen.gxx similarity index 100% rename from src/IntCurve/IntCurve_UserIntConicCurveGen.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurve/IntCurve_UserIntConicCurveGen.gxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/FILES.cmake new file mode 100644 index 0000000000..002be63e2c --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/FILES.cmake @@ -0,0 +1,47 @@ +# Source files for IntCurveSurface package +set(OCCT_IntCurveSurface_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IntCurveSurface_FILES + IntCurveSurface_HInter.hxx + IntCurveSurface_HInter_0.cxx + IntCurveSurface_Inter.gxx + IntCurveSurface_Intersection.cxx + IntCurveSurface_Intersection.hxx + IntCurveSurface_IntersectionPoint.cxx + IntCurveSurface_IntersectionPoint.hxx + IntCurveSurface_IntersectionPoint.lxx + IntCurveSurface_IntersectionSegment.cxx + IntCurveSurface_IntersectionSegment.hxx + IntCurveSurface_Polygon.gxx + IntCurveSurface_PolygonTool.gxx + IntCurveSurface_PolygonTool.lxx + IntCurveSurface_Polyhedron.gxx + IntCurveSurface_Polyhedron.lxx + IntCurveSurface_PolyhedronTool.gxx + IntCurveSurface_PolyhedronTool.lxx + IntCurveSurface_QuadricCurveExactInter.gxx + IntCurveSurface_QuadricCurveFunc.gxx + IntCurveSurface_SequenceOfPnt.hxx + IntCurveSurface_SequenceOfSeg.hxx + IntCurveSurface_TheCSFunctionOfHInter.hxx + IntCurveSurface_TheCSFunctionOfHInter_0.cxx + IntCurveSurface_TheExactHInter.hxx + IntCurveSurface_TheExactHInter_0.cxx + IntCurveSurface_TheHCurveTool.hxx + IntCurveSurface_TheHCurveTool.cxx + IntCurveSurface_TheInterferenceOfHInter.hxx + IntCurveSurface_TheInterferenceOfHInter_0.cxx + IntCurveSurface_ThePolygonOfHInter.hxx + IntCurveSurface_ThePolygonOfHInter_0.cxx + IntCurveSurface_ThePolygonToolOfHInter.hxx + IntCurveSurface_ThePolygonToolOfHInter_0.cxx + IntCurveSurface_ThePolyhedronOfHInter.hxx + IntCurveSurface_ThePolyhedronOfHInter_0.cxx + IntCurveSurface_ThePolyhedronToolOfHInter.hxx + IntCurveSurface_ThePolyhedronToolOfHInter_0.cxx + IntCurveSurface_TheQuadCurvExactHInter.hxx + IntCurveSurface_TheQuadCurvExactHInter_0.cxx + IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter.hxx + IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter_0.cxx + IntCurveSurface_TransitionOnCurve.hxx +) diff --git a/src/IntCurveSurface/IntCurveSurface_HInter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_HInter.hxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_HInter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_HInter.hxx diff --git a/src/IntCurveSurface/IntCurveSurface_HInter_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_HInter_0.cxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_HInter_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_HInter_0.cxx diff --git a/src/IntCurveSurface/IntCurveSurface_Inter.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_Inter.gxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_Inter.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_Inter.gxx diff --git a/src/IntCurveSurface/IntCurveSurface_Intersection.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_Intersection.cxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_Intersection.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_Intersection.cxx diff --git a/src/IntCurveSurface/IntCurveSurface_Intersection.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_Intersection.hxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_Intersection.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_Intersection.hxx diff --git a/src/IntCurveSurface/IntCurveSurface_IntersectionPoint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_IntersectionPoint.cxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_IntersectionPoint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_IntersectionPoint.cxx diff --git a/src/IntCurveSurface/IntCurveSurface_IntersectionPoint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_IntersectionPoint.hxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_IntersectionPoint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_IntersectionPoint.hxx diff --git a/src/IntCurveSurface/IntCurveSurface_IntersectionPoint.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_IntersectionPoint.lxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_IntersectionPoint.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_IntersectionPoint.lxx diff --git a/src/IntCurveSurface/IntCurveSurface_IntersectionSegment.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_IntersectionSegment.cxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_IntersectionSegment.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_IntersectionSegment.cxx diff --git a/src/IntCurveSurface/IntCurveSurface_IntersectionSegment.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_IntersectionSegment.hxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_IntersectionSegment.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_IntersectionSegment.hxx diff --git a/src/IntCurveSurface/IntCurveSurface_Polygon.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_Polygon.gxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_Polygon.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_Polygon.gxx diff --git a/src/IntCurveSurface/IntCurveSurface_PolygonTool.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_PolygonTool.gxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_PolygonTool.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_PolygonTool.gxx diff --git a/src/IntCurveSurface/IntCurveSurface_PolygonTool.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_PolygonTool.lxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_PolygonTool.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_PolygonTool.lxx diff --git a/src/IntCurveSurface/IntCurveSurface_Polyhedron.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_Polyhedron.gxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_Polyhedron.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_Polyhedron.gxx diff --git a/src/IntCurveSurface/IntCurveSurface_Polyhedron.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_Polyhedron.lxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_Polyhedron.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_Polyhedron.lxx diff --git a/src/IntCurveSurface/IntCurveSurface_PolyhedronTool.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_PolyhedronTool.gxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_PolyhedronTool.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_PolyhedronTool.gxx diff --git a/src/IntCurveSurface/IntCurveSurface_PolyhedronTool.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_PolyhedronTool.lxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_PolyhedronTool.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_PolyhedronTool.lxx diff --git a/src/IntCurveSurface/IntCurveSurface_QuadricCurveExactInter.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_QuadricCurveExactInter.gxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_QuadricCurveExactInter.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_QuadricCurveExactInter.gxx diff --git a/src/IntCurveSurface/IntCurveSurface_QuadricCurveFunc.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_QuadricCurveFunc.gxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_QuadricCurveFunc.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_QuadricCurveFunc.gxx diff --git a/src/IntCurveSurface/IntCurveSurface_SequenceOfPnt.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_SequenceOfPnt.hxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_SequenceOfPnt.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_SequenceOfPnt.hxx diff --git a/src/IntCurveSurface/IntCurveSurface_SequenceOfSeg.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_SequenceOfSeg.hxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_SequenceOfSeg.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_SequenceOfSeg.hxx diff --git a/src/IntCurveSurface/IntCurveSurface_TheCSFunctionOfHInter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TheCSFunctionOfHInter.hxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_TheCSFunctionOfHInter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TheCSFunctionOfHInter.hxx diff --git a/src/IntCurveSurface/IntCurveSurface_TheCSFunctionOfHInter_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TheCSFunctionOfHInter_0.cxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_TheCSFunctionOfHInter_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TheCSFunctionOfHInter_0.cxx diff --git a/src/IntCurveSurface/IntCurveSurface_TheExactHInter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TheExactHInter.hxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_TheExactHInter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TheExactHInter.hxx diff --git a/src/IntCurveSurface/IntCurveSurface_TheExactHInter_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TheExactHInter_0.cxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_TheExactHInter_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TheExactHInter_0.cxx diff --git a/src/IntCurveSurface/IntCurveSurface_TheHCurveTool.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TheHCurveTool.cxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_TheHCurveTool.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TheHCurveTool.cxx diff --git a/src/IntCurveSurface/IntCurveSurface_TheHCurveTool.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TheHCurveTool.hxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_TheHCurveTool.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TheHCurveTool.hxx diff --git a/src/IntCurveSurface/IntCurveSurface_TheInterferenceOfHInter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TheInterferenceOfHInter.hxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_TheInterferenceOfHInter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TheInterferenceOfHInter.hxx diff --git a/src/IntCurveSurface/IntCurveSurface_TheInterferenceOfHInter_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TheInterferenceOfHInter_0.cxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_TheInterferenceOfHInter_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TheInterferenceOfHInter_0.cxx diff --git a/src/IntCurveSurface/IntCurveSurface_ThePolygonOfHInter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_ThePolygonOfHInter.hxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_ThePolygonOfHInter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_ThePolygonOfHInter.hxx diff --git a/src/IntCurveSurface/IntCurveSurface_ThePolygonOfHInter_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_ThePolygonOfHInter_0.cxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_ThePolygonOfHInter_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_ThePolygonOfHInter_0.cxx diff --git a/src/IntCurveSurface/IntCurveSurface_ThePolygonToolOfHInter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_ThePolygonToolOfHInter.hxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_ThePolygonToolOfHInter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_ThePolygonToolOfHInter.hxx diff --git a/src/IntCurveSurface/IntCurveSurface_ThePolygonToolOfHInter_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_ThePolygonToolOfHInter_0.cxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_ThePolygonToolOfHInter_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_ThePolygonToolOfHInter_0.cxx diff --git a/src/IntCurveSurface/IntCurveSurface_ThePolyhedronOfHInter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_ThePolyhedronOfHInter.hxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_ThePolyhedronOfHInter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_ThePolyhedronOfHInter.hxx diff --git a/src/IntCurveSurface/IntCurveSurface_ThePolyhedronOfHInter_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_ThePolyhedronOfHInter_0.cxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_ThePolyhedronOfHInter_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_ThePolyhedronOfHInter_0.cxx diff --git a/src/IntCurveSurface/IntCurveSurface_ThePolyhedronToolOfHInter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_ThePolyhedronToolOfHInter.hxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_ThePolyhedronToolOfHInter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_ThePolyhedronToolOfHInter.hxx diff --git a/src/IntCurveSurface/IntCurveSurface_ThePolyhedronToolOfHInter_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_ThePolyhedronToolOfHInter_0.cxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_ThePolyhedronToolOfHInter_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_ThePolyhedronToolOfHInter_0.cxx diff --git a/src/IntCurveSurface/IntCurveSurface_TheQuadCurvExactHInter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TheQuadCurvExactHInter.hxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_TheQuadCurvExactHInter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TheQuadCurvExactHInter.hxx diff --git a/src/IntCurveSurface/IntCurveSurface_TheQuadCurvExactHInter_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TheQuadCurvExactHInter_0.cxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_TheQuadCurvExactHInter_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TheQuadCurvExactHInter_0.cxx diff --git a/src/IntCurveSurface/IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter.hxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter.hxx diff --git a/src/IntCurveSurface/IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter_0.cxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TheQuadCurvFuncOfTheQuadCurvExactHInter_0.cxx diff --git a/src/IntCurveSurface/IntCurveSurface_TransitionOnCurve.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TransitionOnCurve.hxx similarity index 100% rename from src/IntCurveSurface/IntCurveSurface_TransitionOnCurve.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntCurveSurface/IntCurveSurface_TransitionOnCurve.hxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/IntImp/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/IntImp/FILES.cmake new file mode 100644 index 0000000000..f65fc6a159 --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/IntImp/FILES.cmake @@ -0,0 +1,16 @@ +# Source files for IntImp package +set(OCCT_IntImp_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IntImp_FILES + IntImp_ComputeTangence.cxx + IntImp_ComputeTangence.hxx + IntImp_ConstIsoparametric.hxx + IntImp_Int2S.gxx + IntImp_Int2S.lxx + IntImp_IntCS.gxx + IntImp_ZerCSParFunc.gxx + IntImp_ZerImpFunc.gxx + IntImp_ZerImpFunc.lxx + IntImp_ZerParFunc.gxx + IntImp_ZerParFunc.lxx +) diff --git a/src/IntImp/IntImp_ComputeTangence.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntImp/IntImp_ComputeTangence.cxx similarity index 100% rename from src/IntImp/IntImp_ComputeTangence.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntImp/IntImp_ComputeTangence.cxx diff --git a/src/IntImp/IntImp_ComputeTangence.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntImp/IntImp_ComputeTangence.hxx similarity index 100% rename from src/IntImp/IntImp_ComputeTangence.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntImp/IntImp_ComputeTangence.hxx diff --git a/src/IntImp/IntImp_ConstIsoparametric.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntImp/IntImp_ConstIsoparametric.hxx similarity index 100% rename from src/IntImp/IntImp_ConstIsoparametric.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntImp/IntImp_ConstIsoparametric.hxx diff --git a/src/IntImp/IntImp_Int2S.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntImp/IntImp_Int2S.gxx similarity index 100% rename from src/IntImp/IntImp_Int2S.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntImp/IntImp_Int2S.gxx diff --git a/src/IntImp/IntImp_Int2S.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntImp/IntImp_Int2S.lxx similarity index 100% rename from src/IntImp/IntImp_Int2S.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntImp/IntImp_Int2S.lxx diff --git a/src/IntImp/IntImp_IntCS.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntImp/IntImp_IntCS.gxx similarity index 100% rename from src/IntImp/IntImp_IntCS.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntImp/IntImp_IntCS.gxx diff --git a/src/IntImp/IntImp_ZerCSParFunc.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntImp/IntImp_ZerCSParFunc.gxx similarity index 100% rename from src/IntImp/IntImp_ZerCSParFunc.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntImp/IntImp_ZerCSParFunc.gxx diff --git a/src/IntImp/IntImp_ZerImpFunc.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntImp/IntImp_ZerImpFunc.gxx similarity index 100% rename from src/IntImp/IntImp_ZerImpFunc.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntImp/IntImp_ZerImpFunc.gxx diff --git a/src/IntImp/IntImp_ZerImpFunc.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntImp/IntImp_ZerImpFunc.lxx similarity index 100% rename from src/IntImp/IntImp_ZerImpFunc.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntImp/IntImp_ZerImpFunc.lxx diff --git a/src/IntImp/IntImp_ZerParFunc.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntImp/IntImp_ZerParFunc.gxx similarity index 100% rename from src/IntImp/IntImp_ZerParFunc.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntImp/IntImp_ZerParFunc.gxx diff --git a/src/IntImp/IntImp_ZerParFunc.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntImp/IntImp_ZerParFunc.lxx similarity index 100% rename from src/IntImp/IntImp_ZerParFunc.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntImp/IntImp_ZerParFunc.lxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/IntImpParGen/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/IntImpParGen/FILES.cmake new file mode 100644 index 0000000000..56cdd7eb38 --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/IntImpParGen/FILES.cmake @@ -0,0 +1,12 @@ +# Source files for IntImpParGen package +set(OCCT_IntImpParGen_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IntImpParGen_FILES + IntImpParGen.cxx + IntImpParGen.hxx + IntImpParGen_ImpParTool.gxx + IntImpParGen_ImpTool.hxx + IntImpParGen_Intersector.gxx + IntImpParGen_Tool.cxx + IntImpParGen_Tool.hxx +) diff --git a/src/IntImpParGen/IntImpParGen.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntImpParGen/IntImpParGen.cxx similarity index 100% rename from src/IntImpParGen/IntImpParGen.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntImpParGen/IntImpParGen.cxx diff --git a/src/IntImpParGen/IntImpParGen.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntImpParGen/IntImpParGen.hxx similarity index 100% rename from src/IntImpParGen/IntImpParGen.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntImpParGen/IntImpParGen.hxx diff --git a/src/IntImpParGen/IntImpParGen_ImpParTool.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntImpParGen/IntImpParGen_ImpParTool.gxx similarity index 100% rename from src/IntImpParGen/IntImpParGen_ImpParTool.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntImpParGen/IntImpParGen_ImpParTool.gxx diff --git a/src/IntImpParGen/IntImpParGen_ImpTool.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntImpParGen/IntImpParGen_ImpTool.hxx similarity index 100% rename from src/IntImpParGen/IntImpParGen_ImpTool.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntImpParGen/IntImpParGen_ImpTool.hxx diff --git a/src/IntImpParGen/IntImpParGen_Intersector.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntImpParGen/IntImpParGen_Intersector.gxx similarity index 100% rename from src/IntImpParGen/IntImpParGen_Intersector.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntImpParGen/IntImpParGen_Intersector.gxx diff --git a/src/IntImpParGen/IntImpParGen_Tool.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntImpParGen/IntImpParGen_Tool.cxx similarity index 100% rename from src/IntImpParGen/IntImpParGen_Tool.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntImpParGen/IntImpParGen_Tool.cxx diff --git a/src/IntImpParGen/IntImpParGen_Tool.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntImpParGen/IntImpParGen_Tool.hxx similarity index 100% rename from src/IntImpParGen/IntImpParGen_Tool.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntImpParGen/IntImpParGen_Tool.hxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/FILES.cmake new file mode 100644 index 0000000000..0d8c4790d0 --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/FILES.cmake @@ -0,0 +1,97 @@ +# Source files for IntPatch package +set(OCCT_IntPatch_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IntPatch_FILES + IntPatch_ALine.cxx + IntPatch_ALine.hxx + IntPatch_ALine.lxx + IntPatch_ALineToWLine.cxx + IntPatch_ALineToWLine.hxx + IntPatch_ArcFunction.cxx + IntPatch_ArcFunction.hxx + IntPatch_ArcFunction.lxx + IntPatch_CSFunction.cxx + IntPatch_CSFunction.hxx + IntPatch_CurvIntSurf.hxx + IntPatch_CurvIntSurf_0.cxx + IntPatch_GLine.cxx + IntPatch_GLine.hxx + IntPatch_GLine.lxx + IntPatch_HCurve2dTool.cxx + IntPatch_HCurve2dTool.hxx + IntPatch_HCurve2dTool.lxx + IntPatch_HInterTool.cxx + IntPatch_HInterTool.hxx + IntPatch_HInterTool.lxx + IntPatch_IType.hxx + IntPatch_ImpImpIntersection.cxx + IntPatch_ImpImpIntersection.hxx + IntPatch_ImpImpIntersection.lxx + IntPatch_ImpPrmIntersection.cxx + IntPatch_ImpPrmIntersection.hxx + IntPatch_ImpPrmIntersection.lxx + IntPatch_InterferencePolyhedron.cxx + IntPatch_InterferencePolyhedron.hxx + IntPatch_Intersection.cxx + IntPatch_Intersection.hxx + IntPatch_Intersection.lxx + IntPatch_Line.cxx + IntPatch_Line.hxx + IntPatch_Line.lxx + IntPatch_LineConstructor.cxx + IntPatch_LineConstructor.hxx + IntPatch_Point.cxx + IntPatch_Point.hxx + IntPatch_Point.lxx + IntPatch_PointLine.cxx + IntPatch_PointLine.hxx + IntPatch_PolyArc.cxx + IntPatch_PolyArc.hxx + IntPatch_PolyLine.cxx + IntPatch_PolyLine.hxx + IntPatch_Polygo.cxx + IntPatch_Polygo.hxx + IntPatch_Polygo.lxx + IntPatch_Polyhedron.cxx + IntPatch_Polyhedron.hxx + IntPatch_PolyhedronTool.hxx + IntPatch_PolyhedronTool.lxx + IntPatch_PrmPrmIntersection.cxx + IntPatch_PrmPrmIntersection.hxx + IntPatch_PrmPrmIntersection.lxx + IntPatch_PrmPrmIntersection_T3Bits.cxx + IntPatch_PrmPrmIntersection_T3Bits.hxx + IntPatch_RLine.cxx + IntPatch_RLine.hxx + IntPatch_RLine.lxx + IntPatch_RstInt.cxx + IntPatch_RstInt.hxx + IntPatch_SearchPnt.hxx + IntPatch_SequenceOfIWLineOfTheIWalking.hxx + IntPatch_SequenceOfLine.hxx + IntPatch_SequenceOfPathPointOfTheSOnBounds.hxx + IntPatch_SequenceOfPoint.hxx + IntPatch_SequenceOfSegmentOfTheSOnBounds.hxx + IntPatch_SpecPntType.hxx + IntPatch_SpecialPoints.cxx + IntPatch_SpecialPoints.hxx + IntPatch_TheIWLineOfTheIWalking.hxx + IntPatch_TheIWLineOfTheIWalking_0.cxx + IntPatch_TheIWalking.hxx + IntPatch_TheIWalking_0.cxx + IntPatch_ThePathPointOfTheSOnBounds.hxx + IntPatch_ThePathPointOfTheSOnBounds_0.cxx + IntPatch_TheSOnBounds.hxx + IntPatch_TheSOnBounds_0.cxx + IntPatch_TheSearchInside.hxx + IntPatch_TheSearchInside_0.cxx + IntPatch_TheSegmentOfTheSOnBounds.hxx + IntPatch_TheSegmentOfTheSOnBounds_0.cxx + IntPatch_TheSurfFunction.hxx + IntPatch_TheSurfFunction_0.cxx + IntPatch_WLine.cxx + IntPatch_WLine.hxx + IntPatch_WLine.lxx + IntPatch_WLineTool.cxx + IntPatch_WLineTool.hxx +) diff --git a/src/IntPatch/IntPatch_ALine.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ALine.cxx similarity index 100% rename from src/IntPatch/IntPatch_ALine.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ALine.cxx diff --git a/src/IntPatch/IntPatch_ALine.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ALine.hxx similarity index 100% rename from src/IntPatch/IntPatch_ALine.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ALine.hxx diff --git a/src/IntPatch/IntPatch_ALine.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ALine.lxx similarity index 100% rename from src/IntPatch/IntPatch_ALine.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ALine.lxx diff --git a/src/IntPatch/IntPatch_ALineToWLine.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ALineToWLine.cxx similarity index 100% rename from src/IntPatch/IntPatch_ALineToWLine.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ALineToWLine.cxx diff --git a/src/IntPatch/IntPatch_ALineToWLine.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ALineToWLine.hxx similarity index 100% rename from src/IntPatch/IntPatch_ALineToWLine.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ALineToWLine.hxx diff --git a/src/IntPatch/IntPatch_ArcFunction.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ArcFunction.cxx similarity index 100% rename from src/IntPatch/IntPatch_ArcFunction.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ArcFunction.cxx diff --git a/src/IntPatch/IntPatch_ArcFunction.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ArcFunction.hxx similarity index 100% rename from src/IntPatch/IntPatch_ArcFunction.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ArcFunction.hxx diff --git a/src/IntPatch/IntPatch_ArcFunction.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ArcFunction.lxx similarity index 100% rename from src/IntPatch/IntPatch_ArcFunction.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ArcFunction.lxx diff --git a/src/IntPatch/IntPatch_CSFunction.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_CSFunction.cxx similarity index 100% rename from src/IntPatch/IntPatch_CSFunction.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_CSFunction.cxx diff --git a/src/IntPatch/IntPatch_CSFunction.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_CSFunction.hxx similarity index 100% rename from src/IntPatch/IntPatch_CSFunction.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_CSFunction.hxx diff --git a/src/IntPatch/IntPatch_CurvIntSurf.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_CurvIntSurf.hxx similarity index 100% rename from src/IntPatch/IntPatch_CurvIntSurf.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_CurvIntSurf.hxx diff --git a/src/IntPatch/IntPatch_CurvIntSurf_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_CurvIntSurf_0.cxx similarity index 100% rename from src/IntPatch/IntPatch_CurvIntSurf_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_CurvIntSurf_0.cxx diff --git a/src/IntPatch/IntPatch_GLine.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_GLine.cxx similarity index 100% rename from src/IntPatch/IntPatch_GLine.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_GLine.cxx diff --git a/src/IntPatch/IntPatch_GLine.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_GLine.hxx similarity index 100% rename from src/IntPatch/IntPatch_GLine.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_GLine.hxx diff --git a/src/IntPatch/IntPatch_GLine.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_GLine.lxx similarity index 100% rename from src/IntPatch/IntPatch_GLine.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_GLine.lxx diff --git a/src/IntPatch/IntPatch_HCurve2dTool.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_HCurve2dTool.cxx similarity index 100% rename from src/IntPatch/IntPatch_HCurve2dTool.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_HCurve2dTool.cxx diff --git a/src/IntPatch/IntPatch_HCurve2dTool.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_HCurve2dTool.hxx similarity index 100% rename from src/IntPatch/IntPatch_HCurve2dTool.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_HCurve2dTool.hxx diff --git a/src/IntPatch/IntPatch_HCurve2dTool.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_HCurve2dTool.lxx similarity index 100% rename from src/IntPatch/IntPatch_HCurve2dTool.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_HCurve2dTool.lxx diff --git a/src/IntPatch/IntPatch_HInterTool.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_HInterTool.cxx similarity index 100% rename from src/IntPatch/IntPatch_HInterTool.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_HInterTool.cxx diff --git a/src/IntPatch/IntPatch_HInterTool.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_HInterTool.hxx similarity index 100% rename from src/IntPatch/IntPatch_HInterTool.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_HInterTool.hxx diff --git a/src/IntPatch/IntPatch_HInterTool.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_HInterTool.lxx similarity index 100% rename from src/IntPatch/IntPatch_HInterTool.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_HInterTool.lxx diff --git a/src/IntPatch/IntPatch_IType.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_IType.hxx similarity index 100% rename from src/IntPatch/IntPatch_IType.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_IType.hxx diff --git a/src/IntPatch/IntPatch_ImpImpIntersection.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ImpImpIntersection.cxx similarity index 100% rename from src/IntPatch/IntPatch_ImpImpIntersection.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ImpImpIntersection.cxx diff --git a/src/IntPatch/IntPatch_ImpImpIntersection.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ImpImpIntersection.hxx similarity index 100% rename from src/IntPatch/IntPatch_ImpImpIntersection.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ImpImpIntersection.hxx diff --git a/src/IntPatch/IntPatch_ImpImpIntersection.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ImpImpIntersection.lxx similarity index 100% rename from src/IntPatch/IntPatch_ImpImpIntersection.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ImpImpIntersection.lxx diff --git a/src/IntPatch/IntPatch_ImpPrmIntersection.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ImpPrmIntersection.cxx similarity index 100% rename from src/IntPatch/IntPatch_ImpPrmIntersection.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ImpPrmIntersection.cxx diff --git a/src/IntPatch/IntPatch_ImpPrmIntersection.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ImpPrmIntersection.hxx similarity index 100% rename from src/IntPatch/IntPatch_ImpPrmIntersection.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ImpPrmIntersection.hxx diff --git a/src/IntPatch/IntPatch_ImpPrmIntersection.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ImpPrmIntersection.lxx similarity index 100% rename from src/IntPatch/IntPatch_ImpPrmIntersection.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ImpPrmIntersection.lxx diff --git a/src/IntPatch/IntPatch_InterferencePolyhedron.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_InterferencePolyhedron.cxx similarity index 100% rename from src/IntPatch/IntPatch_InterferencePolyhedron.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_InterferencePolyhedron.cxx diff --git a/src/IntPatch/IntPatch_InterferencePolyhedron.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_InterferencePolyhedron.hxx similarity index 100% rename from src/IntPatch/IntPatch_InterferencePolyhedron.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_InterferencePolyhedron.hxx diff --git a/src/IntPatch/IntPatch_Intersection.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Intersection.cxx similarity index 100% rename from src/IntPatch/IntPatch_Intersection.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Intersection.cxx diff --git a/src/IntPatch/IntPatch_Intersection.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Intersection.hxx similarity index 100% rename from src/IntPatch/IntPatch_Intersection.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Intersection.hxx diff --git a/src/IntPatch/IntPatch_Intersection.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Intersection.lxx similarity index 100% rename from src/IntPatch/IntPatch_Intersection.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Intersection.lxx diff --git a/src/IntPatch/IntPatch_Line.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Line.cxx similarity index 100% rename from src/IntPatch/IntPatch_Line.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Line.cxx diff --git a/src/IntPatch/IntPatch_Line.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Line.hxx similarity index 100% rename from src/IntPatch/IntPatch_Line.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Line.hxx diff --git a/src/IntPatch/IntPatch_Line.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Line.lxx similarity index 100% rename from src/IntPatch/IntPatch_Line.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Line.lxx diff --git a/src/IntPatch/IntPatch_LineConstructor.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_LineConstructor.cxx similarity index 100% rename from src/IntPatch/IntPatch_LineConstructor.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_LineConstructor.cxx diff --git a/src/IntPatch/IntPatch_LineConstructor.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_LineConstructor.hxx similarity index 100% rename from src/IntPatch/IntPatch_LineConstructor.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_LineConstructor.hxx diff --git a/src/IntPatch/IntPatch_Point.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Point.cxx similarity index 100% rename from src/IntPatch/IntPatch_Point.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Point.cxx diff --git a/src/IntPatch/IntPatch_Point.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Point.hxx similarity index 100% rename from src/IntPatch/IntPatch_Point.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Point.hxx diff --git a/src/IntPatch/IntPatch_Point.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Point.lxx similarity index 100% rename from src/IntPatch/IntPatch_Point.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Point.lxx diff --git a/src/IntPatch/IntPatch_PointLine.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PointLine.cxx similarity index 100% rename from src/IntPatch/IntPatch_PointLine.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PointLine.cxx diff --git a/src/IntPatch/IntPatch_PointLine.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PointLine.hxx similarity index 100% rename from src/IntPatch/IntPatch_PointLine.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PointLine.hxx diff --git a/src/IntPatch/IntPatch_PolyArc.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PolyArc.cxx similarity index 100% rename from src/IntPatch/IntPatch_PolyArc.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PolyArc.cxx diff --git a/src/IntPatch/IntPatch_PolyArc.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PolyArc.hxx similarity index 100% rename from src/IntPatch/IntPatch_PolyArc.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PolyArc.hxx diff --git a/src/IntPatch/IntPatch_PolyLine.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PolyLine.cxx similarity index 100% rename from src/IntPatch/IntPatch_PolyLine.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PolyLine.cxx diff --git a/src/IntPatch/IntPatch_PolyLine.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PolyLine.hxx similarity index 100% rename from src/IntPatch/IntPatch_PolyLine.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PolyLine.hxx diff --git a/src/IntPatch/IntPatch_Polygo.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Polygo.cxx similarity index 100% rename from src/IntPatch/IntPatch_Polygo.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Polygo.cxx diff --git a/src/IntPatch/IntPatch_Polygo.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Polygo.hxx similarity index 100% rename from src/IntPatch/IntPatch_Polygo.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Polygo.hxx diff --git a/src/IntPatch/IntPatch_Polygo.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Polygo.lxx similarity index 100% rename from src/IntPatch/IntPatch_Polygo.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Polygo.lxx diff --git a/src/IntPatch/IntPatch_Polyhedron.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Polyhedron.cxx similarity index 100% rename from src/IntPatch/IntPatch_Polyhedron.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Polyhedron.cxx diff --git a/src/IntPatch/IntPatch_Polyhedron.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Polyhedron.hxx similarity index 100% rename from src/IntPatch/IntPatch_Polyhedron.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_Polyhedron.hxx diff --git a/src/IntPatch/IntPatch_PolyhedronTool.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PolyhedronTool.hxx similarity index 100% rename from src/IntPatch/IntPatch_PolyhedronTool.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PolyhedronTool.hxx diff --git a/src/IntPatch/IntPatch_PolyhedronTool.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PolyhedronTool.lxx similarity index 100% rename from src/IntPatch/IntPatch_PolyhedronTool.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PolyhedronTool.lxx diff --git a/src/IntPatch/IntPatch_PrmPrmIntersection.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PrmPrmIntersection.cxx similarity index 100% rename from src/IntPatch/IntPatch_PrmPrmIntersection.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PrmPrmIntersection.cxx diff --git a/src/IntPatch/IntPatch_PrmPrmIntersection.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PrmPrmIntersection.hxx similarity index 100% rename from src/IntPatch/IntPatch_PrmPrmIntersection.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PrmPrmIntersection.hxx diff --git a/src/IntPatch/IntPatch_PrmPrmIntersection.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PrmPrmIntersection.lxx similarity index 100% rename from src/IntPatch/IntPatch_PrmPrmIntersection.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PrmPrmIntersection.lxx diff --git a/src/IntPatch/IntPatch_PrmPrmIntersection_T3Bits.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PrmPrmIntersection_T3Bits.cxx similarity index 100% rename from src/IntPatch/IntPatch_PrmPrmIntersection_T3Bits.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PrmPrmIntersection_T3Bits.cxx diff --git a/src/IntPatch/IntPatch_PrmPrmIntersection_T3Bits.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PrmPrmIntersection_T3Bits.hxx similarity index 100% rename from src/IntPatch/IntPatch_PrmPrmIntersection_T3Bits.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_PrmPrmIntersection_T3Bits.hxx diff --git a/src/IntPatch/IntPatch_RLine.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_RLine.cxx similarity index 100% rename from src/IntPatch/IntPatch_RLine.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_RLine.cxx diff --git a/src/IntPatch/IntPatch_RLine.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_RLine.hxx similarity index 100% rename from src/IntPatch/IntPatch_RLine.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_RLine.hxx diff --git a/src/IntPatch/IntPatch_RLine.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_RLine.lxx similarity index 100% rename from src/IntPatch/IntPatch_RLine.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_RLine.lxx diff --git a/src/IntPatch/IntPatch_RstInt.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_RstInt.cxx similarity index 100% rename from src/IntPatch/IntPatch_RstInt.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_RstInt.cxx diff --git a/src/IntPatch/IntPatch_RstInt.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_RstInt.hxx similarity index 100% rename from src/IntPatch/IntPatch_RstInt.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_RstInt.hxx diff --git a/src/IntPatch/IntPatch_SearchPnt.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_SearchPnt.hxx similarity index 100% rename from src/IntPatch/IntPatch_SearchPnt.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_SearchPnt.hxx diff --git a/src/IntPatch/IntPatch_SequenceOfIWLineOfTheIWalking.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_SequenceOfIWLineOfTheIWalking.hxx similarity index 100% rename from src/IntPatch/IntPatch_SequenceOfIWLineOfTheIWalking.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_SequenceOfIWLineOfTheIWalking.hxx diff --git a/src/IntPatch/IntPatch_SequenceOfLine.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_SequenceOfLine.hxx similarity index 100% rename from src/IntPatch/IntPatch_SequenceOfLine.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_SequenceOfLine.hxx diff --git a/src/IntPatch/IntPatch_SequenceOfPathPointOfTheSOnBounds.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_SequenceOfPathPointOfTheSOnBounds.hxx similarity index 100% rename from src/IntPatch/IntPatch_SequenceOfPathPointOfTheSOnBounds.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_SequenceOfPathPointOfTheSOnBounds.hxx diff --git a/src/IntPatch/IntPatch_SequenceOfPoint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_SequenceOfPoint.hxx similarity index 100% rename from src/IntPatch/IntPatch_SequenceOfPoint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_SequenceOfPoint.hxx diff --git a/src/IntPatch/IntPatch_SequenceOfSegmentOfTheSOnBounds.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_SequenceOfSegmentOfTheSOnBounds.hxx similarity index 100% rename from src/IntPatch/IntPatch_SequenceOfSegmentOfTheSOnBounds.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_SequenceOfSegmentOfTheSOnBounds.hxx diff --git a/src/IntPatch/IntPatch_SpecPntType.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_SpecPntType.hxx similarity index 100% rename from src/IntPatch/IntPatch_SpecPntType.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_SpecPntType.hxx diff --git a/src/IntPatch/IntPatch_SpecialPoints.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_SpecialPoints.cxx similarity index 100% rename from src/IntPatch/IntPatch_SpecialPoints.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_SpecialPoints.cxx diff --git a/src/IntPatch/IntPatch_SpecialPoints.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_SpecialPoints.hxx similarity index 100% rename from src/IntPatch/IntPatch_SpecialPoints.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_SpecialPoints.hxx diff --git a/src/IntPatch/IntPatch_TheIWLineOfTheIWalking.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_TheIWLineOfTheIWalking.hxx similarity index 100% rename from src/IntPatch/IntPatch_TheIWLineOfTheIWalking.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_TheIWLineOfTheIWalking.hxx diff --git a/src/IntPatch/IntPatch_TheIWLineOfTheIWalking_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_TheIWLineOfTheIWalking_0.cxx similarity index 100% rename from src/IntPatch/IntPatch_TheIWLineOfTheIWalking_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_TheIWLineOfTheIWalking_0.cxx diff --git a/src/IntPatch/IntPatch_TheIWalking.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_TheIWalking.hxx similarity index 100% rename from src/IntPatch/IntPatch_TheIWalking.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_TheIWalking.hxx diff --git a/src/IntPatch/IntPatch_TheIWalking_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_TheIWalking_0.cxx similarity index 100% rename from src/IntPatch/IntPatch_TheIWalking_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_TheIWalking_0.cxx diff --git a/src/IntPatch/IntPatch_ThePathPointOfTheSOnBounds.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ThePathPointOfTheSOnBounds.hxx similarity index 100% rename from src/IntPatch/IntPatch_ThePathPointOfTheSOnBounds.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ThePathPointOfTheSOnBounds.hxx diff --git a/src/IntPatch/IntPatch_ThePathPointOfTheSOnBounds_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ThePathPointOfTheSOnBounds_0.cxx similarity index 100% rename from src/IntPatch/IntPatch_ThePathPointOfTheSOnBounds_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_ThePathPointOfTheSOnBounds_0.cxx diff --git a/src/IntPatch/IntPatch_TheSOnBounds.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_TheSOnBounds.hxx similarity index 100% rename from src/IntPatch/IntPatch_TheSOnBounds.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_TheSOnBounds.hxx diff --git a/src/IntPatch/IntPatch_TheSOnBounds_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_TheSOnBounds_0.cxx similarity index 100% rename from src/IntPatch/IntPatch_TheSOnBounds_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_TheSOnBounds_0.cxx diff --git a/src/IntPatch/IntPatch_TheSearchInside.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_TheSearchInside.hxx similarity index 100% rename from src/IntPatch/IntPatch_TheSearchInside.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_TheSearchInside.hxx diff --git a/src/IntPatch/IntPatch_TheSearchInside_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_TheSearchInside_0.cxx similarity index 100% rename from src/IntPatch/IntPatch_TheSearchInside_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_TheSearchInside_0.cxx diff --git a/src/IntPatch/IntPatch_TheSegmentOfTheSOnBounds.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_TheSegmentOfTheSOnBounds.hxx similarity index 100% rename from src/IntPatch/IntPatch_TheSegmentOfTheSOnBounds.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_TheSegmentOfTheSOnBounds.hxx diff --git a/src/IntPatch/IntPatch_TheSegmentOfTheSOnBounds_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_TheSegmentOfTheSOnBounds_0.cxx similarity index 100% rename from src/IntPatch/IntPatch_TheSegmentOfTheSOnBounds_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_TheSegmentOfTheSOnBounds_0.cxx diff --git a/src/IntPatch/IntPatch_TheSurfFunction.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_TheSurfFunction.hxx similarity index 100% rename from src/IntPatch/IntPatch_TheSurfFunction.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_TheSurfFunction.hxx diff --git a/src/IntPatch/IntPatch_TheSurfFunction_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_TheSurfFunction_0.cxx similarity index 100% rename from src/IntPatch/IntPatch_TheSurfFunction_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_TheSurfFunction_0.cxx diff --git a/src/IntPatch/IntPatch_WLine.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_WLine.cxx similarity index 100% rename from src/IntPatch/IntPatch_WLine.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_WLine.cxx diff --git a/src/IntPatch/IntPatch_WLine.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_WLine.hxx similarity index 100% rename from src/IntPatch/IntPatch_WLine.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_WLine.hxx diff --git a/src/IntPatch/IntPatch_WLine.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_WLine.lxx similarity index 100% rename from src/IntPatch/IntPatch_WLine.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_WLine.lxx diff --git a/src/IntPatch/IntPatch_WLineTool.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_WLineTool.cxx similarity index 100% rename from src/IntPatch/IntPatch_WLineTool.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_WLineTool.cxx diff --git a/src/IntPatch/IntPatch_WLineTool.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_WLineTool.hxx similarity index 100% rename from src/IntPatch/IntPatch_WLineTool.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPatch/IntPatch_WLineTool.hxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/FILES.cmake new file mode 100644 index 0000000000..1b9440859e --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/FILES.cmake @@ -0,0 +1,33 @@ +# Source files for IntPolyh package +set(OCCT_IntPolyh_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IntPolyh_FILES + IntPolyh_Array.hxx + IntPolyh_ArrayOfEdges.hxx + IntPolyh_ArrayOfPoints.hxx + IntPolyh_ArrayOfPointNormal.hxx + IntPolyh_ArrayOfSectionLines.hxx + IntPolyh_ArrayOfTangentZones.hxx + IntPolyh_ArrayOfTriangles.hxx + IntPolyh_Couple.cxx + IntPolyh_Couple.hxx + IntPolyh_Edge.cxx + IntPolyh_Edge.hxx + IntPolyh_Intersection.cxx + IntPolyh_Intersection.hxx + IntPolyh_ListOfCouples.hxx + IntPolyh_MaillageAffinage.cxx + IntPolyh_MaillageAffinage.hxx + IntPolyh_PMaillageAffinage.hxx + IntPolyh_Point.cxx + IntPolyh_Point.hxx + IntPolyh_SectionLine.cxx + IntPolyh_SectionLine.hxx + IntPolyh_SeqOfStartPoints.hxx + IntPolyh_StartPoint.cxx + IntPolyh_StartPoint.hxx + IntPolyh_Tools.cxx + IntPolyh_Tools.hxx + IntPolyh_Triangle.cxx + IntPolyh_Triangle.hxx +) diff --git a/src/IntPolyh/IntPolyh_Array.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Array.hxx similarity index 100% rename from src/IntPolyh/IntPolyh_Array.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Array.hxx diff --git a/src/IntPolyh/IntPolyh_ArrayOfEdges.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_ArrayOfEdges.hxx similarity index 100% rename from src/IntPolyh/IntPolyh_ArrayOfEdges.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_ArrayOfEdges.hxx diff --git a/src/IntPolyh/IntPolyh_ArrayOfPointNormal.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_ArrayOfPointNormal.hxx similarity index 100% rename from src/IntPolyh/IntPolyh_ArrayOfPointNormal.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_ArrayOfPointNormal.hxx diff --git a/src/IntPolyh/IntPolyh_ArrayOfPoints.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_ArrayOfPoints.hxx similarity index 100% rename from src/IntPolyh/IntPolyh_ArrayOfPoints.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_ArrayOfPoints.hxx diff --git a/src/IntPolyh/IntPolyh_ArrayOfSectionLines.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_ArrayOfSectionLines.hxx similarity index 100% rename from src/IntPolyh/IntPolyh_ArrayOfSectionLines.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_ArrayOfSectionLines.hxx diff --git a/src/IntPolyh/IntPolyh_ArrayOfTangentZones.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_ArrayOfTangentZones.hxx similarity index 100% rename from src/IntPolyh/IntPolyh_ArrayOfTangentZones.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_ArrayOfTangentZones.hxx diff --git a/src/IntPolyh/IntPolyh_ArrayOfTriangles.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_ArrayOfTriangles.hxx similarity index 100% rename from src/IntPolyh/IntPolyh_ArrayOfTriangles.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_ArrayOfTriangles.hxx diff --git a/src/IntPolyh/IntPolyh_Couple.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Couple.cxx similarity index 100% rename from src/IntPolyh/IntPolyh_Couple.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Couple.cxx diff --git a/src/IntPolyh/IntPolyh_Couple.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Couple.hxx similarity index 100% rename from src/IntPolyh/IntPolyh_Couple.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Couple.hxx diff --git a/src/IntPolyh/IntPolyh_Edge.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Edge.cxx similarity index 100% rename from src/IntPolyh/IntPolyh_Edge.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Edge.cxx diff --git a/src/IntPolyh/IntPolyh_Edge.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Edge.hxx similarity index 100% rename from src/IntPolyh/IntPolyh_Edge.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Edge.hxx diff --git a/src/IntPolyh/IntPolyh_Intersection.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Intersection.cxx similarity index 100% rename from src/IntPolyh/IntPolyh_Intersection.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Intersection.cxx diff --git a/src/IntPolyh/IntPolyh_Intersection.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Intersection.hxx similarity index 100% rename from src/IntPolyh/IntPolyh_Intersection.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Intersection.hxx diff --git a/src/IntPolyh/IntPolyh_ListOfCouples.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_ListOfCouples.hxx similarity index 100% rename from src/IntPolyh/IntPolyh_ListOfCouples.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_ListOfCouples.hxx diff --git a/src/IntPolyh/IntPolyh_MaillageAffinage.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_MaillageAffinage.cxx similarity index 100% rename from src/IntPolyh/IntPolyh_MaillageAffinage.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_MaillageAffinage.cxx diff --git a/src/IntPolyh/IntPolyh_MaillageAffinage.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_MaillageAffinage.hxx similarity index 100% rename from src/IntPolyh/IntPolyh_MaillageAffinage.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_MaillageAffinage.hxx diff --git a/src/IntPolyh/IntPolyh_PMaillageAffinage.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_PMaillageAffinage.hxx similarity index 100% rename from src/IntPolyh/IntPolyh_PMaillageAffinage.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_PMaillageAffinage.hxx diff --git a/src/IntPolyh/IntPolyh_Point.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Point.cxx similarity index 100% rename from src/IntPolyh/IntPolyh_Point.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Point.cxx diff --git a/src/IntPolyh/IntPolyh_Point.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Point.hxx similarity index 100% rename from src/IntPolyh/IntPolyh_Point.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Point.hxx diff --git a/src/IntPolyh/IntPolyh_SectionLine.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_SectionLine.cxx similarity index 100% rename from src/IntPolyh/IntPolyh_SectionLine.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_SectionLine.cxx diff --git a/src/IntPolyh/IntPolyh_SectionLine.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_SectionLine.hxx similarity index 100% rename from src/IntPolyh/IntPolyh_SectionLine.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_SectionLine.hxx diff --git a/src/IntPolyh/IntPolyh_SeqOfStartPoints.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_SeqOfStartPoints.hxx similarity index 100% rename from src/IntPolyh/IntPolyh_SeqOfStartPoints.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_SeqOfStartPoints.hxx diff --git a/src/IntPolyh/IntPolyh_StartPoint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_StartPoint.cxx similarity index 100% rename from src/IntPolyh/IntPolyh_StartPoint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_StartPoint.cxx diff --git a/src/IntPolyh/IntPolyh_StartPoint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_StartPoint.hxx similarity index 100% rename from src/IntPolyh/IntPolyh_StartPoint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_StartPoint.hxx diff --git a/src/IntPolyh/IntPolyh_Tools.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Tools.cxx similarity index 100% rename from src/IntPolyh/IntPolyh_Tools.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Tools.cxx diff --git a/src/IntPolyh/IntPolyh_Tools.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Tools.hxx similarity index 100% rename from src/IntPolyh/IntPolyh_Tools.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Tools.hxx diff --git a/src/IntPolyh/IntPolyh_Triangle.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Triangle.cxx similarity index 100% rename from src/IntPolyh/IntPolyh_Triangle.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Triangle.cxx diff --git a/src/IntPolyh/IntPolyh_Triangle.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Triangle.hxx similarity index 100% rename from src/IntPolyh/IntPolyh_Triangle.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntPolyh/IntPolyh_Triangle.hxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/FILES.cmake new file mode 100644 index 0000000000..e0a2ecb73f --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/FILES.cmake @@ -0,0 +1,25 @@ +# Source files for IntRes2d package +set(OCCT_IntRes2d_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IntRes2d_FILES + IntRes2d_Domain.cxx + IntRes2d_Domain.hxx + IntRes2d_Domain.lxx + IntRes2d_Intersection.cxx + IntRes2d_Intersection.hxx + IntRes2d_Intersection.lxx + IntRes2d_IntersectionPoint.cxx + IntRes2d_IntersectionPoint.hxx + IntRes2d_IntersectionPoint.lxx + IntRes2d_IntersectionSegment.cxx + IntRes2d_IntersectionSegment.hxx + IntRes2d_IntersectionSegment.lxx + IntRes2d_Position.hxx + IntRes2d_SequenceOfIntersectionPoint.hxx + IntRes2d_SequenceOfIntersectionSegment.hxx + IntRes2d_Situation.hxx + IntRes2d_Transition.cxx + IntRes2d_Transition.hxx + IntRes2d_Transition.lxx + IntRes2d_TypeTrans.hxx +) diff --git a/src/IntRes2d/IntRes2d_Domain.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_Domain.cxx similarity index 100% rename from src/IntRes2d/IntRes2d_Domain.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_Domain.cxx diff --git a/src/IntRes2d/IntRes2d_Domain.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_Domain.hxx similarity index 100% rename from src/IntRes2d/IntRes2d_Domain.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_Domain.hxx diff --git a/src/IntRes2d/IntRes2d_Domain.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_Domain.lxx similarity index 100% rename from src/IntRes2d/IntRes2d_Domain.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_Domain.lxx diff --git a/src/IntRes2d/IntRes2d_Intersection.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_Intersection.cxx similarity index 100% rename from src/IntRes2d/IntRes2d_Intersection.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_Intersection.cxx diff --git a/src/IntRes2d/IntRes2d_Intersection.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_Intersection.hxx similarity index 100% rename from src/IntRes2d/IntRes2d_Intersection.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_Intersection.hxx diff --git a/src/IntRes2d/IntRes2d_Intersection.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_Intersection.lxx similarity index 100% rename from src/IntRes2d/IntRes2d_Intersection.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_Intersection.lxx diff --git a/src/IntRes2d/IntRes2d_IntersectionPoint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_IntersectionPoint.cxx similarity index 100% rename from src/IntRes2d/IntRes2d_IntersectionPoint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_IntersectionPoint.cxx diff --git a/src/IntRes2d/IntRes2d_IntersectionPoint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_IntersectionPoint.hxx similarity index 100% rename from src/IntRes2d/IntRes2d_IntersectionPoint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_IntersectionPoint.hxx diff --git a/src/IntRes2d/IntRes2d_IntersectionPoint.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_IntersectionPoint.lxx similarity index 100% rename from src/IntRes2d/IntRes2d_IntersectionPoint.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_IntersectionPoint.lxx diff --git a/src/IntRes2d/IntRes2d_IntersectionSegment.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_IntersectionSegment.cxx similarity index 100% rename from src/IntRes2d/IntRes2d_IntersectionSegment.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_IntersectionSegment.cxx diff --git a/src/IntRes2d/IntRes2d_IntersectionSegment.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_IntersectionSegment.hxx similarity index 100% rename from src/IntRes2d/IntRes2d_IntersectionSegment.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_IntersectionSegment.hxx diff --git a/src/IntRes2d/IntRes2d_IntersectionSegment.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_IntersectionSegment.lxx similarity index 100% rename from src/IntRes2d/IntRes2d_IntersectionSegment.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_IntersectionSegment.lxx diff --git a/src/IntRes2d/IntRes2d_Position.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_Position.hxx similarity index 100% rename from src/IntRes2d/IntRes2d_Position.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_Position.hxx diff --git a/src/IntRes2d/IntRes2d_SequenceOfIntersectionPoint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_SequenceOfIntersectionPoint.hxx similarity index 100% rename from src/IntRes2d/IntRes2d_SequenceOfIntersectionPoint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_SequenceOfIntersectionPoint.hxx diff --git a/src/IntRes2d/IntRes2d_SequenceOfIntersectionSegment.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_SequenceOfIntersectionSegment.hxx similarity index 100% rename from src/IntRes2d/IntRes2d_SequenceOfIntersectionSegment.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_SequenceOfIntersectionSegment.hxx diff --git a/src/IntRes2d/IntRes2d_Situation.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_Situation.hxx similarity index 100% rename from src/IntRes2d/IntRes2d_Situation.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_Situation.hxx diff --git a/src/IntRes2d/IntRes2d_Transition.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_Transition.cxx similarity index 100% rename from src/IntRes2d/IntRes2d_Transition.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_Transition.cxx diff --git a/src/IntRes2d/IntRes2d_Transition.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_Transition.hxx similarity index 100% rename from src/IntRes2d/IntRes2d_Transition.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_Transition.hxx diff --git a/src/IntRes2d/IntRes2d_Transition.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_Transition.lxx similarity index 100% rename from src/IntRes2d/IntRes2d_Transition.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_Transition.lxx diff --git a/src/IntRes2d/IntRes2d_TypeTrans.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_TypeTrans.hxx similarity index 100% rename from src/IntRes2d/IntRes2d_TypeTrans.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntRes2d/IntRes2d_TypeTrans.hxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/IntStart/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/IntStart/FILES.cmake new file mode 100644 index 0000000000..434e7832c2 --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/IntStart/FILES.cmake @@ -0,0 +1,15 @@ +# Source files for IntStart package +set(OCCT_IntStart_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IntStart_FILES + IntStart_PathPoint.gxx + IntStart_PathPoint.lxx + IntStart_SearchInside.gxx + IntStart_SearchInside.lxx + IntStart_SearchOnBoundaries.gxx + IntStart_SearchOnBoundaries.lxx + IntStart_Segment.gxx + IntStart_Segment.lxx + IntStart_SITopolTool.cxx + IntStart_SITopolTool.hxx +) diff --git a/src/IntStart/IntStart_PathPoint.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntStart/IntStart_PathPoint.gxx similarity index 100% rename from src/IntStart/IntStart_PathPoint.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntStart/IntStart_PathPoint.gxx diff --git a/src/IntStart/IntStart_PathPoint.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntStart/IntStart_PathPoint.lxx similarity index 100% rename from src/IntStart/IntStart_PathPoint.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntStart/IntStart_PathPoint.lxx diff --git a/src/IntStart/IntStart_SITopolTool.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntStart/IntStart_SITopolTool.cxx similarity index 100% rename from src/IntStart/IntStart_SITopolTool.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntStart/IntStart_SITopolTool.cxx diff --git a/src/IntStart/IntStart_SITopolTool.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntStart/IntStart_SITopolTool.hxx similarity index 100% rename from src/IntStart/IntStart_SITopolTool.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntStart/IntStart_SITopolTool.hxx diff --git a/src/IntStart/IntStart_SearchInside.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntStart/IntStart_SearchInside.gxx similarity index 100% rename from src/IntStart/IntStart_SearchInside.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntStart/IntStart_SearchInside.gxx diff --git a/src/IntStart/IntStart_SearchInside.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntStart/IntStart_SearchInside.lxx similarity index 100% rename from src/IntStart/IntStart_SearchInside.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntStart/IntStart_SearchInside.lxx diff --git a/src/IntStart/IntStart_SearchOnBoundaries.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntStart/IntStart_SearchOnBoundaries.gxx similarity index 100% rename from src/IntStart/IntStart_SearchOnBoundaries.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntStart/IntStart_SearchOnBoundaries.gxx diff --git a/src/IntStart/IntStart_SearchOnBoundaries.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntStart/IntStart_SearchOnBoundaries.lxx similarity index 100% rename from src/IntStart/IntStart_SearchOnBoundaries.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntStart/IntStart_SearchOnBoundaries.lxx diff --git a/src/IntStart/IntStart_Segment.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntStart/IntStart_Segment.gxx similarity index 100% rename from src/IntStart/IntStart_Segment.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntStart/IntStart_Segment.gxx diff --git a/src/IntStart/IntStart_Segment.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntStart/IntStart_Segment.lxx similarity index 100% rename from src/IntStart/IntStart_Segment.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntStart/IntStart_Segment.lxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/FILES.cmake new file mode 100644 index 0000000000..89de5aad49 --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/FILES.cmake @@ -0,0 +1,43 @@ +# Source files for IntSurf package +set(OCCT_IntSurf_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IntSurf_FILES + IntSurf.cxx + IntSurf.hxx + IntSurf_Allocator.hxx + IntSurf_Couple.hxx + IntSurf_Couple.lxx + IntSurf_InteriorPoint.cxx + IntSurf_InteriorPoint.hxx + IntSurf_InteriorPoint.lxx + IntSurf_InteriorPointTool.hxx + IntSurf_InteriorPointTool.lxx + IntSurf_LineOn2S.cxx + IntSurf_LineOn2S.hxx + IntSurf_LineOn2S.lxx + IntSurf_ListIteratorOfListOfPntOn2S.hxx + IntSurf_ListOfPntOn2S.hxx + IntSurf_PathPoint.cxx + IntSurf_PathPoint.hxx + IntSurf_PathPoint.lxx + IntSurf_PathPointTool.hxx + IntSurf_PathPointTool.lxx + IntSurf_PntOn2S.cxx + IntSurf_PntOn2S.hxx + IntSurf_PntOn2S.lxx + IntSurf_Quadric.cxx + IntSurf_Quadric.hxx + IntSurf_Quadric.lxx + IntSurf_QuadricTool.cxx + IntSurf_QuadricTool.hxx + IntSurf_QuadricTool.lxx + IntSurf_SequenceOfCouple.hxx + IntSurf_SequenceOfInteriorPoint.hxx + IntSurf_SequenceOfPathPoint.hxx + IntSurf_SequenceOfPntOn2S.hxx + IntSurf_Situation.hxx + IntSurf_Transition.cxx + IntSurf_Transition.hxx + IntSurf_Transition.lxx + IntSurf_TypeTrans.hxx +) diff --git a/src/IntSurf/IntSurf.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf.cxx similarity index 100% rename from src/IntSurf/IntSurf.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf.cxx diff --git a/src/IntSurf/IntSurf.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf.hxx similarity index 100% rename from src/IntSurf/IntSurf.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf.hxx diff --git a/src/IntSurf/IntSurf_Allocator.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_Allocator.hxx similarity index 100% rename from src/IntSurf/IntSurf_Allocator.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_Allocator.hxx diff --git a/src/IntSurf/IntSurf_Couple.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_Couple.hxx similarity index 100% rename from src/IntSurf/IntSurf_Couple.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_Couple.hxx diff --git a/src/IntSurf/IntSurf_Couple.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_Couple.lxx similarity index 100% rename from src/IntSurf/IntSurf_Couple.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_Couple.lxx diff --git a/src/IntSurf/IntSurf_InteriorPoint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_InteriorPoint.cxx similarity index 100% rename from src/IntSurf/IntSurf_InteriorPoint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_InteriorPoint.cxx diff --git a/src/IntSurf/IntSurf_InteriorPoint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_InteriorPoint.hxx similarity index 100% rename from src/IntSurf/IntSurf_InteriorPoint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_InteriorPoint.hxx diff --git a/src/IntSurf/IntSurf_InteriorPoint.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_InteriorPoint.lxx similarity index 100% rename from src/IntSurf/IntSurf_InteriorPoint.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_InteriorPoint.lxx diff --git a/src/IntSurf/IntSurf_InteriorPointTool.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_InteriorPointTool.hxx similarity index 100% rename from src/IntSurf/IntSurf_InteriorPointTool.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_InteriorPointTool.hxx diff --git a/src/IntSurf/IntSurf_InteriorPointTool.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_InteriorPointTool.lxx similarity index 100% rename from src/IntSurf/IntSurf_InteriorPointTool.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_InteriorPointTool.lxx diff --git a/src/IntSurf/IntSurf_LineOn2S.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_LineOn2S.cxx similarity index 100% rename from src/IntSurf/IntSurf_LineOn2S.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_LineOn2S.cxx diff --git a/src/IntSurf/IntSurf_LineOn2S.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_LineOn2S.hxx similarity index 100% rename from src/IntSurf/IntSurf_LineOn2S.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_LineOn2S.hxx diff --git a/src/IntSurf/IntSurf_LineOn2S.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_LineOn2S.lxx similarity index 100% rename from src/IntSurf/IntSurf_LineOn2S.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_LineOn2S.lxx diff --git a/src/IntSurf/IntSurf_ListIteratorOfListOfPntOn2S.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_ListIteratorOfListOfPntOn2S.hxx similarity index 100% rename from src/IntSurf/IntSurf_ListIteratorOfListOfPntOn2S.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_ListIteratorOfListOfPntOn2S.hxx diff --git a/src/IntSurf/IntSurf_ListOfPntOn2S.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_ListOfPntOn2S.hxx similarity index 100% rename from src/IntSurf/IntSurf_ListOfPntOn2S.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_ListOfPntOn2S.hxx diff --git a/src/IntSurf/IntSurf_PathPoint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_PathPoint.cxx similarity index 100% rename from src/IntSurf/IntSurf_PathPoint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_PathPoint.cxx diff --git a/src/IntSurf/IntSurf_PathPoint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_PathPoint.hxx similarity index 100% rename from src/IntSurf/IntSurf_PathPoint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_PathPoint.hxx diff --git a/src/IntSurf/IntSurf_PathPoint.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_PathPoint.lxx similarity index 100% rename from src/IntSurf/IntSurf_PathPoint.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_PathPoint.lxx diff --git a/src/IntSurf/IntSurf_PathPointTool.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_PathPointTool.hxx similarity index 100% rename from src/IntSurf/IntSurf_PathPointTool.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_PathPointTool.hxx diff --git a/src/IntSurf/IntSurf_PathPointTool.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_PathPointTool.lxx similarity index 100% rename from src/IntSurf/IntSurf_PathPointTool.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_PathPointTool.lxx diff --git a/src/IntSurf/IntSurf_PntOn2S.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_PntOn2S.cxx similarity index 100% rename from src/IntSurf/IntSurf_PntOn2S.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_PntOn2S.cxx diff --git a/src/IntSurf/IntSurf_PntOn2S.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_PntOn2S.hxx similarity index 100% rename from src/IntSurf/IntSurf_PntOn2S.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_PntOn2S.hxx diff --git a/src/IntSurf/IntSurf_PntOn2S.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_PntOn2S.lxx similarity index 100% rename from src/IntSurf/IntSurf_PntOn2S.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_PntOn2S.lxx diff --git a/src/IntSurf/IntSurf_Quadric.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_Quadric.cxx similarity index 100% rename from src/IntSurf/IntSurf_Quadric.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_Quadric.cxx diff --git a/src/IntSurf/IntSurf_Quadric.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_Quadric.hxx similarity index 100% rename from src/IntSurf/IntSurf_Quadric.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_Quadric.hxx diff --git a/src/IntSurf/IntSurf_Quadric.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_Quadric.lxx similarity index 100% rename from src/IntSurf/IntSurf_Quadric.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_Quadric.lxx diff --git a/src/IntSurf/IntSurf_QuadricTool.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_QuadricTool.cxx similarity index 100% rename from src/IntSurf/IntSurf_QuadricTool.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_QuadricTool.cxx diff --git a/src/IntSurf/IntSurf_QuadricTool.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_QuadricTool.hxx similarity index 100% rename from src/IntSurf/IntSurf_QuadricTool.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_QuadricTool.hxx diff --git a/src/IntSurf/IntSurf_QuadricTool.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_QuadricTool.lxx similarity index 100% rename from src/IntSurf/IntSurf_QuadricTool.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_QuadricTool.lxx diff --git a/src/IntSurf/IntSurf_SequenceOfCouple.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_SequenceOfCouple.hxx similarity index 100% rename from src/IntSurf/IntSurf_SequenceOfCouple.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_SequenceOfCouple.hxx diff --git a/src/IntSurf/IntSurf_SequenceOfInteriorPoint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_SequenceOfInteriorPoint.hxx similarity index 100% rename from src/IntSurf/IntSurf_SequenceOfInteriorPoint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_SequenceOfInteriorPoint.hxx diff --git a/src/IntSurf/IntSurf_SequenceOfPathPoint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_SequenceOfPathPoint.hxx similarity index 100% rename from src/IntSurf/IntSurf_SequenceOfPathPoint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_SequenceOfPathPoint.hxx diff --git a/src/IntSurf/IntSurf_SequenceOfPntOn2S.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_SequenceOfPntOn2S.hxx similarity index 100% rename from src/IntSurf/IntSurf_SequenceOfPntOn2S.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_SequenceOfPntOn2S.hxx diff --git a/src/IntSurf/IntSurf_Situation.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_Situation.hxx similarity index 100% rename from src/IntSurf/IntSurf_Situation.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_Situation.hxx diff --git a/src/IntSurf/IntSurf_Transition.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_Transition.cxx similarity index 100% rename from src/IntSurf/IntSurf_Transition.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_Transition.cxx diff --git a/src/IntSurf/IntSurf_Transition.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_Transition.hxx similarity index 100% rename from src/IntSurf/IntSurf_Transition.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_Transition.hxx diff --git a/src/IntSurf/IntSurf_Transition.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_Transition.lxx similarity index 100% rename from src/IntSurf/IntSurf_Transition.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_Transition.lxx diff --git a/src/IntSurf/IntSurf_TypeTrans.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_TypeTrans.hxx similarity index 100% rename from src/IntSurf/IntSurf_TypeTrans.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntSurf/IntSurf_TypeTrans.hxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/IntWalk/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/IntWalk/FILES.cmake new file mode 100644 index 0000000000..c2efbdb9cd --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/IntWalk/FILES.cmake @@ -0,0 +1,19 @@ +# Source files for IntWalk package +set(OCCT_IntWalk_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IntWalk_FILES + IntWalk_IWalking.gxx + IntWalk_IWalking.lxx + IntWalk_IWLine.gxx + IntWalk_IWLine.lxx + IntWalk_PWalking.cxx + IntWalk_PWalking.hxx + IntWalk_PWalking.lxx + IntWalk_StatusDeflection.hxx + IntWalk_TheFunctionOfTheInt2S.hxx + IntWalk_TheFunctionOfTheInt2S_0.cxx + IntWalk_TheInt2S.hxx + IntWalk_TheInt2S_0.cxx + IntWalk_VectorOfInteger.hxx + IntWalk_VectorOfWalkingData.hxx +) diff --git a/src/IntWalk/IntWalk_IWLine.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_IWLine.gxx similarity index 100% rename from src/IntWalk/IntWalk_IWLine.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_IWLine.gxx diff --git a/src/IntWalk/IntWalk_IWLine.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_IWLine.lxx similarity index 100% rename from src/IntWalk/IntWalk_IWLine.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_IWLine.lxx diff --git a/src/IntWalk/IntWalk_IWalking.gxx b/src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_IWalking.gxx similarity index 100% rename from src/IntWalk/IntWalk_IWalking.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_IWalking.gxx diff --git a/src/IntWalk/IntWalk_IWalking.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_IWalking.lxx similarity index 100% rename from src/IntWalk/IntWalk_IWalking.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_IWalking.lxx diff --git a/src/IntWalk/IntWalk_PWalking.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_PWalking.cxx similarity index 100% rename from src/IntWalk/IntWalk_PWalking.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_PWalking.cxx diff --git a/src/IntWalk/IntWalk_PWalking.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_PWalking.hxx similarity index 100% rename from src/IntWalk/IntWalk_PWalking.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_PWalking.hxx diff --git a/src/IntWalk/IntWalk_PWalking.lxx b/src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_PWalking.lxx similarity index 100% rename from src/IntWalk/IntWalk_PWalking.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_PWalking.lxx diff --git a/src/IntWalk/IntWalk_StatusDeflection.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_StatusDeflection.hxx similarity index 100% rename from src/IntWalk/IntWalk_StatusDeflection.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_StatusDeflection.hxx diff --git a/src/IntWalk/IntWalk_TheFunctionOfTheInt2S.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_TheFunctionOfTheInt2S.hxx similarity index 100% rename from src/IntWalk/IntWalk_TheFunctionOfTheInt2S.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_TheFunctionOfTheInt2S.hxx diff --git a/src/IntWalk/IntWalk_TheFunctionOfTheInt2S_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_TheFunctionOfTheInt2S_0.cxx similarity index 100% rename from src/IntWalk/IntWalk_TheFunctionOfTheInt2S_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_TheFunctionOfTheInt2S_0.cxx diff --git a/src/IntWalk/IntWalk_TheInt2S.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_TheInt2S.hxx similarity index 100% rename from src/IntWalk/IntWalk_TheInt2S.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_TheInt2S.hxx diff --git a/src/IntWalk/IntWalk_TheInt2S_0.cxx b/src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_TheInt2S_0.cxx similarity index 100% rename from src/IntWalk/IntWalk_TheInt2S_0.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_TheInt2S_0.cxx diff --git a/src/IntWalk/IntWalk_VectorOfInteger.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_VectorOfInteger.hxx similarity index 100% rename from src/IntWalk/IntWalk_VectorOfInteger.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_VectorOfInteger.hxx diff --git a/src/IntWalk/IntWalk_VectorOfWalkingData.hxx b/src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_VectorOfWalkingData.hxx similarity index 100% rename from src/IntWalk/IntWalk_VectorOfWalkingData.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/IntWalk/IntWalk_VectorOfWalkingData.hxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/Intf/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/Intf/FILES.cmake new file mode 100644 index 0000000000..f44ce42da9 --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/Intf/FILES.cmake @@ -0,0 +1,32 @@ +# Source files for Intf package +set(OCCT_Intf_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Intf_FILES + Intf.cxx + Intf.hxx + Intf_Array1OfLin.hxx + Intf_Interference.cxx + Intf_Interference.hxx + Intf_Interference.lxx + Intf_InterferencePolygon2d.cxx + Intf_InterferencePolygon2d.hxx + Intf_InterferencePolygonPolyhedron.gxx + Intf_PIType.hxx + Intf_Polygon2d.cxx + Intf_Polygon2d.hxx + Intf_Polygon2d.lxx + Intf_SectionLine.cxx + Intf_SectionLine.hxx + Intf_SectionLine.lxx + Intf_SectionPoint.cxx + Intf_SectionPoint.hxx + Intf_SectionPoint.lxx + Intf_SeqOfSectionLine.hxx + Intf_SeqOfSectionPoint.hxx + Intf_SeqOfTangentZone.hxx + Intf_TangentZone.cxx + Intf_TangentZone.hxx + Intf_TangentZone.lxx + Intf_Tool.cxx + Intf_Tool.hxx +) diff --git a/src/Intf/Intf.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf.cxx similarity index 100% rename from src/Intf/Intf.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf.cxx diff --git a/src/Intf/Intf.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf.hxx similarity index 100% rename from src/Intf/Intf.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf.hxx diff --git a/src/Intf/Intf_Array1OfLin.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_Array1OfLin.hxx similarity index 100% rename from src/Intf/Intf_Array1OfLin.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_Array1OfLin.hxx diff --git a/src/Intf/Intf_Interference.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_Interference.cxx similarity index 100% rename from src/Intf/Intf_Interference.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_Interference.cxx diff --git a/src/Intf/Intf_Interference.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_Interference.hxx similarity index 100% rename from src/Intf/Intf_Interference.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_Interference.hxx diff --git a/src/Intf/Intf_Interference.lxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_Interference.lxx similarity index 100% rename from src/Intf/Intf_Interference.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_Interference.lxx diff --git a/src/Intf/Intf_InterferencePolygon2d.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_InterferencePolygon2d.cxx similarity index 100% rename from src/Intf/Intf_InterferencePolygon2d.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_InterferencePolygon2d.cxx diff --git a/src/Intf/Intf_InterferencePolygon2d.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_InterferencePolygon2d.hxx similarity index 100% rename from src/Intf/Intf_InterferencePolygon2d.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_InterferencePolygon2d.hxx diff --git a/src/Intf/Intf_InterferencePolygonPolyhedron.gxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_InterferencePolygonPolyhedron.gxx similarity index 100% rename from src/Intf/Intf_InterferencePolygonPolyhedron.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_InterferencePolygonPolyhedron.gxx diff --git a/src/Intf/Intf_PIType.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_PIType.hxx similarity index 100% rename from src/Intf/Intf_PIType.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_PIType.hxx diff --git a/src/Intf/Intf_Polygon2d.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_Polygon2d.cxx similarity index 100% rename from src/Intf/Intf_Polygon2d.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_Polygon2d.cxx diff --git a/src/Intf/Intf_Polygon2d.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_Polygon2d.hxx similarity index 100% rename from src/Intf/Intf_Polygon2d.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_Polygon2d.hxx diff --git a/src/Intf/Intf_Polygon2d.lxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_Polygon2d.lxx similarity index 100% rename from src/Intf/Intf_Polygon2d.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_Polygon2d.lxx diff --git a/src/Intf/Intf_SectionLine.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_SectionLine.cxx similarity index 100% rename from src/Intf/Intf_SectionLine.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_SectionLine.cxx diff --git a/src/Intf/Intf_SectionLine.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_SectionLine.hxx similarity index 100% rename from src/Intf/Intf_SectionLine.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_SectionLine.hxx diff --git a/src/Intf/Intf_SectionLine.lxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_SectionLine.lxx similarity index 100% rename from src/Intf/Intf_SectionLine.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_SectionLine.lxx diff --git a/src/Intf/Intf_SectionPoint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_SectionPoint.cxx similarity index 100% rename from src/Intf/Intf_SectionPoint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_SectionPoint.cxx diff --git a/src/Intf/Intf_SectionPoint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_SectionPoint.hxx similarity index 100% rename from src/Intf/Intf_SectionPoint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_SectionPoint.hxx diff --git a/src/Intf/Intf_SectionPoint.lxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_SectionPoint.lxx similarity index 100% rename from src/Intf/Intf_SectionPoint.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_SectionPoint.lxx diff --git a/src/Intf/Intf_SeqOfSectionLine.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_SeqOfSectionLine.hxx similarity index 100% rename from src/Intf/Intf_SeqOfSectionLine.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_SeqOfSectionLine.hxx diff --git a/src/Intf/Intf_SeqOfSectionPoint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_SeqOfSectionPoint.hxx similarity index 100% rename from src/Intf/Intf_SeqOfSectionPoint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_SeqOfSectionPoint.hxx diff --git a/src/Intf/Intf_SeqOfTangentZone.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_SeqOfTangentZone.hxx similarity index 100% rename from src/Intf/Intf_SeqOfTangentZone.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_SeqOfTangentZone.hxx diff --git a/src/Intf/Intf_TangentZone.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_TangentZone.cxx similarity index 100% rename from src/Intf/Intf_TangentZone.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_TangentZone.cxx diff --git a/src/Intf/Intf_TangentZone.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_TangentZone.hxx similarity index 100% rename from src/Intf/Intf_TangentZone.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_TangentZone.hxx diff --git a/src/Intf/Intf_TangentZone.lxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_TangentZone.lxx similarity index 100% rename from src/Intf/Intf_TangentZone.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_TangentZone.lxx diff --git a/src/Intf/Intf_Tool.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_Tool.cxx similarity index 100% rename from src/Intf/Intf_Tool.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_Tool.cxx diff --git a/src/Intf/Intf_Tool.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_Tool.hxx similarity index 100% rename from src/Intf/Intf_Tool.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Intf/Intf_Tool.hxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/Law/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/Law/FILES.cmake new file mode 100644 index 0000000000..2c5a441ac1 --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/Law/FILES.cmake @@ -0,0 +1,29 @@ +# Source files for Law package +set(OCCT_Law_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Law_FILES + Law.cxx + Law.hxx + Law_BSpFunc.cxx + Law_BSpFunc.hxx + Law_BSpline.cxx + Law_BSpline.hxx + Law_BSplineKnotSplitting.cxx + Law_BSplineKnotSplitting.hxx + Law_Composite.cxx + Law_Composite.hxx + Law_Constant.cxx + Law_Constant.hxx + Law_Function.cxx + Law_Function.hxx + Law_Interpol.cxx + Law_Interpol.hxx + Law_Interpolate.cxx + Law_Interpolate.hxx + Law_Laws.hxx + Law_Linear.cxx + Law_Linear.hxx + Law_ListIteratorOfLaws.hxx + Law_S.cxx + Law_S.hxx +) diff --git a/src/Law/Law.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Law/Law.cxx similarity index 100% rename from src/Law/Law.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Law/Law.cxx diff --git a/src/Law/Law.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Law/Law.hxx similarity index 100% rename from src/Law/Law.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Law/Law.hxx diff --git a/src/Law/Law_BSpFunc.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Law/Law_BSpFunc.cxx similarity index 100% rename from src/Law/Law_BSpFunc.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Law/Law_BSpFunc.cxx diff --git a/src/Law/Law_BSpFunc.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Law/Law_BSpFunc.hxx similarity index 100% rename from src/Law/Law_BSpFunc.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Law/Law_BSpFunc.hxx diff --git a/src/Law/Law_BSpline.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Law/Law_BSpline.cxx similarity index 100% rename from src/Law/Law_BSpline.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Law/Law_BSpline.cxx diff --git a/src/Law/Law_BSpline.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Law/Law_BSpline.hxx similarity index 100% rename from src/Law/Law_BSpline.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Law/Law_BSpline.hxx diff --git a/src/Law/Law_BSplineKnotSplitting.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Law/Law_BSplineKnotSplitting.cxx similarity index 100% rename from src/Law/Law_BSplineKnotSplitting.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Law/Law_BSplineKnotSplitting.cxx diff --git a/src/Law/Law_BSplineKnotSplitting.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Law/Law_BSplineKnotSplitting.hxx similarity index 100% rename from src/Law/Law_BSplineKnotSplitting.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Law/Law_BSplineKnotSplitting.hxx diff --git a/src/Law/Law_Composite.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Composite.cxx similarity index 100% rename from src/Law/Law_Composite.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Composite.cxx diff --git a/src/Law/Law_Composite.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Composite.hxx similarity index 100% rename from src/Law/Law_Composite.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Composite.hxx diff --git a/src/Law/Law_Constant.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Constant.cxx similarity index 100% rename from src/Law/Law_Constant.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Constant.cxx diff --git a/src/Law/Law_Constant.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Constant.hxx similarity index 100% rename from src/Law/Law_Constant.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Constant.hxx diff --git a/src/Law/Law_Function.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Function.cxx similarity index 100% rename from src/Law/Law_Function.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Function.cxx diff --git a/src/Law/Law_Function.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Function.hxx similarity index 100% rename from src/Law/Law_Function.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Function.hxx diff --git a/src/Law/Law_Interpol.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Interpol.cxx similarity index 100% rename from src/Law/Law_Interpol.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Interpol.cxx diff --git a/src/Law/Law_Interpol.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Interpol.hxx similarity index 100% rename from src/Law/Law_Interpol.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Interpol.hxx diff --git a/src/Law/Law_Interpolate.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Interpolate.cxx similarity index 100% rename from src/Law/Law_Interpolate.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Interpolate.cxx diff --git a/src/Law/Law_Interpolate.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Interpolate.hxx similarity index 100% rename from src/Law/Law_Interpolate.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Interpolate.hxx diff --git a/src/Law/Law_Laws.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Laws.hxx similarity index 100% rename from src/Law/Law_Laws.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Laws.hxx diff --git a/src/Law/Law_Linear.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Linear.cxx similarity index 100% rename from src/Law/Law_Linear.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Linear.cxx diff --git a/src/Law/Law_Linear.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Linear.hxx similarity index 100% rename from src/Law/Law_Linear.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Law/Law_Linear.hxx diff --git a/src/Law/Law_ListIteratorOfLaws.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Law/Law_ListIteratorOfLaws.hxx similarity index 100% rename from src/Law/Law_ListIteratorOfLaws.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Law/Law_ListIteratorOfLaws.hxx diff --git a/src/Law/Law_S.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Law/Law_S.cxx similarity index 100% rename from src/Law/Law_S.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Law/Law_S.cxx diff --git a/src/Law/Law_S.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Law/Law_S.hxx similarity index 100% rename from src/Law/Law_S.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Law/Law_S.hxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/LocalAnalysis/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/LocalAnalysis/FILES.cmake new file mode 100644 index 0000000000..778037e495 --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/LocalAnalysis/FILES.cmake @@ -0,0 +1,12 @@ +# Source files for LocalAnalysis package +set(OCCT_LocalAnalysis_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_LocalAnalysis_FILES + LocalAnalysis.cxx + LocalAnalysis.hxx + LocalAnalysis_CurveContinuity.cxx + LocalAnalysis_CurveContinuity.hxx + LocalAnalysis_StatusErrorType.hxx + LocalAnalysis_SurfaceContinuity.cxx + LocalAnalysis_SurfaceContinuity.hxx +) diff --git a/src/LocalAnalysis/LocalAnalysis.cxx b/src/ModelingAlgorithms/TKGeomAlgo/LocalAnalysis/LocalAnalysis.cxx similarity index 100% rename from src/LocalAnalysis/LocalAnalysis.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/LocalAnalysis/LocalAnalysis.cxx diff --git a/src/LocalAnalysis/LocalAnalysis.hxx b/src/ModelingAlgorithms/TKGeomAlgo/LocalAnalysis/LocalAnalysis.hxx similarity index 100% rename from src/LocalAnalysis/LocalAnalysis.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/LocalAnalysis/LocalAnalysis.hxx diff --git a/src/LocalAnalysis/LocalAnalysis_CurveContinuity.cxx b/src/ModelingAlgorithms/TKGeomAlgo/LocalAnalysis/LocalAnalysis_CurveContinuity.cxx similarity index 100% rename from src/LocalAnalysis/LocalAnalysis_CurveContinuity.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/LocalAnalysis/LocalAnalysis_CurveContinuity.cxx diff --git a/src/LocalAnalysis/LocalAnalysis_CurveContinuity.hxx b/src/ModelingAlgorithms/TKGeomAlgo/LocalAnalysis/LocalAnalysis_CurveContinuity.hxx similarity index 100% rename from src/LocalAnalysis/LocalAnalysis_CurveContinuity.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/LocalAnalysis/LocalAnalysis_CurveContinuity.hxx diff --git a/src/LocalAnalysis/LocalAnalysis_StatusErrorType.hxx b/src/ModelingAlgorithms/TKGeomAlgo/LocalAnalysis/LocalAnalysis_StatusErrorType.hxx similarity index 100% rename from src/LocalAnalysis/LocalAnalysis_StatusErrorType.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/LocalAnalysis/LocalAnalysis_StatusErrorType.hxx diff --git a/src/LocalAnalysis/LocalAnalysis_SurfaceContinuity.cxx b/src/ModelingAlgorithms/TKGeomAlgo/LocalAnalysis/LocalAnalysis_SurfaceContinuity.cxx similarity index 100% rename from src/LocalAnalysis/LocalAnalysis_SurfaceContinuity.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/LocalAnalysis/LocalAnalysis_SurfaceContinuity.cxx diff --git a/src/LocalAnalysis/LocalAnalysis_SurfaceContinuity.hxx b/src/ModelingAlgorithms/TKGeomAlgo/LocalAnalysis/LocalAnalysis_SurfaceContinuity.hxx similarity index 100% rename from src/LocalAnalysis/LocalAnalysis_SurfaceContinuity.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/LocalAnalysis/LocalAnalysis_SurfaceContinuity.hxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/NLPlate/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/NLPlate/FILES.cmake new file mode 100644 index 0000000000..2d6a84d6f0 --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/NLPlate/FILES.cmake @@ -0,0 +1,26 @@ +# Source files for NLPlate package +set(OCCT_NLPlate_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_NLPlate_FILES + NLPlate_HGPPConstraint.cxx + NLPlate_HGPPConstraint.hxx + NLPlate_HPG0Constraint.cxx + NLPlate_HPG0Constraint.hxx + NLPlate_HPG0G1Constraint.cxx + NLPlate_HPG0G1Constraint.hxx + NLPlate_HPG0G2Constraint.cxx + NLPlate_HPG0G2Constraint.hxx + NLPlate_HPG0G3Constraint.cxx + NLPlate_HPG0G3Constraint.hxx + NLPlate_HPG1Constraint.cxx + NLPlate_HPG1Constraint.hxx + NLPlate_HPG2Constraint.cxx + NLPlate_HPG2Constraint.hxx + NLPlate_HPG3Constraint.cxx + NLPlate_HPG3Constraint.hxx + NLPlate_ListIteratorOfStackOfPlate.hxx + NLPlate_NLPlate.cxx + NLPlate_NLPlate.hxx + NLPlate_SequenceOfHGPPConstraint.hxx + NLPlate_StackOfPlate.hxx +) diff --git a/src/NLPlate/NLPlate_HGPPConstraint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HGPPConstraint.cxx similarity index 100% rename from src/NLPlate/NLPlate_HGPPConstraint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HGPPConstraint.cxx diff --git a/src/NLPlate/NLPlate_HGPPConstraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HGPPConstraint.hxx similarity index 100% rename from src/NLPlate/NLPlate_HGPPConstraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HGPPConstraint.hxx diff --git a/src/NLPlate/NLPlate_HPG0Constraint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG0Constraint.cxx similarity index 100% rename from src/NLPlate/NLPlate_HPG0Constraint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG0Constraint.cxx diff --git a/src/NLPlate/NLPlate_HPG0Constraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG0Constraint.hxx similarity index 100% rename from src/NLPlate/NLPlate_HPG0Constraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG0Constraint.hxx diff --git a/src/NLPlate/NLPlate_HPG0G1Constraint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG0G1Constraint.cxx similarity index 100% rename from src/NLPlate/NLPlate_HPG0G1Constraint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG0G1Constraint.cxx diff --git a/src/NLPlate/NLPlate_HPG0G1Constraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG0G1Constraint.hxx similarity index 100% rename from src/NLPlate/NLPlate_HPG0G1Constraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG0G1Constraint.hxx diff --git a/src/NLPlate/NLPlate_HPG0G2Constraint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG0G2Constraint.cxx similarity index 100% rename from src/NLPlate/NLPlate_HPG0G2Constraint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG0G2Constraint.cxx diff --git a/src/NLPlate/NLPlate_HPG0G2Constraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG0G2Constraint.hxx similarity index 100% rename from src/NLPlate/NLPlate_HPG0G2Constraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG0G2Constraint.hxx diff --git a/src/NLPlate/NLPlate_HPG0G3Constraint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG0G3Constraint.cxx similarity index 100% rename from src/NLPlate/NLPlate_HPG0G3Constraint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG0G3Constraint.cxx diff --git a/src/NLPlate/NLPlate_HPG0G3Constraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG0G3Constraint.hxx similarity index 100% rename from src/NLPlate/NLPlate_HPG0G3Constraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG0G3Constraint.hxx diff --git a/src/NLPlate/NLPlate_HPG1Constraint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG1Constraint.cxx similarity index 100% rename from src/NLPlate/NLPlate_HPG1Constraint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG1Constraint.cxx diff --git a/src/NLPlate/NLPlate_HPG1Constraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG1Constraint.hxx similarity index 100% rename from src/NLPlate/NLPlate_HPG1Constraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG1Constraint.hxx diff --git a/src/NLPlate/NLPlate_HPG2Constraint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG2Constraint.cxx similarity index 100% rename from src/NLPlate/NLPlate_HPG2Constraint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG2Constraint.cxx diff --git a/src/NLPlate/NLPlate_HPG2Constraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG2Constraint.hxx similarity index 100% rename from src/NLPlate/NLPlate_HPG2Constraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG2Constraint.hxx diff --git a/src/NLPlate/NLPlate_HPG3Constraint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG3Constraint.cxx similarity index 100% rename from src/NLPlate/NLPlate_HPG3Constraint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG3Constraint.cxx diff --git a/src/NLPlate/NLPlate_HPG3Constraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG3Constraint.hxx similarity index 100% rename from src/NLPlate/NLPlate_HPG3Constraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_HPG3Constraint.hxx diff --git a/src/NLPlate/NLPlate_ListIteratorOfStackOfPlate.hxx b/src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_ListIteratorOfStackOfPlate.hxx similarity index 100% rename from src/NLPlate/NLPlate_ListIteratorOfStackOfPlate.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_ListIteratorOfStackOfPlate.hxx diff --git a/src/NLPlate/NLPlate_NLPlate.cxx b/src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_NLPlate.cxx similarity index 100% rename from src/NLPlate/NLPlate_NLPlate.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_NLPlate.cxx diff --git a/src/NLPlate/NLPlate_NLPlate.hxx b/src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_NLPlate.hxx similarity index 100% rename from src/NLPlate/NLPlate_NLPlate.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_NLPlate.hxx diff --git a/src/NLPlate/NLPlate_SequenceOfHGPPConstraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_SequenceOfHGPPConstraint.hxx similarity index 100% rename from src/NLPlate/NLPlate_SequenceOfHGPPConstraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_SequenceOfHGPPConstraint.hxx diff --git a/src/NLPlate/NLPlate_StackOfPlate.hxx b/src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_StackOfPlate.hxx similarity index 100% rename from src/NLPlate/NLPlate_StackOfPlate.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/NLPlate/NLPlate_StackOfPlate.hxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/PACKAGES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/PACKAGES.cmake new file mode 100644 index 0000000000..3863be51e0 --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/PACKAGES.cmake @@ -0,0 +1,36 @@ +# Auto-generated list of packages for TKGeomAlgo toolkit +set(OCCT_TKGeomAlgo_LIST_OF_PACKAGES + Hatch + GeomInt + IntStart + IntWalk + IntImp + IntCurveSurface + IntSurf + IntPatch + Geom2dInt + IntImpParGen + IntRes2d + IntCurve + TopTrans + Intf + ApproxInt + GccAna + GccEnt + GccInt + HatchGen + Geom2dHatch + Law + AppBlend + Plate + GeomPlate + LocalAnalysis + GeomAPI + GeomFill + Geom2dAPI + Geom2dGcc + FairCurve + NLPlate + IntPolyh + TopClass +) diff --git a/src/ModelingAlgorithms/TKGeomAlgo/Plate/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/Plate/FILES.cmake new file mode 100644 index 0000000000..d6f9b04de7 --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/Plate/FILES.cmake @@ -0,0 +1,47 @@ +# Source files for Plate package +set(OCCT_Plate_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Plate_FILES + Plate_Array1OfPinpointConstraint.hxx + Plate_D1.cxx + Plate_D1.hxx + Plate_D1.lxx + Plate_D2.cxx + Plate_D2.hxx + Plate_D3.cxx + Plate_D3.hxx + Plate_FreeGtoCConstraint.cxx + Plate_FreeGtoCConstraint.hxx + Plate_FreeGtoCConstraint.lxx + Plate_GlobalTranslationConstraint.cxx + Plate_GlobalTranslationConstraint.hxx + Plate_GlobalTranslationConstraint.lxx + Plate_GtoCConstraint.cxx + Plate_GtoCConstraint.hxx + Plate_GtoCConstraint.lxx + Plate_HArray1OfPinpointConstraint.hxx + Plate_LinearScalarConstraint.cxx + Plate_LinearScalarConstraint.hxx + Plate_LinearScalarConstraint.lxx + Plate_LinearXYZConstraint.cxx + Plate_LinearXYZConstraint.hxx + Plate_LinearXYZConstraint.lxx + Plate_LineConstraint.cxx + Plate_LineConstraint.hxx + Plate_LineConstraint.lxx + Plate_PinpointConstraint.cxx + Plate_PinpointConstraint.hxx + Plate_PinpointConstraint.lxx + Plate_PlaneConstraint.cxx + Plate_PlaneConstraint.hxx + Plate_PlaneConstraint.lxx + Plate_Plate.cxx + Plate_Plate.hxx + Plate_Plate.lxx + Plate_SampledCurveConstraint.cxx + Plate_SampledCurveConstraint.hxx + Plate_SampledCurveConstraint.lxx + Plate_SequenceOfLinearScalarConstraint.hxx + Plate_SequenceOfLinearXYZConstraint.hxx + Plate_SequenceOfPinpointConstraint.hxx +) diff --git a/src/Plate/Plate_Array1OfPinpointConstraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_Array1OfPinpointConstraint.hxx similarity index 100% rename from src/Plate/Plate_Array1OfPinpointConstraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_Array1OfPinpointConstraint.hxx diff --git a/src/Plate/Plate_D1.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_D1.cxx similarity index 100% rename from src/Plate/Plate_D1.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_D1.cxx diff --git a/src/Plate/Plate_D1.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_D1.hxx similarity index 100% rename from src/Plate/Plate_D1.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_D1.hxx diff --git a/src/Plate/Plate_D1.lxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_D1.lxx similarity index 100% rename from src/Plate/Plate_D1.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_D1.lxx diff --git a/src/Plate/Plate_D2.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_D2.cxx similarity index 100% rename from src/Plate/Plate_D2.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_D2.cxx diff --git a/src/Plate/Plate_D2.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_D2.hxx similarity index 100% rename from src/Plate/Plate_D2.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_D2.hxx diff --git a/src/Plate/Plate_D3.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_D3.cxx similarity index 100% rename from src/Plate/Plate_D3.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_D3.cxx diff --git a/src/Plate/Plate_D3.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_D3.hxx similarity index 100% rename from src/Plate/Plate_D3.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_D3.hxx diff --git a/src/Plate/Plate_FreeGtoCConstraint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_FreeGtoCConstraint.cxx similarity index 100% rename from src/Plate/Plate_FreeGtoCConstraint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_FreeGtoCConstraint.cxx diff --git a/src/Plate/Plate_FreeGtoCConstraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_FreeGtoCConstraint.hxx similarity index 100% rename from src/Plate/Plate_FreeGtoCConstraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_FreeGtoCConstraint.hxx diff --git a/src/Plate/Plate_FreeGtoCConstraint.lxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_FreeGtoCConstraint.lxx similarity index 100% rename from src/Plate/Plate_FreeGtoCConstraint.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_FreeGtoCConstraint.lxx diff --git a/src/Plate/Plate_GlobalTranslationConstraint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_GlobalTranslationConstraint.cxx similarity index 100% rename from src/Plate/Plate_GlobalTranslationConstraint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_GlobalTranslationConstraint.cxx diff --git a/src/Plate/Plate_GlobalTranslationConstraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_GlobalTranslationConstraint.hxx similarity index 100% rename from src/Plate/Plate_GlobalTranslationConstraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_GlobalTranslationConstraint.hxx diff --git a/src/Plate/Plate_GlobalTranslationConstraint.lxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_GlobalTranslationConstraint.lxx similarity index 100% rename from src/Plate/Plate_GlobalTranslationConstraint.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_GlobalTranslationConstraint.lxx diff --git a/src/Plate/Plate_GtoCConstraint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_GtoCConstraint.cxx similarity index 100% rename from src/Plate/Plate_GtoCConstraint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_GtoCConstraint.cxx diff --git a/src/Plate/Plate_GtoCConstraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_GtoCConstraint.hxx similarity index 100% rename from src/Plate/Plate_GtoCConstraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_GtoCConstraint.hxx diff --git a/src/Plate/Plate_GtoCConstraint.lxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_GtoCConstraint.lxx similarity index 100% rename from src/Plate/Plate_GtoCConstraint.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_GtoCConstraint.lxx diff --git a/src/Plate/Plate_HArray1OfPinpointConstraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_HArray1OfPinpointConstraint.hxx similarity index 100% rename from src/Plate/Plate_HArray1OfPinpointConstraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_HArray1OfPinpointConstraint.hxx diff --git a/src/Plate/Plate_LineConstraint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_LineConstraint.cxx similarity index 100% rename from src/Plate/Plate_LineConstraint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_LineConstraint.cxx diff --git a/src/Plate/Plate_LineConstraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_LineConstraint.hxx similarity index 100% rename from src/Plate/Plate_LineConstraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_LineConstraint.hxx diff --git a/src/Plate/Plate_LineConstraint.lxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_LineConstraint.lxx similarity index 100% rename from src/Plate/Plate_LineConstraint.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_LineConstraint.lxx diff --git a/src/Plate/Plate_LinearScalarConstraint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_LinearScalarConstraint.cxx similarity index 100% rename from src/Plate/Plate_LinearScalarConstraint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_LinearScalarConstraint.cxx diff --git a/src/Plate/Plate_LinearScalarConstraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_LinearScalarConstraint.hxx similarity index 100% rename from src/Plate/Plate_LinearScalarConstraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_LinearScalarConstraint.hxx diff --git a/src/Plate/Plate_LinearScalarConstraint.lxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_LinearScalarConstraint.lxx similarity index 100% rename from src/Plate/Plate_LinearScalarConstraint.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_LinearScalarConstraint.lxx diff --git a/src/Plate/Plate_LinearXYZConstraint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_LinearXYZConstraint.cxx similarity index 100% rename from src/Plate/Plate_LinearXYZConstraint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_LinearXYZConstraint.cxx diff --git a/src/Plate/Plate_LinearXYZConstraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_LinearXYZConstraint.hxx similarity index 100% rename from src/Plate/Plate_LinearXYZConstraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_LinearXYZConstraint.hxx diff --git a/src/Plate/Plate_LinearXYZConstraint.lxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_LinearXYZConstraint.lxx similarity index 100% rename from src/Plate/Plate_LinearXYZConstraint.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_LinearXYZConstraint.lxx diff --git a/src/Plate/Plate_PinpointConstraint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_PinpointConstraint.cxx similarity index 100% rename from src/Plate/Plate_PinpointConstraint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_PinpointConstraint.cxx diff --git a/src/Plate/Plate_PinpointConstraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_PinpointConstraint.hxx similarity index 100% rename from src/Plate/Plate_PinpointConstraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_PinpointConstraint.hxx diff --git a/src/Plate/Plate_PinpointConstraint.lxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_PinpointConstraint.lxx similarity index 100% rename from src/Plate/Plate_PinpointConstraint.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_PinpointConstraint.lxx diff --git a/src/Plate/Plate_PlaneConstraint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_PlaneConstraint.cxx similarity index 100% rename from src/Plate/Plate_PlaneConstraint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_PlaneConstraint.cxx diff --git a/src/Plate/Plate_PlaneConstraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_PlaneConstraint.hxx similarity index 100% rename from src/Plate/Plate_PlaneConstraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_PlaneConstraint.hxx diff --git a/src/Plate/Plate_PlaneConstraint.lxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_PlaneConstraint.lxx similarity index 100% rename from src/Plate/Plate_PlaneConstraint.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_PlaneConstraint.lxx diff --git a/src/Plate/Plate_Plate.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_Plate.cxx similarity index 100% rename from src/Plate/Plate_Plate.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_Plate.cxx diff --git a/src/Plate/Plate_Plate.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_Plate.hxx similarity index 100% rename from src/Plate/Plate_Plate.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_Plate.hxx diff --git a/src/Plate/Plate_Plate.lxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_Plate.lxx similarity index 100% rename from src/Plate/Plate_Plate.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_Plate.lxx diff --git a/src/Plate/Plate_SampledCurveConstraint.cxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_SampledCurveConstraint.cxx similarity index 100% rename from src/Plate/Plate_SampledCurveConstraint.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_SampledCurveConstraint.cxx diff --git a/src/Plate/Plate_SampledCurveConstraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_SampledCurveConstraint.hxx similarity index 100% rename from src/Plate/Plate_SampledCurveConstraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_SampledCurveConstraint.hxx diff --git a/src/Plate/Plate_SampledCurveConstraint.lxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_SampledCurveConstraint.lxx similarity index 100% rename from src/Plate/Plate_SampledCurveConstraint.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_SampledCurveConstraint.lxx diff --git a/src/Plate/Plate_SequenceOfLinearScalarConstraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_SequenceOfLinearScalarConstraint.hxx similarity index 100% rename from src/Plate/Plate_SequenceOfLinearScalarConstraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_SequenceOfLinearScalarConstraint.hxx diff --git a/src/Plate/Plate_SequenceOfLinearXYZConstraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_SequenceOfLinearXYZConstraint.hxx similarity index 100% rename from src/Plate/Plate_SequenceOfLinearXYZConstraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_SequenceOfLinearXYZConstraint.hxx diff --git a/src/Plate/Plate_SequenceOfPinpointConstraint.hxx b/src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_SequenceOfPinpointConstraint.hxx similarity index 100% rename from src/Plate/Plate_SequenceOfPinpointConstraint.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/Plate/Plate_SequenceOfPinpointConstraint.hxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/TopClass/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/TopClass/FILES.cmake new file mode 100644 index 0000000000..0b630b0380 --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/TopClass/FILES.cmake @@ -0,0 +1,9 @@ +# Source files for TopClass package +set(OCCT_TopClass_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TopClass_FILES + TopClass_Classifier2d.gxx + TopClass_Classifier2d.lxx + TopClass_FaceClassifier.gxx + TopClass_FaceClassifier.lxx +) diff --git a/src/TopClass/TopClass_Classifier2d.gxx b/src/ModelingAlgorithms/TKGeomAlgo/TopClass/TopClass_Classifier2d.gxx similarity index 100% rename from src/TopClass/TopClass_Classifier2d.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/TopClass/TopClass_Classifier2d.gxx diff --git a/src/TopClass/TopClass_Classifier2d.lxx b/src/ModelingAlgorithms/TKGeomAlgo/TopClass/TopClass_Classifier2d.lxx similarity index 100% rename from src/TopClass/TopClass_Classifier2d.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/TopClass/TopClass_Classifier2d.lxx diff --git a/src/TopClass/TopClass_FaceClassifier.gxx b/src/ModelingAlgorithms/TKGeomAlgo/TopClass/TopClass_FaceClassifier.gxx similarity index 100% rename from src/TopClass/TopClass_FaceClassifier.gxx rename to src/ModelingAlgorithms/TKGeomAlgo/TopClass/TopClass_FaceClassifier.gxx diff --git a/src/TopClass/TopClass_FaceClassifier.lxx b/src/ModelingAlgorithms/TKGeomAlgo/TopClass/TopClass_FaceClassifier.lxx similarity index 100% rename from src/TopClass/TopClass_FaceClassifier.lxx rename to src/ModelingAlgorithms/TKGeomAlgo/TopClass/TopClass_FaceClassifier.lxx diff --git a/src/ModelingAlgorithms/TKGeomAlgo/TopTrans/FILES.cmake b/src/ModelingAlgorithms/TKGeomAlgo/TopTrans/FILES.cmake new file mode 100644 index 0000000000..8938de8ffe --- /dev/null +++ b/src/ModelingAlgorithms/TKGeomAlgo/TopTrans/FILES.cmake @@ -0,0 +1,10 @@ +# Source files for TopTrans package +set(OCCT_TopTrans_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TopTrans_FILES + TopTrans_Array2OfOrientation.hxx + TopTrans_CurveTransition.cxx + TopTrans_CurveTransition.hxx + TopTrans_SurfaceTransition.cxx + TopTrans_SurfaceTransition.hxx +) diff --git a/src/TopTrans/TopTrans_Array2OfOrientation.hxx b/src/ModelingAlgorithms/TKGeomAlgo/TopTrans/TopTrans_Array2OfOrientation.hxx similarity index 100% rename from src/TopTrans/TopTrans_Array2OfOrientation.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/TopTrans/TopTrans_Array2OfOrientation.hxx diff --git a/src/TopTrans/TopTrans_CurveTransition.cxx b/src/ModelingAlgorithms/TKGeomAlgo/TopTrans/TopTrans_CurveTransition.cxx similarity index 100% rename from src/TopTrans/TopTrans_CurveTransition.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/TopTrans/TopTrans_CurveTransition.cxx diff --git a/src/TopTrans/TopTrans_CurveTransition.hxx b/src/ModelingAlgorithms/TKGeomAlgo/TopTrans/TopTrans_CurveTransition.hxx similarity index 100% rename from src/TopTrans/TopTrans_CurveTransition.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/TopTrans/TopTrans_CurveTransition.hxx diff --git a/src/TopTrans/TopTrans_SurfaceTransition.cxx b/src/ModelingAlgorithms/TKGeomAlgo/TopTrans/TopTrans_SurfaceTransition.cxx similarity index 100% rename from src/TopTrans/TopTrans_SurfaceTransition.cxx rename to src/ModelingAlgorithms/TKGeomAlgo/TopTrans/TopTrans_SurfaceTransition.cxx diff --git a/src/TopTrans/TopTrans_SurfaceTransition.hxx b/src/ModelingAlgorithms/TKGeomAlgo/TopTrans/TopTrans_SurfaceTransition.hxx similarity index 100% rename from src/TopTrans/TopTrans_SurfaceTransition.hxx rename to src/ModelingAlgorithms/TKGeomAlgo/TopTrans/TopTrans_SurfaceTransition.hxx diff --git a/src/TKHLR/CMakeLists.txt b/src/ModelingAlgorithms/TKHLR/CMakeLists.txt similarity index 100% rename from src/TKHLR/CMakeLists.txt rename to src/ModelingAlgorithms/TKHLR/CMakeLists.txt diff --git a/src/Contap/Contap_ArcFunction.cxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_ArcFunction.cxx similarity index 100% rename from src/Contap/Contap_ArcFunction.cxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_ArcFunction.cxx diff --git a/src/Contap/Contap_ArcFunction.hxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_ArcFunction.hxx similarity index 100% rename from src/Contap/Contap_ArcFunction.hxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_ArcFunction.hxx diff --git a/src/Contap/Contap_ArcFunction.lxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_ArcFunction.lxx similarity index 100% rename from src/Contap/Contap_ArcFunction.lxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_ArcFunction.lxx diff --git a/src/Contap/Contap_ContAna.cxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_ContAna.cxx similarity index 100% rename from src/Contap/Contap_ContAna.cxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_ContAna.cxx diff --git a/src/Contap/Contap_ContAna.hxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_ContAna.hxx similarity index 100% rename from src/Contap/Contap_ContAna.hxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_ContAna.hxx diff --git a/src/Contap/Contap_ContAna.lxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_ContAna.lxx similarity index 100% rename from src/Contap/Contap_ContAna.lxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_ContAna.lxx diff --git a/src/Contap/Contap_Contour.cxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_Contour.cxx similarity index 100% rename from src/Contap/Contap_Contour.cxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_Contour.cxx diff --git a/src/Contap/Contap_Contour.hxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_Contour.hxx similarity index 100% rename from src/Contap/Contap_Contour.hxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_Contour.hxx diff --git a/src/Contap/Contap_Contour.lxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_Contour.lxx similarity index 100% rename from src/Contap/Contap_Contour.lxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_Contour.lxx diff --git a/src/Contap/Contap_HContTool.cxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_HContTool.cxx similarity index 100% rename from src/Contap/Contap_HContTool.cxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_HContTool.cxx diff --git a/src/Contap/Contap_HContTool.hxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_HContTool.hxx similarity index 100% rename from src/Contap/Contap_HContTool.hxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_HContTool.hxx diff --git a/src/Contap/Contap_HCurve2dTool.cxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_HCurve2dTool.cxx similarity index 100% rename from src/Contap/Contap_HCurve2dTool.cxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_HCurve2dTool.cxx diff --git a/src/Contap/Contap_HCurve2dTool.hxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_HCurve2dTool.hxx similarity index 100% rename from src/Contap/Contap_HCurve2dTool.hxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_HCurve2dTool.hxx diff --git a/src/Contap/Contap_HCurve2dTool.lxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_HCurve2dTool.lxx similarity index 100% rename from src/Contap/Contap_HCurve2dTool.lxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_HCurve2dTool.lxx diff --git a/src/Contap/Contap_IType.hxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_IType.hxx similarity index 100% rename from src/Contap/Contap_IType.hxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_IType.hxx diff --git a/src/Contap/Contap_Line.cxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_Line.cxx similarity index 100% rename from src/Contap/Contap_Line.cxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_Line.cxx diff --git a/src/Contap/Contap_Line.hxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_Line.hxx similarity index 100% rename from src/Contap/Contap_Line.hxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_Line.hxx diff --git a/src/Contap/Contap_Line.lxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_Line.lxx similarity index 100% rename from src/Contap/Contap_Line.lxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_Line.lxx diff --git a/src/Contap/Contap_Point.cxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_Point.cxx similarity index 100% rename from src/Contap/Contap_Point.cxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_Point.cxx diff --git a/src/Contap/Contap_Point.hxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_Point.hxx similarity index 100% rename from src/Contap/Contap_Point.hxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_Point.hxx diff --git a/src/Contap/Contap_Point.lxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_Point.lxx similarity index 100% rename from src/Contap/Contap_Point.lxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_Point.lxx diff --git a/src/Contap/Contap_SequenceOfIWLineOfTheIWalking.hxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_SequenceOfIWLineOfTheIWalking.hxx similarity index 100% rename from src/Contap/Contap_SequenceOfIWLineOfTheIWalking.hxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_SequenceOfIWLineOfTheIWalking.hxx diff --git a/src/Contap/Contap_SequenceOfPathPointOfTheSearch.hxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_SequenceOfPathPointOfTheSearch.hxx similarity index 100% rename from src/Contap/Contap_SequenceOfPathPointOfTheSearch.hxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_SequenceOfPathPointOfTheSearch.hxx diff --git a/src/Contap/Contap_SequenceOfSegmentOfTheSearch.hxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_SequenceOfSegmentOfTheSearch.hxx similarity index 100% rename from src/Contap/Contap_SequenceOfSegmentOfTheSearch.hxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_SequenceOfSegmentOfTheSearch.hxx diff --git a/src/Contap/Contap_SurfFunction.cxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_SurfFunction.cxx similarity index 100% rename from src/Contap/Contap_SurfFunction.cxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_SurfFunction.cxx diff --git a/src/Contap/Contap_SurfFunction.hxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_SurfFunction.hxx similarity index 100% rename from src/Contap/Contap_SurfFunction.hxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_SurfFunction.hxx diff --git a/src/Contap/Contap_SurfFunction.lxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_SurfFunction.lxx similarity index 100% rename from src/Contap/Contap_SurfFunction.lxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_SurfFunction.lxx diff --git a/src/Contap/Contap_SurfProps.cxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_SurfProps.cxx similarity index 100% rename from src/Contap/Contap_SurfProps.cxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_SurfProps.cxx diff --git a/src/Contap/Contap_SurfProps.hxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_SurfProps.hxx similarity index 100% rename from src/Contap/Contap_SurfProps.hxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_SurfProps.hxx diff --git a/src/Contap/Contap_TFunction.hxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_TFunction.hxx similarity index 100% rename from src/Contap/Contap_TFunction.hxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_TFunction.hxx diff --git a/src/Contap/Contap_TheHSequenceOfPoint.hxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_TheHSequenceOfPoint.hxx similarity index 100% rename from src/Contap/Contap_TheHSequenceOfPoint.hxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_TheHSequenceOfPoint.hxx diff --git a/src/Contap/Contap_TheIWLineOfTheIWalking.hxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_TheIWLineOfTheIWalking.hxx similarity index 100% rename from src/Contap/Contap_TheIWLineOfTheIWalking.hxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_TheIWLineOfTheIWalking.hxx diff --git a/src/Contap/Contap_TheIWLineOfTheIWalking_0.cxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_TheIWLineOfTheIWalking_0.cxx similarity index 100% rename from src/Contap/Contap_TheIWLineOfTheIWalking_0.cxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_TheIWLineOfTheIWalking_0.cxx diff --git a/src/Contap/Contap_TheIWalking.hxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_TheIWalking.hxx similarity index 100% rename from src/Contap/Contap_TheIWalking.hxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_TheIWalking.hxx diff --git a/src/Contap/Contap_TheIWalking_0.cxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_TheIWalking_0.cxx similarity index 100% rename from src/Contap/Contap_TheIWalking_0.cxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_TheIWalking_0.cxx diff --git a/src/Contap/Contap_ThePathPointOfTheSearch.hxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_ThePathPointOfTheSearch.hxx similarity index 100% rename from src/Contap/Contap_ThePathPointOfTheSearch.hxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_ThePathPointOfTheSearch.hxx diff --git a/src/Contap/Contap_ThePathPointOfTheSearch_0.cxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_ThePathPointOfTheSearch_0.cxx similarity index 100% rename from src/Contap/Contap_ThePathPointOfTheSearch_0.cxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_ThePathPointOfTheSearch_0.cxx diff --git a/src/Contap/Contap_TheSearch.hxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_TheSearch.hxx similarity index 100% rename from src/Contap/Contap_TheSearch.hxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_TheSearch.hxx diff --git a/src/Contap/Contap_TheSearchInside.hxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_TheSearchInside.hxx similarity index 100% rename from src/Contap/Contap_TheSearchInside.hxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_TheSearchInside.hxx diff --git a/src/Contap/Contap_TheSearchInside_0.cxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_TheSearchInside_0.cxx similarity index 100% rename from src/Contap/Contap_TheSearchInside_0.cxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_TheSearchInside_0.cxx diff --git a/src/Contap/Contap_TheSearch_0.cxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_TheSearch_0.cxx similarity index 100% rename from src/Contap/Contap_TheSearch_0.cxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_TheSearch_0.cxx diff --git a/src/Contap/Contap_TheSegmentOfTheSearch.hxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_TheSegmentOfTheSearch.hxx similarity index 100% rename from src/Contap/Contap_TheSegmentOfTheSearch.hxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_TheSegmentOfTheSearch.hxx diff --git a/src/Contap/Contap_TheSegmentOfTheSearch_0.cxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_TheSegmentOfTheSearch_0.cxx similarity index 100% rename from src/Contap/Contap_TheSegmentOfTheSearch_0.cxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_TheSegmentOfTheSearch_0.cxx diff --git a/src/Contap/Contap_TheSequenceOfLine.hxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_TheSequenceOfLine.hxx similarity index 100% rename from src/Contap/Contap_TheSequenceOfLine.hxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_TheSequenceOfLine.hxx diff --git a/src/Contap/Contap_TheSequenceOfPoint.hxx b/src/ModelingAlgorithms/TKHLR/Contap/Contap_TheSequenceOfPoint.hxx similarity index 100% rename from src/Contap/Contap_TheSequenceOfPoint.hxx rename to src/ModelingAlgorithms/TKHLR/Contap/Contap_TheSequenceOfPoint.hxx diff --git a/src/ModelingAlgorithms/TKHLR/Contap/FILES.cmake b/src/ModelingAlgorithms/TKHLR/Contap/FILES.cmake new file mode 100644 index 0000000000..33076fa490 --- /dev/null +++ b/src/ModelingAlgorithms/TKHLR/Contap/FILES.cmake @@ -0,0 +1,50 @@ +# Source files for Contap package +set(OCCT_Contap_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Contap_FILES + Contap_ArcFunction.cxx + Contap_ArcFunction.hxx + Contap_ArcFunction.lxx + Contap_ContAna.cxx + Contap_ContAna.hxx + Contap_ContAna.lxx + Contap_Contour.cxx + Contap_Contour.hxx + Contap_Contour.lxx + Contap_HContTool.cxx + Contap_HContTool.hxx + Contap_HCurve2dTool.cxx + Contap_HCurve2dTool.hxx + Contap_HCurve2dTool.lxx + Contap_IType.hxx + Contap_Line.cxx + Contap_Line.hxx + Contap_Line.lxx + Contap_Point.cxx + Contap_Point.hxx + Contap_Point.lxx + Contap_SequenceOfIWLineOfTheIWalking.hxx + Contap_SequenceOfPathPointOfTheSearch.hxx + Contap_SequenceOfSegmentOfTheSearch.hxx + Contap_SurfFunction.cxx + Contap_SurfFunction.hxx + Contap_SurfFunction.lxx + Contap_SurfProps.cxx + Contap_SurfProps.hxx + Contap_TFunction.hxx + Contap_TheHSequenceOfPoint.hxx + Contap_TheIWalking.hxx + Contap_TheIWalking_0.cxx + Contap_TheIWLineOfTheIWalking.hxx + Contap_TheIWLineOfTheIWalking_0.cxx + Contap_ThePathPointOfTheSearch.hxx + Contap_ThePathPointOfTheSearch_0.cxx + Contap_TheSearch.hxx + Contap_TheSearch_0.cxx + Contap_TheSearchInside.hxx + Contap_TheSearchInside_0.cxx + Contap_TheSegmentOfTheSearch.hxx + Contap_TheSegmentOfTheSearch_0.cxx + Contap_TheSequenceOfLine.hxx + Contap_TheSequenceOfPoint.hxx +) diff --git a/src/ModelingAlgorithms/TKHLR/EXTERNLIB.cmake b/src/ModelingAlgorithms/TKHLR/EXTERNLIB.cmake new file mode 100644 index 0000000000..4ff9a14d71 --- /dev/null +++ b/src/ModelingAlgorithms/TKHLR/EXTERNLIB.cmake @@ -0,0 +1,11 @@ +# External dependencies for TKHLR +set(OCCT_TKHLR_EXTERNAL_LIBS + TKBRep + TKernel + TKMath + TKGeomBase + TKG2d + TKG3d + TKGeomAlgo + TKTopAlgo +) diff --git a/src/ModelingAlgorithms/TKHLR/FILES.cmake b/src/ModelingAlgorithms/TKHLR/FILES.cmake new file mode 100644 index 0000000000..75cdb7bea0 --- /dev/null +++ b/src/ModelingAlgorithms/TKHLR/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKHLR +set(OCCT_TKHLR_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKHLR_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ModelingAlgorithms/TKHLR/HLRAlgo/FILES.cmake b/src/ModelingAlgorithms/TKHLR/HLRAlgo/FILES.cmake new file mode 100644 index 0000000000..bf25074452 --- /dev/null +++ b/src/ModelingAlgorithms/TKHLR/HLRAlgo/FILES.cmake @@ -0,0 +1,55 @@ +# Source files for HLRAlgo package +set(OCCT_HLRAlgo_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_HLRAlgo_FILES + HLRAlgo.cxx + HLRAlgo.hxx + HLRAlgo_Array1OfPHDat.hxx + HLRAlgo_Array1OfPINod.hxx + HLRAlgo_Array1OfPISeg.hxx + HLRAlgo_Array1OfTData.hxx + HLRAlgo_BiPoint.cxx + HLRAlgo_BiPoint.hxx + HLRAlgo_Coincidence.hxx + HLRAlgo_EdgeIterator.cxx + HLRAlgo_EdgeIterator.hxx + HLRAlgo_EdgeIterator.lxx + HLRAlgo_EdgesBlock.cxx + HLRAlgo_EdgesBlock.hxx + HLRAlgo_EdgeStatus.cxx + HLRAlgo_EdgeStatus.hxx + HLRAlgo_HArray1OfPHDat.hxx + HLRAlgo_HArray1OfPINod.hxx + HLRAlgo_HArray1OfPISeg.hxx + HLRAlgo_HArray1OfTData.hxx + HLRAlgo_Interference.hxx + HLRAlgo_Interference_0.cxx + HLRAlgo_InterferenceList.hxx + HLRAlgo_Intersection.cxx + HLRAlgo_Intersection.hxx + HLRAlgo_Intersection.lxx + HLRAlgo_ListIteratorOfInterferenceList.hxx + HLRAlgo_ListIteratorOfListOfBPoint.hxx + HLRAlgo_ListOfBPoint.hxx + HLRAlgo_PolyAlgo.cxx + HLRAlgo_PolyAlgo.hxx + HLRAlgo_PolyData.cxx + HLRAlgo_PolyData.hxx + HLRAlgo_PolyData.lxx + HLRAlgo_PolyHidingData.hxx + HLRAlgo_PolyInternalData.cxx + HLRAlgo_PolyInternalData.hxx + HLRAlgo_PolyInternalData.lxx + HLRAlgo_PolyInternalNode.cxx + HLRAlgo_PolyInternalNode.hxx + HLRAlgo_PolyInternalSegment.hxx + HLRAlgo_PolyMask.hxx + HLRAlgo_PolyShellData.cxx + HLRAlgo_PolyShellData.hxx + HLRAlgo_Projector.cxx + HLRAlgo_Projector.hxx + HLRAlgo_Projector.lxx + HLRAlgo_TriangleData.hxx + HLRAlgo_WiresBlock.cxx + HLRAlgo_WiresBlock.hxx +) diff --git a/src/HLRAlgo/HLRAlgo.cxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo.cxx similarity index 100% rename from src/HLRAlgo/HLRAlgo.cxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo.cxx diff --git a/src/HLRAlgo/HLRAlgo.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo.hxx diff --git a/src/HLRAlgo/HLRAlgo_Array1OfPHDat.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Array1OfPHDat.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_Array1OfPHDat.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Array1OfPHDat.hxx diff --git a/src/HLRAlgo/HLRAlgo_Array1OfPINod.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Array1OfPINod.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_Array1OfPINod.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Array1OfPINod.hxx diff --git a/src/HLRAlgo/HLRAlgo_Array1OfPISeg.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Array1OfPISeg.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_Array1OfPISeg.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Array1OfPISeg.hxx diff --git a/src/HLRAlgo/HLRAlgo_Array1OfTData.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Array1OfTData.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_Array1OfTData.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Array1OfTData.hxx diff --git a/src/HLRAlgo/HLRAlgo_BiPoint.cxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_BiPoint.cxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_BiPoint.cxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_BiPoint.cxx diff --git a/src/HLRAlgo/HLRAlgo_BiPoint.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_BiPoint.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_BiPoint.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_BiPoint.hxx diff --git a/src/HLRAlgo/HLRAlgo_Coincidence.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Coincidence.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_Coincidence.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Coincidence.hxx diff --git a/src/HLRAlgo/HLRAlgo_EdgeIterator.cxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_EdgeIterator.cxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_EdgeIterator.cxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_EdgeIterator.cxx diff --git a/src/HLRAlgo/HLRAlgo_EdgeIterator.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_EdgeIterator.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_EdgeIterator.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_EdgeIterator.hxx diff --git a/src/HLRAlgo/HLRAlgo_EdgeIterator.lxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_EdgeIterator.lxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_EdgeIterator.lxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_EdgeIterator.lxx diff --git a/src/HLRAlgo/HLRAlgo_EdgeStatus.cxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_EdgeStatus.cxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_EdgeStatus.cxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_EdgeStatus.cxx diff --git a/src/HLRAlgo/HLRAlgo_EdgeStatus.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_EdgeStatus.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_EdgeStatus.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_EdgeStatus.hxx diff --git a/src/HLRAlgo/HLRAlgo_EdgesBlock.cxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_EdgesBlock.cxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_EdgesBlock.cxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_EdgesBlock.cxx diff --git a/src/HLRAlgo/HLRAlgo_EdgesBlock.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_EdgesBlock.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_EdgesBlock.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_EdgesBlock.hxx diff --git a/src/HLRAlgo/HLRAlgo_HArray1OfPHDat.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_HArray1OfPHDat.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_HArray1OfPHDat.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_HArray1OfPHDat.hxx diff --git a/src/HLRAlgo/HLRAlgo_HArray1OfPINod.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_HArray1OfPINod.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_HArray1OfPINod.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_HArray1OfPINod.hxx diff --git a/src/HLRAlgo/HLRAlgo_HArray1OfPISeg.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_HArray1OfPISeg.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_HArray1OfPISeg.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_HArray1OfPISeg.hxx diff --git a/src/HLRAlgo/HLRAlgo_HArray1OfTData.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_HArray1OfTData.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_HArray1OfTData.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_HArray1OfTData.hxx diff --git a/src/HLRAlgo/HLRAlgo_Interference.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Interference.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_Interference.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Interference.hxx diff --git a/src/HLRAlgo/HLRAlgo_InterferenceList.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_InterferenceList.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_InterferenceList.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_InterferenceList.hxx diff --git a/src/HLRAlgo/HLRAlgo_Interference_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Interference_0.cxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_Interference_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Interference_0.cxx diff --git a/src/HLRAlgo/HLRAlgo_Intersection.cxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Intersection.cxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_Intersection.cxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Intersection.cxx diff --git a/src/HLRAlgo/HLRAlgo_Intersection.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Intersection.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_Intersection.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Intersection.hxx diff --git a/src/HLRAlgo/HLRAlgo_Intersection.lxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Intersection.lxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_Intersection.lxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Intersection.lxx diff --git a/src/HLRAlgo/HLRAlgo_ListIteratorOfInterferenceList.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_ListIteratorOfInterferenceList.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_ListIteratorOfInterferenceList.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_ListIteratorOfInterferenceList.hxx diff --git a/src/HLRAlgo/HLRAlgo_ListIteratorOfListOfBPoint.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_ListIteratorOfListOfBPoint.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_ListIteratorOfListOfBPoint.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_ListIteratorOfListOfBPoint.hxx diff --git a/src/HLRAlgo/HLRAlgo_ListOfBPoint.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_ListOfBPoint.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_ListOfBPoint.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_ListOfBPoint.hxx diff --git a/src/HLRAlgo/HLRAlgo_PolyAlgo.cxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyAlgo.cxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_PolyAlgo.cxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyAlgo.cxx diff --git a/src/HLRAlgo/HLRAlgo_PolyAlgo.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyAlgo.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_PolyAlgo.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyAlgo.hxx diff --git a/src/HLRAlgo/HLRAlgo_PolyData.cxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyData.cxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_PolyData.cxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyData.cxx diff --git a/src/HLRAlgo/HLRAlgo_PolyData.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyData.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_PolyData.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyData.hxx diff --git a/src/HLRAlgo/HLRAlgo_PolyData.lxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyData.lxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_PolyData.lxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyData.lxx diff --git a/src/HLRAlgo/HLRAlgo_PolyHidingData.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyHidingData.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_PolyHidingData.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyHidingData.hxx diff --git a/src/HLRAlgo/HLRAlgo_PolyInternalData.cxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyInternalData.cxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_PolyInternalData.cxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyInternalData.cxx diff --git a/src/HLRAlgo/HLRAlgo_PolyInternalData.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyInternalData.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_PolyInternalData.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyInternalData.hxx diff --git a/src/HLRAlgo/HLRAlgo_PolyInternalData.lxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyInternalData.lxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_PolyInternalData.lxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyInternalData.lxx diff --git a/src/HLRAlgo/HLRAlgo_PolyInternalNode.cxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyInternalNode.cxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_PolyInternalNode.cxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyInternalNode.cxx diff --git a/src/HLRAlgo/HLRAlgo_PolyInternalNode.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyInternalNode.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_PolyInternalNode.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyInternalNode.hxx diff --git a/src/HLRAlgo/HLRAlgo_PolyInternalSegment.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyInternalSegment.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_PolyInternalSegment.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyInternalSegment.hxx diff --git a/src/HLRAlgo/HLRAlgo_PolyMask.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyMask.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_PolyMask.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyMask.hxx diff --git a/src/HLRAlgo/HLRAlgo_PolyShellData.cxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyShellData.cxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_PolyShellData.cxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyShellData.cxx diff --git a/src/HLRAlgo/HLRAlgo_PolyShellData.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyShellData.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_PolyShellData.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_PolyShellData.hxx diff --git a/src/HLRAlgo/HLRAlgo_Projector.cxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Projector.cxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_Projector.cxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Projector.cxx diff --git a/src/HLRAlgo/HLRAlgo_Projector.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Projector.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_Projector.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Projector.hxx diff --git a/src/HLRAlgo/HLRAlgo_Projector.lxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Projector.lxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_Projector.lxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_Projector.lxx diff --git a/src/HLRAlgo/HLRAlgo_TriangleData.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_TriangleData.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_TriangleData.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_TriangleData.hxx diff --git a/src/HLRAlgo/HLRAlgo_WiresBlock.cxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_WiresBlock.cxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_WiresBlock.cxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_WiresBlock.cxx diff --git a/src/HLRAlgo/HLRAlgo_WiresBlock.hxx b/src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_WiresBlock.hxx similarity index 100% rename from src/HLRAlgo/HLRAlgo_WiresBlock.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAlgo/HLRAlgo_WiresBlock.hxx diff --git a/src/ModelingAlgorithms/TKHLR/HLRAppli/FILES.cmake b/src/ModelingAlgorithms/TKHLR/HLRAppli/FILES.cmake new file mode 100644 index 0000000000..d7829a4db2 --- /dev/null +++ b/src/ModelingAlgorithms/TKHLR/HLRAppli/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for HLRAppli package +set(OCCT_HLRAppli_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_HLRAppli_FILES + HLRAppli_ReflectLines.cxx + HLRAppli_ReflectLines.hxx +) diff --git a/src/HLRAppli/HLRAppli_ReflectLines.cxx b/src/ModelingAlgorithms/TKHLR/HLRAppli/HLRAppli_ReflectLines.cxx similarity index 100% rename from src/HLRAppli/HLRAppli_ReflectLines.cxx rename to src/ModelingAlgorithms/TKHLR/HLRAppli/HLRAppli_ReflectLines.cxx diff --git a/src/HLRAppli/HLRAppli_ReflectLines.hxx b/src/ModelingAlgorithms/TKHLR/HLRAppli/HLRAppli_ReflectLines.hxx similarity index 100% rename from src/HLRAppli/HLRAppli_ReflectLines.hxx rename to src/ModelingAlgorithms/TKHLR/HLRAppli/HLRAppli_ReflectLines.hxx diff --git a/src/ModelingAlgorithms/TKHLR/HLRBRep/FILES.cmake b/src/ModelingAlgorithms/TKHLR/HLRBRep/FILES.cmake new file mode 100644 index 0000000000..43ef0e637b --- /dev/null +++ b/src/ModelingAlgorithms/TKHLR/HLRBRep/FILES.cmake @@ -0,0 +1,137 @@ +# Source files for HLRBRep package +set(OCCT_HLRBRep_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_HLRBRep_FILES + HLRBRep.cxx + HLRBRep.hxx + HLRBRep_Algo.cxx + HLRBRep_Algo.hxx + HLRBRep_AreaLimit.cxx + HLRBRep_AreaLimit.hxx + HLRBRep_Array1OfEData.hxx + HLRBRep_Array1OfFData.hxx + HLRBRep_BCurveTool.cxx + HLRBRep_BCurveTool.hxx + HLRBRep_BCurveTool.lxx + HLRBRep_BiPnt2D.hxx + HLRBRep_BiPoint.hxx + HLRBRep_BSurfaceTool.cxx + HLRBRep_BSurfaceTool.hxx + HLRBRep_BSurfaceTool.lxx + HLRBRep_CInter.hxx + HLRBRep_CInter_0.cxx + HLRBRep_CLProps.hxx + HLRBRep_CLProps_0.cxx + HLRBRep_CLPropsATool.hxx + HLRBRep_CLPropsATool.lxx + HLRBRep_Curve.cxx + HLRBRep_Curve.hxx + HLRBRep_Curve.lxx + HLRBRep_CurveTool.cxx + HLRBRep_CurveTool.hxx + HLRBRep_CurveTool.lxx + HLRBRep_Data.cxx + HLRBRep_Data.hxx + HLRBRep_Data.lxx + HLRBRep_EdgeBuilder.cxx + HLRBRep_EdgeBuilder.hxx + HLRBRep_EdgeData.cxx + HLRBRep_EdgeData.hxx + HLRBRep_EdgeData.lxx + HLRBRep_EdgeFaceTool.cxx + HLRBRep_EdgeFaceTool.hxx + HLRBRep_EdgeIList.cxx + HLRBRep_EdgeIList.hxx + HLRBRep_EdgeInterferenceTool.cxx + HLRBRep_EdgeInterferenceTool.hxx + HLRBRep_EdgeInterferenceTool.lxx + HLRBRep_ExactIntersectionPointOfTheIntPCurvePCurveOfCInter.hxx + HLRBRep_ExactIntersectionPointOfTheIntPCurvePCurveOfCInter_0.cxx + HLRBRep_FaceData.cxx + HLRBRep_FaceData.hxx + HLRBRep_FaceData.lxx + HLRBRep_FaceIterator.cxx + HLRBRep_FaceIterator.hxx + HLRBRep_FaceIterator.lxx + HLRBRep_Hider.cxx + HLRBRep_Hider.hxx + HLRBRep_HLRToShape.cxx + HLRBRep_HLRToShape.hxx + HLRBRep_HLRToShape.lxx + HLRBRep_IntConicCurveOfCInter.hxx + HLRBRep_IntConicCurveOfCInter_0.cxx + HLRBRep_InterCSurf.hxx + HLRBRep_InterCSurf_0.cxx + HLRBRep_InternalAlgo.cxx + HLRBRep_InternalAlgo.hxx + HLRBRep_Intersector.cxx + HLRBRep_Intersector.hxx + HLRBRep_LineTool.hxx + HLRBRep_LineTool.lxx + HLRBRep_ListIteratorOfListOfBPnt2D.hxx + HLRBRep_ListIteratorOfListOfBPoint.hxx + HLRBRep_ListOfBPnt2D.hxx + HLRBRep_ListOfBPoint.hxx + HLRBRep_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfCInter.hxx + HLRBRep_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfCInter_0.cxx + HLRBRep_PCLocFOfTheLocateExtPCOfTheProjPCurOfCInter.hxx + HLRBRep_PCLocFOfTheLocateExtPCOfTheProjPCurOfCInter_0.cxx + HLRBRep_PolyAlgo.cxx + HLRBRep_PolyAlgo.hxx + HLRBRep_PolyHLRToShape.cxx + HLRBRep_PolyHLRToShape.hxx + HLRBRep_PolyHLRToShape.lxx + HLRBRep_SeqOfShapeBounds.hxx + HLRBRep_ShapeBounds.cxx + HLRBRep_ShapeBounds.hxx + HLRBRep_ShapeBounds.lxx + HLRBRep_ShapeToHLR.cxx + HLRBRep_ShapeToHLR.hxx + HLRBRep_SLProps.hxx + HLRBRep_SLProps_0.cxx + HLRBRep_SLPropsATool.hxx + HLRBRep_SLPropsATool.lxx + HLRBRep_Surface.cxx + HLRBRep_Surface.hxx + HLRBRep_Surface.lxx + HLRBRep_SurfaceTool.cxx + HLRBRep_SurfaceTool.hxx + HLRBRep_SurfaceTool.lxx + HLRBRep_TheCSFunctionOfInterCSurf.hxx + HLRBRep_TheCSFunctionOfInterCSurf_0.cxx + HLRBRep_TheCurveLocatorOfTheProjPCurOfCInter.hxx + HLRBRep_TheCurveLocatorOfTheProjPCurOfCInter_0.cxx + HLRBRep_TheDistBetweenPCurvesOfTheIntPCurvePCurveOfCInter.hxx + HLRBRep_TheDistBetweenPCurvesOfTheIntPCurvePCurveOfCInter_0.cxx + HLRBRep_TheExactInterCSurf.hxx + HLRBRep_TheExactInterCSurf_0.cxx + HLRBRep_TheIntConicCurveOfCInter.hxx + HLRBRep_TheIntConicCurveOfCInter_0.cxx + HLRBRep_TheInterferenceOfInterCSurf.hxx + HLRBRep_TheInterferenceOfInterCSurf_0.cxx + HLRBRep_TheIntersectorOfTheIntConicCurveOfCInter.hxx + HLRBRep_TheIntersectorOfTheIntConicCurveOfCInter_0.cxx + HLRBRep_TheIntPCurvePCurveOfCInter.hxx + HLRBRep_TheIntPCurvePCurveOfCInter_0.cxx + HLRBRep_TheLocateExtPCOfTheProjPCurOfCInter.hxx + HLRBRep_TheLocateExtPCOfTheProjPCurOfCInter_0.cxx + HLRBRep_ThePolygon2dOfTheIntPCurvePCurveOfCInter.hxx + HLRBRep_ThePolygon2dOfTheIntPCurvePCurveOfCInter_0.cxx + HLRBRep_ThePolygonOfInterCSurf.hxx + HLRBRep_ThePolygonOfInterCSurf_0.cxx + HLRBRep_ThePolygonToolOfInterCSurf.hxx + HLRBRep_ThePolygonToolOfInterCSurf_0.cxx + HLRBRep_ThePolyhedronOfInterCSurf.hxx + HLRBRep_ThePolyhedronOfInterCSurf_0.cxx + HLRBRep_ThePolyhedronToolOfInterCSurf.hxx + HLRBRep_ThePolyhedronToolOfInterCSurf_0.cxx + HLRBRep_TheProjPCurOfCInter.hxx + HLRBRep_TheProjPCurOfCInter_0.cxx + HLRBRep_TheQuadCurvExactInterCSurf.hxx + HLRBRep_TheQuadCurvExactInterCSurf_0.cxx + HLRBRep_TheQuadCurvFuncOfTheQuadCurvExactInterCSurf.hxx + HLRBRep_TheQuadCurvFuncOfTheQuadCurvExactInterCSurf_0.cxx + HLRBRep_VertexList.cxx + HLRBRep_VertexList.hxx + HLRBRep_TypeOfResultingEdge.hxx +) diff --git a/src/HLRBRep/HLRBRep.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep.cxx similarity index 100% rename from src/HLRBRep/HLRBRep.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep.cxx diff --git a/src/HLRBRep/HLRBRep.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep.hxx similarity index 100% rename from src/HLRBRep/HLRBRep.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep.hxx diff --git a/src/HLRBRep/HLRBRep_Algo.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Algo.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_Algo.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Algo.cxx diff --git a/src/HLRBRep/HLRBRep_Algo.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Algo.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_Algo.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Algo.hxx diff --git a/src/HLRBRep/HLRBRep_AreaLimit.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_AreaLimit.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_AreaLimit.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_AreaLimit.cxx diff --git a/src/HLRBRep/HLRBRep_AreaLimit.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_AreaLimit.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_AreaLimit.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_AreaLimit.hxx diff --git a/src/HLRBRep/HLRBRep_Array1OfEData.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Array1OfEData.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_Array1OfEData.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Array1OfEData.hxx diff --git a/src/HLRBRep/HLRBRep_Array1OfFData.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Array1OfFData.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_Array1OfFData.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Array1OfFData.hxx diff --git a/src/HLRBRep/HLRBRep_BCurveTool.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_BCurveTool.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_BCurveTool.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_BCurveTool.cxx diff --git a/src/HLRBRep/HLRBRep_BCurveTool.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_BCurveTool.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_BCurveTool.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_BCurveTool.hxx diff --git a/src/HLRBRep/HLRBRep_BCurveTool.lxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_BCurveTool.lxx similarity index 100% rename from src/HLRBRep/HLRBRep_BCurveTool.lxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_BCurveTool.lxx diff --git a/src/HLRBRep/HLRBRep_BSurfaceTool.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_BSurfaceTool.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_BSurfaceTool.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_BSurfaceTool.cxx diff --git a/src/HLRBRep/HLRBRep_BSurfaceTool.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_BSurfaceTool.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_BSurfaceTool.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_BSurfaceTool.hxx diff --git a/src/HLRBRep/HLRBRep_BSurfaceTool.lxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_BSurfaceTool.lxx similarity index 100% rename from src/HLRBRep/HLRBRep_BSurfaceTool.lxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_BSurfaceTool.lxx diff --git a/src/HLRBRep/HLRBRep_BiPnt2D.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_BiPnt2D.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_BiPnt2D.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_BiPnt2D.hxx diff --git a/src/HLRBRep/HLRBRep_BiPoint.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_BiPoint.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_BiPoint.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_BiPoint.hxx diff --git a/src/HLRBRep/HLRBRep_CInter.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CInter.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_CInter.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CInter.hxx diff --git a/src/HLRBRep/HLRBRep_CInter_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CInter_0.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_CInter_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CInter_0.cxx diff --git a/src/HLRBRep/HLRBRep_CLProps.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CLProps.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_CLProps.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CLProps.hxx diff --git a/src/HLRBRep/HLRBRep_CLPropsATool.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CLPropsATool.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_CLPropsATool.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CLPropsATool.hxx diff --git a/src/HLRBRep/HLRBRep_CLPropsATool.lxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CLPropsATool.lxx similarity index 100% rename from src/HLRBRep/HLRBRep_CLPropsATool.lxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CLPropsATool.lxx diff --git a/src/HLRBRep/HLRBRep_CLProps_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CLProps_0.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_CLProps_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CLProps_0.cxx diff --git a/src/HLRBRep/HLRBRep_Curve.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Curve.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_Curve.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Curve.cxx diff --git a/src/HLRBRep/HLRBRep_Curve.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Curve.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_Curve.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Curve.hxx diff --git a/src/HLRBRep/HLRBRep_Curve.lxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Curve.lxx similarity index 100% rename from src/HLRBRep/HLRBRep_Curve.lxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Curve.lxx diff --git a/src/HLRBRep/HLRBRep_CurveTool.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CurveTool.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_CurveTool.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CurveTool.cxx diff --git a/src/HLRBRep/HLRBRep_CurveTool.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CurveTool.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_CurveTool.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CurveTool.hxx diff --git a/src/HLRBRep/HLRBRep_CurveTool.lxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CurveTool.lxx similarity index 100% rename from src/HLRBRep/HLRBRep_CurveTool.lxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_CurveTool.lxx diff --git a/src/HLRBRep/HLRBRep_Data.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Data.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_Data.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Data.cxx diff --git a/src/HLRBRep/HLRBRep_Data.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Data.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_Data.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Data.hxx diff --git a/src/HLRBRep/HLRBRep_Data.lxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Data.lxx similarity index 100% rename from src/HLRBRep/HLRBRep_Data.lxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Data.lxx diff --git a/src/HLRBRep/HLRBRep_EdgeBuilder.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_EdgeBuilder.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_EdgeBuilder.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_EdgeBuilder.cxx diff --git a/src/HLRBRep/HLRBRep_EdgeBuilder.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_EdgeBuilder.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_EdgeBuilder.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_EdgeBuilder.hxx diff --git a/src/HLRBRep/HLRBRep_EdgeData.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_EdgeData.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_EdgeData.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_EdgeData.cxx diff --git a/src/HLRBRep/HLRBRep_EdgeData.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_EdgeData.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_EdgeData.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_EdgeData.hxx diff --git a/src/HLRBRep/HLRBRep_EdgeData.lxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_EdgeData.lxx similarity index 100% rename from src/HLRBRep/HLRBRep_EdgeData.lxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_EdgeData.lxx diff --git a/src/HLRBRep/HLRBRep_EdgeFaceTool.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_EdgeFaceTool.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_EdgeFaceTool.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_EdgeFaceTool.cxx diff --git a/src/HLRBRep/HLRBRep_EdgeFaceTool.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_EdgeFaceTool.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_EdgeFaceTool.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_EdgeFaceTool.hxx diff --git a/src/HLRBRep/HLRBRep_EdgeIList.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_EdgeIList.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_EdgeIList.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_EdgeIList.cxx diff --git a/src/HLRBRep/HLRBRep_EdgeIList.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_EdgeIList.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_EdgeIList.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_EdgeIList.hxx diff --git a/src/HLRBRep/HLRBRep_EdgeInterferenceTool.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_EdgeInterferenceTool.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_EdgeInterferenceTool.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_EdgeInterferenceTool.cxx diff --git a/src/HLRBRep/HLRBRep_EdgeInterferenceTool.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_EdgeInterferenceTool.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_EdgeInterferenceTool.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_EdgeInterferenceTool.hxx diff --git a/src/HLRBRep/HLRBRep_EdgeInterferenceTool.lxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_EdgeInterferenceTool.lxx similarity index 100% rename from src/HLRBRep/HLRBRep_EdgeInterferenceTool.lxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_EdgeInterferenceTool.lxx diff --git a/src/HLRBRep/HLRBRep_ExactIntersectionPointOfTheIntPCurvePCurveOfCInter.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ExactIntersectionPointOfTheIntPCurvePCurveOfCInter.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_ExactIntersectionPointOfTheIntPCurvePCurveOfCInter.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ExactIntersectionPointOfTheIntPCurvePCurveOfCInter.hxx diff --git a/src/HLRBRep/HLRBRep_ExactIntersectionPointOfTheIntPCurvePCurveOfCInter_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ExactIntersectionPointOfTheIntPCurvePCurveOfCInter_0.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_ExactIntersectionPointOfTheIntPCurvePCurveOfCInter_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ExactIntersectionPointOfTheIntPCurvePCurveOfCInter_0.cxx diff --git a/src/HLRBRep/HLRBRep_FaceData.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_FaceData.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_FaceData.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_FaceData.cxx diff --git a/src/HLRBRep/HLRBRep_FaceData.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_FaceData.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_FaceData.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_FaceData.hxx diff --git a/src/HLRBRep/HLRBRep_FaceData.lxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_FaceData.lxx similarity index 100% rename from src/HLRBRep/HLRBRep_FaceData.lxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_FaceData.lxx diff --git a/src/HLRBRep/HLRBRep_FaceIterator.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_FaceIterator.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_FaceIterator.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_FaceIterator.cxx diff --git a/src/HLRBRep/HLRBRep_FaceIterator.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_FaceIterator.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_FaceIterator.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_FaceIterator.hxx diff --git a/src/HLRBRep/HLRBRep_FaceIterator.lxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_FaceIterator.lxx similarity index 100% rename from src/HLRBRep/HLRBRep_FaceIterator.lxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_FaceIterator.lxx diff --git a/src/HLRBRep/HLRBRep_HLRToShape.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_HLRToShape.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_HLRToShape.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_HLRToShape.cxx diff --git a/src/HLRBRep/HLRBRep_HLRToShape.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_HLRToShape.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_HLRToShape.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_HLRToShape.hxx diff --git a/src/HLRBRep/HLRBRep_HLRToShape.lxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_HLRToShape.lxx similarity index 100% rename from src/HLRBRep/HLRBRep_HLRToShape.lxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_HLRToShape.lxx diff --git a/src/HLRBRep/HLRBRep_Hider.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Hider.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_Hider.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Hider.cxx diff --git a/src/HLRBRep/HLRBRep_Hider.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Hider.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_Hider.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Hider.hxx diff --git a/src/HLRBRep/HLRBRep_IntConicCurveOfCInter.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_IntConicCurveOfCInter.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_IntConicCurveOfCInter.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_IntConicCurveOfCInter.hxx diff --git a/src/HLRBRep/HLRBRep_IntConicCurveOfCInter_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_IntConicCurveOfCInter_0.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_IntConicCurveOfCInter_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_IntConicCurveOfCInter_0.cxx diff --git a/src/HLRBRep/HLRBRep_InterCSurf.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_InterCSurf.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_InterCSurf.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_InterCSurf.hxx diff --git a/src/HLRBRep/HLRBRep_InterCSurf_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_InterCSurf_0.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_InterCSurf_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_InterCSurf_0.cxx diff --git a/src/HLRBRep/HLRBRep_InternalAlgo.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_InternalAlgo.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_InternalAlgo.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_InternalAlgo.cxx diff --git a/src/HLRBRep/HLRBRep_InternalAlgo.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_InternalAlgo.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_InternalAlgo.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_InternalAlgo.hxx diff --git a/src/HLRBRep/HLRBRep_Intersector.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Intersector.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_Intersector.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Intersector.cxx diff --git a/src/HLRBRep/HLRBRep_Intersector.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Intersector.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_Intersector.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Intersector.hxx diff --git a/src/HLRBRep/HLRBRep_LineTool.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_LineTool.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_LineTool.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_LineTool.hxx diff --git a/src/HLRBRep/HLRBRep_LineTool.lxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_LineTool.lxx similarity index 100% rename from src/HLRBRep/HLRBRep_LineTool.lxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_LineTool.lxx diff --git a/src/HLRBRep/HLRBRep_ListIteratorOfListOfBPnt2D.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ListIteratorOfListOfBPnt2D.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_ListIteratorOfListOfBPnt2D.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ListIteratorOfListOfBPnt2D.hxx diff --git a/src/HLRBRep/HLRBRep_ListIteratorOfListOfBPoint.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ListIteratorOfListOfBPoint.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_ListIteratorOfListOfBPoint.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ListIteratorOfListOfBPoint.hxx diff --git a/src/HLRBRep/HLRBRep_ListOfBPnt2D.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ListOfBPnt2D.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_ListOfBPnt2D.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ListOfBPnt2D.hxx diff --git a/src/HLRBRep/HLRBRep_ListOfBPoint.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ListOfBPoint.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_ListOfBPoint.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ListOfBPoint.hxx diff --git a/src/HLRBRep/HLRBRep_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfCInter.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfCInter.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfCInter.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfCInter.hxx diff --git a/src/HLRBRep/HLRBRep_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfCInter_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfCInter_0.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfCInter_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfCInter_0.cxx diff --git a/src/HLRBRep/HLRBRep_PCLocFOfTheLocateExtPCOfTheProjPCurOfCInter.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_PCLocFOfTheLocateExtPCOfTheProjPCurOfCInter.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_PCLocFOfTheLocateExtPCOfTheProjPCurOfCInter.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_PCLocFOfTheLocateExtPCOfTheProjPCurOfCInter.hxx diff --git a/src/HLRBRep/HLRBRep_PCLocFOfTheLocateExtPCOfTheProjPCurOfCInter_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_PCLocFOfTheLocateExtPCOfTheProjPCurOfCInter_0.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_PCLocFOfTheLocateExtPCOfTheProjPCurOfCInter_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_PCLocFOfTheLocateExtPCOfTheProjPCurOfCInter_0.cxx diff --git a/src/HLRBRep/HLRBRep_PolyAlgo.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_PolyAlgo.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_PolyAlgo.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_PolyAlgo.cxx diff --git a/src/HLRBRep/HLRBRep_PolyAlgo.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_PolyAlgo.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_PolyAlgo.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_PolyAlgo.hxx diff --git a/src/HLRBRep/HLRBRep_PolyHLRToShape.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_PolyHLRToShape.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_PolyHLRToShape.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_PolyHLRToShape.cxx diff --git a/src/HLRBRep/HLRBRep_PolyHLRToShape.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_PolyHLRToShape.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_PolyHLRToShape.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_PolyHLRToShape.hxx diff --git a/src/HLRBRep/HLRBRep_PolyHLRToShape.lxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_PolyHLRToShape.lxx similarity index 100% rename from src/HLRBRep/HLRBRep_PolyHLRToShape.lxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_PolyHLRToShape.lxx diff --git a/src/HLRBRep/HLRBRep_SLProps.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_SLProps.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_SLProps.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_SLProps.hxx diff --git a/src/HLRBRep/HLRBRep_SLPropsATool.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_SLPropsATool.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_SLPropsATool.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_SLPropsATool.hxx diff --git a/src/HLRBRep/HLRBRep_SLPropsATool.lxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_SLPropsATool.lxx similarity index 100% rename from src/HLRBRep/HLRBRep_SLPropsATool.lxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_SLPropsATool.lxx diff --git a/src/HLRBRep/HLRBRep_SLProps_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_SLProps_0.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_SLProps_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_SLProps_0.cxx diff --git a/src/HLRBRep/HLRBRep_SeqOfShapeBounds.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_SeqOfShapeBounds.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_SeqOfShapeBounds.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_SeqOfShapeBounds.hxx diff --git a/src/HLRBRep/HLRBRep_ShapeBounds.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ShapeBounds.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_ShapeBounds.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ShapeBounds.cxx diff --git a/src/HLRBRep/HLRBRep_ShapeBounds.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ShapeBounds.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_ShapeBounds.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ShapeBounds.hxx diff --git a/src/HLRBRep/HLRBRep_ShapeBounds.lxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ShapeBounds.lxx similarity index 100% rename from src/HLRBRep/HLRBRep_ShapeBounds.lxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ShapeBounds.lxx diff --git a/src/HLRBRep/HLRBRep_ShapeToHLR.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ShapeToHLR.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_ShapeToHLR.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ShapeToHLR.cxx diff --git a/src/HLRBRep/HLRBRep_ShapeToHLR.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ShapeToHLR.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_ShapeToHLR.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ShapeToHLR.hxx diff --git a/src/HLRBRep/HLRBRep_Surface.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Surface.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_Surface.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Surface.cxx diff --git a/src/HLRBRep/HLRBRep_Surface.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Surface.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_Surface.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Surface.hxx diff --git a/src/HLRBRep/HLRBRep_Surface.lxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Surface.lxx similarity index 100% rename from src/HLRBRep/HLRBRep_Surface.lxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_Surface.lxx diff --git a/src/HLRBRep/HLRBRep_SurfaceTool.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_SurfaceTool.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_SurfaceTool.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_SurfaceTool.cxx diff --git a/src/HLRBRep/HLRBRep_SurfaceTool.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_SurfaceTool.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_SurfaceTool.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_SurfaceTool.hxx diff --git a/src/HLRBRep/HLRBRep_SurfaceTool.lxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_SurfaceTool.lxx similarity index 100% rename from src/HLRBRep/HLRBRep_SurfaceTool.lxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_SurfaceTool.lxx diff --git a/src/HLRBRep/HLRBRep_TheCSFunctionOfInterCSurf.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheCSFunctionOfInterCSurf.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_TheCSFunctionOfInterCSurf.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheCSFunctionOfInterCSurf.hxx diff --git a/src/HLRBRep/HLRBRep_TheCSFunctionOfInterCSurf_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheCSFunctionOfInterCSurf_0.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_TheCSFunctionOfInterCSurf_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheCSFunctionOfInterCSurf_0.cxx diff --git a/src/HLRBRep/HLRBRep_TheCurveLocatorOfTheProjPCurOfCInter.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheCurveLocatorOfTheProjPCurOfCInter.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_TheCurveLocatorOfTheProjPCurOfCInter.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheCurveLocatorOfTheProjPCurOfCInter.hxx diff --git a/src/HLRBRep/HLRBRep_TheCurveLocatorOfTheProjPCurOfCInter_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheCurveLocatorOfTheProjPCurOfCInter_0.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_TheCurveLocatorOfTheProjPCurOfCInter_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheCurveLocatorOfTheProjPCurOfCInter_0.cxx diff --git a/src/HLRBRep/HLRBRep_TheDistBetweenPCurvesOfTheIntPCurvePCurveOfCInter.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheDistBetweenPCurvesOfTheIntPCurvePCurveOfCInter.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_TheDistBetweenPCurvesOfTheIntPCurvePCurveOfCInter.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheDistBetweenPCurvesOfTheIntPCurvePCurveOfCInter.hxx diff --git a/src/HLRBRep/HLRBRep_TheDistBetweenPCurvesOfTheIntPCurvePCurveOfCInter_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheDistBetweenPCurvesOfTheIntPCurvePCurveOfCInter_0.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_TheDistBetweenPCurvesOfTheIntPCurvePCurveOfCInter_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheDistBetweenPCurvesOfTheIntPCurvePCurveOfCInter_0.cxx diff --git a/src/HLRBRep/HLRBRep_TheExactInterCSurf.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheExactInterCSurf.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_TheExactInterCSurf.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheExactInterCSurf.hxx diff --git a/src/HLRBRep/HLRBRep_TheExactInterCSurf_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheExactInterCSurf_0.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_TheExactInterCSurf_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheExactInterCSurf_0.cxx diff --git a/src/HLRBRep/HLRBRep_TheIntConicCurveOfCInter.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheIntConicCurveOfCInter.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_TheIntConicCurveOfCInter.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheIntConicCurveOfCInter.hxx diff --git a/src/HLRBRep/HLRBRep_TheIntConicCurveOfCInter_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheIntConicCurveOfCInter_0.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_TheIntConicCurveOfCInter_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheIntConicCurveOfCInter_0.cxx diff --git a/src/HLRBRep/HLRBRep_TheIntPCurvePCurveOfCInter.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheIntPCurvePCurveOfCInter.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_TheIntPCurvePCurveOfCInter.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheIntPCurvePCurveOfCInter.hxx diff --git a/src/HLRBRep/HLRBRep_TheIntPCurvePCurveOfCInter_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheIntPCurvePCurveOfCInter_0.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_TheIntPCurvePCurveOfCInter_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheIntPCurvePCurveOfCInter_0.cxx diff --git a/src/HLRBRep/HLRBRep_TheInterferenceOfInterCSurf.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheInterferenceOfInterCSurf.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_TheInterferenceOfInterCSurf.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheInterferenceOfInterCSurf.hxx diff --git a/src/HLRBRep/HLRBRep_TheInterferenceOfInterCSurf_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheInterferenceOfInterCSurf_0.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_TheInterferenceOfInterCSurf_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheInterferenceOfInterCSurf_0.cxx diff --git a/src/HLRBRep/HLRBRep_TheIntersectorOfTheIntConicCurveOfCInter.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheIntersectorOfTheIntConicCurveOfCInter.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_TheIntersectorOfTheIntConicCurveOfCInter.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheIntersectorOfTheIntConicCurveOfCInter.hxx diff --git a/src/HLRBRep/HLRBRep_TheIntersectorOfTheIntConicCurveOfCInter_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheIntersectorOfTheIntConicCurveOfCInter_0.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_TheIntersectorOfTheIntConicCurveOfCInter_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheIntersectorOfTheIntConicCurveOfCInter_0.cxx diff --git a/src/HLRBRep/HLRBRep_TheLocateExtPCOfTheProjPCurOfCInter.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheLocateExtPCOfTheProjPCurOfCInter.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_TheLocateExtPCOfTheProjPCurOfCInter.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheLocateExtPCOfTheProjPCurOfCInter.hxx diff --git a/src/HLRBRep/HLRBRep_TheLocateExtPCOfTheProjPCurOfCInter_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheLocateExtPCOfTheProjPCurOfCInter_0.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_TheLocateExtPCOfTheProjPCurOfCInter_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheLocateExtPCOfTheProjPCurOfCInter_0.cxx diff --git a/src/HLRBRep/HLRBRep_ThePolygon2dOfTheIntPCurvePCurveOfCInter.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ThePolygon2dOfTheIntPCurvePCurveOfCInter.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_ThePolygon2dOfTheIntPCurvePCurveOfCInter.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ThePolygon2dOfTheIntPCurvePCurveOfCInter.hxx diff --git a/src/HLRBRep/HLRBRep_ThePolygon2dOfTheIntPCurvePCurveOfCInter_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ThePolygon2dOfTheIntPCurvePCurveOfCInter_0.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_ThePolygon2dOfTheIntPCurvePCurveOfCInter_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ThePolygon2dOfTheIntPCurvePCurveOfCInter_0.cxx diff --git a/src/HLRBRep/HLRBRep_ThePolygonOfInterCSurf.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ThePolygonOfInterCSurf.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_ThePolygonOfInterCSurf.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ThePolygonOfInterCSurf.hxx diff --git a/src/HLRBRep/HLRBRep_ThePolygonOfInterCSurf_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ThePolygonOfInterCSurf_0.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_ThePolygonOfInterCSurf_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ThePolygonOfInterCSurf_0.cxx diff --git a/src/HLRBRep/HLRBRep_ThePolygonToolOfInterCSurf.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ThePolygonToolOfInterCSurf.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_ThePolygonToolOfInterCSurf.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ThePolygonToolOfInterCSurf.hxx diff --git a/src/HLRBRep/HLRBRep_ThePolygonToolOfInterCSurf_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ThePolygonToolOfInterCSurf_0.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_ThePolygonToolOfInterCSurf_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ThePolygonToolOfInterCSurf_0.cxx diff --git a/src/HLRBRep/HLRBRep_ThePolyhedronOfInterCSurf.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ThePolyhedronOfInterCSurf.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_ThePolyhedronOfInterCSurf.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ThePolyhedronOfInterCSurf.hxx diff --git a/src/HLRBRep/HLRBRep_ThePolyhedronOfInterCSurf_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ThePolyhedronOfInterCSurf_0.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_ThePolyhedronOfInterCSurf_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ThePolyhedronOfInterCSurf_0.cxx diff --git a/src/HLRBRep/HLRBRep_ThePolyhedronToolOfInterCSurf.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ThePolyhedronToolOfInterCSurf.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_ThePolyhedronToolOfInterCSurf.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ThePolyhedronToolOfInterCSurf.hxx diff --git a/src/HLRBRep/HLRBRep_ThePolyhedronToolOfInterCSurf_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ThePolyhedronToolOfInterCSurf_0.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_ThePolyhedronToolOfInterCSurf_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_ThePolyhedronToolOfInterCSurf_0.cxx diff --git a/src/HLRBRep/HLRBRep_TheProjPCurOfCInter.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheProjPCurOfCInter.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_TheProjPCurOfCInter.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheProjPCurOfCInter.hxx diff --git a/src/HLRBRep/HLRBRep_TheProjPCurOfCInter_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheProjPCurOfCInter_0.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_TheProjPCurOfCInter_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheProjPCurOfCInter_0.cxx diff --git a/src/HLRBRep/HLRBRep_TheQuadCurvExactInterCSurf.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheQuadCurvExactInterCSurf.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_TheQuadCurvExactInterCSurf.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheQuadCurvExactInterCSurf.hxx diff --git a/src/HLRBRep/HLRBRep_TheQuadCurvExactInterCSurf_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheQuadCurvExactInterCSurf_0.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_TheQuadCurvExactInterCSurf_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheQuadCurvExactInterCSurf_0.cxx diff --git a/src/HLRBRep/HLRBRep_TheQuadCurvFuncOfTheQuadCurvExactInterCSurf.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheQuadCurvFuncOfTheQuadCurvExactInterCSurf.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_TheQuadCurvFuncOfTheQuadCurvExactInterCSurf.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheQuadCurvFuncOfTheQuadCurvExactInterCSurf.hxx diff --git a/src/HLRBRep/HLRBRep_TheQuadCurvFuncOfTheQuadCurvExactInterCSurf_0.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheQuadCurvFuncOfTheQuadCurvExactInterCSurf_0.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_TheQuadCurvFuncOfTheQuadCurvExactInterCSurf_0.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheQuadCurvFuncOfTheQuadCurvExactInterCSurf_0.cxx diff --git a/src/HLRBRep/HLRBRep_TypeOfResultingEdge.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TypeOfResultingEdge.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_TypeOfResultingEdge.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TypeOfResultingEdge.hxx diff --git a/src/HLRBRep/HLRBRep_VertexList.cxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_VertexList.cxx similarity index 100% rename from src/HLRBRep/HLRBRep_VertexList.cxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_VertexList.cxx diff --git a/src/HLRBRep/HLRBRep_VertexList.hxx b/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_VertexList.hxx similarity index 100% rename from src/HLRBRep/HLRBRep_VertexList.hxx rename to src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_VertexList.hxx diff --git a/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/FILES.cmake b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/FILES.cmake new file mode 100644 index 0000000000..3be596f0d4 --- /dev/null +++ b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/FILES.cmake @@ -0,0 +1,27 @@ +# Source files for HLRTopoBRep package +set(OCCT_HLRTopoBRep_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_HLRTopoBRep_FILES + HLRTopoBRep_Data.cxx + HLRTopoBRep_Data.hxx + HLRTopoBRep_Data.lxx + HLRTopoBRep_DataMapIteratorOfDataMapOfShapeFaceData.hxx + HLRTopoBRep_DataMapIteratorOfMapOfShapeListOfVData.hxx + HLRTopoBRep_DataMapOfShapeFaceData.hxx + HLRTopoBRep_DSFiller.cxx + HLRTopoBRep_DSFiller.hxx + HLRTopoBRep_FaceData.cxx + HLRTopoBRep_FaceData.hxx + HLRTopoBRep_FaceData.lxx + HLRTopoBRep_FaceIsoLiner.cxx + HLRTopoBRep_FaceIsoLiner.hxx + HLRTopoBRep_ListIteratorOfListOfVData.hxx + HLRTopoBRep_ListOfVData.hxx + HLRTopoBRep_MapOfShapeListOfVData.hxx + HLRTopoBRep_OutLiner.cxx + HLRTopoBRep_OutLiner.hxx + HLRTopoBRep_OutLiner.lxx + HLRTopoBRep_VData.cxx + HLRTopoBRep_VData.hxx + HLRTopoBRep_VData.lxx +) diff --git a/src/HLRTopoBRep/HLRTopoBRep_DSFiller.cxx b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_DSFiller.cxx similarity index 100% rename from src/HLRTopoBRep/HLRTopoBRep_DSFiller.cxx rename to src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_DSFiller.cxx diff --git a/src/HLRTopoBRep/HLRTopoBRep_DSFiller.hxx b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_DSFiller.hxx similarity index 100% rename from src/HLRTopoBRep/HLRTopoBRep_DSFiller.hxx rename to src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_DSFiller.hxx diff --git a/src/HLRTopoBRep/HLRTopoBRep_Data.cxx b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_Data.cxx similarity index 100% rename from src/HLRTopoBRep/HLRTopoBRep_Data.cxx rename to src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_Data.cxx diff --git a/src/HLRTopoBRep/HLRTopoBRep_Data.hxx b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_Data.hxx similarity index 100% rename from src/HLRTopoBRep/HLRTopoBRep_Data.hxx rename to src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_Data.hxx diff --git a/src/HLRTopoBRep/HLRTopoBRep_Data.lxx b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_Data.lxx similarity index 100% rename from src/HLRTopoBRep/HLRTopoBRep_Data.lxx rename to src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_Data.lxx diff --git a/src/HLRTopoBRep/HLRTopoBRep_DataMapIteratorOfDataMapOfShapeFaceData.hxx b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_DataMapIteratorOfDataMapOfShapeFaceData.hxx similarity index 100% rename from src/HLRTopoBRep/HLRTopoBRep_DataMapIteratorOfDataMapOfShapeFaceData.hxx rename to src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_DataMapIteratorOfDataMapOfShapeFaceData.hxx diff --git a/src/HLRTopoBRep/HLRTopoBRep_DataMapIteratorOfMapOfShapeListOfVData.hxx b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_DataMapIteratorOfMapOfShapeListOfVData.hxx similarity index 100% rename from src/HLRTopoBRep/HLRTopoBRep_DataMapIteratorOfMapOfShapeListOfVData.hxx rename to src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_DataMapIteratorOfMapOfShapeListOfVData.hxx diff --git a/src/HLRTopoBRep/HLRTopoBRep_DataMapOfShapeFaceData.hxx b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_DataMapOfShapeFaceData.hxx similarity index 100% rename from src/HLRTopoBRep/HLRTopoBRep_DataMapOfShapeFaceData.hxx rename to src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_DataMapOfShapeFaceData.hxx diff --git a/src/HLRTopoBRep/HLRTopoBRep_FaceData.cxx b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_FaceData.cxx similarity index 100% rename from src/HLRTopoBRep/HLRTopoBRep_FaceData.cxx rename to src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_FaceData.cxx diff --git a/src/HLRTopoBRep/HLRTopoBRep_FaceData.hxx b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_FaceData.hxx similarity index 100% rename from src/HLRTopoBRep/HLRTopoBRep_FaceData.hxx rename to src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_FaceData.hxx diff --git a/src/HLRTopoBRep/HLRTopoBRep_FaceData.lxx b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_FaceData.lxx similarity index 100% rename from src/HLRTopoBRep/HLRTopoBRep_FaceData.lxx rename to src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_FaceData.lxx diff --git a/src/HLRTopoBRep/HLRTopoBRep_FaceIsoLiner.cxx b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_FaceIsoLiner.cxx similarity index 100% rename from src/HLRTopoBRep/HLRTopoBRep_FaceIsoLiner.cxx rename to src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_FaceIsoLiner.cxx diff --git a/src/HLRTopoBRep/HLRTopoBRep_FaceIsoLiner.hxx b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_FaceIsoLiner.hxx similarity index 100% rename from src/HLRTopoBRep/HLRTopoBRep_FaceIsoLiner.hxx rename to src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_FaceIsoLiner.hxx diff --git a/src/HLRTopoBRep/HLRTopoBRep_ListIteratorOfListOfVData.hxx b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_ListIteratorOfListOfVData.hxx similarity index 100% rename from src/HLRTopoBRep/HLRTopoBRep_ListIteratorOfListOfVData.hxx rename to src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_ListIteratorOfListOfVData.hxx diff --git a/src/HLRTopoBRep/HLRTopoBRep_ListOfVData.hxx b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_ListOfVData.hxx similarity index 100% rename from src/HLRTopoBRep/HLRTopoBRep_ListOfVData.hxx rename to src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_ListOfVData.hxx diff --git a/src/HLRTopoBRep/HLRTopoBRep_MapOfShapeListOfVData.hxx b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_MapOfShapeListOfVData.hxx similarity index 100% rename from src/HLRTopoBRep/HLRTopoBRep_MapOfShapeListOfVData.hxx rename to src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_MapOfShapeListOfVData.hxx diff --git a/src/HLRTopoBRep/HLRTopoBRep_OutLiner.cxx b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_OutLiner.cxx similarity index 100% rename from src/HLRTopoBRep/HLRTopoBRep_OutLiner.cxx rename to src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_OutLiner.cxx diff --git a/src/HLRTopoBRep/HLRTopoBRep_OutLiner.hxx b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_OutLiner.hxx similarity index 100% rename from src/HLRTopoBRep/HLRTopoBRep_OutLiner.hxx rename to src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_OutLiner.hxx diff --git a/src/HLRTopoBRep/HLRTopoBRep_OutLiner.lxx b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_OutLiner.lxx similarity index 100% rename from src/HLRTopoBRep/HLRTopoBRep_OutLiner.lxx rename to src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_OutLiner.lxx diff --git a/src/HLRTopoBRep/HLRTopoBRep_VData.cxx b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_VData.cxx similarity index 100% rename from src/HLRTopoBRep/HLRTopoBRep_VData.cxx rename to src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_VData.cxx diff --git a/src/HLRTopoBRep/HLRTopoBRep_VData.hxx b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_VData.hxx similarity index 100% rename from src/HLRTopoBRep/HLRTopoBRep_VData.hxx rename to src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_VData.hxx diff --git a/src/HLRTopoBRep/HLRTopoBRep_VData.lxx b/src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_VData.lxx similarity index 100% rename from src/HLRTopoBRep/HLRTopoBRep_VData.lxx rename to src/ModelingAlgorithms/TKHLR/HLRTopoBRep/HLRTopoBRep_VData.lxx diff --git a/src/ModelingAlgorithms/TKHLR/Intrv/FILES.cmake b/src/ModelingAlgorithms/TKHLR/Intrv/FILES.cmake new file mode 100644 index 0000000000..6c66e15066 --- /dev/null +++ b/src/ModelingAlgorithms/TKHLR/Intrv/FILES.cmake @@ -0,0 +1,13 @@ +# Source files for Intrv package +set(OCCT_Intrv_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Intrv_FILES + Intrv_Interval.cxx + Intrv_Interval.hxx + Intrv_Interval.lxx + Intrv_Intervals.cxx + Intrv_Intervals.hxx + Intrv_Intervals.lxx + Intrv_Position.hxx + Intrv_SequenceOfInterval.hxx +) diff --git a/src/Intrv/Intrv_Interval.cxx b/src/ModelingAlgorithms/TKHLR/Intrv/Intrv_Interval.cxx similarity index 100% rename from src/Intrv/Intrv_Interval.cxx rename to src/ModelingAlgorithms/TKHLR/Intrv/Intrv_Interval.cxx diff --git a/src/Intrv/Intrv_Interval.hxx b/src/ModelingAlgorithms/TKHLR/Intrv/Intrv_Interval.hxx similarity index 100% rename from src/Intrv/Intrv_Interval.hxx rename to src/ModelingAlgorithms/TKHLR/Intrv/Intrv_Interval.hxx diff --git a/src/Intrv/Intrv_Interval.lxx b/src/ModelingAlgorithms/TKHLR/Intrv/Intrv_Interval.lxx similarity index 100% rename from src/Intrv/Intrv_Interval.lxx rename to src/ModelingAlgorithms/TKHLR/Intrv/Intrv_Interval.lxx diff --git a/src/Intrv/Intrv_Intervals.cxx b/src/ModelingAlgorithms/TKHLR/Intrv/Intrv_Intervals.cxx similarity index 100% rename from src/Intrv/Intrv_Intervals.cxx rename to src/ModelingAlgorithms/TKHLR/Intrv/Intrv_Intervals.cxx diff --git a/src/Intrv/Intrv_Intervals.hxx b/src/ModelingAlgorithms/TKHLR/Intrv/Intrv_Intervals.hxx similarity index 100% rename from src/Intrv/Intrv_Intervals.hxx rename to src/ModelingAlgorithms/TKHLR/Intrv/Intrv_Intervals.hxx diff --git a/src/Intrv/Intrv_Intervals.lxx b/src/ModelingAlgorithms/TKHLR/Intrv/Intrv_Intervals.lxx similarity index 100% rename from src/Intrv/Intrv_Intervals.lxx rename to src/ModelingAlgorithms/TKHLR/Intrv/Intrv_Intervals.lxx diff --git a/src/Intrv/Intrv_Position.hxx b/src/ModelingAlgorithms/TKHLR/Intrv/Intrv_Position.hxx similarity index 100% rename from src/Intrv/Intrv_Position.hxx rename to src/ModelingAlgorithms/TKHLR/Intrv/Intrv_Position.hxx diff --git a/src/Intrv/Intrv_SequenceOfInterval.hxx b/src/ModelingAlgorithms/TKHLR/Intrv/Intrv_SequenceOfInterval.hxx similarity index 100% rename from src/Intrv/Intrv_SequenceOfInterval.hxx rename to src/ModelingAlgorithms/TKHLR/Intrv/Intrv_SequenceOfInterval.hxx diff --git a/src/ModelingAlgorithms/TKHLR/PACKAGES.cmake b/src/ModelingAlgorithms/TKHLR/PACKAGES.cmake new file mode 100644 index 0000000000..499f552c9b --- /dev/null +++ b/src/ModelingAlgorithms/TKHLR/PACKAGES.cmake @@ -0,0 +1,11 @@ +# Auto-generated list of packages for TKHLR toolkit +set(OCCT_TKHLR_LIST_OF_PACKAGES + HLRTopoBRep + HLRBRep + HLRAlgo + HLRAppli + Intrv + TopBas + TopCnx + Contap +) diff --git a/src/ModelingAlgorithms/TKHLR/TopBas/FILES.cmake b/src/ModelingAlgorithms/TKHLR/TopBas/FILES.cmake new file mode 100644 index 0000000000..e2ae9827db --- /dev/null +++ b/src/ModelingAlgorithms/TKHLR/TopBas/FILES.cmake @@ -0,0 +1,11 @@ +# Source files for TopBas package +set(OCCT_TopBas_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TopBas_FILES + TopBas_Interference.gxx + TopBas_Interference.lxx + TopBas_ListIteratorOfListOfTestInterference.hxx + TopBas_ListOfTestInterference.hxx + TopBas_TestInterference.hxx + TopBas_TestInterference_0.cxx +) diff --git a/src/TopBas/TopBas_Interference.gxx b/src/ModelingAlgorithms/TKHLR/TopBas/TopBas_Interference.gxx similarity index 100% rename from src/TopBas/TopBas_Interference.gxx rename to src/ModelingAlgorithms/TKHLR/TopBas/TopBas_Interference.gxx diff --git a/src/TopBas/TopBas_Interference.lxx b/src/ModelingAlgorithms/TKHLR/TopBas/TopBas_Interference.lxx similarity index 100% rename from src/TopBas/TopBas_Interference.lxx rename to src/ModelingAlgorithms/TKHLR/TopBas/TopBas_Interference.lxx diff --git a/src/TopBas/TopBas_ListIteratorOfListOfTestInterference.hxx b/src/ModelingAlgorithms/TKHLR/TopBas/TopBas_ListIteratorOfListOfTestInterference.hxx similarity index 100% rename from src/TopBas/TopBas_ListIteratorOfListOfTestInterference.hxx rename to src/ModelingAlgorithms/TKHLR/TopBas/TopBas_ListIteratorOfListOfTestInterference.hxx diff --git a/src/TopBas/TopBas_ListOfTestInterference.hxx b/src/ModelingAlgorithms/TKHLR/TopBas/TopBas_ListOfTestInterference.hxx similarity index 100% rename from src/TopBas/TopBas_ListOfTestInterference.hxx rename to src/ModelingAlgorithms/TKHLR/TopBas/TopBas_ListOfTestInterference.hxx diff --git a/src/TopBas/TopBas_TestInterference.hxx b/src/ModelingAlgorithms/TKHLR/TopBas/TopBas_TestInterference.hxx similarity index 100% rename from src/TopBas/TopBas_TestInterference.hxx rename to src/ModelingAlgorithms/TKHLR/TopBas/TopBas_TestInterference.hxx diff --git a/src/TopBas/TopBas_TestInterference_0.cxx b/src/ModelingAlgorithms/TKHLR/TopBas/TopBas_TestInterference_0.cxx similarity index 100% rename from src/TopBas/TopBas_TestInterference_0.cxx rename to src/ModelingAlgorithms/TKHLR/TopBas/TopBas_TestInterference_0.cxx diff --git a/src/ModelingAlgorithms/TKHLR/TopCnx/FILES.cmake b/src/ModelingAlgorithms/TKHLR/TopCnx/FILES.cmake new file mode 100644 index 0000000000..d607eb54d2 --- /dev/null +++ b/src/ModelingAlgorithms/TKHLR/TopCnx/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TopCnx package +set(OCCT_TopCnx_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TopCnx_FILES + TopCnx_EdgeFaceTransition.cxx + TopCnx_EdgeFaceTransition.hxx +) diff --git a/src/TopCnx/TopCnx_EdgeFaceTransition.cxx b/src/ModelingAlgorithms/TKHLR/TopCnx/TopCnx_EdgeFaceTransition.cxx similarity index 100% rename from src/TopCnx/TopCnx_EdgeFaceTransition.cxx rename to src/ModelingAlgorithms/TKHLR/TopCnx/TopCnx_EdgeFaceTransition.cxx diff --git a/src/TopCnx/TopCnx_EdgeFaceTransition.hxx b/src/ModelingAlgorithms/TKHLR/TopCnx/TopCnx_EdgeFaceTransition.hxx similarity index 100% rename from src/TopCnx/TopCnx_EdgeFaceTransition.hxx rename to src/ModelingAlgorithms/TKHLR/TopCnx/TopCnx_EdgeFaceTransition.hxx diff --git a/src/BRepMesh/BRepMesh_BaseMeshAlgo.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_BaseMeshAlgo.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_BaseMeshAlgo.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_BaseMeshAlgo.cxx diff --git a/src/BRepMesh/BRepMesh_BaseMeshAlgo.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_BaseMeshAlgo.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_BaseMeshAlgo.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_BaseMeshAlgo.hxx diff --git a/src/BRepMesh/BRepMesh_BoundaryParamsRangeSplitter.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_BoundaryParamsRangeSplitter.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_BoundaryParamsRangeSplitter.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_BoundaryParamsRangeSplitter.hxx diff --git a/src/BRepMesh/BRepMesh_Circle.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Circle.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_Circle.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Circle.hxx diff --git a/src/BRepMesh/BRepMesh_CircleInspector.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_CircleInspector.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_CircleInspector.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_CircleInspector.hxx diff --git a/src/BRepMesh/BRepMesh_CircleTool.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_CircleTool.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_CircleTool.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_CircleTool.cxx diff --git a/src/BRepMesh/BRepMesh_CircleTool.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_CircleTool.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_CircleTool.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_CircleTool.hxx diff --git a/src/BRepMesh/BRepMesh_Classifier.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Classifier.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_Classifier.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Classifier.cxx diff --git a/src/BRepMesh/BRepMesh_Classifier.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Classifier.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_Classifier.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Classifier.hxx diff --git a/src/BRepMesh/BRepMesh_ConeRangeSplitter.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ConeRangeSplitter.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_ConeRangeSplitter.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ConeRangeSplitter.cxx diff --git a/src/BRepMesh/BRepMesh_ConeRangeSplitter.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ConeRangeSplitter.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_ConeRangeSplitter.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ConeRangeSplitter.hxx diff --git a/src/BRepMesh/BRepMesh_ConstrainedBaseMeshAlgo.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ConstrainedBaseMeshAlgo.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_ConstrainedBaseMeshAlgo.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ConstrainedBaseMeshAlgo.cxx diff --git a/src/BRepMesh/BRepMesh_ConstrainedBaseMeshAlgo.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ConstrainedBaseMeshAlgo.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_ConstrainedBaseMeshAlgo.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ConstrainedBaseMeshAlgo.hxx diff --git a/src/BRepMesh/BRepMesh_Context.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Context.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_Context.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Context.cxx diff --git a/src/BRepMesh/BRepMesh_Context.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Context.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_Context.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Context.hxx diff --git a/src/BRepMesh/BRepMesh_CurveTessellator.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_CurveTessellator.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_CurveTessellator.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_CurveTessellator.cxx diff --git a/src/BRepMesh/BRepMesh_CurveTessellator.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_CurveTessellator.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_CurveTessellator.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_CurveTessellator.hxx diff --git a/src/BRepMesh/BRepMesh_CustomBaseMeshAlgo.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_CustomBaseMeshAlgo.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_CustomBaseMeshAlgo.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_CustomBaseMeshAlgo.cxx diff --git a/src/BRepMesh/BRepMesh_CustomBaseMeshAlgo.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_CustomBaseMeshAlgo.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_CustomBaseMeshAlgo.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_CustomBaseMeshAlgo.hxx diff --git a/src/BRepMesh/BRepMesh_CustomDelaunayBaseMeshAlgo.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_CustomDelaunayBaseMeshAlgo.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_CustomDelaunayBaseMeshAlgo.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_CustomDelaunayBaseMeshAlgo.hxx diff --git a/src/BRepMesh/BRepMesh_CylinderRangeSplitter.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_CylinderRangeSplitter.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_CylinderRangeSplitter.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_CylinderRangeSplitter.cxx diff --git a/src/BRepMesh/BRepMesh_CylinderRangeSplitter.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_CylinderRangeSplitter.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_CylinderRangeSplitter.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_CylinderRangeSplitter.hxx diff --git a/src/BRepMesh/BRepMesh_DataStructureOfDelaun.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DataStructureOfDelaun.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_DataStructureOfDelaun.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DataStructureOfDelaun.cxx diff --git a/src/BRepMesh/BRepMesh_DataStructureOfDelaun.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DataStructureOfDelaun.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_DataStructureOfDelaun.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DataStructureOfDelaun.hxx diff --git a/src/BRepMesh/BRepMesh_DefaultRangeSplitter.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DefaultRangeSplitter.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_DefaultRangeSplitter.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DefaultRangeSplitter.cxx diff --git a/src/BRepMesh/BRepMesh_DefaultRangeSplitter.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DefaultRangeSplitter.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_DefaultRangeSplitter.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DefaultRangeSplitter.hxx diff --git a/src/BRepMesh/BRepMesh_Deflection.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Deflection.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_Deflection.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Deflection.cxx diff --git a/src/BRepMesh/BRepMesh_Deflection.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Deflection.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_Deflection.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Deflection.hxx diff --git a/src/BRepMesh/BRepMesh_DegreeOfFreedom.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DegreeOfFreedom.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_DegreeOfFreedom.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DegreeOfFreedom.hxx diff --git a/src/BRepMesh/BRepMesh_DelabellaBaseMeshAlgo.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DelabellaBaseMeshAlgo.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_DelabellaBaseMeshAlgo.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DelabellaBaseMeshAlgo.cxx diff --git a/src/BRepMesh/BRepMesh_DelabellaBaseMeshAlgo.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DelabellaBaseMeshAlgo.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_DelabellaBaseMeshAlgo.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DelabellaBaseMeshAlgo.hxx diff --git a/src/BRepMesh/BRepMesh_DelabellaMeshAlgoFactory.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DelabellaMeshAlgoFactory.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_DelabellaMeshAlgoFactory.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DelabellaMeshAlgoFactory.cxx diff --git a/src/BRepMesh/BRepMesh_DelabellaMeshAlgoFactory.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DelabellaMeshAlgoFactory.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_DelabellaMeshAlgoFactory.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DelabellaMeshAlgoFactory.hxx diff --git a/src/BRepMesh/BRepMesh_Delaun.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Delaun.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_Delaun.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Delaun.cxx diff --git a/src/BRepMesh/BRepMesh_Delaun.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Delaun.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_Delaun.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Delaun.hxx diff --git a/src/BRepMesh/BRepMesh_DelaunayBaseMeshAlgo.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DelaunayBaseMeshAlgo.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_DelaunayBaseMeshAlgo.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DelaunayBaseMeshAlgo.cxx diff --git a/src/BRepMesh/BRepMesh_DelaunayBaseMeshAlgo.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DelaunayBaseMeshAlgo.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_DelaunayBaseMeshAlgo.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DelaunayBaseMeshAlgo.hxx diff --git a/src/BRepMesh/BRepMesh_DelaunayDeflectionControlMeshAlgo.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DelaunayDeflectionControlMeshAlgo.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_DelaunayDeflectionControlMeshAlgo.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DelaunayDeflectionControlMeshAlgo.hxx diff --git a/src/BRepMesh/BRepMesh_DelaunayNodeInsertionMeshAlgo.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DelaunayNodeInsertionMeshAlgo.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_DelaunayNodeInsertionMeshAlgo.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DelaunayNodeInsertionMeshAlgo.hxx diff --git a/src/BRepMesh/BRepMesh_DiscretFactory.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DiscretFactory.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_DiscretFactory.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DiscretFactory.cxx diff --git a/src/BRepMesh/BRepMesh_DiscretFactory.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DiscretFactory.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_DiscretFactory.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DiscretFactory.hxx diff --git a/src/BRepMesh/BRepMesh_DiscretRoot.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DiscretRoot.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_DiscretRoot.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DiscretRoot.cxx diff --git a/src/BRepMesh/BRepMesh_DiscretRoot.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DiscretRoot.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_DiscretRoot.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_DiscretRoot.hxx diff --git a/src/BRepMesh/BRepMesh_Edge.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Edge.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_Edge.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Edge.hxx diff --git a/src/BRepMesh/BRepMesh_EdgeDiscret.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_EdgeDiscret.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_EdgeDiscret.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_EdgeDiscret.cxx diff --git a/src/BRepMesh/BRepMesh_EdgeDiscret.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_EdgeDiscret.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_EdgeDiscret.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_EdgeDiscret.hxx diff --git a/src/BRepMesh/BRepMesh_EdgeParameterProvider.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_EdgeParameterProvider.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_EdgeParameterProvider.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_EdgeParameterProvider.hxx diff --git a/src/BRepMesh/BRepMesh_EdgeTessellationExtractor.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_EdgeTessellationExtractor.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_EdgeTessellationExtractor.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_EdgeTessellationExtractor.cxx diff --git a/src/BRepMesh/BRepMesh_EdgeTessellationExtractor.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_EdgeTessellationExtractor.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_EdgeTessellationExtractor.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_EdgeTessellationExtractor.hxx diff --git a/src/BRepMesh/BRepMesh_ExtrusionRangeSplitter.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ExtrusionRangeSplitter.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_ExtrusionRangeSplitter.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ExtrusionRangeSplitter.cxx diff --git a/src/BRepMesh/BRepMesh_ExtrusionRangeSplitter.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ExtrusionRangeSplitter.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_ExtrusionRangeSplitter.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ExtrusionRangeSplitter.hxx diff --git a/src/BRepMesh/BRepMesh_FaceChecker.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_FaceChecker.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_FaceChecker.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_FaceChecker.cxx diff --git a/src/BRepMesh/BRepMesh_FaceChecker.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_FaceChecker.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_FaceChecker.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_FaceChecker.hxx diff --git a/src/BRepMesh/BRepMesh_FaceDiscret.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_FaceDiscret.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_FaceDiscret.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_FaceDiscret.cxx diff --git a/src/BRepMesh/BRepMesh_FaceDiscret.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_FaceDiscret.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_FaceDiscret.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_FaceDiscret.hxx diff --git a/src/BRepMesh/BRepMesh_FactoryError.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_FactoryError.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_FactoryError.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_FactoryError.hxx diff --git a/src/BRepMesh/BRepMesh_FastDiscret.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_FastDiscret.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_FastDiscret.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_FastDiscret.hxx diff --git a/src/BRepMesh/BRepMesh_GeomTool.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_GeomTool.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_GeomTool.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_GeomTool.cxx diff --git a/src/BRepMesh/BRepMesh_GeomTool.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_GeomTool.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_GeomTool.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_GeomTool.hxx diff --git a/src/BRepMesh/BRepMesh_IncrementalMesh.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_IncrementalMesh.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_IncrementalMesh.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_IncrementalMesh.cxx diff --git a/src/BRepMesh/BRepMesh_IncrementalMesh.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_IncrementalMesh.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_IncrementalMesh.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_IncrementalMesh.hxx diff --git a/src/BRepMesh/BRepMesh_MeshAlgoFactory.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_MeshAlgoFactory.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_MeshAlgoFactory.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_MeshAlgoFactory.cxx diff --git a/src/BRepMesh/BRepMesh_MeshAlgoFactory.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_MeshAlgoFactory.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_MeshAlgoFactory.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_MeshAlgoFactory.hxx diff --git a/src/BRepMesh/BRepMesh_MeshTool.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_MeshTool.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_MeshTool.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_MeshTool.cxx diff --git a/src/BRepMesh/BRepMesh_MeshTool.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_MeshTool.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_MeshTool.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_MeshTool.hxx diff --git a/src/BRepMesh/BRepMesh_ModelBuilder.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ModelBuilder.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_ModelBuilder.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ModelBuilder.cxx diff --git a/src/BRepMesh/BRepMesh_ModelBuilder.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ModelBuilder.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_ModelBuilder.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ModelBuilder.hxx diff --git a/src/BRepMesh/BRepMesh_ModelHealer.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ModelHealer.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_ModelHealer.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ModelHealer.cxx diff --git a/src/BRepMesh/BRepMesh_ModelHealer.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ModelHealer.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_ModelHealer.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ModelHealer.hxx diff --git a/src/BRepMesh/BRepMesh_ModelPostProcessor.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ModelPostProcessor.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_ModelPostProcessor.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ModelPostProcessor.cxx diff --git a/src/BRepMesh/BRepMesh_ModelPostProcessor.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ModelPostProcessor.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_ModelPostProcessor.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ModelPostProcessor.hxx diff --git a/src/BRepMesh/BRepMesh_ModelPreProcessor.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ModelPreProcessor.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_ModelPreProcessor.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ModelPreProcessor.cxx diff --git a/src/BRepMesh/BRepMesh_ModelPreProcessor.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ModelPreProcessor.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_ModelPreProcessor.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ModelPreProcessor.hxx diff --git a/src/BRepMesh/BRepMesh_NURBSRangeSplitter.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_NURBSRangeSplitter.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_NURBSRangeSplitter.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_NURBSRangeSplitter.cxx diff --git a/src/BRepMesh/BRepMesh_NURBSRangeSplitter.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_NURBSRangeSplitter.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_NURBSRangeSplitter.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_NURBSRangeSplitter.hxx diff --git a/src/BRepMesh/BRepMesh_NodeInsertionMeshAlgo.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_NodeInsertionMeshAlgo.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_NodeInsertionMeshAlgo.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_NodeInsertionMeshAlgo.hxx diff --git a/src/BRepMesh/BRepMesh_OrientedEdge.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_OrientedEdge.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_OrientedEdge.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_OrientedEdge.hxx diff --git a/src/BRepMesh/BRepMesh_PairOfIndex.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_PairOfIndex.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_PairOfIndex.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_PairOfIndex.hxx diff --git a/src/BRepMesh/BRepMesh_PluginEntryType.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_PluginEntryType.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_PluginEntryType.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_PluginEntryType.hxx diff --git a/src/BRepMesh/BRepMesh_PluginMacro.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_PluginMacro.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_PluginMacro.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_PluginMacro.hxx diff --git a/src/BRepMesh/BRepMesh_SelectorOfDataStructureOfDelaun.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_SelectorOfDataStructureOfDelaun.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_SelectorOfDataStructureOfDelaun.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_SelectorOfDataStructureOfDelaun.cxx diff --git a/src/BRepMesh/BRepMesh_SelectorOfDataStructureOfDelaun.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_SelectorOfDataStructureOfDelaun.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_SelectorOfDataStructureOfDelaun.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_SelectorOfDataStructureOfDelaun.hxx diff --git a/src/BRepMesh/BRepMesh_ShapeTool.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ShapeTool.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_ShapeTool.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ShapeTool.cxx diff --git a/src/BRepMesh/BRepMesh_ShapeTool.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ShapeTool.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_ShapeTool.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ShapeTool.hxx diff --git a/src/BRepMesh/BRepMesh_ShapeVisitor.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ShapeVisitor.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_ShapeVisitor.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ShapeVisitor.cxx diff --git a/src/BRepMesh/BRepMesh_ShapeVisitor.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ShapeVisitor.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_ShapeVisitor.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_ShapeVisitor.hxx diff --git a/src/BRepMesh/BRepMesh_SphereRangeSplitter.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_SphereRangeSplitter.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_SphereRangeSplitter.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_SphereRangeSplitter.cxx diff --git a/src/BRepMesh/BRepMesh_SphereRangeSplitter.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_SphereRangeSplitter.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_SphereRangeSplitter.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_SphereRangeSplitter.hxx diff --git a/src/BRepMesh/BRepMesh_TorusRangeSplitter.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_TorusRangeSplitter.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_TorusRangeSplitter.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_TorusRangeSplitter.cxx diff --git a/src/BRepMesh/BRepMesh_TorusRangeSplitter.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_TorusRangeSplitter.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_TorusRangeSplitter.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_TorusRangeSplitter.hxx diff --git a/src/BRepMesh/BRepMesh_Triangle.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Triangle.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_Triangle.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Triangle.hxx diff --git a/src/BRepMesh/BRepMesh_Triangulator.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Triangulator.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_Triangulator.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Triangulator.cxx diff --git a/src/BRepMesh/BRepMesh_Triangulator.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Triangulator.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_Triangulator.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Triangulator.hxx diff --git a/src/BRepMesh/BRepMesh_UVParamRangeSplitter.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_UVParamRangeSplitter.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_UVParamRangeSplitter.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_UVParamRangeSplitter.hxx diff --git a/src/BRepMesh/BRepMesh_UndefinedRangeSplitter.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_UndefinedRangeSplitter.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_UndefinedRangeSplitter.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_UndefinedRangeSplitter.cxx diff --git a/src/BRepMesh/BRepMesh_UndefinedRangeSplitter.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_UndefinedRangeSplitter.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_UndefinedRangeSplitter.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_UndefinedRangeSplitter.hxx diff --git a/src/BRepMesh/BRepMesh_Vertex.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Vertex.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_Vertex.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_Vertex.hxx diff --git a/src/BRepMesh/BRepMesh_VertexInspector.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_VertexInspector.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_VertexInspector.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_VertexInspector.hxx diff --git a/src/BRepMesh/BRepMesh_VertexTool.cxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_VertexTool.cxx similarity index 100% rename from src/BRepMesh/BRepMesh_VertexTool.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_VertexTool.cxx diff --git a/src/BRepMesh/BRepMesh_VertexTool.hxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_VertexTool.hxx similarity index 100% rename from src/BRepMesh/BRepMesh_VertexTool.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/BRepMesh_VertexTool.hxx diff --git a/src/ModelingAlgorithms/TKMesh/BRepMesh/FILES.cmake b/src/ModelingAlgorithms/TKMesh/BRepMesh/FILES.cmake new file mode 100644 index 0000000000..b10314c0e0 --- /dev/null +++ b/src/ModelingAlgorithms/TKMesh/BRepMesh/FILES.cmake @@ -0,0 +1,107 @@ +# Source files for BRepMesh package +set(OCCT_BRepMesh_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepMesh_FILES + BRepMesh_BaseMeshAlgo.cxx + BRepMesh_BaseMeshAlgo.hxx + BRepMesh_ConstrainedBaseMeshAlgo.hxx + BRepMesh_ConstrainedBaseMeshAlgo.cxx + BRepMesh_BoundaryParamsRangeSplitter.hxx + BRepMesh_Circle.hxx + BRepMesh_CircleInspector.hxx + BRepMesh_CircleTool.cxx + BRepMesh_CircleTool.hxx + BRepMesh_Classifier.cxx + BRepMesh_Classifier.hxx + BRepMesh_ConeRangeSplitter.cxx + BRepMesh_ConeRangeSplitter.hxx + BRepMesh_Context.cxx + BRepMesh_Context.hxx + BRepMesh_CurveTessellator.cxx + BRepMesh_CurveTessellator.hxx + BRepMesh_CylinderRangeSplitter.cxx + BRepMesh_CylinderRangeSplitter.hxx + BRepMesh_DataStructureOfDelaun.cxx + BRepMesh_DataStructureOfDelaun.hxx + BRepMesh_DefaultRangeSplitter.cxx + BRepMesh_DefaultRangeSplitter.hxx + BRepMesh_Deflection.cxx + BRepMesh_Deflection.hxx + BRepMesh_DegreeOfFreedom.hxx + BRepMesh_Delaun.cxx + BRepMesh_Delaun.hxx + BRepMesh_DelaunayBaseMeshAlgo.cxx + BRepMesh_DelaunayBaseMeshAlgo.hxx + BRepMesh_DelaunayDeflectionControlMeshAlgo.hxx + BRepMesh_DelaunayNodeInsertionMeshAlgo.hxx + BRepMesh_DiscretFactory.cxx + BRepMesh_DiscretFactory.hxx + BRepMesh_DiscretRoot.cxx + BRepMesh_DiscretRoot.hxx + BRepMesh_Edge.hxx + BRepMesh_EdgeDiscret.cxx + BRepMesh_EdgeDiscret.hxx + BRepMesh_EdgeParameterProvider.hxx + BRepMesh_EdgeTessellationExtractor.cxx + BRepMesh_EdgeTessellationExtractor.hxx + BRepMesh_ExtrusionRangeSplitter.cxx + BRepMesh_ExtrusionRangeSplitter.hxx + BRepMesh_FaceChecker.cxx + BRepMesh_FaceChecker.hxx + BRepMesh_FaceDiscret.cxx + BRepMesh_FaceDiscret.hxx + BRepMesh_FactoryError.hxx + BRepMesh_FastDiscret.hxx + BRepMesh_GeomTool.cxx + BRepMesh_GeomTool.hxx + BRepMesh_IncrementalMesh.cxx + BRepMesh_IncrementalMesh.hxx + BRepMesh_MeshAlgoFactory.cxx + BRepMesh_MeshAlgoFactory.hxx + BRepMesh_MeshTool.cxx + BRepMesh_MeshTool.hxx + BRepMesh_ModelBuilder.cxx + BRepMesh_ModelBuilder.hxx + BRepMesh_ModelHealer.cxx + BRepMesh_ModelHealer.hxx + BRepMesh_ModelPostProcessor.cxx + BRepMesh_ModelPostProcessor.hxx + BRepMesh_ModelPreProcessor.cxx + BRepMesh_ModelPreProcessor.hxx + BRepMesh_NURBSRangeSplitter.cxx + BRepMesh_NURBSRangeSplitter.hxx + BRepMesh_NodeInsertionMeshAlgo.hxx + BRepMesh_OrientedEdge.hxx + BRepMesh_PairOfIndex.hxx + BRepMesh_PluginEntryType.hxx + BRepMesh_PluginMacro.hxx + BRepMesh_SelectorOfDataStructureOfDelaun.cxx + BRepMesh_SelectorOfDataStructureOfDelaun.hxx + BRepMesh_ShapeTool.cxx + BRepMesh_ShapeTool.hxx + BRepMesh_ShapeVisitor.cxx + BRepMesh_ShapeVisitor.hxx + BRepMesh_SphereRangeSplitter.cxx + BRepMesh_SphereRangeSplitter.hxx + BRepMesh_TorusRangeSplitter.cxx + BRepMesh_TorusRangeSplitter.hxx + BRepMesh_Triangle.hxx + BRepMesh_UndefinedRangeSplitter.cxx + BRepMesh_UndefinedRangeSplitter.hxx + BRepMesh_UVParamRangeSplitter.hxx + BRepMesh_Vertex.hxx + BRepMesh_VertexInspector.hxx + BRepMesh_VertexTool.cxx + BRepMesh_VertexTool.hxx + BRepMesh_CustomBaseMeshAlgo.hxx + BRepMesh_CustomBaseMeshAlgo.cxx + BRepMesh_CustomDelaunayBaseMeshAlgo.hxx + delabella.pxx + delabella.cpp + BRepMesh_DelabellaBaseMeshAlgo.hxx + BRepMesh_DelabellaBaseMeshAlgo.cxx + BRepMesh_DelabellaMeshAlgoFactory.hxx + BRepMesh_DelabellaMeshAlgoFactory.cxx + BRepMesh_Triangulator.cxx + BRepMesh_Triangulator.hxx +) diff --git a/src/BRepMesh/delabella.cpp b/src/ModelingAlgorithms/TKMesh/BRepMesh/delabella.cpp similarity index 100% rename from src/BRepMesh/delabella.cpp rename to src/ModelingAlgorithms/TKMesh/BRepMesh/delabella.cpp diff --git a/src/BRepMesh/delabella.pxx b/src/ModelingAlgorithms/TKMesh/BRepMesh/delabella.pxx similarity index 100% rename from src/BRepMesh/delabella.pxx rename to src/ModelingAlgorithms/TKMesh/BRepMesh/delabella.pxx diff --git a/src/BRepMeshData/BRepMeshData_Curve.cxx b/src/ModelingAlgorithms/TKMesh/BRepMeshData/BRepMeshData_Curve.cxx similarity index 100% rename from src/BRepMeshData/BRepMeshData_Curve.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMeshData/BRepMeshData_Curve.cxx diff --git a/src/BRepMeshData/BRepMeshData_Curve.hxx b/src/ModelingAlgorithms/TKMesh/BRepMeshData/BRepMeshData_Curve.hxx similarity index 100% rename from src/BRepMeshData/BRepMeshData_Curve.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMeshData/BRepMeshData_Curve.hxx diff --git a/src/BRepMeshData/BRepMeshData_Edge.cxx b/src/ModelingAlgorithms/TKMesh/BRepMeshData/BRepMeshData_Edge.cxx similarity index 100% rename from src/BRepMeshData/BRepMeshData_Edge.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMeshData/BRepMeshData_Edge.cxx diff --git a/src/BRepMeshData/BRepMeshData_Edge.hxx b/src/ModelingAlgorithms/TKMesh/BRepMeshData/BRepMeshData_Edge.hxx similarity index 100% rename from src/BRepMeshData/BRepMeshData_Edge.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMeshData/BRepMeshData_Edge.hxx diff --git a/src/BRepMeshData/BRepMeshData_Face.cxx b/src/ModelingAlgorithms/TKMesh/BRepMeshData/BRepMeshData_Face.cxx similarity index 100% rename from src/BRepMeshData/BRepMeshData_Face.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMeshData/BRepMeshData_Face.cxx diff --git a/src/BRepMeshData/BRepMeshData_Face.hxx b/src/ModelingAlgorithms/TKMesh/BRepMeshData/BRepMeshData_Face.hxx similarity index 100% rename from src/BRepMeshData/BRepMeshData_Face.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMeshData/BRepMeshData_Face.hxx diff --git a/src/BRepMeshData/BRepMeshData_Model.cxx b/src/ModelingAlgorithms/TKMesh/BRepMeshData/BRepMeshData_Model.cxx similarity index 100% rename from src/BRepMeshData/BRepMeshData_Model.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMeshData/BRepMeshData_Model.cxx diff --git a/src/BRepMeshData/BRepMeshData_Model.hxx b/src/ModelingAlgorithms/TKMesh/BRepMeshData/BRepMeshData_Model.hxx similarity index 100% rename from src/BRepMeshData/BRepMeshData_Model.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMeshData/BRepMeshData_Model.hxx diff --git a/src/BRepMeshData/BRepMeshData_PCurve.cxx b/src/ModelingAlgorithms/TKMesh/BRepMeshData/BRepMeshData_PCurve.cxx similarity index 100% rename from src/BRepMeshData/BRepMeshData_PCurve.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMeshData/BRepMeshData_PCurve.cxx diff --git a/src/BRepMeshData/BRepMeshData_PCurve.hxx b/src/ModelingAlgorithms/TKMesh/BRepMeshData/BRepMeshData_PCurve.hxx similarity index 100% rename from src/BRepMeshData/BRepMeshData_PCurve.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMeshData/BRepMeshData_PCurve.hxx diff --git a/src/BRepMeshData/BRepMeshData_Wire.cxx b/src/ModelingAlgorithms/TKMesh/BRepMeshData/BRepMeshData_Wire.cxx similarity index 100% rename from src/BRepMeshData/BRepMeshData_Wire.cxx rename to src/ModelingAlgorithms/TKMesh/BRepMeshData/BRepMeshData_Wire.cxx diff --git a/src/BRepMeshData/BRepMeshData_Wire.hxx b/src/ModelingAlgorithms/TKMesh/BRepMeshData/BRepMeshData_Wire.hxx similarity index 100% rename from src/BRepMeshData/BRepMeshData_Wire.hxx rename to src/ModelingAlgorithms/TKMesh/BRepMeshData/BRepMeshData_Wire.hxx diff --git a/src/ModelingAlgorithms/TKMesh/BRepMeshData/FILES.cmake b/src/ModelingAlgorithms/TKMesh/BRepMeshData/FILES.cmake new file mode 100644 index 0000000000..aeef2359fb --- /dev/null +++ b/src/ModelingAlgorithms/TKMesh/BRepMeshData/FILES.cmake @@ -0,0 +1,17 @@ +# Source files for BRepMeshData package +set(OCCT_BRepMeshData_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepMeshData_FILES + BRepMeshData_Curve.cxx + BRepMeshData_Curve.hxx + BRepMeshData_Edge.cxx + BRepMeshData_Edge.hxx + BRepMeshData_Face.cxx + BRepMeshData_Face.hxx + BRepMeshData_Model.cxx + BRepMeshData_Model.hxx + BRepMeshData_PCurve.cxx + BRepMeshData_PCurve.hxx + BRepMeshData_Wire.cxx + BRepMeshData_Wire.hxx +) diff --git a/src/TKMesh/CMakeLists.txt b/src/ModelingAlgorithms/TKMesh/CMakeLists.txt similarity index 100% rename from src/TKMesh/CMakeLists.txt rename to src/ModelingAlgorithms/TKMesh/CMakeLists.txt diff --git a/src/ModelingAlgorithms/TKMesh/EXTERNLIB.cmake b/src/ModelingAlgorithms/TKMesh/EXTERNLIB.cmake new file mode 100644 index 0000000000..a6ff0f0a50 --- /dev/null +++ b/src/ModelingAlgorithms/TKMesh/EXTERNLIB.cmake @@ -0,0 +1,11 @@ +# External dependencies for TKMesh +set(OCCT_TKMesh_EXTERNAL_LIBS + TKernel + TKMath + TKBRep + TKTopAlgo + TKShHealing + TKGeomBase + TKG3d + TKG2d +) diff --git a/src/ModelingAlgorithms/TKMesh/FILES.cmake b/src/ModelingAlgorithms/TKMesh/FILES.cmake new file mode 100644 index 0000000000..bbd590879b --- /dev/null +++ b/src/ModelingAlgorithms/TKMesh/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKMesh +set(OCCT_TKMesh_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKMesh_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ModelingAlgorithms/TKMesh/IMeshData/FILES.cmake b/src/ModelingAlgorithms/TKMesh/IMeshData/FILES.cmake new file mode 100644 index 0000000000..8da5d53f71 --- /dev/null +++ b/src/ModelingAlgorithms/TKMesh/IMeshData/FILES.cmake @@ -0,0 +1,27 @@ +# Source files for IMeshData package +set(OCCT_IMeshData_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IMeshData_FILES + IMeshData_Curve.hxx + IMeshData_Curve.cxx + IMeshData_Edge.hxx + IMeshData_Edge.cxx + IMeshData_Face.hxx + IMeshData_Face.cxx + IMeshData_Model.hxx + IMeshData_Model.cxx + IMeshData_ParametersList.hxx + IMeshData_ParametersList.cxx + IMeshData_ParametersListArrayAdaptor.hxx + IMeshData_PCurve.hxx + IMeshData_PCurve.cxx + IMeshData_Shape.hxx + IMeshData_Shape.cxx + IMeshData_Status.hxx + IMeshData_StatusOwner.hxx + IMeshData_TessellatedShape.hxx + IMeshData_TessellatedShape.cxx + IMeshData_Types.hxx + IMeshData_Wire.hxx + IMeshData_Wire.cxx +) diff --git a/src/IMeshData/IMeshData_Curve.cxx b/src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Curve.cxx similarity index 100% rename from src/IMeshData/IMeshData_Curve.cxx rename to src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Curve.cxx diff --git a/src/IMeshData/IMeshData_Curve.hxx b/src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Curve.hxx similarity index 100% rename from src/IMeshData/IMeshData_Curve.hxx rename to src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Curve.hxx diff --git a/src/IMeshData/IMeshData_Edge.cxx b/src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Edge.cxx similarity index 100% rename from src/IMeshData/IMeshData_Edge.cxx rename to src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Edge.cxx diff --git a/src/IMeshData/IMeshData_Edge.hxx b/src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Edge.hxx similarity index 100% rename from src/IMeshData/IMeshData_Edge.hxx rename to src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Edge.hxx diff --git a/src/IMeshData/IMeshData_Face.cxx b/src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Face.cxx similarity index 100% rename from src/IMeshData/IMeshData_Face.cxx rename to src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Face.cxx diff --git a/src/IMeshData/IMeshData_Face.hxx b/src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Face.hxx similarity index 100% rename from src/IMeshData/IMeshData_Face.hxx rename to src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Face.hxx diff --git a/src/IMeshData/IMeshData_Model.cxx b/src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Model.cxx similarity index 100% rename from src/IMeshData/IMeshData_Model.cxx rename to src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Model.cxx diff --git a/src/IMeshData/IMeshData_Model.hxx b/src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Model.hxx similarity index 100% rename from src/IMeshData/IMeshData_Model.hxx rename to src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Model.hxx diff --git a/src/IMeshData/IMeshData_PCurve.cxx b/src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_PCurve.cxx similarity index 100% rename from src/IMeshData/IMeshData_PCurve.cxx rename to src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_PCurve.cxx diff --git a/src/IMeshData/IMeshData_PCurve.hxx b/src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_PCurve.hxx similarity index 100% rename from src/IMeshData/IMeshData_PCurve.hxx rename to src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_PCurve.hxx diff --git a/src/IMeshData/IMeshData_ParametersList.cxx b/src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_ParametersList.cxx similarity index 100% rename from src/IMeshData/IMeshData_ParametersList.cxx rename to src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_ParametersList.cxx diff --git a/src/IMeshData/IMeshData_ParametersList.hxx b/src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_ParametersList.hxx similarity index 100% rename from src/IMeshData/IMeshData_ParametersList.hxx rename to src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_ParametersList.hxx diff --git a/src/IMeshData/IMeshData_ParametersListArrayAdaptor.hxx b/src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_ParametersListArrayAdaptor.hxx similarity index 100% rename from src/IMeshData/IMeshData_ParametersListArrayAdaptor.hxx rename to src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_ParametersListArrayAdaptor.hxx diff --git a/src/IMeshData/IMeshData_Shape.cxx b/src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Shape.cxx similarity index 100% rename from src/IMeshData/IMeshData_Shape.cxx rename to src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Shape.cxx diff --git a/src/IMeshData/IMeshData_Shape.hxx b/src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Shape.hxx similarity index 100% rename from src/IMeshData/IMeshData_Shape.hxx rename to src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Shape.hxx diff --git a/src/IMeshData/IMeshData_Status.hxx b/src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Status.hxx similarity index 100% rename from src/IMeshData/IMeshData_Status.hxx rename to src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Status.hxx diff --git a/src/IMeshData/IMeshData_StatusOwner.hxx b/src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_StatusOwner.hxx similarity index 100% rename from src/IMeshData/IMeshData_StatusOwner.hxx rename to src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_StatusOwner.hxx diff --git a/src/IMeshData/IMeshData_TessellatedShape.cxx b/src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_TessellatedShape.cxx similarity index 100% rename from src/IMeshData/IMeshData_TessellatedShape.cxx rename to src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_TessellatedShape.cxx diff --git a/src/IMeshData/IMeshData_TessellatedShape.hxx b/src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_TessellatedShape.hxx similarity index 100% rename from src/IMeshData/IMeshData_TessellatedShape.hxx rename to src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_TessellatedShape.hxx diff --git a/src/IMeshData/IMeshData_Types.hxx b/src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Types.hxx similarity index 100% rename from src/IMeshData/IMeshData_Types.hxx rename to src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Types.hxx diff --git a/src/IMeshData/IMeshData_Wire.cxx b/src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Wire.cxx similarity index 100% rename from src/IMeshData/IMeshData_Wire.cxx rename to src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Wire.cxx diff --git a/src/IMeshData/IMeshData_Wire.hxx b/src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Wire.hxx similarity index 100% rename from src/IMeshData/IMeshData_Wire.hxx rename to src/ModelingAlgorithms/TKMesh/IMeshData/IMeshData_Wire.hxx diff --git a/src/ModelingAlgorithms/TKMesh/IMeshTools/FILES.cmake b/src/ModelingAlgorithms/TKMesh/IMeshTools/FILES.cmake new file mode 100644 index 0000000000..e21b84a6d1 --- /dev/null +++ b/src/ModelingAlgorithms/TKMesh/IMeshTools/FILES.cmake @@ -0,0 +1,25 @@ +# Source files for IMeshTools package +set(OCCT_IMeshTools_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IMeshTools_FILES + IMeshTools_Context.hxx + IMeshTools_Context.cxx + IMeshTools_CurveTessellator.hxx + IMeshTools_CurveTessellator.cxx + IMeshTools_MeshAlgo.hxx + IMeshTools_MeshAlgo.cxx + IMeshTools_MeshAlgoFactory.hxx + IMeshTools_MeshAlgoFactory.cxx + IMeshTools_MeshAlgoType.hxx + IMeshTools_MeshBuilder.hxx + IMeshTools_MeshBuilder.cxx + IMeshTools_ModelAlgo.hxx + IMeshTools_ModelAlgo.cxx + IMeshTools_ModelBuilder.hxx + IMeshTools_ModelBuilder.cxx + IMeshTools_Parameters.hxx + IMeshTools_ShapeExplorer.hxx + IMeshTools_ShapeExplorer.cxx + IMeshTools_ShapeVisitor.hxx + IMeshTools_ShapeVisitor.cxx +) diff --git a/src/IMeshTools/IMeshTools_Context.cxx b/src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_Context.cxx similarity index 100% rename from src/IMeshTools/IMeshTools_Context.cxx rename to src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_Context.cxx diff --git a/src/IMeshTools/IMeshTools_Context.hxx b/src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_Context.hxx similarity index 100% rename from src/IMeshTools/IMeshTools_Context.hxx rename to src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_Context.hxx diff --git a/src/IMeshTools/IMeshTools_CurveTessellator.cxx b/src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_CurveTessellator.cxx similarity index 100% rename from src/IMeshTools/IMeshTools_CurveTessellator.cxx rename to src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_CurveTessellator.cxx diff --git a/src/IMeshTools/IMeshTools_CurveTessellator.hxx b/src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_CurveTessellator.hxx similarity index 100% rename from src/IMeshTools/IMeshTools_CurveTessellator.hxx rename to src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_CurveTessellator.hxx diff --git a/src/IMeshTools/IMeshTools_MeshAlgo.cxx b/src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_MeshAlgo.cxx similarity index 100% rename from src/IMeshTools/IMeshTools_MeshAlgo.cxx rename to src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_MeshAlgo.cxx diff --git a/src/IMeshTools/IMeshTools_MeshAlgo.hxx b/src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_MeshAlgo.hxx similarity index 100% rename from src/IMeshTools/IMeshTools_MeshAlgo.hxx rename to src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_MeshAlgo.hxx diff --git a/src/IMeshTools/IMeshTools_MeshAlgoFactory.cxx b/src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_MeshAlgoFactory.cxx similarity index 100% rename from src/IMeshTools/IMeshTools_MeshAlgoFactory.cxx rename to src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_MeshAlgoFactory.cxx diff --git a/src/IMeshTools/IMeshTools_MeshAlgoFactory.hxx b/src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_MeshAlgoFactory.hxx similarity index 100% rename from src/IMeshTools/IMeshTools_MeshAlgoFactory.hxx rename to src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_MeshAlgoFactory.hxx diff --git a/src/IMeshTools/IMeshTools_MeshAlgoType.hxx b/src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_MeshAlgoType.hxx similarity index 100% rename from src/IMeshTools/IMeshTools_MeshAlgoType.hxx rename to src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_MeshAlgoType.hxx diff --git a/src/IMeshTools/IMeshTools_MeshBuilder.cxx b/src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_MeshBuilder.cxx similarity index 100% rename from src/IMeshTools/IMeshTools_MeshBuilder.cxx rename to src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_MeshBuilder.cxx diff --git a/src/IMeshTools/IMeshTools_MeshBuilder.hxx b/src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_MeshBuilder.hxx similarity index 100% rename from src/IMeshTools/IMeshTools_MeshBuilder.hxx rename to src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_MeshBuilder.hxx diff --git a/src/IMeshTools/IMeshTools_ModelAlgo.cxx b/src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_ModelAlgo.cxx similarity index 100% rename from src/IMeshTools/IMeshTools_ModelAlgo.cxx rename to src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_ModelAlgo.cxx diff --git a/src/IMeshTools/IMeshTools_ModelAlgo.hxx b/src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_ModelAlgo.hxx similarity index 100% rename from src/IMeshTools/IMeshTools_ModelAlgo.hxx rename to src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_ModelAlgo.hxx diff --git a/src/IMeshTools/IMeshTools_ModelBuilder.cxx b/src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_ModelBuilder.cxx similarity index 100% rename from src/IMeshTools/IMeshTools_ModelBuilder.cxx rename to src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_ModelBuilder.cxx diff --git a/src/IMeshTools/IMeshTools_ModelBuilder.hxx b/src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_ModelBuilder.hxx similarity index 100% rename from src/IMeshTools/IMeshTools_ModelBuilder.hxx rename to src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_ModelBuilder.hxx diff --git a/src/IMeshTools/IMeshTools_Parameters.hxx b/src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_Parameters.hxx similarity index 100% rename from src/IMeshTools/IMeshTools_Parameters.hxx rename to src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_Parameters.hxx diff --git a/src/IMeshTools/IMeshTools_ShapeExplorer.cxx b/src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_ShapeExplorer.cxx similarity index 100% rename from src/IMeshTools/IMeshTools_ShapeExplorer.cxx rename to src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_ShapeExplorer.cxx diff --git a/src/IMeshTools/IMeshTools_ShapeExplorer.hxx b/src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_ShapeExplorer.hxx similarity index 100% rename from src/IMeshTools/IMeshTools_ShapeExplorer.hxx rename to src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_ShapeExplorer.hxx diff --git a/src/IMeshTools/IMeshTools_ShapeVisitor.cxx b/src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_ShapeVisitor.cxx similarity index 100% rename from src/IMeshTools/IMeshTools_ShapeVisitor.cxx rename to src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_ShapeVisitor.cxx diff --git a/src/IMeshTools/IMeshTools_ShapeVisitor.hxx b/src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_ShapeVisitor.hxx similarity index 100% rename from src/IMeshTools/IMeshTools_ShapeVisitor.hxx rename to src/ModelingAlgorithms/TKMesh/IMeshTools/IMeshTools_ShapeVisitor.hxx diff --git a/src/ModelingAlgorithms/TKMesh/PACKAGES.cmake b/src/ModelingAlgorithms/TKMesh/PACKAGES.cmake new file mode 100644 index 0000000000..64337f0f63 --- /dev/null +++ b/src/ModelingAlgorithms/TKMesh/PACKAGES.cmake @@ -0,0 +1,7 @@ +# Auto-generated list of packages for TKMesh toolkit +set(OCCT_TKMesh_LIST_OF_PACKAGES + IMeshData + IMeshTools + BRepMeshData + BRepMesh +) diff --git a/src/TKMesh/TKMesh_pch.hxx b/src/ModelingAlgorithms/TKMesh/TKMesh_pch.hxx similarity index 100% rename from src/TKMesh/TKMesh_pch.hxx rename to src/ModelingAlgorithms/TKMesh/TKMesh_pch.hxx diff --git a/src/BRepOffset/BRepOffset.cxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset.cxx similarity index 100% rename from src/BRepOffset/BRepOffset.cxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset.cxx diff --git a/src/BRepOffset/BRepOffset.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset.hxx similarity index 100% rename from src/BRepOffset/BRepOffset.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset.hxx diff --git a/src/BRepOffset/BRepOffset_Analyse.cxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Analyse.cxx similarity index 100% rename from src/BRepOffset/BRepOffset_Analyse.cxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Analyse.cxx diff --git a/src/BRepOffset/BRepOffset_Analyse.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Analyse.hxx similarity index 100% rename from src/BRepOffset/BRepOffset_Analyse.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Analyse.hxx diff --git a/src/BRepOffset/BRepOffset_DataMapIteratorOfDataMapOfShapeListOfInterval.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_DataMapIteratorOfDataMapOfShapeListOfInterval.hxx similarity index 100% rename from src/BRepOffset/BRepOffset_DataMapIteratorOfDataMapOfShapeListOfInterval.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_DataMapIteratorOfDataMapOfShapeListOfInterval.hxx diff --git a/src/BRepOffset/BRepOffset_DataMapIteratorOfDataMapOfShapeMapOfShape.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_DataMapIteratorOfDataMapOfShapeMapOfShape.hxx similarity index 100% rename from src/BRepOffset/BRepOffset_DataMapIteratorOfDataMapOfShapeMapOfShape.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_DataMapIteratorOfDataMapOfShapeMapOfShape.hxx diff --git a/src/BRepOffset/BRepOffset_DataMapIteratorOfDataMapOfShapeOffset.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_DataMapIteratorOfDataMapOfShapeOffset.hxx similarity index 100% rename from src/BRepOffset/BRepOffset_DataMapIteratorOfDataMapOfShapeOffset.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_DataMapIteratorOfDataMapOfShapeOffset.hxx diff --git a/src/BRepOffset/BRepOffset_DataMapOfShapeListOfInterval.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_DataMapOfShapeListOfInterval.hxx similarity index 100% rename from src/BRepOffset/BRepOffset_DataMapOfShapeListOfInterval.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_DataMapOfShapeListOfInterval.hxx diff --git a/src/BRepOffset/BRepOffset_DataMapOfShapeMapOfShape.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_DataMapOfShapeMapOfShape.hxx similarity index 100% rename from src/BRepOffset/BRepOffset_DataMapOfShapeMapOfShape.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_DataMapOfShapeMapOfShape.hxx diff --git a/src/BRepOffset/BRepOffset_DataMapOfShapeOffset.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_DataMapOfShapeOffset.hxx similarity index 100% rename from src/BRepOffset/BRepOffset_DataMapOfShapeOffset.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_DataMapOfShapeOffset.hxx diff --git a/src/BRepOffset/BRepOffset_Error.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Error.hxx similarity index 100% rename from src/BRepOffset/BRepOffset_Error.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Error.hxx diff --git a/src/BRepOffset/BRepOffset_Inter2d.cxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Inter2d.cxx similarity index 100% rename from src/BRepOffset/BRepOffset_Inter2d.cxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Inter2d.cxx diff --git a/src/BRepOffset/BRepOffset_Inter2d.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Inter2d.hxx similarity index 100% rename from src/BRepOffset/BRepOffset_Inter2d.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Inter2d.hxx diff --git a/src/BRepOffset/BRepOffset_Inter3d.cxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Inter3d.cxx similarity index 100% rename from src/BRepOffset/BRepOffset_Inter3d.cxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Inter3d.cxx diff --git a/src/BRepOffset/BRepOffset_Inter3d.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Inter3d.hxx similarity index 100% rename from src/BRepOffset/BRepOffset_Inter3d.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Inter3d.hxx diff --git a/src/BRepOffset/BRepOffset_Interval.cxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Interval.cxx similarity index 100% rename from src/BRepOffset/BRepOffset_Interval.cxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Interval.cxx diff --git a/src/BRepOffset/BRepOffset_Interval.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Interval.hxx similarity index 100% rename from src/BRepOffset/BRepOffset_Interval.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Interval.hxx diff --git a/src/BRepOffset/BRepOffset_Interval.lxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Interval.lxx similarity index 100% rename from src/BRepOffset/BRepOffset_Interval.lxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Interval.lxx diff --git a/src/BRepOffset/BRepOffset_ListIteratorOfListOfInterval.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_ListIteratorOfListOfInterval.hxx similarity index 100% rename from src/BRepOffset/BRepOffset_ListIteratorOfListOfInterval.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_ListIteratorOfListOfInterval.hxx diff --git a/src/BRepOffset/BRepOffset_ListOfInterval.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_ListOfInterval.hxx similarity index 100% rename from src/BRepOffset/BRepOffset_ListOfInterval.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_ListOfInterval.hxx diff --git a/src/BRepOffset/BRepOffset_MakeLoops.cxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_MakeLoops.cxx similarity index 100% rename from src/BRepOffset/BRepOffset_MakeLoops.cxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_MakeLoops.cxx diff --git a/src/BRepOffset/BRepOffset_MakeLoops.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_MakeLoops.hxx similarity index 100% rename from src/BRepOffset/BRepOffset_MakeLoops.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_MakeLoops.hxx diff --git a/src/BRepOffset/BRepOffset_MakeOffset.cxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_MakeOffset.cxx similarity index 100% rename from src/BRepOffset/BRepOffset_MakeOffset.cxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_MakeOffset.cxx diff --git a/src/BRepOffset/BRepOffset_MakeOffset.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_MakeOffset.hxx similarity index 100% rename from src/BRepOffset/BRepOffset_MakeOffset.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_MakeOffset.hxx diff --git a/src/BRepOffset/BRepOffset_MakeOffset_1.cxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_MakeOffset_1.cxx similarity index 100% rename from src/BRepOffset/BRepOffset_MakeOffset_1.cxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_MakeOffset_1.cxx diff --git a/src/BRepOffset/BRepOffset_MakeSimpleOffset.cxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_MakeSimpleOffset.cxx similarity index 100% rename from src/BRepOffset/BRepOffset_MakeSimpleOffset.cxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_MakeSimpleOffset.cxx diff --git a/src/BRepOffset/BRepOffset_MakeSimpleOffset.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_MakeSimpleOffset.hxx similarity index 100% rename from src/BRepOffset/BRepOffset_MakeSimpleOffset.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_MakeSimpleOffset.hxx diff --git a/src/BRepOffset/BRepOffset_Mode.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Mode.hxx similarity index 100% rename from src/BRepOffset/BRepOffset_Mode.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Mode.hxx diff --git a/src/BRepOffset/BRepOffset_Offset.cxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Offset.cxx similarity index 100% rename from src/BRepOffset/BRepOffset_Offset.cxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Offset.cxx diff --git a/src/BRepOffset/BRepOffset_Offset.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Offset.hxx similarity index 100% rename from src/BRepOffset/BRepOffset_Offset.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Offset.hxx diff --git a/src/BRepOffset/BRepOffset_Offset.lxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Offset.lxx similarity index 100% rename from src/BRepOffset/BRepOffset_Offset.lxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Offset.lxx diff --git a/src/BRepOffset/BRepOffset_SimpleOffset.cxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_SimpleOffset.cxx similarity index 100% rename from src/BRepOffset/BRepOffset_SimpleOffset.cxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_SimpleOffset.cxx diff --git a/src/BRepOffset/BRepOffset_SimpleOffset.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_SimpleOffset.hxx similarity index 100% rename from src/BRepOffset/BRepOffset_SimpleOffset.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_SimpleOffset.hxx diff --git a/src/BRepOffset/BRepOffset_Status.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Status.hxx similarity index 100% rename from src/BRepOffset/BRepOffset_Status.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Status.hxx diff --git a/src/BRepOffset/BRepOffset_Tool.cxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Tool.cxx similarity index 100% rename from src/BRepOffset/BRepOffset_Tool.cxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Tool.cxx diff --git a/src/BRepOffset/BRepOffset_Tool.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Tool.hxx similarity index 100% rename from src/BRepOffset/BRepOffset_Tool.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffset/BRepOffset_Tool.hxx diff --git a/src/ModelingAlgorithms/TKOffset/BRepOffset/FILES.cmake b/src/ModelingAlgorithms/TKOffset/BRepOffset/FILES.cmake new file mode 100644 index 0000000000..1fd5d6f7d8 --- /dev/null +++ b/src/ModelingAlgorithms/TKOffset/BRepOffset/FILES.cmake @@ -0,0 +1,41 @@ +# Source files for BRepOffset package +set(OCCT_BRepOffset_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepOffset_FILES + BRepOffset.cxx + BRepOffset.hxx + BRepOffset_Analyse.cxx + BRepOffset_Analyse.hxx + BRepOffset_DataMapIteratorOfDataMapOfShapeListOfInterval.hxx + BRepOffset_DataMapIteratorOfDataMapOfShapeMapOfShape.hxx + BRepOffset_DataMapIteratorOfDataMapOfShapeOffset.hxx + BRepOffset_DataMapOfShapeListOfInterval.hxx + BRepOffset_DataMapOfShapeMapOfShape.hxx + BRepOffset_DataMapOfShapeOffset.hxx + BRepOffset_Error.hxx + BRepOffset_Inter2d.cxx + BRepOffset_Inter2d.hxx + BRepOffset_Inter3d.cxx + BRepOffset_Inter3d.hxx + BRepOffset_Interval.cxx + BRepOffset_Interval.hxx + BRepOffset_Interval.lxx + BRepOffset_ListIteratorOfListOfInterval.hxx + BRepOffset_ListOfInterval.hxx + BRepOffset_MakeLoops.cxx + BRepOffset_MakeLoops.hxx + BRepOffset_MakeOffset.cxx + BRepOffset_MakeOffset_1.cxx + BRepOffset_MakeOffset.hxx + BRepOffset_MakeSimpleOffset.cxx + BRepOffset_MakeSimpleOffset.hxx + BRepOffset_Mode.hxx + BRepOffset_Offset.cxx + BRepOffset_Offset.hxx + BRepOffset_SimpleOffset.cxx + BRepOffset_SimpleOffset.hxx + BRepOffset_Offset.lxx + BRepOffset_Status.hxx + BRepOffset_Tool.cxx + BRepOffset_Tool.hxx +) diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_DraftAngle.cxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_DraftAngle.cxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_DraftAngle.cxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_DraftAngle.cxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_DraftAngle.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_DraftAngle.hxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_DraftAngle.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_DraftAngle.hxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_FindContigousEdges.cxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_FindContigousEdges.cxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_FindContigousEdges.cxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_FindContigousEdges.cxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_FindContigousEdges.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_FindContigousEdges.hxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_FindContigousEdges.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_FindContigousEdges.hxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_MakeDraft.cxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakeDraft.cxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_MakeDraft.cxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakeDraft.cxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_MakeDraft.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakeDraft.hxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_MakeDraft.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakeDraft.hxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_MakeEvolved.cxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakeEvolved.cxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_MakeEvolved.cxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakeEvolved.cxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_MakeEvolved.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakeEvolved.hxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_MakeEvolved.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakeEvolved.hxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_MakeFilling.cxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakeFilling.cxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_MakeFilling.cxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakeFilling.cxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_MakeFilling.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakeFilling.hxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_MakeFilling.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakeFilling.hxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_MakeOffset.cxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakeOffset.cxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_MakeOffset.cxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakeOffset.cxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_MakeOffset.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakeOffset.hxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_MakeOffset.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakeOffset.hxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_MakeOffsetShape.cxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakeOffsetShape.cxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_MakeOffsetShape.cxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakeOffsetShape.cxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_MakeOffsetShape.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakeOffsetShape.hxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_MakeOffsetShape.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakeOffsetShape.hxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_MakePipe.cxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakePipe.cxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_MakePipe.cxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakePipe.cxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_MakePipe.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakePipe.hxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_MakePipe.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakePipe.hxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_MakePipeShell.cxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakePipeShell.cxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_MakePipeShell.cxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakePipeShell.cxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_MakePipeShell.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakePipeShell.hxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_MakePipeShell.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakePipeShell.hxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_MakeThickSolid.cxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakeThickSolid.cxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_MakeThickSolid.cxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakeThickSolid.cxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_MakeThickSolid.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakeThickSolid.hxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_MakeThickSolid.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MakeThickSolid.hxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_MiddlePath.cxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MiddlePath.cxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_MiddlePath.cxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MiddlePath.cxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_MiddlePath.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MiddlePath.hxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_MiddlePath.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_MiddlePath.hxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_NormalProjection.cxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_NormalProjection.cxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_NormalProjection.cxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_NormalProjection.cxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_NormalProjection.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_NormalProjection.hxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_NormalProjection.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_NormalProjection.hxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_SequenceOfSequenceOfReal.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_SequenceOfSequenceOfReal.hxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_SequenceOfSequenceOfReal.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_SequenceOfSequenceOfReal.hxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_SequenceOfSequenceOfShape.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_SequenceOfSequenceOfShape.hxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_SequenceOfSequenceOfShape.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_SequenceOfSequenceOfShape.hxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_Sewing.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_Sewing.hxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_Sewing.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_Sewing.hxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_ThruSections.cxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_ThruSections.cxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_ThruSections.cxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_ThruSections.cxx diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_ThruSections.hxx b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_ThruSections.hxx similarity index 100% rename from src/BRepOffsetAPI/BRepOffsetAPI_ThruSections.hxx rename to src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/BRepOffsetAPI_ThruSections.hxx diff --git a/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/FILES.cmake b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/FILES.cmake new file mode 100644 index 0000000000..f6d904d78f --- /dev/null +++ b/src/ModelingAlgorithms/TKOffset/BRepOffsetAPI/FILES.cmake @@ -0,0 +1,34 @@ +# Source files for BRepOffsetAPI package +set(OCCT_BRepOffsetAPI_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepOffsetAPI_FILES + BRepOffsetAPI_DraftAngle.cxx + BRepOffsetAPI_DraftAngle.hxx + BRepOffsetAPI_FindContigousEdges.cxx + BRepOffsetAPI_FindContigousEdges.hxx + BRepOffsetAPI_MakeDraft.cxx + BRepOffsetAPI_MakeDraft.hxx + BRepOffsetAPI_MakeEvolved.cxx + BRepOffsetAPI_MakeEvolved.hxx + BRepOffsetAPI_MakeFilling.cxx + BRepOffsetAPI_MakeFilling.hxx + BRepOffsetAPI_MakeOffset.cxx + BRepOffsetAPI_MakeOffset.hxx + BRepOffsetAPI_MakeOffsetShape.cxx + BRepOffsetAPI_MakeOffsetShape.hxx + BRepOffsetAPI_MakePipe.cxx + BRepOffsetAPI_MakePipe.hxx + BRepOffsetAPI_MakePipeShell.cxx + BRepOffsetAPI_MakePipeShell.hxx + BRepOffsetAPI_MakeThickSolid.cxx + BRepOffsetAPI_MakeThickSolid.hxx + BRepOffsetAPI_MiddlePath.cxx + BRepOffsetAPI_MiddlePath.hxx + BRepOffsetAPI_NormalProjection.cxx + BRepOffsetAPI_NormalProjection.hxx + BRepOffsetAPI_SequenceOfSequenceOfReal.hxx + BRepOffsetAPI_SequenceOfSequenceOfShape.hxx + BRepOffsetAPI_Sewing.hxx + BRepOffsetAPI_ThruSections.cxx + BRepOffsetAPI_ThruSections.hxx +) diff --git a/src/BiTgte/BiTgte_Blend.cxx b/src/ModelingAlgorithms/TKOffset/BiTgte/BiTgte_Blend.cxx similarity index 100% rename from src/BiTgte/BiTgte_Blend.cxx rename to src/ModelingAlgorithms/TKOffset/BiTgte/BiTgte_Blend.cxx diff --git a/src/BiTgte/BiTgte_Blend.hxx b/src/ModelingAlgorithms/TKOffset/BiTgte/BiTgte_Blend.hxx similarity index 100% rename from src/BiTgte/BiTgte_Blend.hxx rename to src/ModelingAlgorithms/TKOffset/BiTgte/BiTgte_Blend.hxx diff --git a/src/BiTgte/BiTgte_ContactType.hxx b/src/ModelingAlgorithms/TKOffset/BiTgte/BiTgte_ContactType.hxx similarity index 100% rename from src/BiTgte/BiTgte_ContactType.hxx rename to src/ModelingAlgorithms/TKOffset/BiTgte/BiTgte_ContactType.hxx diff --git a/src/BiTgte/BiTgte_CurveOnEdge.cxx b/src/ModelingAlgorithms/TKOffset/BiTgte/BiTgte_CurveOnEdge.cxx similarity index 100% rename from src/BiTgte/BiTgte_CurveOnEdge.cxx rename to src/ModelingAlgorithms/TKOffset/BiTgte/BiTgte_CurveOnEdge.cxx diff --git a/src/BiTgte/BiTgte_CurveOnEdge.hxx b/src/ModelingAlgorithms/TKOffset/BiTgte/BiTgte_CurveOnEdge.hxx similarity index 100% rename from src/BiTgte/BiTgte_CurveOnEdge.hxx rename to src/ModelingAlgorithms/TKOffset/BiTgte/BiTgte_CurveOnEdge.hxx diff --git a/src/BiTgte/BiTgte_CurveOnVertex.cxx b/src/ModelingAlgorithms/TKOffset/BiTgte/BiTgte_CurveOnVertex.cxx similarity index 100% rename from src/BiTgte/BiTgte_CurveOnVertex.cxx rename to src/ModelingAlgorithms/TKOffset/BiTgte/BiTgte_CurveOnVertex.cxx diff --git a/src/BiTgte/BiTgte_CurveOnVertex.hxx b/src/ModelingAlgorithms/TKOffset/BiTgte/BiTgte_CurveOnVertex.hxx similarity index 100% rename from src/BiTgte/BiTgte_CurveOnVertex.hxx rename to src/ModelingAlgorithms/TKOffset/BiTgte/BiTgte_CurveOnVertex.hxx diff --git a/src/ModelingAlgorithms/TKOffset/BiTgte/FILES.cmake b/src/ModelingAlgorithms/TKOffset/BiTgte/FILES.cmake new file mode 100644 index 0000000000..cce0f2f7a6 --- /dev/null +++ b/src/ModelingAlgorithms/TKOffset/BiTgte/FILES.cmake @@ -0,0 +1,12 @@ +# Source files for BiTgte package +set(OCCT_BiTgte_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BiTgte_FILES + BiTgte_Blend.cxx + BiTgte_Blend.hxx + BiTgte_ContactType.hxx + BiTgte_CurveOnEdge.cxx + BiTgte_CurveOnEdge.hxx + BiTgte_CurveOnVertex.cxx + BiTgte_CurveOnVertex.hxx +) diff --git a/src/TKOffset/CMakeLists.txt b/src/ModelingAlgorithms/TKOffset/CMakeLists.txt similarity index 100% rename from src/TKOffset/CMakeLists.txt rename to src/ModelingAlgorithms/TKOffset/CMakeLists.txt diff --git a/src/Draft/Draft.cxx b/src/ModelingAlgorithms/TKOffset/Draft/Draft.cxx similarity index 100% rename from src/Draft/Draft.cxx rename to src/ModelingAlgorithms/TKOffset/Draft/Draft.cxx diff --git a/src/Draft/Draft.hxx b/src/ModelingAlgorithms/TKOffset/Draft/Draft.hxx similarity index 100% rename from src/Draft/Draft.hxx rename to src/ModelingAlgorithms/TKOffset/Draft/Draft.hxx diff --git a/src/Draft/Draft_EdgeInfo.cxx b/src/ModelingAlgorithms/TKOffset/Draft/Draft_EdgeInfo.cxx similarity index 100% rename from src/Draft/Draft_EdgeInfo.cxx rename to src/ModelingAlgorithms/TKOffset/Draft/Draft_EdgeInfo.cxx diff --git a/src/Draft/Draft_EdgeInfo.hxx b/src/ModelingAlgorithms/TKOffset/Draft/Draft_EdgeInfo.hxx similarity index 100% rename from src/Draft/Draft_EdgeInfo.hxx rename to src/ModelingAlgorithms/TKOffset/Draft/Draft_EdgeInfo.hxx diff --git a/src/Draft/Draft_ErrorStatus.hxx b/src/ModelingAlgorithms/TKOffset/Draft/Draft_ErrorStatus.hxx similarity index 100% rename from src/Draft/Draft_ErrorStatus.hxx rename to src/ModelingAlgorithms/TKOffset/Draft/Draft_ErrorStatus.hxx diff --git a/src/Draft/Draft_FaceInfo.cxx b/src/ModelingAlgorithms/TKOffset/Draft/Draft_FaceInfo.cxx similarity index 100% rename from src/Draft/Draft_FaceInfo.cxx rename to src/ModelingAlgorithms/TKOffset/Draft/Draft_FaceInfo.cxx diff --git a/src/Draft/Draft_FaceInfo.hxx b/src/ModelingAlgorithms/TKOffset/Draft/Draft_FaceInfo.hxx similarity index 100% rename from src/Draft/Draft_FaceInfo.hxx rename to src/ModelingAlgorithms/TKOffset/Draft/Draft_FaceInfo.hxx diff --git a/src/Draft/Draft_IndexedDataMapOfEdgeEdgeInfo.hxx b/src/ModelingAlgorithms/TKOffset/Draft/Draft_IndexedDataMapOfEdgeEdgeInfo.hxx similarity index 100% rename from src/Draft/Draft_IndexedDataMapOfEdgeEdgeInfo.hxx rename to src/ModelingAlgorithms/TKOffset/Draft/Draft_IndexedDataMapOfEdgeEdgeInfo.hxx diff --git a/src/Draft/Draft_IndexedDataMapOfFaceFaceInfo.hxx b/src/ModelingAlgorithms/TKOffset/Draft/Draft_IndexedDataMapOfFaceFaceInfo.hxx similarity index 100% rename from src/Draft/Draft_IndexedDataMapOfFaceFaceInfo.hxx rename to src/ModelingAlgorithms/TKOffset/Draft/Draft_IndexedDataMapOfFaceFaceInfo.hxx diff --git a/src/Draft/Draft_IndexedDataMapOfVertexVertexInfo.hxx b/src/ModelingAlgorithms/TKOffset/Draft/Draft_IndexedDataMapOfVertexVertexInfo.hxx similarity index 100% rename from src/Draft/Draft_IndexedDataMapOfVertexVertexInfo.hxx rename to src/ModelingAlgorithms/TKOffset/Draft/Draft_IndexedDataMapOfVertexVertexInfo.hxx diff --git a/src/Draft/Draft_Modification.cxx b/src/ModelingAlgorithms/TKOffset/Draft/Draft_Modification.cxx similarity index 100% rename from src/Draft/Draft_Modification.cxx rename to src/ModelingAlgorithms/TKOffset/Draft/Draft_Modification.cxx diff --git a/src/Draft/Draft_Modification.hxx b/src/ModelingAlgorithms/TKOffset/Draft/Draft_Modification.hxx similarity index 100% rename from src/Draft/Draft_Modification.hxx rename to src/ModelingAlgorithms/TKOffset/Draft/Draft_Modification.hxx diff --git a/src/Draft/Draft_Modification_1.cxx b/src/ModelingAlgorithms/TKOffset/Draft/Draft_Modification_1.cxx similarity index 100% rename from src/Draft/Draft_Modification_1.cxx rename to src/ModelingAlgorithms/TKOffset/Draft/Draft_Modification_1.cxx diff --git a/src/Draft/Draft_VertexInfo.cxx b/src/ModelingAlgorithms/TKOffset/Draft/Draft_VertexInfo.cxx similarity index 100% rename from src/Draft/Draft_VertexInfo.cxx rename to src/ModelingAlgorithms/TKOffset/Draft/Draft_VertexInfo.cxx diff --git a/src/Draft/Draft_VertexInfo.hxx b/src/ModelingAlgorithms/TKOffset/Draft/Draft_VertexInfo.hxx similarity index 100% rename from src/Draft/Draft_VertexInfo.hxx rename to src/ModelingAlgorithms/TKOffset/Draft/Draft_VertexInfo.hxx diff --git a/src/ModelingAlgorithms/TKOffset/Draft/FILES.cmake b/src/ModelingAlgorithms/TKOffset/Draft/FILES.cmake new file mode 100644 index 0000000000..e1834f9d06 --- /dev/null +++ b/src/ModelingAlgorithms/TKOffset/Draft/FILES.cmake @@ -0,0 +1,20 @@ +# Source files for Draft package +set(OCCT_Draft_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Draft_FILES + Draft.cxx + Draft.hxx + Draft_IndexedDataMapOfEdgeEdgeInfo.hxx + Draft_IndexedDataMapOfFaceFaceInfo.hxx + Draft_IndexedDataMapOfVertexVertexInfo.hxx + Draft_EdgeInfo.cxx + Draft_EdgeInfo.hxx + Draft_ErrorStatus.hxx + Draft_FaceInfo.cxx + Draft_FaceInfo.hxx + Draft_Modification.cxx + Draft_Modification.hxx + Draft_Modification_1.cxx + Draft_VertexInfo.cxx + Draft_VertexInfo.hxx +) diff --git a/src/ModelingAlgorithms/TKOffset/EXTERNLIB.cmake b/src/ModelingAlgorithms/TKOffset/EXTERNLIB.cmake new file mode 100644 index 0000000000..fda98c03ae --- /dev/null +++ b/src/ModelingAlgorithms/TKOffset/EXTERNLIB.cmake @@ -0,0 +1,16 @@ +# External dependencies for TKOffset +set(OCCT_TKOffset_EXTERNAL_LIBS + TKFillet + TKBRep + TKTopAlgo + TKMath + TKernel + TKGeomBase + TKG2d + TKG3d + TKGeomAlgo + TKShHealing + TKBO + TKPrim + TKBool +) diff --git a/src/ModelingAlgorithms/TKOffset/FILES.cmake b/src/ModelingAlgorithms/TKOffset/FILES.cmake new file mode 100644 index 0000000000..bd7a18525e --- /dev/null +++ b/src/ModelingAlgorithms/TKOffset/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKOffset +set(OCCT_TKOffset_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKOffset_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ModelingAlgorithms/TKOffset/PACKAGES.cmake b/src/ModelingAlgorithms/TKOffset/PACKAGES.cmake new file mode 100644 index 0000000000..fb2cd233fc --- /dev/null +++ b/src/ModelingAlgorithms/TKOffset/PACKAGES.cmake @@ -0,0 +1,7 @@ +# Auto-generated list of packages for TKOffset toolkit +set(OCCT_TKOffset_LIST_OF_PACKAGES + BRepOffsetAPI + Draft + BRepOffset + BiTgte +) diff --git a/src/BRepPreviewAPI/BRepPreviewAPI_MakeBox.cxx b/src/ModelingAlgorithms/TKPrim/BRepPreviewAPI/BRepPreviewAPI_MakeBox.cxx similarity index 100% rename from src/BRepPreviewAPI/BRepPreviewAPI_MakeBox.cxx rename to src/ModelingAlgorithms/TKPrim/BRepPreviewAPI/BRepPreviewAPI_MakeBox.cxx diff --git a/src/BRepPreviewAPI/BRepPreviewAPI_MakeBox.hxx b/src/ModelingAlgorithms/TKPrim/BRepPreviewAPI/BRepPreviewAPI_MakeBox.hxx similarity index 100% rename from src/BRepPreviewAPI/BRepPreviewAPI_MakeBox.hxx rename to src/ModelingAlgorithms/TKPrim/BRepPreviewAPI/BRepPreviewAPI_MakeBox.hxx diff --git a/src/ModelingAlgorithms/TKPrim/BRepPreviewAPI/FILES.cmake b/src/ModelingAlgorithms/TKPrim/BRepPreviewAPI/FILES.cmake new file mode 100644 index 0000000000..74dc01fc3d --- /dev/null +++ b/src/ModelingAlgorithms/TKPrim/BRepPreviewAPI/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for BRepPreviewAPI package +set(OCCT_BRepPreviewAPI_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepPreviewAPI_FILES + BRepPreviewAPI_MakeBox.hxx + BRepPreviewAPI_MakeBox.cxx +) diff --git a/src/BRepPrim/BRepPrim_Builder.cxx b/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Builder.cxx similarity index 100% rename from src/BRepPrim/BRepPrim_Builder.cxx rename to src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Builder.cxx diff --git a/src/BRepPrim/BRepPrim_Builder.hxx b/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Builder.hxx similarity index 100% rename from src/BRepPrim/BRepPrim_Builder.hxx rename to src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Builder.hxx diff --git a/src/BRepPrim/BRepPrim_Builder.lxx b/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Builder.lxx similarity index 100% rename from src/BRepPrim/BRepPrim_Builder.lxx rename to src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Builder.lxx diff --git a/src/BRepPrim/BRepPrim_Cone.cxx b/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Cone.cxx similarity index 100% rename from src/BRepPrim/BRepPrim_Cone.cxx rename to src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Cone.cxx diff --git a/src/BRepPrim/BRepPrim_Cone.hxx b/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Cone.hxx similarity index 100% rename from src/BRepPrim/BRepPrim_Cone.hxx rename to src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Cone.hxx diff --git a/src/BRepPrim/BRepPrim_Cylinder.cxx b/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Cylinder.cxx similarity index 100% rename from src/BRepPrim/BRepPrim_Cylinder.cxx rename to src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Cylinder.cxx diff --git a/src/BRepPrim/BRepPrim_Cylinder.hxx b/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Cylinder.hxx similarity index 100% rename from src/BRepPrim/BRepPrim_Cylinder.hxx rename to src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Cylinder.hxx diff --git a/src/BRepPrim/BRepPrim_Direction.hxx b/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Direction.hxx similarity index 100% rename from src/BRepPrim/BRepPrim_Direction.hxx rename to src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Direction.hxx diff --git a/src/BRepPrim/BRepPrim_FaceBuilder.cxx b/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_FaceBuilder.cxx similarity index 100% rename from src/BRepPrim/BRepPrim_FaceBuilder.cxx rename to src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_FaceBuilder.cxx diff --git a/src/BRepPrim/BRepPrim_FaceBuilder.hxx b/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_FaceBuilder.hxx similarity index 100% rename from src/BRepPrim/BRepPrim_FaceBuilder.hxx rename to src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_FaceBuilder.hxx diff --git a/src/BRepPrim/BRepPrim_GWedge.cxx b/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_GWedge.cxx similarity index 100% rename from src/BRepPrim/BRepPrim_GWedge.cxx rename to src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_GWedge.cxx diff --git a/src/BRepPrim/BRepPrim_GWedge.hxx b/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_GWedge.hxx similarity index 100% rename from src/BRepPrim/BRepPrim_GWedge.hxx rename to src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_GWedge.hxx diff --git a/src/BRepPrim/BRepPrim_OneAxis.cxx b/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_OneAxis.cxx similarity index 100% rename from src/BRepPrim/BRepPrim_OneAxis.cxx rename to src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_OneAxis.cxx diff --git a/src/BRepPrim/BRepPrim_OneAxis.hxx b/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_OneAxis.hxx similarity index 100% rename from src/BRepPrim/BRepPrim_OneAxis.hxx rename to src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_OneAxis.hxx diff --git a/src/BRepPrim/BRepPrim_Revolution.cxx b/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Revolution.cxx similarity index 100% rename from src/BRepPrim/BRepPrim_Revolution.cxx rename to src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Revolution.cxx diff --git a/src/BRepPrim/BRepPrim_Revolution.hxx b/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Revolution.hxx similarity index 100% rename from src/BRepPrim/BRepPrim_Revolution.hxx rename to src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Revolution.hxx diff --git a/src/BRepPrim/BRepPrim_Sphere.cxx b/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Sphere.cxx similarity index 100% rename from src/BRepPrim/BRepPrim_Sphere.cxx rename to src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Sphere.cxx diff --git a/src/BRepPrim/BRepPrim_Sphere.hxx b/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Sphere.hxx similarity index 100% rename from src/BRepPrim/BRepPrim_Sphere.hxx rename to src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Sphere.hxx diff --git a/src/BRepPrim/BRepPrim_Torus.cxx b/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Torus.cxx similarity index 100% rename from src/BRepPrim/BRepPrim_Torus.cxx rename to src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Torus.cxx diff --git a/src/BRepPrim/BRepPrim_Torus.hxx b/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Torus.hxx similarity index 100% rename from src/BRepPrim/BRepPrim_Torus.hxx rename to src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Torus.hxx diff --git a/src/BRepPrim/BRepPrim_Wedge.cxx b/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Wedge.cxx similarity index 100% rename from src/BRepPrim/BRepPrim_Wedge.cxx rename to src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Wedge.cxx diff --git a/src/BRepPrim/BRepPrim_Wedge.hxx b/src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Wedge.hxx similarity index 100% rename from src/BRepPrim/BRepPrim_Wedge.hxx rename to src/ModelingAlgorithms/TKPrim/BRepPrim/BRepPrim_Wedge.hxx diff --git a/src/ModelingAlgorithms/TKPrim/BRepPrim/FILES.cmake b/src/ModelingAlgorithms/TKPrim/BRepPrim/FILES.cmake new file mode 100644 index 0000000000..372c35ecf7 --- /dev/null +++ b/src/ModelingAlgorithms/TKPrim/BRepPrim/FILES.cmake @@ -0,0 +1,27 @@ +# Source files for BRepPrim package +set(OCCT_BRepPrim_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepPrim_FILES + BRepPrim_Builder.cxx + BRepPrim_Builder.hxx + BRepPrim_Builder.lxx + BRepPrim_Cone.cxx + BRepPrim_Cone.hxx + BRepPrim_Cylinder.cxx + BRepPrim_Cylinder.hxx + BRepPrim_Direction.hxx + BRepPrim_FaceBuilder.cxx + BRepPrim_FaceBuilder.hxx + BRepPrim_GWedge.cxx + BRepPrim_GWedge.hxx + BRepPrim_OneAxis.cxx + BRepPrim_OneAxis.hxx + BRepPrim_Revolution.cxx + BRepPrim_Revolution.hxx + BRepPrim_Sphere.cxx + BRepPrim_Sphere.hxx + BRepPrim_Torus.cxx + BRepPrim_Torus.hxx + BRepPrim_Wedge.cxx + BRepPrim_Wedge.hxx +) diff --git a/src/BRepPrimAPI/BRepPrimAPI_MakeBox.cxx b/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeBox.cxx similarity index 100% rename from src/BRepPrimAPI/BRepPrimAPI_MakeBox.cxx rename to src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeBox.cxx diff --git a/src/BRepPrimAPI/BRepPrimAPI_MakeBox.hxx b/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeBox.hxx similarity index 100% rename from src/BRepPrimAPI/BRepPrimAPI_MakeBox.hxx rename to src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeBox.hxx diff --git a/src/BRepPrimAPI/BRepPrimAPI_MakeCone.cxx b/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeCone.cxx similarity index 100% rename from src/BRepPrimAPI/BRepPrimAPI_MakeCone.cxx rename to src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeCone.cxx diff --git a/src/BRepPrimAPI/BRepPrimAPI_MakeCone.hxx b/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeCone.hxx similarity index 100% rename from src/BRepPrimAPI/BRepPrimAPI_MakeCone.hxx rename to src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeCone.hxx diff --git a/src/BRepPrimAPI/BRepPrimAPI_MakeCylinder.cxx b/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeCylinder.cxx similarity index 100% rename from src/BRepPrimAPI/BRepPrimAPI_MakeCylinder.cxx rename to src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeCylinder.cxx diff --git a/src/BRepPrimAPI/BRepPrimAPI_MakeCylinder.hxx b/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeCylinder.hxx similarity index 100% rename from src/BRepPrimAPI/BRepPrimAPI_MakeCylinder.hxx rename to src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeCylinder.hxx diff --git a/src/BRepPrimAPI/BRepPrimAPI_MakeHalfSpace.cxx b/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeHalfSpace.cxx similarity index 100% rename from src/BRepPrimAPI/BRepPrimAPI_MakeHalfSpace.cxx rename to src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeHalfSpace.cxx diff --git a/src/BRepPrimAPI/BRepPrimAPI_MakeHalfSpace.hxx b/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeHalfSpace.hxx similarity index 100% rename from src/BRepPrimAPI/BRepPrimAPI_MakeHalfSpace.hxx rename to src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeHalfSpace.hxx diff --git a/src/BRepPrimAPI/BRepPrimAPI_MakeOneAxis.cxx b/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeOneAxis.cxx similarity index 100% rename from src/BRepPrimAPI/BRepPrimAPI_MakeOneAxis.cxx rename to src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeOneAxis.cxx diff --git a/src/BRepPrimAPI/BRepPrimAPI_MakeOneAxis.hxx b/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeOneAxis.hxx similarity index 100% rename from src/BRepPrimAPI/BRepPrimAPI_MakeOneAxis.hxx rename to src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeOneAxis.hxx diff --git a/src/BRepPrimAPI/BRepPrimAPI_MakePrism.cxx b/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakePrism.cxx similarity index 100% rename from src/BRepPrimAPI/BRepPrimAPI_MakePrism.cxx rename to src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakePrism.cxx diff --git a/src/BRepPrimAPI/BRepPrimAPI_MakePrism.hxx b/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakePrism.hxx similarity index 100% rename from src/BRepPrimAPI/BRepPrimAPI_MakePrism.hxx rename to src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakePrism.hxx diff --git a/src/BRepPrimAPI/BRepPrimAPI_MakeRevol.cxx b/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeRevol.cxx similarity index 100% rename from src/BRepPrimAPI/BRepPrimAPI_MakeRevol.cxx rename to src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeRevol.cxx diff --git a/src/BRepPrimAPI/BRepPrimAPI_MakeRevol.hxx b/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeRevol.hxx similarity index 100% rename from src/BRepPrimAPI/BRepPrimAPI_MakeRevol.hxx rename to src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeRevol.hxx diff --git a/src/BRepPrimAPI/BRepPrimAPI_MakeRevolution.cxx b/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeRevolution.cxx similarity index 100% rename from src/BRepPrimAPI/BRepPrimAPI_MakeRevolution.cxx rename to src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeRevolution.cxx diff --git a/src/BRepPrimAPI/BRepPrimAPI_MakeRevolution.hxx b/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeRevolution.hxx similarity index 100% rename from src/BRepPrimAPI/BRepPrimAPI_MakeRevolution.hxx rename to src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeRevolution.hxx diff --git a/src/BRepPrimAPI/BRepPrimAPI_MakeSphere.cxx b/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeSphere.cxx similarity index 100% rename from src/BRepPrimAPI/BRepPrimAPI_MakeSphere.cxx rename to src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeSphere.cxx diff --git a/src/BRepPrimAPI/BRepPrimAPI_MakeSphere.hxx b/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeSphere.hxx similarity index 100% rename from src/BRepPrimAPI/BRepPrimAPI_MakeSphere.hxx rename to src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeSphere.hxx diff --git a/src/BRepPrimAPI/BRepPrimAPI_MakeSweep.hxx b/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeSweep.hxx similarity index 100% rename from src/BRepPrimAPI/BRepPrimAPI_MakeSweep.hxx rename to src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeSweep.hxx diff --git a/src/BRepPrimAPI/BRepPrimAPI_MakeTorus.cxx b/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeTorus.cxx similarity index 100% rename from src/BRepPrimAPI/BRepPrimAPI_MakeTorus.cxx rename to src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeTorus.cxx diff --git a/src/BRepPrimAPI/BRepPrimAPI_MakeTorus.hxx b/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeTorus.hxx similarity index 100% rename from src/BRepPrimAPI/BRepPrimAPI_MakeTorus.hxx rename to src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeTorus.hxx diff --git a/src/BRepPrimAPI/BRepPrimAPI_MakeWedge.cxx b/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeWedge.cxx similarity index 100% rename from src/BRepPrimAPI/BRepPrimAPI_MakeWedge.cxx rename to src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeWedge.cxx diff --git a/src/BRepPrimAPI/BRepPrimAPI_MakeWedge.hxx b/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeWedge.hxx similarity index 100% rename from src/BRepPrimAPI/BRepPrimAPI_MakeWedge.hxx rename to src/ModelingAlgorithms/TKPrim/BRepPrimAPI/BRepPrimAPI_MakeWedge.hxx diff --git a/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/FILES.cmake b/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/FILES.cmake new file mode 100644 index 0000000000..1aa4066cf4 --- /dev/null +++ b/src/ModelingAlgorithms/TKPrim/BRepPrimAPI/FILES.cmake @@ -0,0 +1,28 @@ +# Source files for BRepPrimAPI package +set(OCCT_BRepPrimAPI_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepPrimAPI_FILES + BRepPrimAPI_MakeBox.cxx + BRepPrimAPI_MakeBox.hxx + BRepPrimAPI_MakeCone.cxx + BRepPrimAPI_MakeCone.hxx + BRepPrimAPI_MakeCylinder.cxx + BRepPrimAPI_MakeCylinder.hxx + BRepPrimAPI_MakeHalfSpace.cxx + BRepPrimAPI_MakeHalfSpace.hxx + BRepPrimAPI_MakeOneAxis.cxx + BRepPrimAPI_MakeOneAxis.hxx + BRepPrimAPI_MakePrism.cxx + BRepPrimAPI_MakePrism.hxx + BRepPrimAPI_MakeRevol.cxx + BRepPrimAPI_MakeRevol.hxx + BRepPrimAPI_MakeRevolution.cxx + BRepPrimAPI_MakeRevolution.hxx + BRepPrimAPI_MakeSphere.cxx + BRepPrimAPI_MakeSphere.hxx + BRepPrimAPI_MakeSweep.hxx + BRepPrimAPI_MakeTorus.cxx + BRepPrimAPI_MakeTorus.hxx + BRepPrimAPI_MakeWedge.cxx + BRepPrimAPI_MakeWedge.hxx +) diff --git a/src/BRepSweep/BRepSweep_Builder.cxx b/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Builder.cxx similarity index 100% rename from src/BRepSweep/BRepSweep_Builder.cxx rename to src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Builder.cxx diff --git a/src/BRepSweep/BRepSweep_Builder.hxx b/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Builder.hxx similarity index 100% rename from src/BRepSweep/BRepSweep_Builder.hxx rename to src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Builder.hxx diff --git a/src/BRepSweep/BRepSweep_Builder.lxx b/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Builder.lxx similarity index 100% rename from src/BRepSweep/BRepSweep_Builder.lxx rename to src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Builder.lxx diff --git a/src/BRepSweep/BRepSweep_Iterator.cxx b/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Iterator.cxx similarity index 100% rename from src/BRepSweep/BRepSweep_Iterator.cxx rename to src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Iterator.cxx diff --git a/src/BRepSweep/BRepSweep_Iterator.hxx b/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Iterator.hxx similarity index 100% rename from src/BRepSweep/BRepSweep_Iterator.hxx rename to src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Iterator.hxx diff --git a/src/BRepSweep/BRepSweep_Iterator.lxx b/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Iterator.lxx similarity index 100% rename from src/BRepSweep/BRepSweep_Iterator.lxx rename to src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Iterator.lxx diff --git a/src/BRepSweep/BRepSweep_NumLinearRegularSweep.cxx b/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_NumLinearRegularSweep.cxx similarity index 100% rename from src/BRepSweep/BRepSweep_NumLinearRegularSweep.cxx rename to src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_NumLinearRegularSweep.cxx diff --git a/src/BRepSweep/BRepSweep_NumLinearRegularSweep.hxx b/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_NumLinearRegularSweep.hxx similarity index 100% rename from src/BRepSweep/BRepSweep_NumLinearRegularSweep.hxx rename to src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_NumLinearRegularSweep.hxx diff --git a/src/BRepSweep/BRepSweep_Prism.cxx b/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Prism.cxx similarity index 100% rename from src/BRepSweep/BRepSweep_Prism.cxx rename to src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Prism.cxx diff --git a/src/BRepSweep/BRepSweep_Prism.hxx b/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Prism.hxx similarity index 100% rename from src/BRepSweep/BRepSweep_Prism.hxx rename to src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Prism.hxx diff --git a/src/BRepSweep/BRepSweep_Revol.cxx b/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Revol.cxx similarity index 100% rename from src/BRepSweep/BRepSweep_Revol.cxx rename to src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Revol.cxx diff --git a/src/BRepSweep/BRepSweep_Revol.hxx b/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Revol.hxx similarity index 100% rename from src/BRepSweep/BRepSweep_Revol.hxx rename to src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Revol.hxx diff --git a/src/BRepSweep/BRepSweep_Rotation.cxx b/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Rotation.cxx similarity index 100% rename from src/BRepSweep/BRepSweep_Rotation.cxx rename to src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Rotation.cxx diff --git a/src/BRepSweep/BRepSweep_Rotation.hxx b/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Rotation.hxx similarity index 100% rename from src/BRepSweep/BRepSweep_Rotation.hxx rename to src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Rotation.hxx diff --git a/src/BRepSweep/BRepSweep_Tool.cxx b/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Tool.cxx similarity index 100% rename from src/BRepSweep/BRepSweep_Tool.cxx rename to src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Tool.cxx diff --git a/src/BRepSweep/BRepSweep_Tool.hxx b/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Tool.hxx similarity index 100% rename from src/BRepSweep/BRepSweep_Tool.hxx rename to src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Tool.hxx diff --git a/src/BRepSweep/BRepSweep_Translation.cxx b/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Translation.cxx similarity index 100% rename from src/BRepSweep/BRepSweep_Translation.cxx rename to src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Translation.cxx diff --git a/src/BRepSweep/BRepSweep_Translation.hxx b/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Translation.hxx similarity index 100% rename from src/BRepSweep/BRepSweep_Translation.hxx rename to src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Translation.hxx diff --git a/src/BRepSweep/BRepSweep_Trsf.cxx b/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Trsf.cxx similarity index 100% rename from src/BRepSweep/BRepSweep_Trsf.cxx rename to src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Trsf.cxx diff --git a/src/BRepSweep/BRepSweep_Trsf.hxx b/src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Trsf.hxx similarity index 100% rename from src/BRepSweep/BRepSweep_Trsf.hxx rename to src/ModelingAlgorithms/TKPrim/BRepSweep/BRepSweep_Trsf.hxx diff --git a/src/ModelingAlgorithms/TKPrim/BRepSweep/FILES.cmake b/src/ModelingAlgorithms/TKPrim/BRepSweep/FILES.cmake new file mode 100644 index 0000000000..a8f0de6249 --- /dev/null +++ b/src/ModelingAlgorithms/TKPrim/BRepSweep/FILES.cmake @@ -0,0 +1,25 @@ +# Source files for BRepSweep package +set(OCCT_BRepSweep_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepSweep_FILES + BRepSweep_Builder.cxx + BRepSweep_Builder.hxx + BRepSweep_Builder.lxx + BRepSweep_Iterator.cxx + BRepSweep_Iterator.hxx + BRepSweep_Iterator.lxx + BRepSweep_NumLinearRegularSweep.cxx + BRepSweep_NumLinearRegularSweep.hxx + BRepSweep_Prism.cxx + BRepSweep_Prism.hxx + BRepSweep_Revol.cxx + BRepSweep_Revol.hxx + BRepSweep_Rotation.cxx + BRepSweep_Rotation.hxx + BRepSweep_Tool.cxx + BRepSweep_Tool.hxx + BRepSweep_Translation.cxx + BRepSweep_Translation.hxx + BRepSweep_Trsf.cxx + BRepSweep_Trsf.hxx +) diff --git a/src/TKPrim/CMakeLists.txt b/src/ModelingAlgorithms/TKPrim/CMakeLists.txt similarity index 100% rename from src/TKPrim/CMakeLists.txt rename to src/ModelingAlgorithms/TKPrim/CMakeLists.txt diff --git a/src/ModelingAlgorithms/TKPrim/EXTERNLIB.cmake b/src/ModelingAlgorithms/TKPrim/EXTERNLIB.cmake new file mode 100644 index 0000000000..bfc533a33c --- /dev/null +++ b/src/ModelingAlgorithms/TKPrim/EXTERNLIB.cmake @@ -0,0 +1,10 @@ +# External dependencies for TKPrim +set(OCCT_TKPrim_EXTERNAL_LIBS + TKBRep + TKernel + TKMath + TKG2d + TKGeomBase + TKG3d + TKTopAlgo +) diff --git a/src/ModelingAlgorithms/TKPrim/FILES.cmake b/src/ModelingAlgorithms/TKPrim/FILES.cmake new file mode 100644 index 0000000000..df1c8fad24 --- /dev/null +++ b/src/ModelingAlgorithms/TKPrim/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKPrim +set(OCCT_TKPrim_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKPrim_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ModelingAlgorithms/TKPrim/PACKAGES.cmake b/src/ModelingAlgorithms/TKPrim/PACKAGES.cmake new file mode 100644 index 0000000000..98464cdf3d --- /dev/null +++ b/src/ModelingAlgorithms/TKPrim/PACKAGES.cmake @@ -0,0 +1,8 @@ +# Auto-generated list of packages for TKPrim toolkit +set(OCCT_TKPrim_LIST_OF_PACKAGES + BRepPrim + BRepSweep + Sweep + BRepPreviewAPI + BRepPrimAPI +) diff --git a/src/ModelingAlgorithms/TKPrim/Sweep/FILES.cmake b/src/ModelingAlgorithms/TKPrim/Sweep/FILES.cmake new file mode 100644 index 0000000000..5cf01bbe3b --- /dev/null +++ b/src/ModelingAlgorithms/TKPrim/Sweep/FILES.cmake @@ -0,0 +1,13 @@ +# Source files for Sweep package +set(OCCT_Sweep_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Sweep_FILES + Sweep_NumShape.cxx + Sweep_NumShape.hxx + Sweep_NumShape.lxx + Sweep_NumShapeIterator.cxx + Sweep_NumShapeIterator.hxx + Sweep_NumShapeIterator.lxx + Sweep_NumShapeTool.cxx + Sweep_NumShapeTool.hxx +) diff --git a/src/Sweep/Sweep_NumShape.cxx b/src/ModelingAlgorithms/TKPrim/Sweep/Sweep_NumShape.cxx similarity index 100% rename from src/Sweep/Sweep_NumShape.cxx rename to src/ModelingAlgorithms/TKPrim/Sweep/Sweep_NumShape.cxx diff --git a/src/Sweep/Sweep_NumShape.hxx b/src/ModelingAlgorithms/TKPrim/Sweep/Sweep_NumShape.hxx similarity index 100% rename from src/Sweep/Sweep_NumShape.hxx rename to src/ModelingAlgorithms/TKPrim/Sweep/Sweep_NumShape.hxx diff --git a/src/Sweep/Sweep_NumShape.lxx b/src/ModelingAlgorithms/TKPrim/Sweep/Sweep_NumShape.lxx similarity index 100% rename from src/Sweep/Sweep_NumShape.lxx rename to src/ModelingAlgorithms/TKPrim/Sweep/Sweep_NumShape.lxx diff --git a/src/Sweep/Sweep_NumShapeIterator.cxx b/src/ModelingAlgorithms/TKPrim/Sweep/Sweep_NumShapeIterator.cxx similarity index 100% rename from src/Sweep/Sweep_NumShapeIterator.cxx rename to src/ModelingAlgorithms/TKPrim/Sweep/Sweep_NumShapeIterator.cxx diff --git a/src/Sweep/Sweep_NumShapeIterator.hxx b/src/ModelingAlgorithms/TKPrim/Sweep/Sweep_NumShapeIterator.hxx similarity index 100% rename from src/Sweep/Sweep_NumShapeIterator.hxx rename to src/ModelingAlgorithms/TKPrim/Sweep/Sweep_NumShapeIterator.hxx diff --git a/src/Sweep/Sweep_NumShapeIterator.lxx b/src/ModelingAlgorithms/TKPrim/Sweep/Sweep_NumShapeIterator.lxx similarity index 100% rename from src/Sweep/Sweep_NumShapeIterator.lxx rename to src/ModelingAlgorithms/TKPrim/Sweep/Sweep_NumShapeIterator.lxx diff --git a/src/Sweep/Sweep_NumShapeTool.cxx b/src/ModelingAlgorithms/TKPrim/Sweep/Sweep_NumShapeTool.cxx similarity index 100% rename from src/Sweep/Sweep_NumShapeTool.cxx rename to src/ModelingAlgorithms/TKPrim/Sweep/Sweep_NumShapeTool.cxx diff --git a/src/Sweep/Sweep_NumShapeTool.hxx b/src/ModelingAlgorithms/TKPrim/Sweep/Sweep_NumShapeTool.hxx similarity index 100% rename from src/Sweep/Sweep_NumShapeTool.hxx rename to src/ModelingAlgorithms/TKPrim/Sweep/Sweep_NumShapeTool.hxx diff --git a/src/TKShHealing/CMakeLists.txt b/src/ModelingAlgorithms/TKShHealing/CMakeLists.txt similarity index 100% rename from src/TKShHealing/CMakeLists.txt rename to src/ModelingAlgorithms/TKShHealing/CMakeLists.txt diff --git a/src/ModelingAlgorithms/TKShHealing/EXTERNLIB.cmake b/src/ModelingAlgorithms/TKShHealing/EXTERNLIB.cmake new file mode 100644 index 0000000000..d6e883d42a --- /dev/null +++ b/src/ModelingAlgorithms/TKShHealing/EXTERNLIB.cmake @@ -0,0 +1,12 @@ +# External dependencies for TKShHealing +set(OCCT_TKShHealing_EXTERNAL_LIBS + TKBRep + TKernel + TKMath + TKG2d + TKTopAlgo + TKG3d + TKGeomBase + TKGeomAlgo + CSF_wsock32 +) diff --git a/src/ModelingAlgorithms/TKShHealing/FILES.cmake b/src/ModelingAlgorithms/TKShHealing/FILES.cmake new file mode 100644 index 0000000000..edae04b2fb --- /dev/null +++ b/src/ModelingAlgorithms/TKShHealing/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKShHealing +set(OCCT_TKShHealing_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKShHealing_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ModelingAlgorithms/TKShHealing/PACKAGES.cmake b/src/ModelingAlgorithms/TKShHealing/PACKAGES.cmake new file mode 100644 index 0000000000..22dc389f86 --- /dev/null +++ b/src/ModelingAlgorithms/TKShHealing/PACKAGES.cmake @@ -0,0 +1,14 @@ +# Auto-generated list of packages for TKShHealing toolkit +set(OCCT_TKShHealing_LIST_OF_PACKAGES + ShapeBuild + ShapeExtend + ShapeConstruct + ShapeCustom + ShapeAnalysis + ShapeFix + ShapeUpgrade + ShapeAlgo + ShapeProcess + ShapeProcessAPI + SHMessage +) diff --git a/src/ModelingAlgorithms/TKShHealing/SHMessage/FILES.cmake b/src/ModelingAlgorithms/TKShHealing/SHMessage/FILES.cmake new file mode 100644 index 0000000000..5e1cb539fb --- /dev/null +++ b/src/ModelingAlgorithms/TKShHealing/SHMessage/FILES.cmake @@ -0,0 +1,6 @@ +# Source files for SHMessage package +set(OCCT_SHMessage_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_SHMessage_FILES + SHMessage_SHAPE_us.pxx +) diff --git a/src/SHMessage/SHMessage_SHAPE_fr.pxx b/src/ModelingAlgorithms/TKShHealing/SHMessage/SHMessage_SHAPE_fr.pxx similarity index 100% rename from src/SHMessage/SHMessage_SHAPE_fr.pxx rename to src/ModelingAlgorithms/TKShHealing/SHMessage/SHMessage_SHAPE_fr.pxx diff --git a/src/SHMessage/SHMessage_SHAPE_us.pxx b/src/ModelingAlgorithms/TKShHealing/SHMessage/SHMessage_SHAPE_us.pxx similarity index 100% rename from src/SHMessage/SHMessage_SHAPE_us.pxx rename to src/ModelingAlgorithms/TKShHealing/SHMessage/SHMessage_SHAPE_us.pxx diff --git a/src/ModelingAlgorithms/TKShHealing/ShapeAlgo/FILES.cmake b/src/ModelingAlgorithms/TKShHealing/ShapeAlgo/FILES.cmake new file mode 100644 index 0000000000..bf0c210ad4 --- /dev/null +++ b/src/ModelingAlgorithms/TKShHealing/ShapeAlgo/FILES.cmake @@ -0,0 +1,12 @@ +# Source files for ShapeAlgo package +set(OCCT_ShapeAlgo_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_ShapeAlgo_FILES + ShapeAlgo.cxx + ShapeAlgo.hxx + ShapeAlgo_AlgoContainer.cxx + ShapeAlgo_AlgoContainer.hxx + ShapeAlgo_AlgoContainer.lxx + ShapeAlgo_ToolContainer.cxx + ShapeAlgo_ToolContainer.hxx +) diff --git a/src/ShapeAlgo/ShapeAlgo.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeAlgo/ShapeAlgo.cxx similarity index 100% rename from src/ShapeAlgo/ShapeAlgo.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAlgo/ShapeAlgo.cxx diff --git a/src/ShapeAlgo/ShapeAlgo.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAlgo/ShapeAlgo.hxx similarity index 100% rename from src/ShapeAlgo/ShapeAlgo.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAlgo/ShapeAlgo.hxx diff --git a/src/ShapeAlgo/ShapeAlgo_AlgoContainer.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeAlgo/ShapeAlgo_AlgoContainer.cxx similarity index 100% rename from src/ShapeAlgo/ShapeAlgo_AlgoContainer.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAlgo/ShapeAlgo_AlgoContainer.cxx diff --git a/src/ShapeAlgo/ShapeAlgo_AlgoContainer.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAlgo/ShapeAlgo_AlgoContainer.hxx similarity index 100% rename from src/ShapeAlgo/ShapeAlgo_AlgoContainer.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAlgo/ShapeAlgo_AlgoContainer.hxx diff --git a/src/ShapeAlgo/ShapeAlgo_AlgoContainer.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeAlgo/ShapeAlgo_AlgoContainer.lxx similarity index 100% rename from src/ShapeAlgo/ShapeAlgo_AlgoContainer.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAlgo/ShapeAlgo_AlgoContainer.lxx diff --git a/src/ShapeAlgo/ShapeAlgo_ToolContainer.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeAlgo/ShapeAlgo_ToolContainer.cxx similarity index 100% rename from src/ShapeAlgo/ShapeAlgo_ToolContainer.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAlgo/ShapeAlgo_ToolContainer.cxx diff --git a/src/ShapeAlgo/ShapeAlgo_ToolContainer.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAlgo/ShapeAlgo_ToolContainer.hxx similarity index 100% rename from src/ShapeAlgo/ShapeAlgo_ToolContainer.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAlgo/ShapeAlgo_ToolContainer.hxx diff --git a/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/FILES.cmake b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/FILES.cmake new file mode 100644 index 0000000000..9cbc010fcf --- /dev/null +++ b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/FILES.cmake @@ -0,0 +1,53 @@ +# Source files for ShapeAnalysis package +set(OCCT_ShapeAnalysis_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_ShapeAnalysis_FILES + ShapeAnalysis.cxx + ShapeAnalysis.hxx + ShapeAnalysis_BoxBndTree.cxx + ShapeAnalysis_BoxBndTree.hxx + ShapeAnalysis_CheckSmallFace.cxx + ShapeAnalysis_CheckSmallFace.hxx + ShapeAnalysis_CheckSmallFace.lxx + ShapeAnalysis_Curve.cxx + ShapeAnalysis_Curve.hxx + ShapeAnalysis_DataMapIteratorOfDataMapOfShapeListOfReal.hxx + ShapeAnalysis_DataMapOfShapeListOfReal.hxx + ShapeAnalysis_Edge.cxx + ShapeAnalysis_Edge.hxx + ShapeAnalysis_FreeBoundData.cxx + ShapeAnalysis_FreeBoundData.hxx + ShapeAnalysis_FreeBoundData.lxx + ShapeAnalysis_FreeBounds.cxx + ShapeAnalysis_FreeBounds.hxx + ShapeAnalysis_FreeBounds.lxx + ShapeAnalysis_FreeBoundsProperties.cxx + ShapeAnalysis_FreeBoundsProperties.hxx + ShapeAnalysis_FreeBoundsProperties.lxx + ShapeAnalysis_Geom.cxx + ShapeAnalysis_Geom.hxx + ShapeAnalysis_HSequenceOfFreeBounds.hxx + ShapeAnalysis_SequenceOfFreeBounds.hxx + ShapeAnalysis_ShapeContents.cxx + ShapeAnalysis_ShapeContents.hxx + ShapeAnalysis_ShapeTolerance.cxx + ShapeAnalysis_ShapeTolerance.hxx + ShapeAnalysis_Shell.cxx + ShapeAnalysis_Shell.hxx + ShapeAnalysis_Surface.cxx + ShapeAnalysis_Surface.hxx + ShapeAnalysis_Surface.lxx + ShapeAnalysis_TransferParameters.cxx + ShapeAnalysis_TransferParameters.hxx + ShapeAnalysis_TransferParametersProj.cxx + ShapeAnalysis_TransferParametersProj.hxx + ShapeAnalysis_Wire.cxx + ShapeAnalysis_Wire.hxx + ShapeAnalysis_Wire.lxx + ShapeAnalysis_WireOrder.cxx + ShapeAnalysis_WireOrder.hxx + ShapeAnalysis_WireVertex.cxx + ShapeAnalysis_WireVertex.hxx + ShapeAnalysis_CanonicalRecognition.cxx + ShapeAnalysis_CanonicalRecognition.hxx +) diff --git a/src/ShapeAnalysis/ShapeAnalysis.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis.cxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis.cxx diff --git a/src/ShapeAnalysis/ShapeAnalysis.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis.hxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis.hxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_BoxBndTree.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_BoxBndTree.cxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_BoxBndTree.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_BoxBndTree.cxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_BoxBndTree.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_BoxBndTree.hxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_BoxBndTree.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_BoxBndTree.hxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_CanonicalRecognition.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_CanonicalRecognition.cxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_CanonicalRecognition.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_CanonicalRecognition.cxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_CanonicalRecognition.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_CanonicalRecognition.hxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_CanonicalRecognition.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_CanonicalRecognition.hxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_CheckSmallFace.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_CheckSmallFace.cxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_CheckSmallFace.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_CheckSmallFace.cxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_CheckSmallFace.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_CheckSmallFace.hxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_CheckSmallFace.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_CheckSmallFace.hxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_CheckSmallFace.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_CheckSmallFace.lxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_CheckSmallFace.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_CheckSmallFace.lxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_Curve.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Curve.cxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_Curve.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Curve.cxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_Curve.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Curve.hxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_Curve.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Curve.hxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_DataMapIteratorOfDataMapOfShapeListOfReal.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_DataMapIteratorOfDataMapOfShapeListOfReal.hxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_DataMapIteratorOfDataMapOfShapeListOfReal.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_DataMapIteratorOfDataMapOfShapeListOfReal.hxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_DataMapOfShapeListOfReal.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_DataMapOfShapeListOfReal.hxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_DataMapOfShapeListOfReal.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_DataMapOfShapeListOfReal.hxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_Edge.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Edge.cxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_Edge.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Edge.cxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_Edge.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Edge.hxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_Edge.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Edge.hxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_FreeBoundData.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_FreeBoundData.cxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_FreeBoundData.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_FreeBoundData.cxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_FreeBoundData.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_FreeBoundData.hxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_FreeBoundData.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_FreeBoundData.hxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_FreeBoundData.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_FreeBoundData.lxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_FreeBoundData.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_FreeBoundData.lxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_FreeBounds.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_FreeBounds.cxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_FreeBounds.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_FreeBounds.cxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_FreeBounds.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_FreeBounds.hxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_FreeBounds.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_FreeBounds.hxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_FreeBounds.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_FreeBounds.lxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_FreeBounds.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_FreeBounds.lxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_FreeBoundsProperties.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_FreeBoundsProperties.cxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_FreeBoundsProperties.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_FreeBoundsProperties.cxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_FreeBoundsProperties.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_FreeBoundsProperties.hxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_FreeBoundsProperties.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_FreeBoundsProperties.hxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_FreeBoundsProperties.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_FreeBoundsProperties.lxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_FreeBoundsProperties.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_FreeBoundsProperties.lxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_Geom.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Geom.cxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_Geom.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Geom.cxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_Geom.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Geom.hxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_Geom.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Geom.hxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_HSequenceOfFreeBounds.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_HSequenceOfFreeBounds.hxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_HSequenceOfFreeBounds.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_HSequenceOfFreeBounds.hxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_SequenceOfFreeBounds.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_SequenceOfFreeBounds.hxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_SequenceOfFreeBounds.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_SequenceOfFreeBounds.hxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_ShapeContents.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_ShapeContents.cxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_ShapeContents.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_ShapeContents.cxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_ShapeContents.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_ShapeContents.hxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_ShapeContents.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_ShapeContents.hxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_ShapeTolerance.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_ShapeTolerance.cxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_ShapeTolerance.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_ShapeTolerance.cxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_ShapeTolerance.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_ShapeTolerance.hxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_ShapeTolerance.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_ShapeTolerance.hxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_Shell.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Shell.cxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_Shell.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Shell.cxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_Shell.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Shell.hxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_Shell.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Shell.hxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_Surface.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Surface.cxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_Surface.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Surface.cxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_Surface.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Surface.hxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_Surface.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Surface.hxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_Surface.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Surface.lxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_Surface.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Surface.lxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_TransferParameters.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_TransferParameters.cxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_TransferParameters.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_TransferParameters.cxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_TransferParameters.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_TransferParameters.hxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_TransferParameters.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_TransferParameters.hxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_TransferParametersProj.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_TransferParametersProj.cxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_TransferParametersProj.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_TransferParametersProj.cxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_TransferParametersProj.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_TransferParametersProj.hxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_TransferParametersProj.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_TransferParametersProj.hxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_Wire.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Wire.cxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_Wire.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Wire.cxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_Wire.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Wire.hxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_Wire.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Wire.hxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_Wire.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Wire.lxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_Wire.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_Wire.lxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_WireOrder.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_WireOrder.cxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_WireOrder.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_WireOrder.cxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_WireOrder.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_WireOrder.hxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_WireOrder.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_WireOrder.hxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_WireVertex.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_WireVertex.cxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_WireVertex.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_WireVertex.cxx diff --git a/src/ShapeAnalysis/ShapeAnalysis_WireVertex.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_WireVertex.hxx similarity index 100% rename from src/ShapeAnalysis/ShapeAnalysis_WireVertex.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeAnalysis/ShapeAnalysis_WireVertex.hxx diff --git a/src/ModelingAlgorithms/TKShHealing/ShapeBuild/FILES.cmake b/src/ModelingAlgorithms/TKShHealing/ShapeBuild/FILES.cmake new file mode 100644 index 0000000000..ad06f70dd0 --- /dev/null +++ b/src/ModelingAlgorithms/TKShHealing/ShapeBuild/FILES.cmake @@ -0,0 +1,13 @@ +# Source files for ShapeBuild package +set(OCCT_ShapeBuild_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_ShapeBuild_FILES + ShapeBuild.cxx + ShapeBuild.hxx + ShapeBuild_Edge.cxx + ShapeBuild_Edge.hxx + ShapeBuild_ReShape.cxx + ShapeBuild_ReShape.hxx + ShapeBuild_Vertex.cxx + ShapeBuild_Vertex.hxx +) diff --git a/src/ShapeBuild/ShapeBuild.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeBuild/ShapeBuild.cxx similarity index 100% rename from src/ShapeBuild/ShapeBuild.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeBuild/ShapeBuild.cxx diff --git a/src/ShapeBuild/ShapeBuild.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeBuild/ShapeBuild.hxx similarity index 100% rename from src/ShapeBuild/ShapeBuild.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeBuild/ShapeBuild.hxx diff --git a/src/ShapeBuild/ShapeBuild_Edge.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeBuild/ShapeBuild_Edge.cxx similarity index 100% rename from src/ShapeBuild/ShapeBuild_Edge.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeBuild/ShapeBuild_Edge.cxx diff --git a/src/ShapeBuild/ShapeBuild_Edge.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeBuild/ShapeBuild_Edge.hxx similarity index 100% rename from src/ShapeBuild/ShapeBuild_Edge.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeBuild/ShapeBuild_Edge.hxx diff --git a/src/ShapeBuild/ShapeBuild_ReShape.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeBuild/ShapeBuild_ReShape.cxx similarity index 100% rename from src/ShapeBuild/ShapeBuild_ReShape.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeBuild/ShapeBuild_ReShape.cxx diff --git a/src/ShapeBuild/ShapeBuild_ReShape.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeBuild/ShapeBuild_ReShape.hxx similarity index 100% rename from src/ShapeBuild/ShapeBuild_ReShape.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeBuild/ShapeBuild_ReShape.hxx diff --git a/src/ShapeBuild/ShapeBuild_Vertex.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeBuild/ShapeBuild_Vertex.cxx similarity index 100% rename from src/ShapeBuild/ShapeBuild_Vertex.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeBuild/ShapeBuild_Vertex.cxx diff --git a/src/ShapeBuild/ShapeBuild_Vertex.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeBuild/ShapeBuild_Vertex.hxx similarity index 100% rename from src/ShapeBuild/ShapeBuild_Vertex.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeBuild/ShapeBuild_Vertex.hxx diff --git a/src/ModelingAlgorithms/TKShHealing/ShapeConstruct/FILES.cmake b/src/ModelingAlgorithms/TKShHealing/ShapeConstruct/FILES.cmake new file mode 100644 index 0000000000..4c147762e3 --- /dev/null +++ b/src/ModelingAlgorithms/TKShHealing/ShapeConstruct/FILES.cmake @@ -0,0 +1,13 @@ +# Source files for ShapeConstruct package +set(OCCT_ShapeConstruct_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_ShapeConstruct_FILES + ShapeConstruct.cxx + ShapeConstruct.hxx + ShapeConstruct_Curve.cxx + ShapeConstruct_Curve.hxx + ShapeConstruct_MakeTriangulation.cxx + ShapeConstruct_MakeTriangulation.hxx + ShapeConstruct_ProjectCurveOnSurface.cxx + ShapeConstruct_ProjectCurveOnSurface.hxx +) diff --git a/src/ShapeConstruct/ShapeConstruct.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeConstruct/ShapeConstruct.cxx similarity index 100% rename from src/ShapeConstruct/ShapeConstruct.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeConstruct/ShapeConstruct.cxx diff --git a/src/ShapeConstruct/ShapeConstruct.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeConstruct/ShapeConstruct.hxx similarity index 100% rename from src/ShapeConstruct/ShapeConstruct.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeConstruct/ShapeConstruct.hxx diff --git a/src/ShapeConstruct/ShapeConstruct_Curve.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeConstruct/ShapeConstruct_Curve.cxx similarity index 100% rename from src/ShapeConstruct/ShapeConstruct_Curve.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeConstruct/ShapeConstruct_Curve.cxx diff --git a/src/ShapeConstruct/ShapeConstruct_Curve.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeConstruct/ShapeConstruct_Curve.hxx similarity index 100% rename from src/ShapeConstruct/ShapeConstruct_Curve.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeConstruct/ShapeConstruct_Curve.hxx diff --git a/src/ShapeConstruct/ShapeConstruct_MakeTriangulation.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeConstruct/ShapeConstruct_MakeTriangulation.cxx similarity index 100% rename from src/ShapeConstruct/ShapeConstruct_MakeTriangulation.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeConstruct/ShapeConstruct_MakeTriangulation.cxx diff --git a/src/ShapeConstruct/ShapeConstruct_MakeTriangulation.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeConstruct/ShapeConstruct_MakeTriangulation.hxx similarity index 100% rename from src/ShapeConstruct/ShapeConstruct_MakeTriangulation.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeConstruct/ShapeConstruct_MakeTriangulation.hxx diff --git a/src/ShapeConstruct/ShapeConstruct_ProjectCurveOnSurface.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeConstruct/ShapeConstruct_ProjectCurveOnSurface.cxx similarity index 100% rename from src/ShapeConstruct/ShapeConstruct_ProjectCurveOnSurface.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeConstruct/ShapeConstruct_ProjectCurveOnSurface.cxx diff --git a/src/ShapeConstruct/ShapeConstruct_ProjectCurveOnSurface.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeConstruct/ShapeConstruct_ProjectCurveOnSurface.hxx similarity index 100% rename from src/ShapeConstruct/ShapeConstruct_ProjectCurveOnSurface.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeConstruct/ShapeConstruct_ProjectCurveOnSurface.hxx diff --git a/src/ModelingAlgorithms/TKShHealing/ShapeCustom/FILES.cmake b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/FILES.cmake new file mode 100644 index 0000000000..4f196ac213 --- /dev/null +++ b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/FILES.cmake @@ -0,0 +1,32 @@ +# Source files for ShapeCustom package +set(OCCT_ShapeCustom_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_ShapeCustom_FILES + ShapeCustom.cxx + ShapeCustom.hxx + ShapeCustom_BSplineRestriction.cxx + ShapeCustom_BSplineRestriction.hxx + ShapeCustom_BSplineRestriction.lxx + ShapeCustom_ConvertToBSpline.cxx + ShapeCustom_ConvertToBSpline.hxx + ShapeCustom_ConvertToRevolution.cxx + ShapeCustom_ConvertToRevolution.hxx + ShapeCustom_Curve.cxx + ShapeCustom_Curve.hxx + ShapeCustom_Curve2d.cxx + ShapeCustom_Curve2d.hxx + ShapeCustom_DirectModification.cxx + ShapeCustom_DirectModification.hxx + ShapeCustom_Modification.cxx + ShapeCustom_Modification.hxx + ShapeCustom_RestrictionParameters.cxx + ShapeCustom_RestrictionParameters.hxx + ShapeCustom_RestrictionParameters.lxx + ShapeCustom_Surface.cxx + ShapeCustom_Surface.hxx + ShapeCustom_Surface.lxx + ShapeCustom_SweptToElementary.cxx + ShapeCustom_SweptToElementary.hxx + ShapeCustom_TrsfModification.cxx + ShapeCustom_TrsfModification.hxx +) diff --git a/src/ShapeCustom/ShapeCustom.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom.cxx similarity index 100% rename from src/ShapeCustom/ShapeCustom.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom.cxx diff --git a/src/ShapeCustom/ShapeCustom.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom.hxx similarity index 100% rename from src/ShapeCustom/ShapeCustom.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom.hxx diff --git a/src/ShapeCustom/ShapeCustom_BSplineRestriction.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_BSplineRestriction.cxx similarity index 100% rename from src/ShapeCustom/ShapeCustom_BSplineRestriction.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_BSplineRestriction.cxx diff --git a/src/ShapeCustom/ShapeCustom_BSplineRestriction.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_BSplineRestriction.hxx similarity index 100% rename from src/ShapeCustom/ShapeCustom_BSplineRestriction.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_BSplineRestriction.hxx diff --git a/src/ShapeCustom/ShapeCustom_BSplineRestriction.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_BSplineRestriction.lxx similarity index 100% rename from src/ShapeCustom/ShapeCustom_BSplineRestriction.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_BSplineRestriction.lxx diff --git a/src/ShapeCustom/ShapeCustom_ConvertToBSpline.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_ConvertToBSpline.cxx similarity index 100% rename from src/ShapeCustom/ShapeCustom_ConvertToBSpline.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_ConvertToBSpline.cxx diff --git a/src/ShapeCustom/ShapeCustom_ConvertToBSpline.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_ConvertToBSpline.hxx similarity index 100% rename from src/ShapeCustom/ShapeCustom_ConvertToBSpline.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_ConvertToBSpline.hxx diff --git a/src/ShapeCustom/ShapeCustom_ConvertToRevolution.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_ConvertToRevolution.cxx similarity index 100% rename from src/ShapeCustom/ShapeCustom_ConvertToRevolution.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_ConvertToRevolution.cxx diff --git a/src/ShapeCustom/ShapeCustom_ConvertToRevolution.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_ConvertToRevolution.hxx similarity index 100% rename from src/ShapeCustom/ShapeCustom_ConvertToRevolution.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_ConvertToRevolution.hxx diff --git a/src/ShapeCustom/ShapeCustom_Curve.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_Curve.cxx similarity index 100% rename from src/ShapeCustom/ShapeCustom_Curve.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_Curve.cxx diff --git a/src/ShapeCustom/ShapeCustom_Curve.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_Curve.hxx similarity index 100% rename from src/ShapeCustom/ShapeCustom_Curve.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_Curve.hxx diff --git a/src/ShapeCustom/ShapeCustom_Curve2d.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_Curve2d.cxx similarity index 100% rename from src/ShapeCustom/ShapeCustom_Curve2d.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_Curve2d.cxx diff --git a/src/ShapeCustom/ShapeCustom_Curve2d.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_Curve2d.hxx similarity index 100% rename from src/ShapeCustom/ShapeCustom_Curve2d.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_Curve2d.hxx diff --git a/src/ShapeCustom/ShapeCustom_DirectModification.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_DirectModification.cxx similarity index 100% rename from src/ShapeCustom/ShapeCustom_DirectModification.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_DirectModification.cxx diff --git a/src/ShapeCustom/ShapeCustom_DirectModification.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_DirectModification.hxx similarity index 100% rename from src/ShapeCustom/ShapeCustom_DirectModification.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_DirectModification.hxx diff --git a/src/ShapeCustom/ShapeCustom_Modification.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_Modification.cxx similarity index 100% rename from src/ShapeCustom/ShapeCustom_Modification.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_Modification.cxx diff --git a/src/ShapeCustom/ShapeCustom_Modification.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_Modification.hxx similarity index 100% rename from src/ShapeCustom/ShapeCustom_Modification.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_Modification.hxx diff --git a/src/ShapeCustom/ShapeCustom_RestrictionParameters.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_RestrictionParameters.cxx similarity index 100% rename from src/ShapeCustom/ShapeCustom_RestrictionParameters.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_RestrictionParameters.cxx diff --git a/src/ShapeCustom/ShapeCustom_RestrictionParameters.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_RestrictionParameters.hxx similarity index 100% rename from src/ShapeCustom/ShapeCustom_RestrictionParameters.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_RestrictionParameters.hxx diff --git a/src/ShapeCustom/ShapeCustom_RestrictionParameters.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_RestrictionParameters.lxx similarity index 100% rename from src/ShapeCustom/ShapeCustom_RestrictionParameters.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_RestrictionParameters.lxx diff --git a/src/ShapeCustom/ShapeCustom_Surface.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_Surface.cxx similarity index 100% rename from src/ShapeCustom/ShapeCustom_Surface.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_Surface.cxx diff --git a/src/ShapeCustom/ShapeCustom_Surface.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_Surface.hxx similarity index 100% rename from src/ShapeCustom/ShapeCustom_Surface.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_Surface.hxx diff --git a/src/ShapeCustom/ShapeCustom_Surface.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_Surface.lxx similarity index 100% rename from src/ShapeCustom/ShapeCustom_Surface.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_Surface.lxx diff --git a/src/ShapeCustom/ShapeCustom_SweptToElementary.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_SweptToElementary.cxx similarity index 100% rename from src/ShapeCustom/ShapeCustom_SweptToElementary.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_SweptToElementary.cxx diff --git a/src/ShapeCustom/ShapeCustom_SweptToElementary.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_SweptToElementary.hxx similarity index 100% rename from src/ShapeCustom/ShapeCustom_SweptToElementary.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_SweptToElementary.hxx diff --git a/src/ShapeCustom/ShapeCustom_TrsfModification.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_TrsfModification.cxx similarity index 100% rename from src/ShapeCustom/ShapeCustom_TrsfModification.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_TrsfModification.cxx diff --git a/src/ShapeCustom/ShapeCustom_TrsfModification.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_TrsfModification.hxx similarity index 100% rename from src/ShapeCustom/ShapeCustom_TrsfModification.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeCustom/ShapeCustom_TrsfModification.hxx diff --git a/src/ModelingAlgorithms/TKShHealing/ShapeExtend/FILES.cmake b/src/ModelingAlgorithms/TKShHealing/ShapeExtend/FILES.cmake new file mode 100644 index 0000000000..d993b39688 --- /dev/null +++ b/src/ModelingAlgorithms/TKShHealing/ShapeExtend/FILES.cmake @@ -0,0 +1,27 @@ +# Source files for ShapeExtend package +set(OCCT_ShapeExtend_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_ShapeExtend_FILES + ShapeExtend.cxx + ShapeExtend.hxx + ShapeExtend_BasicMsgRegistrator.cxx + ShapeExtend_BasicMsgRegistrator.hxx + ShapeExtend_ComplexCurve.cxx + ShapeExtend_ComplexCurve.hxx + ShapeExtend_ComplexCurve.lxx + ShapeExtend_CompositeSurface.cxx + ShapeExtend_CompositeSurface.hxx + ShapeExtend_DataMapIteratorOfDataMapOfShapeListOfMsg.hxx + ShapeExtend_DataMapIteratorOfDataMapOfTransientListOfMsg.hxx + ShapeExtend_DataMapOfShapeListOfMsg.hxx + ShapeExtend_DataMapOfTransientListOfMsg.hxx + ShapeExtend_Explorer.cxx + ShapeExtend_Explorer.hxx + ShapeExtend_MsgRegistrator.cxx + ShapeExtend_MsgRegistrator.hxx + ShapeExtend_MsgRegistrator.lxx + ShapeExtend_Parametrisation.hxx + ShapeExtend_Status.hxx + ShapeExtend_WireData.cxx + ShapeExtend_WireData.hxx +) diff --git a/src/ShapeExtend/ShapeExtend.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend.cxx similarity index 100% rename from src/ShapeExtend/ShapeExtend.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend.cxx diff --git a/src/ShapeExtend/ShapeExtend.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend.hxx similarity index 100% rename from src/ShapeExtend/ShapeExtend.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend.hxx diff --git a/src/ShapeExtend/ShapeExtend_BasicMsgRegistrator.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_BasicMsgRegistrator.cxx similarity index 100% rename from src/ShapeExtend/ShapeExtend_BasicMsgRegistrator.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_BasicMsgRegistrator.cxx diff --git a/src/ShapeExtend/ShapeExtend_BasicMsgRegistrator.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_BasicMsgRegistrator.hxx similarity index 100% rename from src/ShapeExtend/ShapeExtend_BasicMsgRegistrator.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_BasicMsgRegistrator.hxx diff --git a/src/ShapeExtend/ShapeExtend_ComplexCurve.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_ComplexCurve.cxx similarity index 100% rename from src/ShapeExtend/ShapeExtend_ComplexCurve.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_ComplexCurve.cxx diff --git a/src/ShapeExtend/ShapeExtend_ComplexCurve.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_ComplexCurve.hxx similarity index 100% rename from src/ShapeExtend/ShapeExtend_ComplexCurve.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_ComplexCurve.hxx diff --git a/src/ShapeExtend/ShapeExtend_ComplexCurve.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_ComplexCurve.lxx similarity index 100% rename from src/ShapeExtend/ShapeExtend_ComplexCurve.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_ComplexCurve.lxx diff --git a/src/ShapeExtend/ShapeExtend_CompositeSurface.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_CompositeSurface.cxx similarity index 100% rename from src/ShapeExtend/ShapeExtend_CompositeSurface.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_CompositeSurface.cxx diff --git a/src/ShapeExtend/ShapeExtend_CompositeSurface.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_CompositeSurface.hxx similarity index 100% rename from src/ShapeExtend/ShapeExtend_CompositeSurface.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_CompositeSurface.hxx diff --git a/src/ShapeExtend/ShapeExtend_DataMapIteratorOfDataMapOfShapeListOfMsg.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_DataMapIteratorOfDataMapOfShapeListOfMsg.hxx similarity index 100% rename from src/ShapeExtend/ShapeExtend_DataMapIteratorOfDataMapOfShapeListOfMsg.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_DataMapIteratorOfDataMapOfShapeListOfMsg.hxx diff --git a/src/ShapeExtend/ShapeExtend_DataMapIteratorOfDataMapOfTransientListOfMsg.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_DataMapIteratorOfDataMapOfTransientListOfMsg.hxx similarity index 100% rename from src/ShapeExtend/ShapeExtend_DataMapIteratorOfDataMapOfTransientListOfMsg.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_DataMapIteratorOfDataMapOfTransientListOfMsg.hxx diff --git a/src/ShapeExtend/ShapeExtend_DataMapOfShapeListOfMsg.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_DataMapOfShapeListOfMsg.hxx similarity index 100% rename from src/ShapeExtend/ShapeExtend_DataMapOfShapeListOfMsg.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_DataMapOfShapeListOfMsg.hxx diff --git a/src/ShapeExtend/ShapeExtend_DataMapOfTransientListOfMsg.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_DataMapOfTransientListOfMsg.hxx similarity index 100% rename from src/ShapeExtend/ShapeExtend_DataMapOfTransientListOfMsg.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_DataMapOfTransientListOfMsg.hxx diff --git a/src/ShapeExtend/ShapeExtend_Explorer.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_Explorer.cxx similarity index 100% rename from src/ShapeExtend/ShapeExtend_Explorer.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_Explorer.cxx diff --git a/src/ShapeExtend/ShapeExtend_Explorer.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_Explorer.hxx similarity index 100% rename from src/ShapeExtend/ShapeExtend_Explorer.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_Explorer.hxx diff --git a/src/ShapeExtend/ShapeExtend_MsgRegistrator.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_MsgRegistrator.cxx similarity index 100% rename from src/ShapeExtend/ShapeExtend_MsgRegistrator.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_MsgRegistrator.cxx diff --git a/src/ShapeExtend/ShapeExtend_MsgRegistrator.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_MsgRegistrator.hxx similarity index 100% rename from src/ShapeExtend/ShapeExtend_MsgRegistrator.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_MsgRegistrator.hxx diff --git a/src/ShapeExtend/ShapeExtend_MsgRegistrator.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_MsgRegistrator.lxx similarity index 100% rename from src/ShapeExtend/ShapeExtend_MsgRegistrator.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_MsgRegistrator.lxx diff --git a/src/ShapeExtend/ShapeExtend_Parametrisation.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_Parametrisation.hxx similarity index 100% rename from src/ShapeExtend/ShapeExtend_Parametrisation.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_Parametrisation.hxx diff --git a/src/ShapeExtend/ShapeExtend_Status.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_Status.hxx similarity index 100% rename from src/ShapeExtend/ShapeExtend_Status.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_Status.hxx diff --git a/src/ShapeExtend/ShapeExtend_WireData.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_WireData.cxx similarity index 100% rename from src/ShapeExtend/ShapeExtend_WireData.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_WireData.cxx diff --git a/src/ShapeExtend/ShapeExtend_WireData.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_WireData.hxx similarity index 100% rename from src/ShapeExtend/ShapeExtend_WireData.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeExtend/ShapeExtend_WireData.hxx diff --git a/src/ModelingAlgorithms/TKShHealing/ShapeFix/FILES.cmake b/src/ModelingAlgorithms/TKShHealing/ShapeFix/FILES.cmake new file mode 100644 index 0000000000..9bb5b44c11 --- /dev/null +++ b/src/ModelingAlgorithms/TKShHealing/ShapeFix/FILES.cmake @@ -0,0 +1,61 @@ +# Source files for ShapeFix package +set(OCCT_ShapeFix_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_ShapeFix_FILES + ShapeFix.cxx + ShapeFix.hxx + ShapeFix_ComposeShell.cxx + ShapeFix_ComposeShell.hxx + ShapeFix_DataMapIteratorOfDataMapOfShapeBox2d.hxx + ShapeFix_DataMapOfShapeBox2d.hxx + ShapeFix_Edge.cxx + ShapeFix_Edge.hxx + ShapeFix_EdgeConnect.cxx + ShapeFix_EdgeConnect.hxx + ShapeFix_EdgeProjAux.cxx + ShapeFix_EdgeProjAux.hxx + ShapeFix_Face.cxx + ShapeFix_Face.hxx + ShapeFix_Face.lxx + ShapeFix_FaceConnect.cxx + ShapeFix_FaceConnect.hxx + ShapeFix_FixSmallFace.cxx + ShapeFix_FixSmallFace.hxx + ShapeFix_FixSmallSolid.cxx + ShapeFix_FixSmallSolid.hxx + ShapeFix_FreeBounds.cxx + ShapeFix_FreeBounds.hxx + ShapeFix_FreeBounds.lxx + ShapeFix_IntersectionTool.cxx + ShapeFix_IntersectionTool.hxx + ShapeFix_IntersectionTool.lxx + ShapeFix_Root.cxx + ShapeFix_Root.hxx + ShapeFix_Root.lxx + ShapeFix_SequenceOfWireSegment.hxx + ShapeFix_Shape.cxx + ShapeFix_Shape.hxx + ShapeFix_Shape.lxx + ShapeFix_ShapeTolerance.cxx + ShapeFix_ShapeTolerance.hxx + ShapeFix_Shell.cxx + ShapeFix_Shell.hxx + ShapeFix_Shell.lxx + ShapeFix_Solid.cxx + ShapeFix_Solid.hxx + ShapeFix_SplitCommonVertex.cxx + ShapeFix_SplitCommonVertex.hxx + ShapeFix_SplitTool.cxx + ShapeFix_SplitTool.hxx + ShapeFix_Wire.cxx + ShapeFix_Wire.hxx + ShapeFix_Wire.lxx + ShapeFix_Wire_1.cxx + ShapeFix_Wireframe.cxx + ShapeFix_Wireframe.hxx + ShapeFix_Wireframe.lxx + ShapeFix_WireSegment.cxx + ShapeFix_WireSegment.hxx + ShapeFix_WireVertex.cxx + ShapeFix_WireVertex.hxx +) diff --git a/src/ShapeFix/ShapeFix.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix.cxx similarity index 100% rename from src/ShapeFix/ShapeFix.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix.cxx diff --git a/src/ShapeFix/ShapeFix.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix.hxx similarity index 100% rename from src/ShapeFix/ShapeFix.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix.hxx diff --git a/src/ShapeFix/ShapeFix_ComposeShell.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_ComposeShell.cxx similarity index 100% rename from src/ShapeFix/ShapeFix_ComposeShell.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_ComposeShell.cxx diff --git a/src/ShapeFix/ShapeFix_ComposeShell.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_ComposeShell.hxx similarity index 100% rename from src/ShapeFix/ShapeFix_ComposeShell.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_ComposeShell.hxx diff --git a/src/ShapeFix/ShapeFix_DataMapIteratorOfDataMapOfShapeBox2d.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_DataMapIteratorOfDataMapOfShapeBox2d.hxx similarity index 100% rename from src/ShapeFix/ShapeFix_DataMapIteratorOfDataMapOfShapeBox2d.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_DataMapIteratorOfDataMapOfShapeBox2d.hxx diff --git a/src/ShapeFix/ShapeFix_DataMapOfShapeBox2d.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_DataMapOfShapeBox2d.hxx similarity index 100% rename from src/ShapeFix/ShapeFix_DataMapOfShapeBox2d.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_DataMapOfShapeBox2d.hxx diff --git a/src/ShapeFix/ShapeFix_Edge.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Edge.cxx similarity index 100% rename from src/ShapeFix/ShapeFix_Edge.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Edge.cxx diff --git a/src/ShapeFix/ShapeFix_Edge.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Edge.hxx similarity index 100% rename from src/ShapeFix/ShapeFix_Edge.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Edge.hxx diff --git a/src/ShapeFix/ShapeFix_EdgeConnect.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_EdgeConnect.cxx similarity index 100% rename from src/ShapeFix/ShapeFix_EdgeConnect.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_EdgeConnect.cxx diff --git a/src/ShapeFix/ShapeFix_EdgeConnect.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_EdgeConnect.hxx similarity index 100% rename from src/ShapeFix/ShapeFix_EdgeConnect.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_EdgeConnect.hxx diff --git a/src/ShapeFix/ShapeFix_EdgeProjAux.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_EdgeProjAux.cxx similarity index 100% rename from src/ShapeFix/ShapeFix_EdgeProjAux.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_EdgeProjAux.cxx diff --git a/src/ShapeFix/ShapeFix_EdgeProjAux.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_EdgeProjAux.hxx similarity index 100% rename from src/ShapeFix/ShapeFix_EdgeProjAux.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_EdgeProjAux.hxx diff --git a/src/ShapeFix/ShapeFix_Face.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Face.cxx similarity index 100% rename from src/ShapeFix/ShapeFix_Face.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Face.cxx diff --git a/src/ShapeFix/ShapeFix_Face.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Face.hxx similarity index 100% rename from src/ShapeFix/ShapeFix_Face.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Face.hxx diff --git a/src/ShapeFix/ShapeFix_Face.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Face.lxx similarity index 100% rename from src/ShapeFix/ShapeFix_Face.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Face.lxx diff --git a/src/ShapeFix/ShapeFix_FaceConnect.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_FaceConnect.cxx similarity index 100% rename from src/ShapeFix/ShapeFix_FaceConnect.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_FaceConnect.cxx diff --git a/src/ShapeFix/ShapeFix_FaceConnect.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_FaceConnect.hxx similarity index 100% rename from src/ShapeFix/ShapeFix_FaceConnect.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_FaceConnect.hxx diff --git a/src/ShapeFix/ShapeFix_FixSmallFace.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_FixSmallFace.cxx similarity index 100% rename from src/ShapeFix/ShapeFix_FixSmallFace.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_FixSmallFace.cxx diff --git a/src/ShapeFix/ShapeFix_FixSmallFace.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_FixSmallFace.hxx similarity index 100% rename from src/ShapeFix/ShapeFix_FixSmallFace.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_FixSmallFace.hxx diff --git a/src/ShapeFix/ShapeFix_FixSmallSolid.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_FixSmallSolid.cxx similarity index 100% rename from src/ShapeFix/ShapeFix_FixSmallSolid.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_FixSmallSolid.cxx diff --git a/src/ShapeFix/ShapeFix_FixSmallSolid.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_FixSmallSolid.hxx similarity index 100% rename from src/ShapeFix/ShapeFix_FixSmallSolid.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_FixSmallSolid.hxx diff --git a/src/ShapeFix/ShapeFix_FreeBounds.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_FreeBounds.cxx similarity index 100% rename from src/ShapeFix/ShapeFix_FreeBounds.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_FreeBounds.cxx diff --git a/src/ShapeFix/ShapeFix_FreeBounds.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_FreeBounds.hxx similarity index 100% rename from src/ShapeFix/ShapeFix_FreeBounds.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_FreeBounds.hxx diff --git a/src/ShapeFix/ShapeFix_FreeBounds.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_FreeBounds.lxx similarity index 100% rename from src/ShapeFix/ShapeFix_FreeBounds.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_FreeBounds.lxx diff --git a/src/ShapeFix/ShapeFix_IntersectionTool.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_IntersectionTool.cxx similarity index 100% rename from src/ShapeFix/ShapeFix_IntersectionTool.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_IntersectionTool.cxx diff --git a/src/ShapeFix/ShapeFix_IntersectionTool.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_IntersectionTool.hxx similarity index 100% rename from src/ShapeFix/ShapeFix_IntersectionTool.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_IntersectionTool.hxx diff --git a/src/ShapeFix/ShapeFix_IntersectionTool.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_IntersectionTool.lxx similarity index 100% rename from src/ShapeFix/ShapeFix_IntersectionTool.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_IntersectionTool.lxx diff --git a/src/ShapeFix/ShapeFix_Root.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Root.cxx similarity index 100% rename from src/ShapeFix/ShapeFix_Root.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Root.cxx diff --git a/src/ShapeFix/ShapeFix_Root.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Root.hxx similarity index 100% rename from src/ShapeFix/ShapeFix_Root.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Root.hxx diff --git a/src/ShapeFix/ShapeFix_Root.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Root.lxx similarity index 100% rename from src/ShapeFix/ShapeFix_Root.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Root.lxx diff --git a/src/ShapeFix/ShapeFix_SequenceOfWireSegment.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_SequenceOfWireSegment.hxx similarity index 100% rename from src/ShapeFix/ShapeFix_SequenceOfWireSegment.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_SequenceOfWireSegment.hxx diff --git a/src/ShapeFix/ShapeFix_Shape.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Shape.cxx similarity index 100% rename from src/ShapeFix/ShapeFix_Shape.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Shape.cxx diff --git a/src/ShapeFix/ShapeFix_Shape.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Shape.hxx similarity index 100% rename from src/ShapeFix/ShapeFix_Shape.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Shape.hxx diff --git a/src/ShapeFix/ShapeFix_Shape.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Shape.lxx similarity index 100% rename from src/ShapeFix/ShapeFix_Shape.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Shape.lxx diff --git a/src/ShapeFix/ShapeFix_ShapeTolerance.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_ShapeTolerance.cxx similarity index 100% rename from src/ShapeFix/ShapeFix_ShapeTolerance.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_ShapeTolerance.cxx diff --git a/src/ShapeFix/ShapeFix_ShapeTolerance.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_ShapeTolerance.hxx similarity index 100% rename from src/ShapeFix/ShapeFix_ShapeTolerance.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_ShapeTolerance.hxx diff --git a/src/ShapeFix/ShapeFix_Shell.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Shell.cxx similarity index 100% rename from src/ShapeFix/ShapeFix_Shell.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Shell.cxx diff --git a/src/ShapeFix/ShapeFix_Shell.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Shell.hxx similarity index 100% rename from src/ShapeFix/ShapeFix_Shell.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Shell.hxx diff --git a/src/ShapeFix/ShapeFix_Shell.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Shell.lxx similarity index 100% rename from src/ShapeFix/ShapeFix_Shell.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Shell.lxx diff --git a/src/ShapeFix/ShapeFix_Solid.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Solid.cxx similarity index 100% rename from src/ShapeFix/ShapeFix_Solid.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Solid.cxx diff --git a/src/ShapeFix/ShapeFix_Solid.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Solid.hxx similarity index 100% rename from src/ShapeFix/ShapeFix_Solid.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Solid.hxx diff --git a/src/ShapeFix/ShapeFix_SplitCommonVertex.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_SplitCommonVertex.cxx similarity index 100% rename from src/ShapeFix/ShapeFix_SplitCommonVertex.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_SplitCommonVertex.cxx diff --git a/src/ShapeFix/ShapeFix_SplitCommonVertex.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_SplitCommonVertex.hxx similarity index 100% rename from src/ShapeFix/ShapeFix_SplitCommonVertex.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_SplitCommonVertex.hxx diff --git a/src/ShapeFix/ShapeFix_SplitTool.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_SplitTool.cxx similarity index 100% rename from src/ShapeFix/ShapeFix_SplitTool.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_SplitTool.cxx diff --git a/src/ShapeFix/ShapeFix_SplitTool.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_SplitTool.hxx similarity index 100% rename from src/ShapeFix/ShapeFix_SplitTool.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_SplitTool.hxx diff --git a/src/ShapeFix/ShapeFix_Wire.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Wire.cxx similarity index 100% rename from src/ShapeFix/ShapeFix_Wire.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Wire.cxx diff --git a/src/ShapeFix/ShapeFix_Wire.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Wire.hxx similarity index 100% rename from src/ShapeFix/ShapeFix_Wire.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Wire.hxx diff --git a/src/ShapeFix/ShapeFix_Wire.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Wire.lxx similarity index 100% rename from src/ShapeFix/ShapeFix_Wire.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Wire.lxx diff --git a/src/ShapeFix/ShapeFix_WireSegment.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_WireSegment.cxx similarity index 100% rename from src/ShapeFix/ShapeFix_WireSegment.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_WireSegment.cxx diff --git a/src/ShapeFix/ShapeFix_WireSegment.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_WireSegment.hxx similarity index 100% rename from src/ShapeFix/ShapeFix_WireSegment.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_WireSegment.hxx diff --git a/src/ShapeFix/ShapeFix_WireVertex.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_WireVertex.cxx similarity index 100% rename from src/ShapeFix/ShapeFix_WireVertex.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_WireVertex.cxx diff --git a/src/ShapeFix/ShapeFix_WireVertex.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_WireVertex.hxx similarity index 100% rename from src/ShapeFix/ShapeFix_WireVertex.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_WireVertex.hxx diff --git a/src/ShapeFix/ShapeFix_Wire_1.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Wire_1.cxx similarity index 100% rename from src/ShapeFix/ShapeFix_Wire_1.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Wire_1.cxx diff --git a/src/ShapeFix/ShapeFix_Wireframe.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Wireframe.cxx similarity index 100% rename from src/ShapeFix/ShapeFix_Wireframe.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Wireframe.cxx diff --git a/src/ShapeFix/ShapeFix_Wireframe.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Wireframe.hxx similarity index 100% rename from src/ShapeFix/ShapeFix_Wireframe.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Wireframe.hxx diff --git a/src/ShapeFix/ShapeFix_Wireframe.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Wireframe.lxx similarity index 100% rename from src/ShapeFix/ShapeFix_Wireframe.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeFix/ShapeFix_Wireframe.lxx diff --git a/src/ModelingAlgorithms/TKShHealing/ShapeProcess/FILES.cmake b/src/ModelingAlgorithms/TKShHealing/ShapeProcess/FILES.cmake new file mode 100644 index 0000000000..4e2f40db6c --- /dev/null +++ b/src/ModelingAlgorithms/TKShHealing/ShapeProcess/FILES.cmake @@ -0,0 +1,18 @@ +# Source files for ShapeProcess package +set(OCCT_ShapeProcess_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_ShapeProcess_FILES + ShapeProcess.cxx + ShapeProcess.hxx + ShapeProcess_Context.cxx + ShapeProcess_Context.hxx + ShapeProcess_Operator.cxx + ShapeProcess_Operator.hxx + ShapeProcess_OperFunc.hxx + ShapeProcess_OperLibrary.cxx + ShapeProcess_OperLibrary.hxx + ShapeProcess_ShapeContext.cxx + ShapeProcess_ShapeContext.hxx + ShapeProcess_UOperator.cxx + ShapeProcess_UOperator.hxx +) diff --git a/src/ShapeProcess/ShapeProcess.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess.cxx similarity index 100% rename from src/ShapeProcess/ShapeProcess.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess.cxx diff --git a/src/ShapeProcess/ShapeProcess.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess.hxx similarity index 100% rename from src/ShapeProcess/ShapeProcess.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess.hxx diff --git a/src/ShapeProcess/ShapeProcess_Context.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess_Context.cxx similarity index 100% rename from src/ShapeProcess/ShapeProcess_Context.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess_Context.cxx diff --git a/src/ShapeProcess/ShapeProcess_Context.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess_Context.hxx similarity index 100% rename from src/ShapeProcess/ShapeProcess_Context.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess_Context.hxx diff --git a/src/ShapeProcess/ShapeProcess_OperFunc.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess_OperFunc.hxx similarity index 100% rename from src/ShapeProcess/ShapeProcess_OperFunc.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess_OperFunc.hxx diff --git a/src/ShapeProcess/ShapeProcess_OperLibrary.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess_OperLibrary.cxx similarity index 100% rename from src/ShapeProcess/ShapeProcess_OperLibrary.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess_OperLibrary.cxx diff --git a/src/ShapeProcess/ShapeProcess_OperLibrary.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess_OperLibrary.hxx similarity index 100% rename from src/ShapeProcess/ShapeProcess_OperLibrary.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess_OperLibrary.hxx diff --git a/src/ShapeProcess/ShapeProcess_Operator.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess_Operator.cxx similarity index 100% rename from src/ShapeProcess/ShapeProcess_Operator.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess_Operator.cxx diff --git a/src/ShapeProcess/ShapeProcess_Operator.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess_Operator.hxx similarity index 100% rename from src/ShapeProcess/ShapeProcess_Operator.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess_Operator.hxx diff --git a/src/ShapeProcess/ShapeProcess_ShapeContext.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess_ShapeContext.cxx similarity index 100% rename from src/ShapeProcess/ShapeProcess_ShapeContext.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess_ShapeContext.cxx diff --git a/src/ShapeProcess/ShapeProcess_ShapeContext.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess_ShapeContext.hxx similarity index 100% rename from src/ShapeProcess/ShapeProcess_ShapeContext.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess_ShapeContext.hxx diff --git a/src/ShapeProcess/ShapeProcess_UOperator.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess_UOperator.cxx similarity index 100% rename from src/ShapeProcess/ShapeProcess_UOperator.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess_UOperator.cxx diff --git a/src/ShapeProcess/ShapeProcess_UOperator.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess_UOperator.hxx similarity index 100% rename from src/ShapeProcess/ShapeProcess_UOperator.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeProcess/ShapeProcess_UOperator.hxx diff --git a/src/ModelingAlgorithms/TKShHealing/ShapeProcessAPI/FILES.cmake b/src/ModelingAlgorithms/TKShHealing/ShapeProcessAPI/FILES.cmake new file mode 100644 index 0000000000..ad065d04ce --- /dev/null +++ b/src/ModelingAlgorithms/TKShHealing/ShapeProcessAPI/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for ShapeProcessAPI package +set(OCCT_ShapeProcessAPI_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_ShapeProcessAPI_FILES + ShapeProcessAPI_ApplySequence.cxx + ShapeProcessAPI_ApplySequence.hxx +) diff --git a/src/ShapeProcessAPI/ShapeProcessAPI_ApplySequence.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeProcessAPI/ShapeProcessAPI_ApplySequence.cxx similarity index 100% rename from src/ShapeProcessAPI/ShapeProcessAPI_ApplySequence.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeProcessAPI/ShapeProcessAPI_ApplySequence.cxx diff --git a/src/ShapeProcessAPI/ShapeProcessAPI_ApplySequence.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeProcessAPI/ShapeProcessAPI_ApplySequence.hxx similarity index 100% rename from src/ShapeProcessAPI/ShapeProcessAPI_ApplySequence.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeProcessAPI/ShapeProcessAPI_ApplySequence.hxx diff --git a/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/FILES.cmake b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/FILES.cmake new file mode 100644 index 0000000000..fdcc503451 --- /dev/null +++ b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/FILES.cmake @@ -0,0 +1,81 @@ +# Source files for ShapeUpgrade package +set(OCCT_ShapeUpgrade_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_ShapeUpgrade_FILES + ShapeUpgrade.cxx + ShapeUpgrade.hxx + ShapeUpgrade_ClosedEdgeDivide.cxx + ShapeUpgrade_ClosedEdgeDivide.hxx + ShapeUpgrade_ClosedFaceDivide.cxx + ShapeUpgrade_ClosedFaceDivide.hxx + ShapeUpgrade_ConvertCurve2dToBezier.cxx + ShapeUpgrade_ConvertCurve2dToBezier.hxx + ShapeUpgrade_ConvertCurve3dToBezier.cxx + ShapeUpgrade_ConvertCurve3dToBezier.hxx + ShapeUpgrade_ConvertCurve3dToBezier.lxx + ShapeUpgrade_ConvertSurfaceToBezierBasis.cxx + ShapeUpgrade_ConvertSurfaceToBezierBasis.hxx + ShapeUpgrade_ConvertSurfaceToBezierBasis.lxx + ShapeUpgrade_EdgeDivide.cxx + ShapeUpgrade_EdgeDivide.hxx + ShapeUpgrade_EdgeDivide.lxx + ShapeUpgrade_FaceDivide.cxx + ShapeUpgrade_FaceDivide.hxx + ShapeUpgrade_FaceDivideArea.cxx + ShapeUpgrade_FaceDivideArea.hxx + ShapeUpgrade_FaceDivideArea.lxx + ShapeUpgrade_FixSmallBezierCurves.cxx + ShapeUpgrade_FixSmallBezierCurves.hxx + ShapeUpgrade_FixSmallCurves.cxx + ShapeUpgrade_FixSmallCurves.hxx + ShapeUpgrade_RemoveInternalWires.cxx + ShapeUpgrade_RemoveInternalWires.hxx + ShapeUpgrade_RemoveInternalWires.lxx + ShapeUpgrade_RemoveLocations.cxx + ShapeUpgrade_RemoveLocations.hxx + ShapeUpgrade_RemoveLocations.lxx + ShapeUpgrade_ShapeConvertToBezier.cxx + ShapeUpgrade_ShapeConvertToBezier.hxx + ShapeUpgrade_ShapeConvertToBezier.lxx + ShapeUpgrade_ShapeDivide.cxx + ShapeUpgrade_ShapeDivide.hxx + ShapeUpgrade_ShapeDivideAngle.cxx + ShapeUpgrade_ShapeDivideAngle.hxx + ShapeUpgrade_ShapeDivideArea.cxx + ShapeUpgrade_ShapeDivideArea.hxx + ShapeUpgrade_ShapeDivideArea.lxx + ShapeUpgrade_ShapeDivideClosed.cxx + ShapeUpgrade_ShapeDivideClosed.hxx + ShapeUpgrade_ShapeDivideClosedEdges.cxx + ShapeUpgrade_ShapeDivideClosedEdges.hxx + ShapeUpgrade_ShapeDivideContinuity.cxx + ShapeUpgrade_ShapeDivideContinuity.hxx + ShapeUpgrade_ShellSewing.cxx + ShapeUpgrade_ShellSewing.hxx + ShapeUpgrade_SplitCurve.cxx + ShapeUpgrade_SplitCurve.hxx + ShapeUpgrade_SplitCurve2d.cxx + ShapeUpgrade_SplitCurve2d.hxx + ShapeUpgrade_SplitCurve2dContinuity.cxx + ShapeUpgrade_SplitCurve2dContinuity.hxx + ShapeUpgrade_SplitCurve3d.cxx + ShapeUpgrade_SplitCurve3d.hxx + ShapeUpgrade_SplitCurve3dContinuity.cxx + ShapeUpgrade_SplitCurve3dContinuity.hxx + ShapeUpgrade_SplitSurface.cxx + ShapeUpgrade_SplitSurface.hxx + ShapeUpgrade_SplitSurfaceAngle.cxx + ShapeUpgrade_SplitSurfaceAngle.hxx + ShapeUpgrade_SplitSurfaceArea.cxx + ShapeUpgrade_SplitSurfaceArea.hxx + ShapeUpgrade_SplitSurfaceArea.lxx + ShapeUpgrade_SplitSurfaceContinuity.cxx + ShapeUpgrade_SplitSurfaceContinuity.hxx + ShapeUpgrade_Tool.cxx + ShapeUpgrade_Tool.hxx + ShapeUpgrade_Tool.lxx + ShapeUpgrade_UnifySameDomain.cxx + ShapeUpgrade_UnifySameDomain.hxx + ShapeUpgrade_WireDivide.cxx + ShapeUpgrade_WireDivide.hxx +) diff --git a/src/ShapeUpgrade/ShapeUpgrade.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ClosedEdgeDivide.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ClosedEdgeDivide.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ClosedEdgeDivide.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ClosedEdgeDivide.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ClosedEdgeDivide.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ClosedEdgeDivide.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ClosedEdgeDivide.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ClosedEdgeDivide.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ClosedFaceDivide.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ClosedFaceDivide.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ClosedFaceDivide.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ClosedFaceDivide.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ClosedFaceDivide.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ClosedFaceDivide.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ClosedFaceDivide.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ClosedFaceDivide.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ConvertCurve2dToBezier.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ConvertCurve2dToBezier.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ConvertCurve2dToBezier.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ConvertCurve2dToBezier.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ConvertCurve2dToBezier.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ConvertCurve2dToBezier.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ConvertCurve2dToBezier.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ConvertCurve2dToBezier.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ConvertCurve3dToBezier.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ConvertCurve3dToBezier.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ConvertCurve3dToBezier.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ConvertCurve3dToBezier.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ConvertCurve3dToBezier.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ConvertCurve3dToBezier.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ConvertCurve3dToBezier.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ConvertCurve3dToBezier.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ConvertCurve3dToBezier.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ConvertCurve3dToBezier.lxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ConvertCurve3dToBezier.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ConvertCurve3dToBezier.lxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ConvertSurfaceToBezierBasis.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ConvertSurfaceToBezierBasis.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ConvertSurfaceToBezierBasis.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ConvertSurfaceToBezierBasis.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ConvertSurfaceToBezierBasis.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ConvertSurfaceToBezierBasis.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ConvertSurfaceToBezierBasis.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ConvertSurfaceToBezierBasis.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ConvertSurfaceToBezierBasis.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ConvertSurfaceToBezierBasis.lxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ConvertSurfaceToBezierBasis.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ConvertSurfaceToBezierBasis.lxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_EdgeDivide.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_EdgeDivide.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_EdgeDivide.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_EdgeDivide.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_EdgeDivide.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_EdgeDivide.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_EdgeDivide.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_EdgeDivide.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_EdgeDivide.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_EdgeDivide.lxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_EdgeDivide.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_EdgeDivide.lxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_FaceDivide.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_FaceDivide.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_FaceDivide.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_FaceDivide.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_FaceDivide.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_FaceDivide.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_FaceDivide.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_FaceDivide.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_FaceDivideArea.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_FaceDivideArea.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_FaceDivideArea.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_FaceDivideArea.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_FaceDivideArea.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_FaceDivideArea.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_FaceDivideArea.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_FaceDivideArea.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_FaceDivideArea.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_FaceDivideArea.lxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_FaceDivideArea.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_FaceDivideArea.lxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_FixSmallBezierCurves.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_FixSmallBezierCurves.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_FixSmallBezierCurves.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_FixSmallBezierCurves.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_FixSmallBezierCurves.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_FixSmallBezierCurves.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_FixSmallBezierCurves.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_FixSmallBezierCurves.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_FixSmallCurves.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_FixSmallCurves.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_FixSmallCurves.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_FixSmallCurves.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_FixSmallCurves.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_FixSmallCurves.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_FixSmallCurves.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_FixSmallCurves.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_RemoveInternalWires.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_RemoveInternalWires.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_RemoveInternalWires.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_RemoveInternalWires.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_RemoveInternalWires.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_RemoveInternalWires.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_RemoveInternalWires.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_RemoveInternalWires.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_RemoveInternalWires.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_RemoveInternalWires.lxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_RemoveInternalWires.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_RemoveInternalWires.lxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_RemoveLocations.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_RemoveLocations.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_RemoveLocations.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_RemoveLocations.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_RemoveLocations.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_RemoveLocations.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_RemoveLocations.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_RemoveLocations.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_RemoveLocations.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_RemoveLocations.lxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_RemoveLocations.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_RemoveLocations.lxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ShapeConvertToBezier.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeConvertToBezier.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ShapeConvertToBezier.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeConvertToBezier.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ShapeConvertToBezier.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeConvertToBezier.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ShapeConvertToBezier.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeConvertToBezier.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ShapeConvertToBezier.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeConvertToBezier.lxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ShapeConvertToBezier.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeConvertToBezier.lxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ShapeDivide.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivide.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ShapeDivide.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivide.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ShapeDivide.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivide.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ShapeDivide.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivide.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ShapeDivideAngle.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivideAngle.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ShapeDivideAngle.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivideAngle.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ShapeDivideAngle.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivideAngle.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ShapeDivideAngle.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivideAngle.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ShapeDivideArea.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivideArea.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ShapeDivideArea.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivideArea.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ShapeDivideArea.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivideArea.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ShapeDivideArea.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivideArea.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ShapeDivideArea.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivideArea.lxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ShapeDivideArea.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivideArea.lxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ShapeDivideClosed.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivideClosed.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ShapeDivideClosed.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivideClosed.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ShapeDivideClosed.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivideClosed.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ShapeDivideClosed.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivideClosed.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ShapeDivideClosedEdges.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivideClosedEdges.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ShapeDivideClosedEdges.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivideClosedEdges.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ShapeDivideClosedEdges.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivideClosedEdges.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ShapeDivideClosedEdges.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivideClosedEdges.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ShapeDivideContinuity.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivideContinuity.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ShapeDivideContinuity.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivideContinuity.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ShapeDivideContinuity.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivideContinuity.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ShapeDivideContinuity.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShapeDivideContinuity.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ShellSewing.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShellSewing.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ShellSewing.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShellSewing.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_ShellSewing.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShellSewing.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_ShellSewing.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_ShellSewing.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_SplitCurve.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitCurve.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_SplitCurve.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitCurve.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_SplitCurve.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitCurve.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_SplitCurve.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitCurve.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_SplitCurve2d.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitCurve2d.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_SplitCurve2d.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitCurve2d.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_SplitCurve2d.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitCurve2d.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_SplitCurve2d.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitCurve2d.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_SplitCurve2dContinuity.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitCurve2dContinuity.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_SplitCurve2dContinuity.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitCurve2dContinuity.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_SplitCurve2dContinuity.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitCurve2dContinuity.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_SplitCurve2dContinuity.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitCurve2dContinuity.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_SplitCurve3d.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitCurve3d.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_SplitCurve3d.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitCurve3d.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_SplitCurve3d.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitCurve3d.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_SplitCurve3d.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitCurve3d.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_SplitCurve3dContinuity.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitCurve3dContinuity.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_SplitCurve3dContinuity.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitCurve3dContinuity.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_SplitCurve3dContinuity.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitCurve3dContinuity.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_SplitCurve3dContinuity.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitCurve3dContinuity.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_SplitSurface.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitSurface.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_SplitSurface.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitSurface.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_SplitSurface.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitSurface.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_SplitSurface.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitSurface.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_SplitSurfaceAngle.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitSurfaceAngle.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_SplitSurfaceAngle.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitSurfaceAngle.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_SplitSurfaceAngle.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitSurfaceAngle.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_SplitSurfaceAngle.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitSurfaceAngle.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_SplitSurfaceArea.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitSurfaceArea.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_SplitSurfaceArea.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitSurfaceArea.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_SplitSurfaceArea.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitSurfaceArea.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_SplitSurfaceArea.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitSurfaceArea.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_SplitSurfaceArea.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitSurfaceArea.lxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_SplitSurfaceArea.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitSurfaceArea.lxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_SplitSurfaceContinuity.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitSurfaceContinuity.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_SplitSurfaceContinuity.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitSurfaceContinuity.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_SplitSurfaceContinuity.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitSurfaceContinuity.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_SplitSurfaceContinuity.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_SplitSurfaceContinuity.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_Tool.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_Tool.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_Tool.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_Tool.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_Tool.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_Tool.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_Tool.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_Tool.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_Tool.lxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_Tool.lxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_Tool.lxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_Tool.lxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_UnifySameDomain.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_UnifySameDomain.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_UnifySameDomain.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_UnifySameDomain.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_UnifySameDomain.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_UnifySameDomain.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_UnifySameDomain.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_UnifySameDomain.hxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_WireDivide.cxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_WireDivide.cxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_WireDivide.cxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_WireDivide.cxx diff --git a/src/ShapeUpgrade/ShapeUpgrade_WireDivide.hxx b/src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_WireDivide.hxx similarity index 100% rename from src/ShapeUpgrade/ShapeUpgrade_WireDivide.hxx rename to src/ModelingAlgorithms/TKShHealing/ShapeUpgrade/ShapeUpgrade_WireDivide.hxx diff --git a/src/BRepApprox/BRepApprox_Approx.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_Approx.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_Approx.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_Approx.hxx diff --git a/src/BRepApprox/BRepApprox_ApproxLine.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ApproxLine.cxx similarity index 100% rename from src/BRepApprox/BRepApprox_ApproxLine.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ApproxLine.cxx diff --git a/src/BRepApprox/BRepApprox_ApproxLine.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ApproxLine.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_ApproxLine.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ApproxLine.hxx diff --git a/src/BRepApprox/BRepApprox_Approx_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_Approx_0.cxx similarity index 100% rename from src/BRepApprox/BRepApprox_Approx_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_Approx_0.cxx diff --git a/src/BRepApprox/BRepApprox_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfApprox.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfApprox.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfApprox.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfApprox.hxx diff --git a/src/BRepApprox/BRepApprox_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfApprox_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfApprox_0.cxx similarity index 100% rename from src/BRepApprox/BRepApprox_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfApprox_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfApprox_0.cxx diff --git a/src/BRepApprox/BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox.hxx diff --git a/src/BRepApprox/BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox_0.cxx similarity index 100% rename from src/BRepApprox/BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox_0.cxx diff --git a/src/BRepApprox/BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox.hxx diff --git a/src/BRepApprox/BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox_0.cxx similarity index 100% rename from src/BRepApprox/BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox_0.cxx diff --git a/src/BRepApprox/BRepApprox_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfApprox.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfApprox.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfApprox.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfApprox.hxx diff --git a/src/BRepApprox/BRepApprox_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfApprox_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfApprox_0.cxx similarity index 100% rename from src/BRepApprox/BRepApprox_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfApprox_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfApprox_0.cxx diff --git a/src/BRepApprox/BRepApprox_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfApprox.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfApprox.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfApprox.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfApprox.hxx diff --git a/src/BRepApprox/BRepApprox_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfApprox_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfApprox_0.cxx similarity index 100% rename from src/BRepApprox/BRepApprox_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfApprox_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfApprox_0.cxx diff --git a/src/BRepApprox/BRepApprox_MyBSplGradientOfTheComputeLineOfApprox.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_MyBSplGradientOfTheComputeLineOfApprox.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_MyBSplGradientOfTheComputeLineOfApprox.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_MyBSplGradientOfTheComputeLineOfApprox.hxx diff --git a/src/BRepApprox/BRepApprox_MyBSplGradientOfTheComputeLineOfApprox_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_MyBSplGradientOfTheComputeLineOfApprox_0.cxx similarity index 100% rename from src/BRepApprox/BRepApprox_MyBSplGradientOfTheComputeLineOfApprox_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_MyBSplGradientOfTheComputeLineOfApprox_0.cxx diff --git a/src/BRepApprox/BRepApprox_MyGradientOfTheComputeLineBezierOfApprox.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_MyGradientOfTheComputeLineBezierOfApprox.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_MyGradientOfTheComputeLineBezierOfApprox.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_MyGradientOfTheComputeLineBezierOfApprox.hxx diff --git a/src/BRepApprox/BRepApprox_MyGradientOfTheComputeLineBezierOfApprox_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_MyGradientOfTheComputeLineBezierOfApprox_0.cxx similarity index 100% rename from src/BRepApprox/BRepApprox_MyGradientOfTheComputeLineBezierOfApprox_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_MyGradientOfTheComputeLineBezierOfApprox_0.cxx diff --git a/src/BRepApprox/BRepApprox_MyGradientbisOfTheComputeLineOfApprox.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_MyGradientbisOfTheComputeLineOfApprox.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_MyGradientbisOfTheComputeLineOfApprox.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_MyGradientbisOfTheComputeLineOfApprox.hxx diff --git a/src/BRepApprox/BRepApprox_MyGradientbisOfTheComputeLineOfApprox_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_MyGradientbisOfTheComputeLineOfApprox_0.cxx similarity index 100% rename from src/BRepApprox/BRepApprox_MyGradientbisOfTheComputeLineOfApprox_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_MyGradientbisOfTheComputeLineOfApprox_0.cxx diff --git a/src/BRepApprox/BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox.hxx diff --git a/src/BRepApprox/BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox_0.cxx similarity index 100% rename from src/BRepApprox/BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox_0.cxx diff --git a/src/BRepApprox/BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox.hxx diff --git a/src/BRepApprox/BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox_0.cxx similarity index 100% rename from src/BRepApprox/BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox_0.cxx diff --git a/src/BRepApprox/BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox.hxx diff --git a/src/BRepApprox/BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox_0.cxx similarity index 100% rename from src/BRepApprox/BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox_0.cxx diff --git a/src/BRepApprox/BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox.hxx diff --git a/src/BRepApprox/BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox_0.cxx similarity index 100% rename from src/BRepApprox/BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox_0.cxx diff --git a/src/BRepApprox/BRepApprox_ResConstraintOfMyGradientOfTheComputeLineBezierOfApprox.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ResConstraintOfMyGradientOfTheComputeLineBezierOfApprox.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_ResConstraintOfMyGradientOfTheComputeLineBezierOfApprox.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ResConstraintOfMyGradientOfTheComputeLineBezierOfApprox.hxx diff --git a/src/BRepApprox/BRepApprox_ResConstraintOfMyGradientOfTheComputeLineBezierOfApprox_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ResConstraintOfMyGradientOfTheComputeLineBezierOfApprox_0.cxx similarity index 100% rename from src/BRepApprox/BRepApprox_ResConstraintOfMyGradientOfTheComputeLineBezierOfApprox_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ResConstraintOfMyGradientOfTheComputeLineBezierOfApprox_0.cxx diff --git a/src/BRepApprox/BRepApprox_ResConstraintOfMyGradientbisOfTheComputeLineOfApprox.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ResConstraintOfMyGradientbisOfTheComputeLineOfApprox.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_ResConstraintOfMyGradientbisOfTheComputeLineOfApprox.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ResConstraintOfMyGradientbisOfTheComputeLineOfApprox.hxx diff --git a/src/BRepApprox/BRepApprox_ResConstraintOfMyGradientbisOfTheComputeLineOfApprox_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ResConstraintOfMyGradientbisOfTheComputeLineOfApprox_0.cxx similarity index 100% rename from src/BRepApprox/BRepApprox_ResConstraintOfMyGradientbisOfTheComputeLineOfApprox_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ResConstraintOfMyGradientbisOfTheComputeLineOfApprox_0.cxx diff --git a/src/BRepApprox/BRepApprox_SurfaceTool.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_SurfaceTool.cxx similarity index 100% rename from src/BRepApprox/BRepApprox_SurfaceTool.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_SurfaceTool.cxx diff --git a/src/BRepApprox/BRepApprox_SurfaceTool.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_SurfaceTool.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_SurfaceTool.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_SurfaceTool.hxx diff --git a/src/BRepApprox/BRepApprox_SurfaceTool.lxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_SurfaceTool.lxx similarity index 100% rename from src/BRepApprox/BRepApprox_SurfaceTool.lxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_SurfaceTool.lxx diff --git a/src/BRepApprox/BRepApprox_TheComputeLineBezierOfApprox.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheComputeLineBezierOfApprox.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_TheComputeLineBezierOfApprox.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheComputeLineBezierOfApprox.hxx diff --git a/src/BRepApprox/BRepApprox_TheComputeLineBezierOfApprox_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheComputeLineBezierOfApprox_0.cxx similarity index 100% rename from src/BRepApprox/BRepApprox_TheComputeLineBezierOfApprox_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheComputeLineBezierOfApprox_0.cxx diff --git a/src/BRepApprox/BRepApprox_TheComputeLineOfApprox.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheComputeLineOfApprox.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_TheComputeLineOfApprox.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheComputeLineOfApprox.hxx diff --git a/src/BRepApprox/BRepApprox_TheComputeLineOfApprox_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheComputeLineOfApprox_0.cxx similarity index 100% rename from src/BRepApprox/BRepApprox_TheComputeLineOfApprox_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheComputeLineOfApprox_0.cxx diff --git a/src/BRepApprox/BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox.hxx diff --git a/src/BRepApprox/BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox_0.cxx similarity index 100% rename from src/BRepApprox/BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox_0.cxx diff --git a/src/BRepApprox/BRepApprox_TheImpPrmSvSurfacesOfApprox.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheImpPrmSvSurfacesOfApprox.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_TheImpPrmSvSurfacesOfApprox.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheImpPrmSvSurfacesOfApprox.hxx diff --git a/src/BRepApprox/BRepApprox_TheImpPrmSvSurfacesOfApprox_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheImpPrmSvSurfacesOfApprox_0.cxx similarity index 100% rename from src/BRepApprox/BRepApprox_TheImpPrmSvSurfacesOfApprox_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheImpPrmSvSurfacesOfApprox_0.cxx diff --git a/src/BRepApprox/BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox.hxx diff --git a/src/BRepApprox/BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox_0.cxx similarity index 100% rename from src/BRepApprox/BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox_0.cxx diff --git a/src/BRepApprox/BRepApprox_TheMultiLineOfApprox.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheMultiLineOfApprox.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_TheMultiLineOfApprox.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheMultiLineOfApprox.hxx diff --git a/src/BRepApprox/BRepApprox_TheMultiLineOfApprox_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheMultiLineOfApprox_0.cxx similarity index 100% rename from src/BRepApprox/BRepApprox_TheMultiLineOfApprox_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheMultiLineOfApprox_0.cxx diff --git a/src/BRepApprox/BRepApprox_TheMultiLineToolOfApprox.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheMultiLineToolOfApprox.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_TheMultiLineToolOfApprox.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheMultiLineToolOfApprox.hxx diff --git a/src/BRepApprox/BRepApprox_ThePrmPrmSvSurfacesOfApprox.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ThePrmPrmSvSurfacesOfApprox.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_ThePrmPrmSvSurfacesOfApprox.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ThePrmPrmSvSurfacesOfApprox.hxx diff --git a/src/BRepApprox/BRepApprox_ThePrmPrmSvSurfacesOfApprox_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ThePrmPrmSvSurfacesOfApprox_0.cxx similarity index 100% rename from src/BRepApprox/BRepApprox_ThePrmPrmSvSurfacesOfApprox_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_ThePrmPrmSvSurfacesOfApprox_0.cxx diff --git a/src/BRepApprox/BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox.hxx similarity index 100% rename from src/BRepApprox/BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox.hxx diff --git a/src/BRepApprox/BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox_0.cxx similarity index 100% rename from src/BRepApprox/BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepApprox/BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox_0.cxx diff --git a/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/FILES.cmake b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/FILES.cmake new file mode 100644 index 0000000000..36ea35a201 --- /dev/null +++ b/src/ModelingAlgorithms/TKTopAlgo/BRepApprox/FILES.cmake @@ -0,0 +1,57 @@ +# Source files for BRepApprox package +set(OCCT_BRepApprox_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepApprox_FILES + BRepApprox_Approx.hxx + BRepApprox_Approx_0.cxx + BRepApprox_ApproxLine.cxx + BRepApprox_ApproxLine.hxx + BRepApprox_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfApprox.hxx + BRepApprox_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfApprox_0.cxx + BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox.hxx + BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox_0.cxx + BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox.hxx + BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox_0.cxx + BRepApprox_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfApprox.hxx + BRepApprox_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfApprox_0.cxx + BRepApprox_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfApprox.hxx + BRepApprox_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfApprox_0.cxx + BRepApprox_MyBSplGradientOfTheComputeLineOfApprox.hxx + BRepApprox_MyBSplGradientOfTheComputeLineOfApprox_0.cxx + BRepApprox_MyGradientbisOfTheComputeLineOfApprox.hxx + BRepApprox_MyGradientbisOfTheComputeLineOfApprox_0.cxx + BRepApprox_MyGradientOfTheComputeLineBezierOfApprox.hxx + BRepApprox_MyGradientOfTheComputeLineBezierOfApprox_0.cxx + BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox.hxx + BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox_0.cxx + BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox.hxx + BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox_0.cxx + BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox.hxx + BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox_0.cxx + BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox.hxx + BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox_0.cxx + BRepApprox_ResConstraintOfMyGradientbisOfTheComputeLineOfApprox.hxx + BRepApprox_ResConstraintOfMyGradientbisOfTheComputeLineOfApprox_0.cxx + BRepApprox_ResConstraintOfMyGradientOfTheComputeLineBezierOfApprox.hxx + BRepApprox_ResConstraintOfMyGradientOfTheComputeLineBezierOfApprox_0.cxx + BRepApprox_SurfaceTool.cxx + BRepApprox_SurfaceTool.hxx + BRepApprox_SurfaceTool.lxx + BRepApprox_TheComputeLineBezierOfApprox.hxx + BRepApprox_TheComputeLineBezierOfApprox_0.cxx + BRepApprox_TheComputeLineOfApprox.hxx + BRepApprox_TheComputeLineOfApprox_0.cxx + BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox.hxx + BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox_0.cxx + BRepApprox_TheImpPrmSvSurfacesOfApprox.hxx + BRepApprox_TheImpPrmSvSurfacesOfApprox_0.cxx + BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox.hxx + BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox_0.cxx + BRepApprox_TheMultiLineOfApprox.hxx + BRepApprox_TheMultiLineOfApprox_0.cxx + BRepApprox_TheMultiLineToolOfApprox.hxx + BRepApprox_ThePrmPrmSvSurfacesOfApprox.hxx + BRepApprox_ThePrmPrmSvSurfacesOfApprox_0.cxx + BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox.hxx + BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox_0.cxx +) diff --git a/src/BRepBndLib/BRepBndLib.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBndLib/BRepBndLib.cxx similarity index 100% rename from src/BRepBndLib/BRepBndLib.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBndLib/BRepBndLib.cxx diff --git a/src/BRepBndLib/BRepBndLib.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBndLib/BRepBndLib.hxx similarity index 100% rename from src/BRepBndLib/BRepBndLib.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBndLib/BRepBndLib.hxx diff --git a/src/BRepBndLib/BRepBndLib_1.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBndLib/BRepBndLib_1.cxx similarity index 100% rename from src/BRepBndLib/BRepBndLib_1.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBndLib/BRepBndLib_1.cxx diff --git a/src/ModelingAlgorithms/TKTopAlgo/BRepBndLib/FILES.cmake b/src/ModelingAlgorithms/TKTopAlgo/BRepBndLib/FILES.cmake new file mode 100644 index 0000000000..374a880be2 --- /dev/null +++ b/src/ModelingAlgorithms/TKTopAlgo/BRepBndLib/FILES.cmake @@ -0,0 +1,8 @@ +# Source files for BRepBndLib package +set(OCCT_BRepBndLib_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepBndLib_FILES + BRepBndLib.cxx + BRepBndLib.hxx + BRepBndLib_1.cxx +) diff --git a/src/BRepBuilderAPI/BRepBuilderAPI.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI.cxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI.cxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_BndBoxTreeSelector.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_BndBoxTreeSelector.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_BndBoxTreeSelector.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_BndBoxTreeSelector.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_CellFilter.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_CellFilter.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_CellFilter.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_CellFilter.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_Collect.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_Collect.cxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_Collect.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_Collect.cxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_Collect.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_Collect.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_Collect.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_Collect.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_Command.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_Command.cxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_Command.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_Command.cxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_Command.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_Command.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_Command.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_Command.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_Copy.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_Copy.cxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_Copy.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_Copy.cxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_Copy.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_Copy.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_Copy.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_Copy.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_EdgeError.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_EdgeError.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_EdgeError.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_EdgeError.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_FaceError.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_FaceError.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_FaceError.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_FaceError.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_FastSewing.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_FastSewing.cxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_FastSewing.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_FastSewing.cxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_FastSewing.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_FastSewing.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_FastSewing.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_FastSewing.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_FindPlane.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_FindPlane.cxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_FindPlane.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_FindPlane.cxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_FindPlane.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_FindPlane.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_FindPlane.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_FindPlane.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_GTransform.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_GTransform.cxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_GTransform.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_GTransform.cxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_GTransform.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_GTransform.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_GTransform.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_GTransform.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakeEdge.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeEdge.cxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_MakeEdge.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeEdge.cxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakeEdge.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeEdge.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_MakeEdge.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeEdge.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakeEdge2d.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeEdge2d.cxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_MakeEdge2d.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeEdge2d.cxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakeEdge2d.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeEdge2d.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_MakeEdge2d.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeEdge2d.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakeFace.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeFace.cxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_MakeFace.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeFace.cxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakeFace.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeFace.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_MakeFace.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeFace.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakePolygon.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakePolygon.cxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_MakePolygon.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakePolygon.cxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakePolygon.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakePolygon.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_MakePolygon.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakePolygon.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakeShape.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeShape.cxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_MakeShape.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeShape.cxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakeShape.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeShape.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_MakeShape.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeShape.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakeShapeOnMesh.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeShapeOnMesh.cxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_MakeShapeOnMesh.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeShapeOnMesh.cxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakeShapeOnMesh.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeShapeOnMesh.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_MakeShapeOnMesh.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeShapeOnMesh.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakeShell.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeShell.cxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_MakeShell.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeShell.cxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakeShell.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeShell.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_MakeShell.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeShell.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakeSolid.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeSolid.cxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_MakeSolid.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeSolid.cxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakeSolid.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeSolid.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_MakeSolid.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeSolid.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakeVertex.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeVertex.cxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_MakeVertex.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeVertex.cxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakeVertex.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeVertex.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_MakeVertex.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeVertex.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakeWire.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeWire.cxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_MakeWire.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeWire.cxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakeWire.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeWire.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_MakeWire.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_MakeWire.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_ModifyShape.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_ModifyShape.cxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_ModifyShape.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_ModifyShape.cxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_ModifyShape.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_ModifyShape.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_ModifyShape.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_ModifyShape.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_NurbsConvert.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_NurbsConvert.cxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_NurbsConvert.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_NurbsConvert.cxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_NurbsConvert.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_NurbsConvert.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_NurbsConvert.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_NurbsConvert.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_PipeError.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_PipeError.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_PipeError.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_PipeError.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_Sewing.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_Sewing.cxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_Sewing.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_Sewing.cxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_Sewing.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_Sewing.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_Sewing.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_Sewing.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_Sewing.lxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_Sewing.lxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_Sewing.lxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_Sewing.lxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_ShapeModification.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_ShapeModification.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_ShapeModification.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_ShapeModification.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_ShellError.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_ShellError.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_ShellError.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_ShellError.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_Transform.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_Transform.cxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_Transform.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_Transform.cxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_Transform.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_Transform.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_Transform.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_Transform.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_TransitionMode.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_TransitionMode.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_TransitionMode.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_TransitionMode.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_VertexInspector.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_VertexInspector.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_VertexInspector.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_VertexInspector.hxx diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_WireError.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_WireError.hxx similarity index 100% rename from src/BRepBuilderAPI/BRepBuilderAPI_WireError.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/BRepBuilderAPI_WireError.hxx diff --git a/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/FILES.cmake b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/FILES.cmake new file mode 100644 index 0000000000..e32a41b807 --- /dev/null +++ b/src/ModelingAlgorithms/TKTopAlgo/BRepBuilderAPI/FILES.cmake @@ -0,0 +1,58 @@ +# Source files for BRepBuilderAPI package +set(OCCT_BRepBuilderAPI_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepBuilderAPI_FILES + BRepBuilderAPI.cxx + BRepBuilderAPI.hxx + BRepBuilderAPI_BndBoxTreeSelector.hxx + BRepBuilderAPI_CellFilter.hxx + BRepBuilderAPI_Collect.cxx + BRepBuilderAPI_Collect.hxx + BRepBuilderAPI_Command.cxx + BRepBuilderAPI_Command.hxx + BRepBuilderAPI_Copy.cxx + BRepBuilderAPI_Copy.hxx + BRepBuilderAPI_EdgeError.hxx + BRepBuilderAPI_FaceError.hxx + BRepBuilderAPI_FastSewing.cxx + BRepBuilderAPI_FastSewing.hxx + BRepBuilderAPI_FindPlane.cxx + BRepBuilderAPI_FindPlane.hxx + BRepBuilderAPI_GTransform.cxx + BRepBuilderAPI_GTransform.hxx + BRepBuilderAPI_MakeEdge.cxx + BRepBuilderAPI_MakeEdge.hxx + BRepBuilderAPI_MakeEdge2d.cxx + BRepBuilderAPI_MakeEdge2d.hxx + BRepBuilderAPI_MakeFace.cxx + BRepBuilderAPI_MakeFace.hxx + BRepBuilderAPI_MakePolygon.cxx + BRepBuilderAPI_MakePolygon.hxx + BRepBuilderAPI_MakeShape.cxx + BRepBuilderAPI_MakeShape.hxx + BRepBuilderAPI_MakeShapeOnMesh.cxx + BRepBuilderAPI_MakeShapeOnMesh.hxx + BRepBuilderAPI_MakeShell.cxx + BRepBuilderAPI_MakeShell.hxx + BRepBuilderAPI_MakeSolid.cxx + BRepBuilderAPI_MakeSolid.hxx + BRepBuilderAPI_MakeVertex.cxx + BRepBuilderAPI_MakeVertex.hxx + BRepBuilderAPI_MakeWire.cxx + BRepBuilderAPI_MakeWire.hxx + BRepBuilderAPI_ModifyShape.cxx + BRepBuilderAPI_ModifyShape.hxx + BRepBuilderAPI_NurbsConvert.cxx + BRepBuilderAPI_NurbsConvert.hxx + BRepBuilderAPI_PipeError.hxx + BRepBuilderAPI_Sewing.cxx + BRepBuilderAPI_Sewing.hxx + BRepBuilderAPI_Sewing.lxx + BRepBuilderAPI_ShapeModification.hxx + BRepBuilderAPI_ShellError.hxx + BRepBuilderAPI_Transform.cxx + BRepBuilderAPI_Transform.hxx + BRepBuilderAPI_TransitionMode.hxx + BRepBuilderAPI_VertexInspector.hxx + BRepBuilderAPI_WireError.hxx +) diff --git a/src/BRepCheck/BRepCheck.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck.cxx similarity index 100% rename from src/BRepCheck/BRepCheck.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck.cxx diff --git a/src/BRepCheck/BRepCheck.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck.hxx similarity index 100% rename from src/BRepCheck/BRepCheck.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck.hxx diff --git a/src/BRepCheck/BRepCheck_Analyzer.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Analyzer.cxx similarity index 100% rename from src/BRepCheck/BRepCheck_Analyzer.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Analyzer.cxx diff --git a/src/BRepCheck/BRepCheck_Analyzer.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Analyzer.hxx similarity index 100% rename from src/BRepCheck/BRepCheck_Analyzer.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Analyzer.hxx diff --git a/src/BRepCheck/BRepCheck_DataMapOfShapeListOfStatus.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_DataMapOfShapeListOfStatus.hxx similarity index 100% rename from src/BRepCheck/BRepCheck_DataMapOfShapeListOfStatus.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_DataMapOfShapeListOfStatus.hxx diff --git a/src/BRepCheck/BRepCheck_Edge.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Edge.cxx similarity index 100% rename from src/BRepCheck/BRepCheck_Edge.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Edge.cxx diff --git a/src/BRepCheck/BRepCheck_Edge.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Edge.hxx similarity index 100% rename from src/BRepCheck/BRepCheck_Edge.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Edge.hxx diff --git a/src/BRepCheck/BRepCheck_Face.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Face.cxx similarity index 100% rename from src/BRepCheck/BRepCheck_Face.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Face.cxx diff --git a/src/BRepCheck/BRepCheck_Face.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Face.hxx similarity index 100% rename from src/BRepCheck/BRepCheck_Face.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Face.hxx diff --git a/src/BRepCheck/BRepCheck_IndexedDataMapOfShapeResult.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_IndexedDataMapOfShapeResult.hxx similarity index 100% rename from src/BRepCheck/BRepCheck_IndexedDataMapOfShapeResult.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_IndexedDataMapOfShapeResult.hxx diff --git a/src/BRepCheck/BRepCheck_ListIteratorOfListOfStatus.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_ListIteratorOfListOfStatus.hxx similarity index 100% rename from src/BRepCheck/BRepCheck_ListIteratorOfListOfStatus.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_ListIteratorOfListOfStatus.hxx diff --git a/src/BRepCheck/BRepCheck_ListOfStatus.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_ListOfStatus.hxx similarity index 100% rename from src/BRepCheck/BRepCheck_ListOfStatus.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_ListOfStatus.hxx diff --git a/src/BRepCheck/BRepCheck_Result.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Result.cxx similarity index 100% rename from src/BRepCheck/BRepCheck_Result.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Result.cxx diff --git a/src/BRepCheck/BRepCheck_Result.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Result.hxx similarity index 100% rename from src/BRepCheck/BRepCheck_Result.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Result.hxx diff --git a/src/BRepCheck/BRepCheck_Shell.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Shell.cxx similarity index 100% rename from src/BRepCheck/BRepCheck_Shell.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Shell.cxx diff --git a/src/BRepCheck/BRepCheck_Shell.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Shell.hxx similarity index 100% rename from src/BRepCheck/BRepCheck_Shell.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Shell.hxx diff --git a/src/BRepCheck/BRepCheck_Solid.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Solid.cxx similarity index 100% rename from src/BRepCheck/BRepCheck_Solid.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Solid.cxx diff --git a/src/BRepCheck/BRepCheck_Solid.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Solid.hxx similarity index 100% rename from src/BRepCheck/BRepCheck_Solid.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Solid.hxx diff --git a/src/BRepCheck/BRepCheck_Status.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Status.hxx similarity index 100% rename from src/BRepCheck/BRepCheck_Status.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Status.hxx diff --git a/src/BRepCheck/BRepCheck_Vertex.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Vertex.cxx similarity index 100% rename from src/BRepCheck/BRepCheck_Vertex.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Vertex.cxx diff --git a/src/BRepCheck/BRepCheck_Vertex.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Vertex.hxx similarity index 100% rename from src/BRepCheck/BRepCheck_Vertex.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Vertex.hxx diff --git a/src/BRepCheck/BRepCheck_Wire.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Wire.cxx similarity index 100% rename from src/BRepCheck/BRepCheck_Wire.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Wire.cxx diff --git a/src/BRepCheck/BRepCheck_Wire.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Wire.hxx similarity index 100% rename from src/BRepCheck/BRepCheck_Wire.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepCheck/BRepCheck_Wire.hxx diff --git a/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/FILES.cmake b/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/FILES.cmake new file mode 100644 index 0000000000..6ec4f5d303 --- /dev/null +++ b/src/ModelingAlgorithms/TKTopAlgo/BRepCheck/FILES.cmake @@ -0,0 +1,28 @@ +# Source files for BRepCheck package +set(OCCT_BRepCheck_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepCheck_FILES + BRepCheck.cxx + BRepCheck.hxx + BRepCheck_Analyzer.cxx + BRepCheck_Analyzer.hxx + BRepCheck_DataMapOfShapeListOfStatus.hxx + BRepCheck_Edge.cxx + BRepCheck_Edge.hxx + BRepCheck_Face.cxx + BRepCheck_Face.hxx + BRepCheck_IndexedDataMapOfShapeResult.hxx + BRepCheck_ListIteratorOfListOfStatus.hxx + BRepCheck_ListOfStatus.hxx + BRepCheck_Result.cxx + BRepCheck_Result.hxx + BRepCheck_Shell.cxx + BRepCheck_Shell.hxx + BRepCheck_Solid.cxx + BRepCheck_Solid.hxx + BRepCheck_Status.hxx + BRepCheck_Vertex.cxx + BRepCheck_Vertex.hxx + BRepCheck_Wire.cxx + BRepCheck_Wire.hxx +) diff --git a/src/BRepClass/BRepClass_Edge.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_Edge.cxx similarity index 100% rename from src/BRepClass/BRepClass_Edge.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_Edge.cxx diff --git a/src/BRepClass/BRepClass_Edge.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_Edge.hxx similarity index 100% rename from src/BRepClass/BRepClass_Edge.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_Edge.hxx diff --git a/src/BRepClass/BRepClass_Edge.lxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_Edge.lxx similarity index 100% rename from src/BRepClass/BRepClass_Edge.lxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_Edge.lxx diff --git a/src/BRepClass/BRepClass_FClass2dOfFClassifier.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_FClass2dOfFClassifier.hxx similarity index 100% rename from src/BRepClass/BRepClass_FClass2dOfFClassifier.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_FClass2dOfFClassifier.hxx diff --git a/src/BRepClass/BRepClass_FClass2dOfFClassifier_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_FClass2dOfFClassifier_0.cxx similarity index 100% rename from src/BRepClass/BRepClass_FClass2dOfFClassifier_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_FClass2dOfFClassifier_0.cxx diff --git a/src/BRepClass/BRepClass_FClassifier.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_FClassifier.hxx similarity index 100% rename from src/BRepClass/BRepClass_FClassifier.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_FClassifier.hxx diff --git a/src/BRepClass/BRepClass_FClassifier_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_FClassifier_0.cxx similarity index 100% rename from src/BRepClass/BRepClass_FClassifier_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_FClassifier_0.cxx diff --git a/src/BRepClass/BRepClass_FaceClassifier.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_FaceClassifier.cxx similarity index 100% rename from src/BRepClass/BRepClass_FaceClassifier.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_FaceClassifier.cxx diff --git a/src/BRepClass/BRepClass_FaceClassifier.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_FaceClassifier.hxx similarity index 100% rename from src/BRepClass/BRepClass_FaceClassifier.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_FaceClassifier.hxx diff --git a/src/BRepClass/BRepClass_FaceExplorer.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_FaceExplorer.cxx similarity index 100% rename from src/BRepClass/BRepClass_FaceExplorer.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_FaceExplorer.cxx diff --git a/src/BRepClass/BRepClass_FaceExplorer.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_FaceExplorer.hxx similarity index 100% rename from src/BRepClass/BRepClass_FaceExplorer.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_FaceExplorer.hxx diff --git a/src/BRepClass/BRepClass_FaceExplorer.lxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_FaceExplorer.lxx similarity index 100% rename from src/BRepClass/BRepClass_FaceExplorer.lxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_FaceExplorer.lxx diff --git a/src/BRepClass/BRepClass_FacePassiveClassifier.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_FacePassiveClassifier.hxx similarity index 100% rename from src/BRepClass/BRepClass_FacePassiveClassifier.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_FacePassiveClassifier.hxx diff --git a/src/BRepClass/BRepClass_FacePassiveClassifier_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_FacePassiveClassifier_0.cxx similarity index 100% rename from src/BRepClass/BRepClass_FacePassiveClassifier_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_FacePassiveClassifier_0.cxx diff --git a/src/BRepClass/BRepClass_Intersector.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_Intersector.cxx similarity index 100% rename from src/BRepClass/BRepClass_Intersector.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_Intersector.cxx diff --git a/src/BRepClass/BRepClass_Intersector.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_Intersector.hxx similarity index 100% rename from src/BRepClass/BRepClass_Intersector.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass/BRepClass_Intersector.hxx diff --git a/src/ModelingAlgorithms/TKTopAlgo/BRepClass/FILES.cmake b/src/ModelingAlgorithms/TKTopAlgo/BRepClass/FILES.cmake new file mode 100644 index 0000000000..ee42412937 --- /dev/null +++ b/src/ModelingAlgorithms/TKTopAlgo/BRepClass/FILES.cmake @@ -0,0 +1,21 @@ +# Source files for BRepClass package +set(OCCT_BRepClass_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepClass_FILES + BRepClass_Edge.cxx + BRepClass_Edge.hxx + BRepClass_Edge.lxx + BRepClass_FaceClassifier.cxx + BRepClass_FaceClassifier.hxx + BRepClass_FaceExplorer.cxx + BRepClass_FaceExplorer.hxx + BRepClass_FaceExplorer.lxx + BRepClass_FacePassiveClassifier.hxx + BRepClass_FacePassiveClassifier_0.cxx + BRepClass_FClass2dOfFClassifier.hxx + BRepClass_FClass2dOfFClassifier_0.cxx + BRepClass_FClassifier.hxx + BRepClass_FClassifier_0.cxx + BRepClass_Intersector.cxx + BRepClass_Intersector.hxx +) diff --git a/src/BRepClass3d/BRepClass3d.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d.cxx similarity index 100% rename from src/BRepClass3d/BRepClass3d.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d.cxx diff --git a/src/BRepClass3d/BRepClass3d.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d.hxx similarity index 100% rename from src/BRepClass3d/BRepClass3d.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d.hxx diff --git a/src/BRepClass3d/BRepClass3d_BndBoxTree.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_BndBoxTree.cxx similarity index 100% rename from src/BRepClass3d/BRepClass3d_BndBoxTree.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_BndBoxTree.cxx diff --git a/src/BRepClass3d/BRepClass3d_BndBoxTree.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_BndBoxTree.hxx similarity index 100% rename from src/BRepClass3d/BRepClass3d_BndBoxTree.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_BndBoxTree.hxx diff --git a/src/BRepClass3d/BRepClass3d_DataMapIteratorOfMapOfInter.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_DataMapIteratorOfMapOfInter.hxx similarity index 100% rename from src/BRepClass3d/BRepClass3d_DataMapIteratorOfMapOfInter.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_DataMapIteratorOfMapOfInter.hxx diff --git a/src/BRepClass3d/BRepClass3d_Intersector3d.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_Intersector3d.cxx similarity index 100% rename from src/BRepClass3d/BRepClass3d_Intersector3d.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_Intersector3d.cxx diff --git a/src/BRepClass3d/BRepClass3d_Intersector3d.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_Intersector3d.hxx similarity index 100% rename from src/BRepClass3d/BRepClass3d_Intersector3d.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_Intersector3d.hxx diff --git a/src/BRepClass3d/BRepClass3d_Intersector3d.lxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_Intersector3d.lxx similarity index 100% rename from src/BRepClass3d/BRepClass3d_Intersector3d.lxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_Intersector3d.lxx diff --git a/src/BRepClass3d/BRepClass3d_MapOfInter.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_MapOfInter.hxx similarity index 100% rename from src/BRepClass3d/BRepClass3d_MapOfInter.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_MapOfInter.hxx diff --git a/src/BRepClass3d/BRepClass3d_SClassifier.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_SClassifier.cxx similarity index 100% rename from src/BRepClass3d/BRepClass3d_SClassifier.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_SClassifier.cxx diff --git a/src/BRepClass3d/BRepClass3d_SClassifier.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_SClassifier.hxx similarity index 100% rename from src/BRepClass3d/BRepClass3d_SClassifier.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_SClassifier.hxx diff --git a/src/BRepClass3d/BRepClass3d_SolidClassifier.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_SolidClassifier.cxx similarity index 100% rename from src/BRepClass3d/BRepClass3d_SolidClassifier.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_SolidClassifier.cxx diff --git a/src/BRepClass3d/BRepClass3d_SolidClassifier.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_SolidClassifier.hxx similarity index 100% rename from src/BRepClass3d/BRepClass3d_SolidClassifier.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_SolidClassifier.hxx diff --git a/src/BRepClass3d/BRepClass3d_SolidExplorer.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_SolidExplorer.cxx similarity index 100% rename from src/BRepClass3d/BRepClass3d_SolidExplorer.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_SolidExplorer.cxx diff --git a/src/BRepClass3d/BRepClass3d_SolidExplorer.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_SolidExplorer.hxx similarity index 100% rename from src/BRepClass3d/BRepClass3d_SolidExplorer.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_SolidExplorer.hxx diff --git a/src/BRepClass3d/BRepClass3d_SolidPassiveClassifier.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_SolidPassiveClassifier.cxx similarity index 100% rename from src/BRepClass3d/BRepClass3d_SolidPassiveClassifier.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_SolidPassiveClassifier.cxx diff --git a/src/BRepClass3d/BRepClass3d_SolidPassiveClassifier.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_SolidPassiveClassifier.hxx similarity index 100% rename from src/BRepClass3d/BRepClass3d_SolidPassiveClassifier.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/BRepClass3d_SolidPassiveClassifier.hxx diff --git a/src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/FILES.cmake b/src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/FILES.cmake new file mode 100644 index 0000000000..7ea39c6200 --- /dev/null +++ b/src/ModelingAlgorithms/TKTopAlgo/BRepClass3d/FILES.cmake @@ -0,0 +1,22 @@ +# Source files for BRepClass3d package +set(OCCT_BRepClass3d_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepClass3d_FILES + BRepClass3d.cxx + BRepClass3d.hxx + BRepClass3d_BndBoxTree.hxx + BRepClass3d_BndBoxTree.cxx + BRepClass3d_DataMapIteratorOfMapOfInter.hxx + BRepClass3d_Intersector3d.cxx + BRepClass3d_Intersector3d.hxx + BRepClass3d_Intersector3d.lxx + BRepClass3d_MapOfInter.hxx + BRepClass3d_SClassifier.cxx + BRepClass3d_SClassifier.hxx + BRepClass3d_SolidClassifier.cxx + BRepClass3d_SolidClassifier.hxx + BRepClass3d_SolidExplorer.cxx + BRepClass3d_SolidExplorer.hxx + BRepClass3d_SolidPassiveClassifier.hxx + BRepClass3d_SolidPassiveClassifier.cxx +) diff --git a/src/BRepExtrema/BRepExtrema_DistShapeShape.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_DistShapeShape.cxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_DistShapeShape.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_DistShapeShape.cxx diff --git a/src/BRepExtrema/BRepExtrema_DistShapeShape.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_DistShapeShape.hxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_DistShapeShape.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_DistShapeShape.hxx diff --git a/src/BRepExtrema/BRepExtrema_DistanceSS.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_DistanceSS.cxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_DistanceSS.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_DistanceSS.cxx diff --git a/src/BRepExtrema/BRepExtrema_DistanceSS.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_DistanceSS.hxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_DistanceSS.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_DistanceSS.hxx diff --git a/src/BRepExtrema/BRepExtrema_ElementFilter.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ElementFilter.hxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_ElementFilter.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ElementFilter.hxx diff --git a/src/BRepExtrema/BRepExtrema_ExtCC.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ExtCC.cxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_ExtCC.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ExtCC.cxx diff --git a/src/BRepExtrema/BRepExtrema_ExtCC.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ExtCC.hxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_ExtCC.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ExtCC.hxx diff --git a/src/BRepExtrema/BRepExtrema_ExtCF.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ExtCF.cxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_ExtCF.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ExtCF.cxx diff --git a/src/BRepExtrema/BRepExtrema_ExtCF.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ExtCF.hxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_ExtCF.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ExtCF.hxx diff --git a/src/BRepExtrema/BRepExtrema_ExtFF.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ExtFF.cxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_ExtFF.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ExtFF.cxx diff --git a/src/BRepExtrema/BRepExtrema_ExtFF.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ExtFF.hxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_ExtFF.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ExtFF.hxx diff --git a/src/BRepExtrema/BRepExtrema_ExtPC.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ExtPC.cxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_ExtPC.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ExtPC.cxx diff --git a/src/BRepExtrema/BRepExtrema_ExtPC.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ExtPC.hxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_ExtPC.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ExtPC.hxx diff --git a/src/BRepExtrema/BRepExtrema_ExtPF.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ExtPF.cxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_ExtPF.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ExtPF.cxx diff --git a/src/BRepExtrema/BRepExtrema_ExtPF.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ExtPF.hxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_ExtPF.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ExtPF.hxx diff --git a/src/BRepExtrema/BRepExtrema_MapOfIntegerPackedMapOfInteger.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_MapOfIntegerPackedMapOfInteger.hxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_MapOfIntegerPackedMapOfInteger.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_MapOfIntegerPackedMapOfInteger.hxx diff --git a/src/BRepExtrema/BRepExtrema_OverlapTool.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_OverlapTool.cxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_OverlapTool.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_OverlapTool.cxx diff --git a/src/BRepExtrema/BRepExtrema_OverlapTool.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_OverlapTool.hxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_OverlapTool.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_OverlapTool.hxx diff --git a/src/BRepExtrema/BRepExtrema_Poly.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_Poly.cxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_Poly.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_Poly.cxx diff --git a/src/BRepExtrema/BRepExtrema_Poly.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_Poly.hxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_Poly.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_Poly.hxx diff --git a/src/BRepExtrema/BRepExtrema_ProximityDistTool.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ProximityDistTool.cxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_ProximityDistTool.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ProximityDistTool.cxx diff --git a/src/BRepExtrema/BRepExtrema_ProximityDistTool.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ProximityDistTool.hxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_ProximityDistTool.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ProximityDistTool.hxx diff --git a/src/BRepExtrema/BRepExtrema_ProximityValueTool.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ProximityValueTool.cxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_ProximityValueTool.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ProximityValueTool.cxx diff --git a/src/BRepExtrema/BRepExtrema_ProximityValueTool.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ProximityValueTool.hxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_ProximityValueTool.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ProximityValueTool.hxx diff --git a/src/BRepExtrema/BRepExtrema_SelfIntersection.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_SelfIntersection.cxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_SelfIntersection.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_SelfIntersection.cxx diff --git a/src/BRepExtrema/BRepExtrema_SelfIntersection.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_SelfIntersection.hxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_SelfIntersection.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_SelfIntersection.hxx diff --git a/src/BRepExtrema/BRepExtrema_SeqOfSolution.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_SeqOfSolution.hxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_SeqOfSolution.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_SeqOfSolution.hxx diff --git a/src/BRepExtrema/BRepExtrema_ShapeProximity.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ShapeProximity.cxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_ShapeProximity.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ShapeProximity.cxx diff --git a/src/BRepExtrema/BRepExtrema_ShapeProximity.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ShapeProximity.hxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_ShapeProximity.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_ShapeProximity.hxx diff --git a/src/BRepExtrema/BRepExtrema_SolutionElem.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_SolutionElem.hxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_SolutionElem.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_SolutionElem.hxx diff --git a/src/BRepExtrema/BRepExtrema_SupportType.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_SupportType.hxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_SupportType.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_SupportType.hxx diff --git a/src/BRepExtrema/BRepExtrema_TriangleSet.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_TriangleSet.cxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_TriangleSet.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_TriangleSet.cxx diff --git a/src/BRepExtrema/BRepExtrema_TriangleSet.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_TriangleSet.hxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_TriangleSet.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_TriangleSet.hxx diff --git a/src/BRepExtrema/BRepExtrema_UnCompatibleShape.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_UnCompatibleShape.hxx similarity index 100% rename from src/BRepExtrema/BRepExtrema_UnCompatibleShape.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/BRepExtrema_UnCompatibleShape.hxx diff --git a/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/FILES.cmake b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/FILES.cmake new file mode 100644 index 0000000000..ea98496cc9 --- /dev/null +++ b/src/ModelingAlgorithms/TKTopAlgo/BRepExtrema/FILES.cmake @@ -0,0 +1,39 @@ +# Source files for BRepExtrema package +set(OCCT_BRepExtrema_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepExtrema_FILES + BRepExtrema_DistanceSS.cxx + BRepExtrema_DistanceSS.hxx + BRepExtrema_DistShapeShape.cxx + BRepExtrema_DistShapeShape.hxx + BRepExtrema_ElementFilter.hxx + BRepExtrema_ExtCC.cxx + BRepExtrema_ExtCC.hxx + BRepExtrema_ExtCF.cxx + BRepExtrema_ExtCF.hxx + BRepExtrema_ExtFF.cxx + BRepExtrema_ExtFF.hxx + BRepExtrema_ExtPC.cxx + BRepExtrema_ExtPC.hxx + BRepExtrema_ExtPF.cxx + BRepExtrema_ExtPF.hxx + BRepExtrema_MapOfIntegerPackedMapOfInteger.hxx + BRepExtrema_OverlapTool.cxx + BRepExtrema_OverlapTool.hxx + BRepExtrema_Poly.cxx + BRepExtrema_Poly.hxx + BRepExtrema_ProximityValueTool.cxx + BRepExtrema_ProximityValueTool.hxx + BRepExtrema_ProximityDistTool.cxx + BRepExtrema_ProximityDistTool.hxx + BRepExtrema_SelfIntersection.cxx + BRepExtrema_SelfIntersection.hxx + BRepExtrema_SeqOfSolution.hxx + BRepExtrema_ShapeProximity.cxx + BRepExtrema_ShapeProximity.hxx + BRepExtrema_SolutionElem.hxx + BRepExtrema_SupportType.hxx + BRepExtrema_TriangleSet.cxx + BRepExtrema_TriangleSet.hxx + BRepExtrema_UnCompatibleShape.hxx +) diff --git a/src/BRepGProp/BRepGProp.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp.cxx similarity index 100% rename from src/BRepGProp/BRepGProp.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp.cxx diff --git a/src/BRepGProp/BRepGProp.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp.hxx similarity index 100% rename from src/BRepGProp/BRepGProp.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp.hxx diff --git a/src/BRepGProp/BRepGProp_Cinert.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Cinert.cxx similarity index 100% rename from src/BRepGProp/BRepGProp_Cinert.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Cinert.cxx diff --git a/src/BRepGProp/BRepGProp_Cinert.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Cinert.hxx similarity index 100% rename from src/BRepGProp/BRepGProp_Cinert.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Cinert.hxx diff --git a/src/BRepGProp/BRepGProp_Domain.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Domain.cxx similarity index 100% rename from src/BRepGProp/BRepGProp_Domain.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Domain.cxx diff --git a/src/BRepGProp/BRepGProp_Domain.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Domain.hxx similarity index 100% rename from src/BRepGProp/BRepGProp_Domain.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Domain.hxx diff --git a/src/BRepGProp/BRepGProp_Domain.lxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Domain.lxx similarity index 100% rename from src/BRepGProp/BRepGProp_Domain.lxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Domain.lxx diff --git a/src/BRepGProp/BRepGProp_EdgeTool.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_EdgeTool.cxx similarity index 100% rename from src/BRepGProp/BRepGProp_EdgeTool.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_EdgeTool.cxx diff --git a/src/BRepGProp/BRepGProp_EdgeTool.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_EdgeTool.hxx similarity index 100% rename from src/BRepGProp/BRepGProp_EdgeTool.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_EdgeTool.hxx diff --git a/src/BRepGProp/BRepGProp_Face.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Face.cxx similarity index 100% rename from src/BRepGProp/BRepGProp_Face.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Face.cxx diff --git a/src/BRepGProp/BRepGProp_Face.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Face.hxx similarity index 100% rename from src/BRepGProp/BRepGProp_Face.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Face.hxx diff --git a/src/BRepGProp/BRepGProp_Face.lxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Face.lxx similarity index 100% rename from src/BRepGProp/BRepGProp_Face.lxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Face.lxx diff --git a/src/BRepGProp/BRepGProp_Gauss.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Gauss.cxx similarity index 100% rename from src/BRepGProp/BRepGProp_Gauss.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Gauss.cxx diff --git a/src/BRepGProp/BRepGProp_Gauss.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Gauss.hxx similarity index 100% rename from src/BRepGProp/BRepGProp_Gauss.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Gauss.hxx diff --git a/src/BRepGProp/BRepGProp_MeshCinert.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_MeshCinert.cxx similarity index 100% rename from src/BRepGProp/BRepGProp_MeshCinert.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_MeshCinert.cxx diff --git a/src/BRepGProp/BRepGProp_MeshCinert.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_MeshCinert.hxx similarity index 100% rename from src/BRepGProp/BRepGProp_MeshCinert.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_MeshCinert.hxx diff --git a/src/BRepGProp/BRepGProp_MeshProps.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_MeshProps.cxx similarity index 100% rename from src/BRepGProp/BRepGProp_MeshProps.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_MeshProps.cxx diff --git a/src/BRepGProp/BRepGProp_MeshProps.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_MeshProps.hxx similarity index 100% rename from src/BRepGProp/BRepGProp_MeshProps.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_MeshProps.hxx diff --git a/src/BRepGProp/BRepGProp_Sinert.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Sinert.cxx similarity index 100% rename from src/BRepGProp/BRepGProp_Sinert.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Sinert.cxx diff --git a/src/BRepGProp/BRepGProp_Sinert.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Sinert.hxx similarity index 100% rename from src/BRepGProp/BRepGProp_Sinert.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Sinert.hxx diff --git a/src/BRepGProp/BRepGProp_TFunction.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_TFunction.cxx similarity index 100% rename from src/BRepGProp/BRepGProp_TFunction.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_TFunction.cxx diff --git a/src/BRepGProp/BRepGProp_TFunction.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_TFunction.hxx similarity index 100% rename from src/BRepGProp/BRepGProp_TFunction.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_TFunction.hxx diff --git a/src/BRepGProp/BRepGProp_TFunction.lxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_TFunction.lxx similarity index 100% rename from src/BRepGProp/BRepGProp_TFunction.lxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_TFunction.lxx diff --git a/src/BRepGProp/BRepGProp_UFunction.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_UFunction.cxx similarity index 100% rename from src/BRepGProp/BRepGProp_UFunction.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_UFunction.cxx diff --git a/src/BRepGProp/BRepGProp_UFunction.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_UFunction.hxx similarity index 100% rename from src/BRepGProp/BRepGProp_UFunction.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_UFunction.hxx diff --git a/src/BRepGProp/BRepGProp_UFunction.lxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_UFunction.lxx similarity index 100% rename from src/BRepGProp/BRepGProp_UFunction.lxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_UFunction.lxx diff --git a/src/BRepGProp/BRepGProp_Vinert.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Vinert.cxx similarity index 100% rename from src/BRepGProp/BRepGProp_Vinert.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Vinert.cxx diff --git a/src/BRepGProp/BRepGProp_Vinert.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Vinert.hxx similarity index 100% rename from src/BRepGProp/BRepGProp_Vinert.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_Vinert.hxx diff --git a/src/BRepGProp/BRepGProp_VinertGK.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_VinertGK.cxx similarity index 100% rename from src/BRepGProp/BRepGProp_VinertGK.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_VinertGK.cxx diff --git a/src/BRepGProp/BRepGProp_VinertGK.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_VinertGK.hxx similarity index 100% rename from src/BRepGProp/BRepGProp_VinertGK.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepGProp/BRepGProp_VinertGK.hxx diff --git a/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/FILES.cmake b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/FILES.cmake new file mode 100644 index 0000000000..0ca904c6fa --- /dev/null +++ b/src/ModelingAlgorithms/TKTopAlgo/BRepGProp/FILES.cmake @@ -0,0 +1,35 @@ +# Source files for BRepGProp package +set(OCCT_BRepGProp_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepGProp_FILES + BRepGProp.cxx + BRepGProp.hxx + BRepGProp_Cinert.cxx + BRepGProp_Cinert.hxx + BRepGProp_Domain.cxx + BRepGProp_Domain.hxx + BRepGProp_Domain.lxx + BRepGProp_EdgeTool.cxx + BRepGProp_EdgeTool.hxx + BRepGProp_Face.cxx + BRepGProp_Face.hxx + BRepGProp_Face.lxx + BRepGProp_Gauss.cxx + BRepGProp_Gauss.hxx + BRepGProp_Sinert.cxx + BRepGProp_Sinert.hxx + BRepGProp_TFunction.cxx + BRepGProp_TFunction.hxx + BRepGProp_TFunction.lxx + BRepGProp_UFunction.cxx + BRepGProp_UFunction.hxx + BRepGProp_UFunction.lxx + BRepGProp_Vinert.cxx + BRepGProp_Vinert.hxx + BRepGProp_VinertGK.cxx + BRepGProp_VinertGK.hxx + BRepGProp_MeshCinert.hxx + BRepGProp_MeshCinert.cxx + BRepGProp_MeshProps.hxx + BRepGProp_MeshProps.cxx +) diff --git a/src/BRepIntCurveSurface/BRepIntCurveSurface_Inter.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepIntCurveSurface/BRepIntCurveSurface_Inter.cxx similarity index 100% rename from src/BRepIntCurveSurface/BRepIntCurveSurface_Inter.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepIntCurveSurface/BRepIntCurveSurface_Inter.cxx diff --git a/src/BRepIntCurveSurface/BRepIntCurveSurface_Inter.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepIntCurveSurface/BRepIntCurveSurface_Inter.hxx similarity index 100% rename from src/BRepIntCurveSurface/BRepIntCurveSurface_Inter.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepIntCurveSurface/BRepIntCurveSurface_Inter.hxx diff --git a/src/ModelingAlgorithms/TKTopAlgo/BRepIntCurveSurface/FILES.cmake b/src/ModelingAlgorithms/TKTopAlgo/BRepIntCurveSurface/FILES.cmake new file mode 100644 index 0000000000..acdd052c24 --- /dev/null +++ b/src/ModelingAlgorithms/TKTopAlgo/BRepIntCurveSurface/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for BRepIntCurveSurface package +set(OCCT_BRepIntCurveSurface_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepIntCurveSurface_FILES + BRepIntCurveSurface_Inter.cxx + BRepIntCurveSurface_Inter.hxx +) diff --git a/src/BRepLib/BRepLib.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib.cxx similarity index 100% rename from src/BRepLib/BRepLib.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib.cxx diff --git a/src/BRepLib/BRepLib.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib.hxx similarity index 100% rename from src/BRepLib/BRepLib.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib.hxx diff --git a/src/BRepLib/BRepLib_1.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_1.cxx similarity index 100% rename from src/BRepLib/BRepLib_1.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_1.cxx diff --git a/src/BRepLib/BRepLib_CheckCurveOnSurface.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_CheckCurveOnSurface.cxx similarity index 100% rename from src/BRepLib/BRepLib_CheckCurveOnSurface.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_CheckCurveOnSurface.cxx diff --git a/src/BRepLib/BRepLib_CheckCurveOnSurface.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_CheckCurveOnSurface.hxx similarity index 100% rename from src/BRepLib/BRepLib_CheckCurveOnSurface.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_CheckCurveOnSurface.hxx diff --git a/src/BRepLib/BRepLib_Command.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_Command.cxx similarity index 100% rename from src/BRepLib/BRepLib_Command.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_Command.cxx diff --git a/src/BRepLib/BRepLib_Command.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_Command.hxx similarity index 100% rename from src/BRepLib/BRepLib_Command.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_Command.hxx diff --git a/src/BRepLib/BRepLib_EdgeError.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_EdgeError.hxx similarity index 100% rename from src/BRepLib/BRepLib_EdgeError.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_EdgeError.hxx diff --git a/src/BRepLib/BRepLib_FaceError.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_FaceError.hxx similarity index 100% rename from src/BRepLib/BRepLib_FaceError.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_FaceError.hxx diff --git a/src/BRepLib/BRepLib_FindSurface.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_FindSurface.cxx similarity index 100% rename from src/BRepLib/BRepLib_FindSurface.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_FindSurface.cxx diff --git a/src/BRepLib/BRepLib_FindSurface.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_FindSurface.hxx similarity index 100% rename from src/BRepLib/BRepLib_FindSurface.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_FindSurface.hxx diff --git a/src/BRepLib/BRepLib_FuseEdges.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_FuseEdges.cxx similarity index 100% rename from src/BRepLib/BRepLib_FuseEdges.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_FuseEdges.cxx diff --git a/src/BRepLib/BRepLib_FuseEdges.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_FuseEdges.hxx similarity index 100% rename from src/BRepLib/BRepLib_FuseEdges.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_FuseEdges.hxx diff --git a/src/BRepLib/BRepLib_MakeEdge.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeEdge.cxx similarity index 100% rename from src/BRepLib/BRepLib_MakeEdge.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeEdge.cxx diff --git a/src/BRepLib/BRepLib_MakeEdge.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeEdge.hxx similarity index 100% rename from src/BRepLib/BRepLib_MakeEdge.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeEdge.hxx diff --git a/src/BRepLib/BRepLib_MakeEdge2d.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeEdge2d.cxx similarity index 100% rename from src/BRepLib/BRepLib_MakeEdge2d.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeEdge2d.cxx diff --git a/src/BRepLib/BRepLib_MakeEdge2d.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeEdge2d.hxx similarity index 100% rename from src/BRepLib/BRepLib_MakeEdge2d.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeEdge2d.hxx diff --git a/src/BRepLib/BRepLib_MakeFace.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeFace.cxx similarity index 100% rename from src/BRepLib/BRepLib_MakeFace.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeFace.cxx diff --git a/src/BRepLib/BRepLib_MakeFace.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeFace.hxx similarity index 100% rename from src/BRepLib/BRepLib_MakeFace.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeFace.hxx diff --git a/src/BRepLib/BRepLib_MakePolygon.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakePolygon.cxx similarity index 100% rename from src/BRepLib/BRepLib_MakePolygon.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakePolygon.cxx diff --git a/src/BRepLib/BRepLib_MakePolygon.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakePolygon.hxx similarity index 100% rename from src/BRepLib/BRepLib_MakePolygon.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakePolygon.hxx diff --git a/src/BRepLib/BRepLib_MakeShape.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeShape.cxx similarity index 100% rename from src/BRepLib/BRepLib_MakeShape.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeShape.cxx diff --git a/src/BRepLib/BRepLib_MakeShape.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeShape.hxx similarity index 100% rename from src/BRepLib/BRepLib_MakeShape.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeShape.hxx diff --git a/src/BRepLib/BRepLib_MakeShell.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeShell.cxx similarity index 100% rename from src/BRepLib/BRepLib_MakeShell.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeShell.cxx diff --git a/src/BRepLib/BRepLib_MakeShell.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeShell.hxx similarity index 100% rename from src/BRepLib/BRepLib_MakeShell.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeShell.hxx diff --git a/src/BRepLib/BRepLib_MakeSolid.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeSolid.cxx similarity index 100% rename from src/BRepLib/BRepLib_MakeSolid.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeSolid.cxx diff --git a/src/BRepLib/BRepLib_MakeSolid.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeSolid.hxx similarity index 100% rename from src/BRepLib/BRepLib_MakeSolid.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeSolid.hxx diff --git a/src/BRepLib/BRepLib_MakeVertex.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeVertex.cxx similarity index 100% rename from src/BRepLib/BRepLib_MakeVertex.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeVertex.cxx diff --git a/src/BRepLib/BRepLib_MakeVertex.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeVertex.hxx similarity index 100% rename from src/BRepLib/BRepLib_MakeVertex.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeVertex.hxx diff --git a/src/BRepLib/BRepLib_MakeWire.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeWire.cxx similarity index 100% rename from src/BRepLib/BRepLib_MakeWire.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeWire.cxx diff --git a/src/BRepLib/BRepLib_MakeWire.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeWire.hxx similarity index 100% rename from src/BRepLib/BRepLib_MakeWire.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeWire.hxx diff --git a/src/BRepLib/BRepLib_MakeWire_1.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeWire_1.cxx similarity index 100% rename from src/BRepLib/BRepLib_MakeWire_1.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_MakeWire_1.cxx diff --git a/src/BRepLib/BRepLib_PointCloudShape.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_PointCloudShape.cxx similarity index 100% rename from src/BRepLib/BRepLib_PointCloudShape.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_PointCloudShape.cxx diff --git a/src/BRepLib/BRepLib_PointCloudShape.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_PointCloudShape.hxx similarity index 100% rename from src/BRepLib/BRepLib_PointCloudShape.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_PointCloudShape.hxx diff --git a/src/BRepLib/BRepLib_ShapeModification.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_ShapeModification.hxx similarity index 100% rename from src/BRepLib/BRepLib_ShapeModification.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_ShapeModification.hxx diff --git a/src/BRepLib/BRepLib_ShellError.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_ShellError.hxx similarity index 100% rename from src/BRepLib/BRepLib_ShellError.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_ShellError.hxx diff --git a/src/BRepLib/BRepLib_ToolTriangulatedShape.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_ToolTriangulatedShape.cxx similarity index 100% rename from src/BRepLib/BRepLib_ToolTriangulatedShape.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_ToolTriangulatedShape.cxx diff --git a/src/BRepLib/BRepLib_ToolTriangulatedShape.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_ToolTriangulatedShape.hxx similarity index 100% rename from src/BRepLib/BRepLib_ToolTriangulatedShape.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_ToolTriangulatedShape.hxx diff --git a/src/BRepLib/BRepLib_ValidateEdge.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_ValidateEdge.cxx similarity index 100% rename from src/BRepLib/BRepLib_ValidateEdge.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_ValidateEdge.cxx diff --git a/src/BRepLib/BRepLib_ValidateEdge.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_ValidateEdge.hxx similarity index 100% rename from src/BRepLib/BRepLib_ValidateEdge.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_ValidateEdge.hxx diff --git a/src/BRepLib/BRepLib_WireError.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_WireError.hxx similarity index 100% rename from src/BRepLib/BRepLib_WireError.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepLib/BRepLib_WireError.hxx diff --git a/src/ModelingAlgorithms/TKTopAlgo/BRepLib/FILES.cmake b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/FILES.cmake new file mode 100644 index 0000000000..05920e1365 --- /dev/null +++ b/src/ModelingAlgorithms/TKTopAlgo/BRepLib/FILES.cmake @@ -0,0 +1,46 @@ +# Source files for BRepLib package +set(OCCT_BRepLib_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepLib_FILES + BRepLib.cxx + BRepLib.hxx + BRepLib_1.cxx + BRepLib_CheckCurveOnSurface.cxx + BRepLib_CheckCurveOnSurface.hxx + BRepLib_Command.cxx + BRepLib_Command.hxx + BRepLib_EdgeError.hxx + BRepLib_FaceError.hxx + BRepLib_FindSurface.cxx + BRepLib_FindSurface.hxx + BRepLib_FuseEdges.cxx + BRepLib_FuseEdges.hxx + BRepLib_MakeEdge.cxx + BRepLib_MakeEdge.hxx + BRepLib_MakeEdge2d.cxx + BRepLib_MakeEdge2d.hxx + BRepLib_MakeFace.cxx + BRepLib_MakeFace.hxx + BRepLib_MakePolygon.cxx + BRepLib_MakePolygon.hxx + BRepLib_MakeShape.cxx + BRepLib_MakeShape.hxx + BRepLib_MakeShell.cxx + BRepLib_MakeShell.hxx + BRepLib_MakeSolid.cxx + BRepLib_MakeSolid.hxx + BRepLib_MakeVertex.cxx + BRepLib_MakeVertex.hxx + BRepLib_MakeWire.cxx + BRepLib_MakeWire.hxx + BRepLib_MakeWire_1.cxx + BRepLib_PointCloudShape.hxx + BRepLib_PointCloudShape.cxx + BRepLib_ShapeModification.hxx + BRepLib_ShellError.hxx + BRepLib_ToolTriangulatedShape.hxx + BRepLib_ToolTriangulatedShape.cxx + BRepLib_ValidateEdge.cxx + BRepLib_ValidateEdge.hxx + BRepLib_WireError.hxx +) diff --git a/src/BRepMAT2d/BRepMAT2d_BisectingLocus.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepMAT2d/BRepMAT2d_BisectingLocus.cxx similarity index 100% rename from src/BRepMAT2d/BRepMAT2d_BisectingLocus.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepMAT2d/BRepMAT2d_BisectingLocus.cxx diff --git a/src/BRepMAT2d/BRepMAT2d_BisectingLocus.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepMAT2d/BRepMAT2d_BisectingLocus.hxx similarity index 100% rename from src/BRepMAT2d/BRepMAT2d_BisectingLocus.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepMAT2d/BRepMAT2d_BisectingLocus.hxx diff --git a/src/BRepMAT2d/BRepMAT2d_DataMapIteratorOfDataMapOfBasicEltShape.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepMAT2d/BRepMAT2d_DataMapIteratorOfDataMapOfBasicEltShape.hxx similarity index 100% rename from src/BRepMAT2d/BRepMAT2d_DataMapIteratorOfDataMapOfBasicEltShape.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepMAT2d/BRepMAT2d_DataMapIteratorOfDataMapOfBasicEltShape.hxx diff --git a/src/BRepMAT2d/BRepMAT2d_DataMapIteratorOfDataMapOfShapeSequenceOfBasicElt.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepMAT2d/BRepMAT2d_DataMapIteratorOfDataMapOfShapeSequenceOfBasicElt.hxx similarity index 100% rename from src/BRepMAT2d/BRepMAT2d_DataMapIteratorOfDataMapOfShapeSequenceOfBasicElt.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepMAT2d/BRepMAT2d_DataMapIteratorOfDataMapOfShapeSequenceOfBasicElt.hxx diff --git a/src/BRepMAT2d/BRepMAT2d_DataMapOfBasicEltShape.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepMAT2d/BRepMAT2d_DataMapOfBasicEltShape.hxx similarity index 100% rename from src/BRepMAT2d/BRepMAT2d_DataMapOfBasicEltShape.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepMAT2d/BRepMAT2d_DataMapOfBasicEltShape.hxx diff --git a/src/BRepMAT2d/BRepMAT2d_DataMapOfShapeSequenceOfBasicElt.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepMAT2d/BRepMAT2d_DataMapOfShapeSequenceOfBasicElt.hxx similarity index 100% rename from src/BRepMAT2d/BRepMAT2d_DataMapOfShapeSequenceOfBasicElt.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepMAT2d/BRepMAT2d_DataMapOfShapeSequenceOfBasicElt.hxx diff --git a/src/BRepMAT2d/BRepMAT2d_Explorer.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepMAT2d/BRepMAT2d_Explorer.cxx similarity index 100% rename from src/BRepMAT2d/BRepMAT2d_Explorer.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepMAT2d/BRepMAT2d_Explorer.cxx diff --git a/src/BRepMAT2d/BRepMAT2d_Explorer.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepMAT2d/BRepMAT2d_Explorer.hxx similarity index 100% rename from src/BRepMAT2d/BRepMAT2d_Explorer.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepMAT2d/BRepMAT2d_Explorer.hxx diff --git a/src/BRepMAT2d/BRepMAT2d_LinkTopoBilo.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepMAT2d/BRepMAT2d_LinkTopoBilo.cxx similarity index 100% rename from src/BRepMAT2d/BRepMAT2d_LinkTopoBilo.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepMAT2d/BRepMAT2d_LinkTopoBilo.cxx diff --git a/src/BRepMAT2d/BRepMAT2d_LinkTopoBilo.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepMAT2d/BRepMAT2d_LinkTopoBilo.hxx similarity index 100% rename from src/BRepMAT2d/BRepMAT2d_LinkTopoBilo.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepMAT2d/BRepMAT2d_LinkTopoBilo.hxx diff --git a/src/ModelingAlgorithms/TKTopAlgo/BRepMAT2d/FILES.cmake b/src/ModelingAlgorithms/TKTopAlgo/BRepMAT2d/FILES.cmake new file mode 100644 index 0000000000..3622b720ef --- /dev/null +++ b/src/ModelingAlgorithms/TKTopAlgo/BRepMAT2d/FILES.cmake @@ -0,0 +1,15 @@ +# Source files for BRepMAT2d package +set(OCCT_BRepMAT2d_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepMAT2d_FILES + BRepMAT2d_BisectingLocus.cxx + BRepMAT2d_BisectingLocus.hxx + BRepMAT2d_DataMapIteratorOfDataMapOfBasicEltShape.hxx + BRepMAT2d_DataMapIteratorOfDataMapOfShapeSequenceOfBasicElt.hxx + BRepMAT2d_DataMapOfBasicEltShape.hxx + BRepMAT2d_DataMapOfShapeSequenceOfBasicElt.hxx + BRepMAT2d_Explorer.cxx + BRepMAT2d_Explorer.hxx + BRepMAT2d_LinkTopoBilo.cxx + BRepMAT2d_LinkTopoBilo.hxx +) diff --git a/src/BRepTopAdaptor/BRepTopAdaptor_DataMapIteratorOfMapOfShapeTool.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/BRepTopAdaptor_DataMapIteratorOfMapOfShapeTool.hxx similarity index 100% rename from src/BRepTopAdaptor/BRepTopAdaptor_DataMapIteratorOfMapOfShapeTool.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/BRepTopAdaptor_DataMapIteratorOfMapOfShapeTool.hxx diff --git a/src/BRepTopAdaptor/BRepTopAdaptor_FClass2d.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/BRepTopAdaptor_FClass2d.cxx similarity index 100% rename from src/BRepTopAdaptor/BRepTopAdaptor_FClass2d.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/BRepTopAdaptor_FClass2d.cxx diff --git a/src/BRepTopAdaptor/BRepTopAdaptor_FClass2d.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/BRepTopAdaptor_FClass2d.hxx similarity index 100% rename from src/BRepTopAdaptor/BRepTopAdaptor_FClass2d.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/BRepTopAdaptor_FClass2d.hxx diff --git a/src/BRepTopAdaptor/BRepTopAdaptor_HVertex.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/BRepTopAdaptor_HVertex.cxx similarity index 100% rename from src/BRepTopAdaptor/BRepTopAdaptor_HVertex.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/BRepTopAdaptor_HVertex.cxx diff --git a/src/BRepTopAdaptor/BRepTopAdaptor_HVertex.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/BRepTopAdaptor_HVertex.hxx similarity index 100% rename from src/BRepTopAdaptor/BRepTopAdaptor_HVertex.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/BRepTopAdaptor_HVertex.hxx diff --git a/src/BRepTopAdaptor/BRepTopAdaptor_HVertex.lxx b/src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/BRepTopAdaptor_HVertex.lxx similarity index 100% rename from src/BRepTopAdaptor/BRepTopAdaptor_HVertex.lxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/BRepTopAdaptor_HVertex.lxx diff --git a/src/BRepTopAdaptor/BRepTopAdaptor_MapOfShapeTool.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/BRepTopAdaptor_MapOfShapeTool.hxx similarity index 100% rename from src/BRepTopAdaptor/BRepTopAdaptor_MapOfShapeTool.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/BRepTopAdaptor_MapOfShapeTool.hxx diff --git a/src/BRepTopAdaptor/BRepTopAdaptor_SeqOfPtr.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/BRepTopAdaptor_SeqOfPtr.hxx similarity index 100% rename from src/BRepTopAdaptor/BRepTopAdaptor_SeqOfPtr.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/BRepTopAdaptor_SeqOfPtr.hxx diff --git a/src/BRepTopAdaptor/BRepTopAdaptor_Tool.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/BRepTopAdaptor_Tool.cxx similarity index 100% rename from src/BRepTopAdaptor/BRepTopAdaptor_Tool.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/BRepTopAdaptor_Tool.cxx diff --git a/src/BRepTopAdaptor/BRepTopAdaptor_Tool.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/BRepTopAdaptor_Tool.hxx similarity index 100% rename from src/BRepTopAdaptor/BRepTopAdaptor_Tool.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/BRepTopAdaptor_Tool.hxx diff --git a/src/BRepTopAdaptor/BRepTopAdaptor_TopolTool.cxx b/src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/BRepTopAdaptor_TopolTool.cxx similarity index 100% rename from src/BRepTopAdaptor/BRepTopAdaptor_TopolTool.cxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/BRepTopAdaptor_TopolTool.cxx diff --git a/src/BRepTopAdaptor/BRepTopAdaptor_TopolTool.hxx b/src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/BRepTopAdaptor_TopolTool.hxx similarity index 100% rename from src/BRepTopAdaptor/BRepTopAdaptor_TopolTool.hxx rename to src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/BRepTopAdaptor_TopolTool.hxx diff --git a/src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/FILES.cmake b/src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/FILES.cmake new file mode 100644 index 0000000000..a017127a25 --- /dev/null +++ b/src/ModelingAlgorithms/TKTopAlgo/BRepTopAdaptor/FILES.cmake @@ -0,0 +1,17 @@ +# Source files for BRepTopAdaptor package +set(OCCT_BRepTopAdaptor_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepTopAdaptor_FILES + BRepTopAdaptor_DataMapIteratorOfMapOfShapeTool.hxx + BRepTopAdaptor_FClass2d.cxx + BRepTopAdaptor_FClass2d.hxx + BRepTopAdaptor_HVertex.cxx + BRepTopAdaptor_HVertex.hxx + BRepTopAdaptor_HVertex.lxx + BRepTopAdaptor_MapOfShapeTool.hxx + BRepTopAdaptor_SeqOfPtr.hxx + BRepTopAdaptor_Tool.cxx + BRepTopAdaptor_Tool.hxx + BRepTopAdaptor_TopolTool.cxx + BRepTopAdaptor_TopolTool.hxx +) diff --git a/src/Bisector/Bisector.cxx b/src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector.cxx similarity index 100% rename from src/Bisector/Bisector.cxx rename to src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector.cxx diff --git a/src/Bisector/Bisector.hxx b/src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector.hxx similarity index 100% rename from src/Bisector/Bisector.hxx rename to src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector.hxx diff --git a/src/Bisector/Bisector_Bisec.cxx b/src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_Bisec.cxx similarity index 100% rename from src/Bisector/Bisector_Bisec.cxx rename to src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_Bisec.cxx diff --git a/src/Bisector/Bisector_Bisec.hxx b/src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_Bisec.hxx similarity index 100% rename from src/Bisector/Bisector_Bisec.hxx rename to src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_Bisec.hxx diff --git a/src/Bisector/Bisector_BisecAna.cxx b/src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_BisecAna.cxx similarity index 100% rename from src/Bisector/Bisector_BisecAna.cxx rename to src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_BisecAna.cxx diff --git a/src/Bisector/Bisector_BisecAna.hxx b/src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_BisecAna.hxx similarity index 100% rename from src/Bisector/Bisector_BisecAna.hxx rename to src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_BisecAna.hxx diff --git a/src/Bisector/Bisector_BisecCC.cxx b/src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_BisecCC.cxx similarity index 100% rename from src/Bisector/Bisector_BisecCC.cxx rename to src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_BisecCC.cxx diff --git a/src/Bisector/Bisector_BisecCC.hxx b/src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_BisecCC.hxx similarity index 100% rename from src/Bisector/Bisector_BisecCC.hxx rename to src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_BisecCC.hxx diff --git a/src/Bisector/Bisector_BisecPC.cxx b/src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_BisecPC.cxx similarity index 100% rename from src/Bisector/Bisector_BisecPC.cxx rename to src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_BisecPC.cxx diff --git a/src/Bisector/Bisector_BisecPC.hxx b/src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_BisecPC.hxx similarity index 100% rename from src/Bisector/Bisector_BisecPC.hxx rename to src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_BisecPC.hxx diff --git a/src/Bisector/Bisector_Curve.cxx b/src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_Curve.cxx similarity index 100% rename from src/Bisector/Bisector_Curve.cxx rename to src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_Curve.cxx diff --git a/src/Bisector/Bisector_Curve.hxx b/src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_Curve.hxx similarity index 100% rename from src/Bisector/Bisector_Curve.hxx rename to src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_Curve.hxx diff --git a/src/Bisector/Bisector_FunctionH.cxx b/src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_FunctionH.cxx similarity index 100% rename from src/Bisector/Bisector_FunctionH.cxx rename to src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_FunctionH.cxx diff --git a/src/Bisector/Bisector_FunctionH.hxx b/src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_FunctionH.hxx similarity index 100% rename from src/Bisector/Bisector_FunctionH.hxx rename to src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_FunctionH.hxx diff --git a/src/Bisector/Bisector_FunctionInter.cxx b/src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_FunctionInter.cxx similarity index 100% rename from src/Bisector/Bisector_FunctionInter.cxx rename to src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_FunctionInter.cxx diff --git a/src/Bisector/Bisector_FunctionInter.hxx b/src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_FunctionInter.hxx similarity index 100% rename from src/Bisector/Bisector_FunctionInter.hxx rename to src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_FunctionInter.hxx diff --git a/src/Bisector/Bisector_Inter.cxx b/src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_Inter.cxx similarity index 100% rename from src/Bisector/Bisector_Inter.cxx rename to src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_Inter.cxx diff --git a/src/Bisector/Bisector_Inter.hxx b/src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_Inter.hxx similarity index 100% rename from src/Bisector/Bisector_Inter.hxx rename to src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_Inter.hxx diff --git a/src/Bisector/Bisector_PointOnBis.cxx b/src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_PointOnBis.cxx similarity index 100% rename from src/Bisector/Bisector_PointOnBis.cxx rename to src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_PointOnBis.cxx diff --git a/src/Bisector/Bisector_PointOnBis.hxx b/src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_PointOnBis.hxx similarity index 100% rename from src/Bisector/Bisector_PointOnBis.hxx rename to src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_PointOnBis.hxx diff --git a/src/Bisector/Bisector_PolyBis.cxx b/src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_PolyBis.cxx similarity index 100% rename from src/Bisector/Bisector_PolyBis.cxx rename to src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_PolyBis.cxx diff --git a/src/Bisector/Bisector_PolyBis.hxx b/src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_PolyBis.hxx similarity index 100% rename from src/Bisector/Bisector_PolyBis.hxx rename to src/ModelingAlgorithms/TKTopAlgo/Bisector/Bisector_PolyBis.hxx diff --git a/src/ModelingAlgorithms/TKTopAlgo/Bisector/FILES.cmake b/src/ModelingAlgorithms/TKTopAlgo/Bisector/FILES.cmake new file mode 100644 index 0000000000..22f6d94fe9 --- /dev/null +++ b/src/ModelingAlgorithms/TKTopAlgo/Bisector/FILES.cmake @@ -0,0 +1,27 @@ +# Source files for Bisector package +set(OCCT_Bisector_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Bisector_FILES + Bisector.cxx + Bisector.hxx + Bisector_Bisec.cxx + Bisector_Bisec.hxx + Bisector_BisecAna.cxx + Bisector_BisecAna.hxx + Bisector_BisecCC.cxx + Bisector_BisecCC.hxx + Bisector_BisecPC.cxx + Bisector_BisecPC.hxx + Bisector_Curve.cxx + Bisector_Curve.hxx + Bisector_FunctionH.cxx + Bisector_FunctionH.hxx + Bisector_FunctionInter.cxx + Bisector_FunctionInter.hxx + Bisector_Inter.cxx + Bisector_Inter.hxx + Bisector_PointOnBis.cxx + Bisector_PointOnBis.hxx + Bisector_PolyBis.cxx + Bisector_PolyBis.hxx +) diff --git a/src/TKTopAlgo/CMakeLists.txt b/src/ModelingAlgorithms/TKTopAlgo/CMakeLists.txt similarity index 100% rename from src/TKTopAlgo/CMakeLists.txt rename to src/ModelingAlgorithms/TKTopAlgo/CMakeLists.txt diff --git a/src/ModelingAlgorithms/TKTopAlgo/EXTERNLIB.cmake b/src/ModelingAlgorithms/TKTopAlgo/EXTERNLIB.cmake new file mode 100644 index 0000000000..3da0aba343 --- /dev/null +++ b/src/ModelingAlgorithms/TKTopAlgo/EXTERNLIB.cmake @@ -0,0 +1,11 @@ +# External dependencies for TKTopAlgo +set(OCCT_TKTopAlgo_EXTERNAL_LIBS + TKMath + TKernel + TKG2d + TKG3d + TKGeomBase + TKBRep + TKGeomAlgo + CSF_TBB +) diff --git a/src/ModelingAlgorithms/TKTopAlgo/FILES.cmake b/src/ModelingAlgorithms/TKTopAlgo/FILES.cmake new file mode 100644 index 0000000000..cf5639be6e --- /dev/null +++ b/src/ModelingAlgorithms/TKTopAlgo/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKTopAlgo +set(OCCT_TKTopAlgo_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKTopAlgo_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ModelingAlgorithms/TKTopAlgo/IntCurvesFace/FILES.cmake b/src/ModelingAlgorithms/TKTopAlgo/IntCurvesFace/FILES.cmake new file mode 100644 index 0000000000..9a36b5c470 --- /dev/null +++ b/src/ModelingAlgorithms/TKTopAlgo/IntCurvesFace/FILES.cmake @@ -0,0 +1,10 @@ +# Source files for IntCurvesFace package +set(OCCT_IntCurvesFace_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IntCurvesFace_FILES + IntCurvesFace_Intersector.cxx + IntCurvesFace_Intersector.hxx + IntCurvesFace_Intersector.lxx + IntCurvesFace_ShapeIntersector.cxx + IntCurvesFace_ShapeIntersector.hxx +) diff --git a/src/IntCurvesFace/IntCurvesFace_Intersector.cxx b/src/ModelingAlgorithms/TKTopAlgo/IntCurvesFace/IntCurvesFace_Intersector.cxx similarity index 100% rename from src/IntCurvesFace/IntCurvesFace_Intersector.cxx rename to src/ModelingAlgorithms/TKTopAlgo/IntCurvesFace/IntCurvesFace_Intersector.cxx diff --git a/src/IntCurvesFace/IntCurvesFace_Intersector.hxx b/src/ModelingAlgorithms/TKTopAlgo/IntCurvesFace/IntCurvesFace_Intersector.hxx similarity index 100% rename from src/IntCurvesFace/IntCurvesFace_Intersector.hxx rename to src/ModelingAlgorithms/TKTopAlgo/IntCurvesFace/IntCurvesFace_Intersector.hxx diff --git a/src/IntCurvesFace/IntCurvesFace_Intersector.lxx b/src/ModelingAlgorithms/TKTopAlgo/IntCurvesFace/IntCurvesFace_Intersector.lxx similarity index 100% rename from src/IntCurvesFace/IntCurvesFace_Intersector.lxx rename to src/ModelingAlgorithms/TKTopAlgo/IntCurvesFace/IntCurvesFace_Intersector.lxx diff --git a/src/IntCurvesFace/IntCurvesFace_ShapeIntersector.cxx b/src/ModelingAlgorithms/TKTopAlgo/IntCurvesFace/IntCurvesFace_ShapeIntersector.cxx similarity index 100% rename from src/IntCurvesFace/IntCurvesFace_ShapeIntersector.cxx rename to src/ModelingAlgorithms/TKTopAlgo/IntCurvesFace/IntCurvesFace_ShapeIntersector.cxx diff --git a/src/IntCurvesFace/IntCurvesFace_ShapeIntersector.hxx b/src/ModelingAlgorithms/TKTopAlgo/IntCurvesFace/IntCurvesFace_ShapeIntersector.hxx similarity index 100% rename from src/IntCurvesFace/IntCurvesFace_ShapeIntersector.hxx rename to src/ModelingAlgorithms/TKTopAlgo/IntCurvesFace/IntCurvesFace_ShapeIntersector.hxx diff --git a/src/ModelingAlgorithms/TKTopAlgo/MAT/FILES.cmake b/src/ModelingAlgorithms/TKTopAlgo/MAT/FILES.cmake new file mode 100644 index 0000000000..b75747eb9b --- /dev/null +++ b/src/ModelingAlgorithms/TKTopAlgo/MAT/FILES.cmake @@ -0,0 +1,42 @@ +# Source files for MAT package +set(OCCT_MAT_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_MAT_FILES + MAT_Arc.cxx + MAT_Arc.hxx + MAT_BasicElt.cxx + MAT_BasicElt.hxx + MAT_Bisector.cxx + MAT_Bisector.hxx + MAT_DataMapIteratorOfDataMapOfIntegerArc.hxx + MAT_DataMapIteratorOfDataMapOfIntegerBasicElt.hxx + MAT_DataMapIteratorOfDataMapOfIntegerBisector.hxx + MAT_DataMapIteratorOfDataMapOfIntegerNode.hxx + MAT_DataMapOfIntegerArc.hxx + MAT_DataMapOfIntegerBasicElt.hxx + MAT_DataMapOfIntegerBisector.hxx + MAT_DataMapOfIntegerNode.hxx + MAT_Edge.cxx + MAT_Edge.hxx + MAT_Graph.cxx + MAT_Graph.hxx + MAT_ListOfBisector.hxx + MAT_ListOfBisector_0.cxx + MAT_ListOfEdge.hxx + MAT_ListOfEdge_0.cxx + MAT_Node.cxx + MAT_Node.hxx + MAT_SequenceOfArc.hxx + MAT_SequenceOfBasicElt.hxx + MAT_Side.hxx + MAT_TList.gxx + MAT_TList.lxx + MAT_TListNode.gxx + MAT_TListNode.lxx + MAT_TListNodeOfListOfBisector.hxx + MAT_TListNodeOfListOfBisector_0.cxx + MAT_TListNodeOfListOfEdge.hxx + MAT_TListNodeOfListOfEdge_0.cxx + MAT_Zone.cxx + MAT_Zone.hxx +) diff --git a/src/MAT/MAT_Arc.cxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Arc.cxx similarity index 100% rename from src/MAT/MAT_Arc.cxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Arc.cxx diff --git a/src/MAT/MAT_Arc.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Arc.hxx similarity index 100% rename from src/MAT/MAT_Arc.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Arc.hxx diff --git a/src/MAT/MAT_BasicElt.cxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_BasicElt.cxx similarity index 100% rename from src/MAT/MAT_BasicElt.cxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_BasicElt.cxx diff --git a/src/MAT/MAT_BasicElt.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_BasicElt.hxx similarity index 100% rename from src/MAT/MAT_BasicElt.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_BasicElt.hxx diff --git a/src/MAT/MAT_Bisector.cxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Bisector.cxx similarity index 100% rename from src/MAT/MAT_Bisector.cxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Bisector.cxx diff --git a/src/MAT/MAT_Bisector.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Bisector.hxx similarity index 100% rename from src/MAT/MAT_Bisector.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Bisector.hxx diff --git a/src/MAT/MAT_DataMapIteratorOfDataMapOfIntegerArc.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_DataMapIteratorOfDataMapOfIntegerArc.hxx similarity index 100% rename from src/MAT/MAT_DataMapIteratorOfDataMapOfIntegerArc.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_DataMapIteratorOfDataMapOfIntegerArc.hxx diff --git a/src/MAT/MAT_DataMapIteratorOfDataMapOfIntegerBasicElt.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_DataMapIteratorOfDataMapOfIntegerBasicElt.hxx similarity index 100% rename from src/MAT/MAT_DataMapIteratorOfDataMapOfIntegerBasicElt.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_DataMapIteratorOfDataMapOfIntegerBasicElt.hxx diff --git a/src/MAT/MAT_DataMapIteratorOfDataMapOfIntegerBisector.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_DataMapIteratorOfDataMapOfIntegerBisector.hxx similarity index 100% rename from src/MAT/MAT_DataMapIteratorOfDataMapOfIntegerBisector.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_DataMapIteratorOfDataMapOfIntegerBisector.hxx diff --git a/src/MAT/MAT_DataMapIteratorOfDataMapOfIntegerNode.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_DataMapIteratorOfDataMapOfIntegerNode.hxx similarity index 100% rename from src/MAT/MAT_DataMapIteratorOfDataMapOfIntegerNode.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_DataMapIteratorOfDataMapOfIntegerNode.hxx diff --git a/src/MAT/MAT_DataMapOfIntegerArc.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_DataMapOfIntegerArc.hxx similarity index 100% rename from src/MAT/MAT_DataMapOfIntegerArc.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_DataMapOfIntegerArc.hxx diff --git a/src/MAT/MAT_DataMapOfIntegerBasicElt.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_DataMapOfIntegerBasicElt.hxx similarity index 100% rename from src/MAT/MAT_DataMapOfIntegerBasicElt.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_DataMapOfIntegerBasicElt.hxx diff --git a/src/MAT/MAT_DataMapOfIntegerBisector.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_DataMapOfIntegerBisector.hxx similarity index 100% rename from src/MAT/MAT_DataMapOfIntegerBisector.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_DataMapOfIntegerBisector.hxx diff --git a/src/MAT/MAT_DataMapOfIntegerNode.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_DataMapOfIntegerNode.hxx similarity index 100% rename from src/MAT/MAT_DataMapOfIntegerNode.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_DataMapOfIntegerNode.hxx diff --git a/src/MAT/MAT_Edge.cxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Edge.cxx similarity index 100% rename from src/MAT/MAT_Edge.cxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Edge.cxx diff --git a/src/MAT/MAT_Edge.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Edge.hxx similarity index 100% rename from src/MAT/MAT_Edge.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Edge.hxx diff --git a/src/MAT/MAT_Graph.cxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Graph.cxx similarity index 100% rename from src/MAT/MAT_Graph.cxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Graph.cxx diff --git a/src/MAT/MAT_Graph.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Graph.hxx similarity index 100% rename from src/MAT/MAT_Graph.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Graph.hxx diff --git a/src/MAT/MAT_ListOfBisector.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_ListOfBisector.hxx similarity index 100% rename from src/MAT/MAT_ListOfBisector.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_ListOfBisector.hxx diff --git a/src/MAT/MAT_ListOfBisector_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_ListOfBisector_0.cxx similarity index 100% rename from src/MAT/MAT_ListOfBisector_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_ListOfBisector_0.cxx diff --git a/src/MAT/MAT_ListOfEdge.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_ListOfEdge.hxx similarity index 100% rename from src/MAT/MAT_ListOfEdge.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_ListOfEdge.hxx diff --git a/src/MAT/MAT_ListOfEdge_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_ListOfEdge_0.cxx similarity index 100% rename from src/MAT/MAT_ListOfEdge_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_ListOfEdge_0.cxx diff --git a/src/MAT/MAT_Node.cxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Node.cxx similarity index 100% rename from src/MAT/MAT_Node.cxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Node.cxx diff --git a/src/MAT/MAT_Node.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Node.hxx similarity index 100% rename from src/MAT/MAT_Node.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Node.hxx diff --git a/src/MAT/MAT_SequenceOfArc.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_SequenceOfArc.hxx similarity index 100% rename from src/MAT/MAT_SequenceOfArc.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_SequenceOfArc.hxx diff --git a/src/MAT/MAT_SequenceOfBasicElt.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_SequenceOfBasicElt.hxx similarity index 100% rename from src/MAT/MAT_SequenceOfBasicElt.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_SequenceOfBasicElt.hxx diff --git a/src/MAT/MAT_Side.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Side.hxx similarity index 100% rename from src/MAT/MAT_Side.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Side.hxx diff --git a/src/MAT/MAT_TList.gxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_TList.gxx similarity index 100% rename from src/MAT/MAT_TList.gxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_TList.gxx diff --git a/src/MAT/MAT_TList.lxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_TList.lxx similarity index 100% rename from src/MAT/MAT_TList.lxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_TList.lxx diff --git a/src/MAT/MAT_TListNode.gxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_TListNode.gxx similarity index 100% rename from src/MAT/MAT_TListNode.gxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_TListNode.gxx diff --git a/src/MAT/MAT_TListNode.lxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_TListNode.lxx similarity index 100% rename from src/MAT/MAT_TListNode.lxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_TListNode.lxx diff --git a/src/MAT/MAT_TListNodeOfListOfBisector.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_TListNodeOfListOfBisector.hxx similarity index 100% rename from src/MAT/MAT_TListNodeOfListOfBisector.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_TListNodeOfListOfBisector.hxx diff --git a/src/MAT/MAT_TListNodeOfListOfBisector_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_TListNodeOfListOfBisector_0.cxx similarity index 100% rename from src/MAT/MAT_TListNodeOfListOfBisector_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_TListNodeOfListOfBisector_0.cxx diff --git a/src/MAT/MAT_TListNodeOfListOfEdge.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_TListNodeOfListOfEdge.hxx similarity index 100% rename from src/MAT/MAT_TListNodeOfListOfEdge.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_TListNodeOfListOfEdge.hxx diff --git a/src/MAT/MAT_TListNodeOfListOfEdge_0.cxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_TListNodeOfListOfEdge_0.cxx similarity index 100% rename from src/MAT/MAT_TListNodeOfListOfEdge_0.cxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_TListNodeOfListOfEdge_0.cxx diff --git a/src/MAT/MAT_Zone.cxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Zone.cxx similarity index 100% rename from src/MAT/MAT_Zone.cxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Zone.cxx diff --git a/src/MAT/MAT_Zone.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Zone.hxx similarity index 100% rename from src/MAT/MAT_Zone.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT/MAT_Zone.hxx diff --git a/src/ModelingAlgorithms/TKTopAlgo/MAT2d/FILES.cmake b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/FILES.cmake new file mode 100644 index 0000000000..de641eff36 --- /dev/null +++ b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/FILES.cmake @@ -0,0 +1,37 @@ +# Source files for MAT2d package +set(OCCT_MAT2d_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_MAT2d_FILES + MAT2d_Array2OfConnexion.hxx + MAT2d_BiInt.cxx + MAT2d_BiInt.hxx + MAT2d_Circuit.cxx + MAT2d_Circuit.hxx + MAT2d_Connexion.cxx + MAT2d_Connexion.hxx + MAT2d_CutCurve.cxx + MAT2d_CutCurve.hxx + MAT2d_DataMapIteratorOfDataMapOfBiIntInteger.hxx + MAT2d_DataMapIteratorOfDataMapOfBiIntSequenceOfInteger.hxx + MAT2d_DataMapIteratorOfDataMapOfIntegerBisec.hxx + MAT2d_DataMapIteratorOfDataMapOfIntegerConnexion.hxx + MAT2d_DataMapIteratorOfDataMapOfIntegerPnt2d.hxx + MAT2d_DataMapIteratorOfDataMapOfIntegerSequenceOfConnexion.hxx + MAT2d_DataMapIteratorOfDataMapOfIntegerVec2d.hxx + MAT2d_DataMapOfBiIntInteger.hxx + MAT2d_DataMapOfBiIntSequenceOfInteger.hxx + MAT2d_DataMapOfIntegerBisec.hxx + MAT2d_DataMapOfIntegerConnexion.hxx + MAT2d_DataMapOfIntegerPnt2d.hxx + MAT2d_DataMapOfIntegerSequenceOfConnexion.hxx + MAT2d_DataMapOfIntegerVec2d.hxx + MAT2d_Mat2d.cxx + MAT2d_Mat2d.hxx + MAT2d_MiniPath.cxx + MAT2d_MiniPath.hxx + MAT2d_SequenceOfConnexion.hxx + MAT2d_SequenceOfSequenceOfCurve.hxx + MAT2d_SequenceOfSequenceOfGeometry.hxx + MAT2d_Tool2d.cxx + MAT2d_Tool2d.hxx +) diff --git a/src/MAT2d/MAT2d_Array2OfConnexion.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_Array2OfConnexion.hxx similarity index 100% rename from src/MAT2d/MAT2d_Array2OfConnexion.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_Array2OfConnexion.hxx diff --git a/src/MAT2d/MAT2d_BiInt.cxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_BiInt.cxx similarity index 100% rename from src/MAT2d/MAT2d_BiInt.cxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_BiInt.cxx diff --git a/src/MAT2d/MAT2d_BiInt.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_BiInt.hxx similarity index 100% rename from src/MAT2d/MAT2d_BiInt.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_BiInt.hxx diff --git a/src/MAT2d/MAT2d_Circuit.cxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_Circuit.cxx similarity index 100% rename from src/MAT2d/MAT2d_Circuit.cxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_Circuit.cxx diff --git a/src/MAT2d/MAT2d_Circuit.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_Circuit.hxx similarity index 100% rename from src/MAT2d/MAT2d_Circuit.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_Circuit.hxx diff --git a/src/MAT2d/MAT2d_Connexion.cxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_Connexion.cxx similarity index 100% rename from src/MAT2d/MAT2d_Connexion.cxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_Connexion.cxx diff --git a/src/MAT2d/MAT2d_Connexion.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_Connexion.hxx similarity index 100% rename from src/MAT2d/MAT2d_Connexion.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_Connexion.hxx diff --git a/src/MAT2d/MAT2d_CutCurve.cxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_CutCurve.cxx similarity index 100% rename from src/MAT2d/MAT2d_CutCurve.cxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_CutCurve.cxx diff --git a/src/MAT2d/MAT2d_CutCurve.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_CutCurve.hxx similarity index 100% rename from src/MAT2d/MAT2d_CutCurve.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_CutCurve.hxx diff --git a/src/MAT2d/MAT2d_DataMapIteratorOfDataMapOfBiIntInteger.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapIteratorOfDataMapOfBiIntInteger.hxx similarity index 100% rename from src/MAT2d/MAT2d_DataMapIteratorOfDataMapOfBiIntInteger.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapIteratorOfDataMapOfBiIntInteger.hxx diff --git a/src/MAT2d/MAT2d_DataMapIteratorOfDataMapOfBiIntSequenceOfInteger.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapIteratorOfDataMapOfBiIntSequenceOfInteger.hxx similarity index 100% rename from src/MAT2d/MAT2d_DataMapIteratorOfDataMapOfBiIntSequenceOfInteger.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapIteratorOfDataMapOfBiIntSequenceOfInteger.hxx diff --git a/src/MAT2d/MAT2d_DataMapIteratorOfDataMapOfIntegerBisec.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapIteratorOfDataMapOfIntegerBisec.hxx similarity index 100% rename from src/MAT2d/MAT2d_DataMapIteratorOfDataMapOfIntegerBisec.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapIteratorOfDataMapOfIntegerBisec.hxx diff --git a/src/MAT2d/MAT2d_DataMapIteratorOfDataMapOfIntegerConnexion.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapIteratorOfDataMapOfIntegerConnexion.hxx similarity index 100% rename from src/MAT2d/MAT2d_DataMapIteratorOfDataMapOfIntegerConnexion.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapIteratorOfDataMapOfIntegerConnexion.hxx diff --git a/src/MAT2d/MAT2d_DataMapIteratorOfDataMapOfIntegerPnt2d.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapIteratorOfDataMapOfIntegerPnt2d.hxx similarity index 100% rename from src/MAT2d/MAT2d_DataMapIteratorOfDataMapOfIntegerPnt2d.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapIteratorOfDataMapOfIntegerPnt2d.hxx diff --git a/src/MAT2d/MAT2d_DataMapIteratorOfDataMapOfIntegerSequenceOfConnexion.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapIteratorOfDataMapOfIntegerSequenceOfConnexion.hxx similarity index 100% rename from src/MAT2d/MAT2d_DataMapIteratorOfDataMapOfIntegerSequenceOfConnexion.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapIteratorOfDataMapOfIntegerSequenceOfConnexion.hxx diff --git a/src/MAT2d/MAT2d_DataMapIteratorOfDataMapOfIntegerVec2d.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapIteratorOfDataMapOfIntegerVec2d.hxx similarity index 100% rename from src/MAT2d/MAT2d_DataMapIteratorOfDataMapOfIntegerVec2d.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapIteratorOfDataMapOfIntegerVec2d.hxx diff --git a/src/MAT2d/MAT2d_DataMapOfBiIntInteger.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapOfBiIntInteger.hxx similarity index 100% rename from src/MAT2d/MAT2d_DataMapOfBiIntInteger.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapOfBiIntInteger.hxx diff --git a/src/MAT2d/MAT2d_DataMapOfBiIntSequenceOfInteger.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapOfBiIntSequenceOfInteger.hxx similarity index 100% rename from src/MAT2d/MAT2d_DataMapOfBiIntSequenceOfInteger.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapOfBiIntSequenceOfInteger.hxx diff --git a/src/MAT2d/MAT2d_DataMapOfIntegerBisec.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapOfIntegerBisec.hxx similarity index 100% rename from src/MAT2d/MAT2d_DataMapOfIntegerBisec.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapOfIntegerBisec.hxx diff --git a/src/MAT2d/MAT2d_DataMapOfIntegerConnexion.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapOfIntegerConnexion.hxx similarity index 100% rename from src/MAT2d/MAT2d_DataMapOfIntegerConnexion.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapOfIntegerConnexion.hxx diff --git a/src/MAT2d/MAT2d_DataMapOfIntegerPnt2d.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapOfIntegerPnt2d.hxx similarity index 100% rename from src/MAT2d/MAT2d_DataMapOfIntegerPnt2d.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapOfIntegerPnt2d.hxx diff --git a/src/MAT2d/MAT2d_DataMapOfIntegerSequenceOfConnexion.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapOfIntegerSequenceOfConnexion.hxx similarity index 100% rename from src/MAT2d/MAT2d_DataMapOfIntegerSequenceOfConnexion.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapOfIntegerSequenceOfConnexion.hxx diff --git a/src/MAT2d/MAT2d_DataMapOfIntegerVec2d.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapOfIntegerVec2d.hxx similarity index 100% rename from src/MAT2d/MAT2d_DataMapOfIntegerVec2d.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_DataMapOfIntegerVec2d.hxx diff --git a/src/MAT2d/MAT2d_Mat2d.cxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_Mat2d.cxx similarity index 100% rename from src/MAT2d/MAT2d_Mat2d.cxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_Mat2d.cxx diff --git a/src/MAT2d/MAT2d_Mat2d.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_Mat2d.hxx similarity index 100% rename from src/MAT2d/MAT2d_Mat2d.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_Mat2d.hxx diff --git a/src/MAT2d/MAT2d_MiniPath.cxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_MiniPath.cxx similarity index 100% rename from src/MAT2d/MAT2d_MiniPath.cxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_MiniPath.cxx diff --git a/src/MAT2d/MAT2d_MiniPath.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_MiniPath.hxx similarity index 100% rename from src/MAT2d/MAT2d_MiniPath.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_MiniPath.hxx diff --git a/src/MAT2d/MAT2d_SequenceOfConnexion.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_SequenceOfConnexion.hxx similarity index 100% rename from src/MAT2d/MAT2d_SequenceOfConnexion.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_SequenceOfConnexion.hxx diff --git a/src/MAT2d/MAT2d_SequenceOfSequenceOfCurve.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_SequenceOfSequenceOfCurve.hxx similarity index 100% rename from src/MAT2d/MAT2d_SequenceOfSequenceOfCurve.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_SequenceOfSequenceOfCurve.hxx diff --git a/src/MAT2d/MAT2d_SequenceOfSequenceOfGeometry.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_SequenceOfSequenceOfGeometry.hxx similarity index 100% rename from src/MAT2d/MAT2d_SequenceOfSequenceOfGeometry.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_SequenceOfSequenceOfGeometry.hxx diff --git a/src/MAT2d/MAT2d_Tool2d.cxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_Tool2d.cxx similarity index 100% rename from src/MAT2d/MAT2d_Tool2d.cxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_Tool2d.cxx diff --git a/src/MAT2d/MAT2d_Tool2d.hxx b/src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_Tool2d.hxx similarity index 100% rename from src/MAT2d/MAT2d_Tool2d.hxx rename to src/ModelingAlgorithms/TKTopAlgo/MAT2d/MAT2d_Tool2d.hxx diff --git a/src/ModelingAlgorithms/TKTopAlgo/PACKAGES.cmake b/src/ModelingAlgorithms/TKTopAlgo/PACKAGES.cmake new file mode 100644 index 0000000000..bd930f6329 --- /dev/null +++ b/src/ModelingAlgorithms/TKTopAlgo/PACKAGES.cmake @@ -0,0 +1,19 @@ +# Auto-generated list of packages for TKTopAlgo toolkit +set(OCCT_TKTopAlgo_LIST_OF_PACKAGES + IntCurvesFace + MAT + MAT2d + Bisector + BRepMAT2d + BRepCheck + BRepBndLib + BRepExtrema + BRepClass + BRepClass3d + BRepLib + BRepGProp + BRepIntCurveSurface + BRepTopAdaptor + BRepBuilderAPI + BRepApprox +) diff --git a/src/TKXMesh/CMakeLists.txt b/src/ModelingAlgorithms/TKXMesh/CMakeLists.txt similarity index 100% rename from src/TKXMesh/CMakeLists.txt rename to src/ModelingAlgorithms/TKXMesh/CMakeLists.txt diff --git a/src/ModelingAlgorithms/TKXMesh/EXTERNLIB.cmake b/src/ModelingAlgorithms/TKXMesh/EXTERNLIB.cmake new file mode 100644 index 0000000000..104fcb6757 --- /dev/null +++ b/src/ModelingAlgorithms/TKXMesh/EXTERNLIB.cmake @@ -0,0 +1,9 @@ +# External dependencies for TKXMesh +set(OCCT_TKXMesh_EXTERNAL_LIBS + TKBRep + TKMath + TKernel + TKG2d + TKG3d + TKMesh +) diff --git a/src/ModelingAlgorithms/TKXMesh/FILES.cmake b/src/ModelingAlgorithms/TKXMesh/FILES.cmake new file mode 100644 index 0000000000..b664b55614 --- /dev/null +++ b/src/ModelingAlgorithms/TKXMesh/FILES.cmake @@ -0,0 +1,6 @@ +# Source files for TKXMesh +set(OCCT_TKXMesh_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKXMesh_FILES + EXTERNLIB +) diff --git a/src/ModelingAlgorithms/TKXMesh/PACKAGES.cmake b/src/ModelingAlgorithms/TKXMesh/PACKAGES.cmake new file mode 100644 index 0000000000..b0617bd9c8 --- /dev/null +++ b/src/ModelingAlgorithms/TKXMesh/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKXMesh toolkit +set(OCCT_TKXMesh_LIST_OF_PACKAGES + XBRepMesh +) diff --git a/src/ModelingAlgorithms/TKXMesh/XBRepMesh/FILES.cmake b/src/ModelingAlgorithms/TKXMesh/XBRepMesh/FILES.cmake new file mode 100644 index 0000000000..7fa1e8a105 --- /dev/null +++ b/src/ModelingAlgorithms/TKXMesh/XBRepMesh/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for XBRepMesh package +set(OCCT_XBRepMesh_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_XBRepMesh_FILES + XBRepMesh.cxx + XBRepMesh.hxx +) diff --git a/src/XBRepMesh/XBRepMesh.cxx b/src/ModelingAlgorithms/TKXMesh/XBRepMesh/XBRepMesh.cxx similarity index 100% rename from src/XBRepMesh/XBRepMesh.cxx rename to src/ModelingAlgorithms/TKXMesh/XBRepMesh/XBRepMesh.cxx diff --git a/src/XBRepMesh/XBRepMesh.hxx b/src/ModelingAlgorithms/TKXMesh/XBRepMesh/XBRepMesh.hxx similarity index 100% rename from src/XBRepMesh/XBRepMesh.hxx rename to src/ModelingAlgorithms/TKXMesh/XBRepMesh/XBRepMesh.hxx diff --git a/src/ModelingAlgorithms/TOOLKITS.cmake b/src/ModelingAlgorithms/TOOLKITS.cmake new file mode 100644 index 0000000000..4a9fbd2b07 --- /dev/null +++ b/src/ModelingAlgorithms/TOOLKITS.cmake @@ -0,0 +1,16 @@ +# Auto-generated list of toolkits for ModelingAlgorithms module +set(OCCT_ModelingAlgorithms_LIST_OF_TOOLKITS + TKGeomAlgo + TKTopAlgo + TKPrim + TKBO + TKBool + TKHLR + TKFillet + TKOffset + TKFeat + TKMesh + TKXMesh + TKShHealing + TKExpress +) diff --git a/src/BRep/BRep_Builder.cxx b/src/ModelingData/TKBRep/BRep/BRep_Builder.cxx similarity index 100% rename from src/BRep/BRep_Builder.cxx rename to src/ModelingData/TKBRep/BRep/BRep_Builder.cxx diff --git a/src/BRep/BRep_Builder.hxx b/src/ModelingData/TKBRep/BRep/BRep_Builder.hxx similarity index 100% rename from src/BRep/BRep_Builder.hxx rename to src/ModelingData/TKBRep/BRep/BRep_Builder.hxx diff --git a/src/BRep/BRep_Builder.lxx b/src/ModelingData/TKBRep/BRep/BRep_Builder.lxx similarity index 100% rename from src/BRep/BRep_Builder.lxx rename to src/ModelingData/TKBRep/BRep/BRep_Builder.lxx diff --git a/src/BRep/BRep_Curve3D.cxx b/src/ModelingData/TKBRep/BRep/BRep_Curve3D.cxx similarity index 100% rename from src/BRep/BRep_Curve3D.cxx rename to src/ModelingData/TKBRep/BRep/BRep_Curve3D.cxx diff --git a/src/BRep/BRep_Curve3D.hxx b/src/ModelingData/TKBRep/BRep/BRep_Curve3D.hxx similarity index 100% rename from src/BRep/BRep_Curve3D.hxx rename to src/ModelingData/TKBRep/BRep/BRep_Curve3D.hxx diff --git a/src/BRep/BRep_CurveOn2Surfaces.cxx b/src/ModelingData/TKBRep/BRep/BRep_CurveOn2Surfaces.cxx similarity index 100% rename from src/BRep/BRep_CurveOn2Surfaces.cxx rename to src/ModelingData/TKBRep/BRep/BRep_CurveOn2Surfaces.cxx diff --git a/src/BRep/BRep_CurveOn2Surfaces.hxx b/src/ModelingData/TKBRep/BRep/BRep_CurveOn2Surfaces.hxx similarity index 100% rename from src/BRep/BRep_CurveOn2Surfaces.hxx rename to src/ModelingData/TKBRep/BRep/BRep_CurveOn2Surfaces.hxx diff --git a/src/BRep/BRep_CurveOnClosedSurface.cxx b/src/ModelingData/TKBRep/BRep/BRep_CurveOnClosedSurface.cxx similarity index 100% rename from src/BRep/BRep_CurveOnClosedSurface.cxx rename to src/ModelingData/TKBRep/BRep/BRep_CurveOnClosedSurface.cxx diff --git a/src/BRep/BRep_CurveOnClosedSurface.hxx b/src/ModelingData/TKBRep/BRep/BRep_CurveOnClosedSurface.hxx similarity index 100% rename from src/BRep/BRep_CurveOnClosedSurface.hxx rename to src/ModelingData/TKBRep/BRep/BRep_CurveOnClosedSurface.hxx diff --git a/src/BRep/BRep_CurveOnClosedSurface.lxx b/src/ModelingData/TKBRep/BRep/BRep_CurveOnClosedSurface.lxx similarity index 100% rename from src/BRep/BRep_CurveOnClosedSurface.lxx rename to src/ModelingData/TKBRep/BRep/BRep_CurveOnClosedSurface.lxx diff --git a/src/BRep/BRep_CurveOnSurface.cxx b/src/ModelingData/TKBRep/BRep/BRep_CurveOnSurface.cxx similarity index 100% rename from src/BRep/BRep_CurveOnSurface.cxx rename to src/ModelingData/TKBRep/BRep/BRep_CurveOnSurface.cxx diff --git a/src/BRep/BRep_CurveOnSurface.hxx b/src/ModelingData/TKBRep/BRep/BRep_CurveOnSurface.hxx similarity index 100% rename from src/BRep/BRep_CurveOnSurface.hxx rename to src/ModelingData/TKBRep/BRep/BRep_CurveOnSurface.hxx diff --git a/src/BRep/BRep_CurveOnSurface.lxx b/src/ModelingData/TKBRep/BRep/BRep_CurveOnSurface.lxx similarity index 100% rename from src/BRep/BRep_CurveOnSurface.lxx rename to src/ModelingData/TKBRep/BRep/BRep_CurveOnSurface.lxx diff --git a/src/BRep/BRep_CurveRepresentation.cxx b/src/ModelingData/TKBRep/BRep/BRep_CurveRepresentation.cxx similarity index 100% rename from src/BRep/BRep_CurveRepresentation.cxx rename to src/ModelingData/TKBRep/BRep/BRep_CurveRepresentation.cxx diff --git a/src/BRep/BRep_CurveRepresentation.hxx b/src/ModelingData/TKBRep/BRep/BRep_CurveRepresentation.hxx similarity index 100% rename from src/BRep/BRep_CurveRepresentation.hxx rename to src/ModelingData/TKBRep/BRep/BRep_CurveRepresentation.hxx diff --git a/src/BRep/BRep_CurveRepresentation.lxx b/src/ModelingData/TKBRep/BRep/BRep_CurveRepresentation.lxx similarity index 100% rename from src/BRep/BRep_CurveRepresentation.lxx rename to src/ModelingData/TKBRep/BRep/BRep_CurveRepresentation.lxx diff --git a/src/BRep/BRep_GCurve.cxx b/src/ModelingData/TKBRep/BRep/BRep_GCurve.cxx similarity index 100% rename from src/BRep/BRep_GCurve.cxx rename to src/ModelingData/TKBRep/BRep/BRep_GCurve.cxx diff --git a/src/BRep/BRep_GCurve.hxx b/src/ModelingData/TKBRep/BRep/BRep_GCurve.hxx similarity index 100% rename from src/BRep/BRep_GCurve.hxx rename to src/ModelingData/TKBRep/BRep/BRep_GCurve.hxx diff --git a/src/BRep/BRep_GCurve.lxx b/src/ModelingData/TKBRep/BRep/BRep_GCurve.lxx similarity index 100% rename from src/BRep/BRep_GCurve.lxx rename to src/ModelingData/TKBRep/BRep/BRep_GCurve.lxx diff --git a/src/BRep/BRep_ListIteratorOfListOfCurveRepresentation.hxx b/src/ModelingData/TKBRep/BRep/BRep_ListIteratorOfListOfCurveRepresentation.hxx similarity index 100% rename from src/BRep/BRep_ListIteratorOfListOfCurveRepresentation.hxx rename to src/ModelingData/TKBRep/BRep/BRep_ListIteratorOfListOfCurveRepresentation.hxx diff --git a/src/BRep/BRep_ListIteratorOfListOfPointRepresentation.hxx b/src/ModelingData/TKBRep/BRep/BRep_ListIteratorOfListOfPointRepresentation.hxx similarity index 100% rename from src/BRep/BRep_ListIteratorOfListOfPointRepresentation.hxx rename to src/ModelingData/TKBRep/BRep/BRep_ListIteratorOfListOfPointRepresentation.hxx diff --git a/src/BRep/BRep_ListOfCurveRepresentation.hxx b/src/ModelingData/TKBRep/BRep/BRep_ListOfCurveRepresentation.hxx similarity index 100% rename from src/BRep/BRep_ListOfCurveRepresentation.hxx rename to src/ModelingData/TKBRep/BRep/BRep_ListOfCurveRepresentation.hxx diff --git a/src/BRep/BRep_ListOfPointRepresentation.hxx b/src/ModelingData/TKBRep/BRep/BRep_ListOfPointRepresentation.hxx similarity index 100% rename from src/BRep/BRep_ListOfPointRepresentation.hxx rename to src/ModelingData/TKBRep/BRep/BRep_ListOfPointRepresentation.hxx diff --git a/src/BRep/BRep_PointOnCurve.cxx b/src/ModelingData/TKBRep/BRep/BRep_PointOnCurve.cxx similarity index 100% rename from src/BRep/BRep_PointOnCurve.cxx rename to src/ModelingData/TKBRep/BRep/BRep_PointOnCurve.cxx diff --git a/src/BRep/BRep_PointOnCurve.hxx b/src/ModelingData/TKBRep/BRep/BRep_PointOnCurve.hxx similarity index 100% rename from src/BRep/BRep_PointOnCurve.hxx rename to src/ModelingData/TKBRep/BRep/BRep_PointOnCurve.hxx diff --git a/src/BRep/BRep_PointOnCurveOnSurface.cxx b/src/ModelingData/TKBRep/BRep/BRep_PointOnCurveOnSurface.cxx similarity index 100% rename from src/BRep/BRep_PointOnCurveOnSurface.cxx rename to src/ModelingData/TKBRep/BRep/BRep_PointOnCurveOnSurface.cxx diff --git a/src/BRep/BRep_PointOnCurveOnSurface.hxx b/src/ModelingData/TKBRep/BRep/BRep_PointOnCurveOnSurface.hxx similarity index 100% rename from src/BRep/BRep_PointOnCurveOnSurface.hxx rename to src/ModelingData/TKBRep/BRep/BRep_PointOnCurveOnSurface.hxx diff --git a/src/BRep/BRep_PointOnSurface.cxx b/src/ModelingData/TKBRep/BRep/BRep_PointOnSurface.cxx similarity index 100% rename from src/BRep/BRep_PointOnSurface.cxx rename to src/ModelingData/TKBRep/BRep/BRep_PointOnSurface.cxx diff --git a/src/BRep/BRep_PointOnSurface.hxx b/src/ModelingData/TKBRep/BRep/BRep_PointOnSurface.hxx similarity index 100% rename from src/BRep/BRep_PointOnSurface.hxx rename to src/ModelingData/TKBRep/BRep/BRep_PointOnSurface.hxx diff --git a/src/BRep/BRep_PointRepresentation.cxx b/src/ModelingData/TKBRep/BRep/BRep_PointRepresentation.cxx similarity index 100% rename from src/BRep/BRep_PointRepresentation.cxx rename to src/ModelingData/TKBRep/BRep/BRep_PointRepresentation.cxx diff --git a/src/BRep/BRep_PointRepresentation.hxx b/src/ModelingData/TKBRep/BRep/BRep_PointRepresentation.hxx similarity index 100% rename from src/BRep/BRep_PointRepresentation.hxx rename to src/ModelingData/TKBRep/BRep/BRep_PointRepresentation.hxx diff --git a/src/BRep/BRep_PointRepresentation.lxx b/src/ModelingData/TKBRep/BRep/BRep_PointRepresentation.lxx similarity index 100% rename from src/BRep/BRep_PointRepresentation.lxx rename to src/ModelingData/TKBRep/BRep/BRep_PointRepresentation.lxx diff --git a/src/BRep/BRep_PointsOnSurface.cxx b/src/ModelingData/TKBRep/BRep/BRep_PointsOnSurface.cxx similarity index 100% rename from src/BRep/BRep_PointsOnSurface.cxx rename to src/ModelingData/TKBRep/BRep/BRep_PointsOnSurface.cxx diff --git a/src/BRep/BRep_PointsOnSurface.hxx b/src/ModelingData/TKBRep/BRep/BRep_PointsOnSurface.hxx similarity index 100% rename from src/BRep/BRep_PointsOnSurface.hxx rename to src/ModelingData/TKBRep/BRep/BRep_PointsOnSurface.hxx diff --git a/src/BRep/BRep_Polygon3D.cxx b/src/ModelingData/TKBRep/BRep/BRep_Polygon3D.cxx similarity index 100% rename from src/BRep/BRep_Polygon3D.cxx rename to src/ModelingData/TKBRep/BRep/BRep_Polygon3D.cxx diff --git a/src/BRep/BRep_Polygon3D.hxx b/src/ModelingData/TKBRep/BRep/BRep_Polygon3D.hxx similarity index 100% rename from src/BRep/BRep_Polygon3D.hxx rename to src/ModelingData/TKBRep/BRep/BRep_Polygon3D.hxx diff --git a/src/BRep/BRep_PolygonOnClosedSurface.cxx b/src/ModelingData/TKBRep/BRep/BRep_PolygonOnClosedSurface.cxx similarity index 100% rename from src/BRep/BRep_PolygonOnClosedSurface.cxx rename to src/ModelingData/TKBRep/BRep/BRep_PolygonOnClosedSurface.cxx diff --git a/src/BRep/BRep_PolygonOnClosedSurface.hxx b/src/ModelingData/TKBRep/BRep/BRep_PolygonOnClosedSurface.hxx similarity index 100% rename from src/BRep/BRep_PolygonOnClosedSurface.hxx rename to src/ModelingData/TKBRep/BRep/BRep_PolygonOnClosedSurface.hxx diff --git a/src/BRep/BRep_PolygonOnClosedTriangulation.cxx b/src/ModelingData/TKBRep/BRep/BRep_PolygonOnClosedTriangulation.cxx similarity index 100% rename from src/BRep/BRep_PolygonOnClosedTriangulation.cxx rename to src/ModelingData/TKBRep/BRep/BRep_PolygonOnClosedTriangulation.cxx diff --git a/src/BRep/BRep_PolygonOnClosedTriangulation.hxx b/src/ModelingData/TKBRep/BRep/BRep_PolygonOnClosedTriangulation.hxx similarity index 100% rename from src/BRep/BRep_PolygonOnClosedTriangulation.hxx rename to src/ModelingData/TKBRep/BRep/BRep_PolygonOnClosedTriangulation.hxx diff --git a/src/BRep/BRep_PolygonOnSurface.cxx b/src/ModelingData/TKBRep/BRep/BRep_PolygonOnSurface.cxx similarity index 100% rename from src/BRep/BRep_PolygonOnSurface.cxx rename to src/ModelingData/TKBRep/BRep/BRep_PolygonOnSurface.cxx diff --git a/src/BRep/BRep_PolygonOnSurface.hxx b/src/ModelingData/TKBRep/BRep/BRep_PolygonOnSurface.hxx similarity index 100% rename from src/BRep/BRep_PolygonOnSurface.hxx rename to src/ModelingData/TKBRep/BRep/BRep_PolygonOnSurface.hxx diff --git a/src/BRep/BRep_PolygonOnTriangulation.cxx b/src/ModelingData/TKBRep/BRep/BRep_PolygonOnTriangulation.cxx similarity index 100% rename from src/BRep/BRep_PolygonOnTriangulation.cxx rename to src/ModelingData/TKBRep/BRep/BRep_PolygonOnTriangulation.cxx diff --git a/src/BRep/BRep_PolygonOnTriangulation.hxx b/src/ModelingData/TKBRep/BRep/BRep_PolygonOnTriangulation.hxx similarity index 100% rename from src/BRep/BRep_PolygonOnTriangulation.hxx rename to src/ModelingData/TKBRep/BRep/BRep_PolygonOnTriangulation.hxx diff --git a/src/BRep/BRep_TEdge.cxx b/src/ModelingData/TKBRep/BRep/BRep_TEdge.cxx similarity index 100% rename from src/BRep/BRep_TEdge.cxx rename to src/ModelingData/TKBRep/BRep/BRep_TEdge.cxx diff --git a/src/BRep/BRep_TEdge.hxx b/src/ModelingData/TKBRep/BRep/BRep_TEdge.hxx similarity index 100% rename from src/BRep/BRep_TEdge.hxx rename to src/ModelingData/TKBRep/BRep/BRep_TEdge.hxx diff --git a/src/BRep/BRep_TEdge.lxx b/src/ModelingData/TKBRep/BRep/BRep_TEdge.lxx similarity index 100% rename from src/BRep/BRep_TEdge.lxx rename to src/ModelingData/TKBRep/BRep/BRep_TEdge.lxx diff --git a/src/BRep/BRep_TFace.cxx b/src/ModelingData/TKBRep/BRep/BRep_TFace.cxx similarity index 100% rename from src/BRep/BRep_TFace.cxx rename to src/ModelingData/TKBRep/BRep/BRep_TFace.cxx diff --git a/src/BRep/BRep_TFace.hxx b/src/ModelingData/TKBRep/BRep/BRep_TFace.hxx similarity index 100% rename from src/BRep/BRep_TFace.hxx rename to src/ModelingData/TKBRep/BRep/BRep_TFace.hxx diff --git a/src/BRep/BRep_TVertex.cxx b/src/ModelingData/TKBRep/BRep/BRep_TVertex.cxx similarity index 100% rename from src/BRep/BRep_TVertex.cxx rename to src/ModelingData/TKBRep/BRep/BRep_TVertex.cxx diff --git a/src/BRep/BRep_TVertex.hxx b/src/ModelingData/TKBRep/BRep/BRep_TVertex.hxx similarity index 100% rename from src/BRep/BRep_TVertex.hxx rename to src/ModelingData/TKBRep/BRep/BRep_TVertex.hxx diff --git a/src/BRep/BRep_TVertex.lxx b/src/ModelingData/TKBRep/BRep/BRep_TVertex.lxx similarity index 100% rename from src/BRep/BRep_TVertex.lxx rename to src/ModelingData/TKBRep/BRep/BRep_TVertex.lxx diff --git a/src/BRep/BRep_Tool.cxx b/src/ModelingData/TKBRep/BRep/BRep_Tool.cxx similarity index 100% rename from src/BRep/BRep_Tool.cxx rename to src/ModelingData/TKBRep/BRep/BRep_Tool.cxx diff --git a/src/BRep/BRep_Tool.hxx b/src/ModelingData/TKBRep/BRep/BRep_Tool.hxx similarity index 100% rename from src/BRep/BRep_Tool.hxx rename to src/ModelingData/TKBRep/BRep/BRep_Tool.hxx diff --git a/src/ModelingData/TKBRep/BRep/FILES.cmake b/src/ModelingData/TKBRep/BRep/FILES.cmake new file mode 100644 index 0000000000..4e4c20af09 --- /dev/null +++ b/src/ModelingData/TKBRep/BRep/FILES.cmake @@ -0,0 +1,59 @@ +# Source files for BRep package +set(OCCT_BRep_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRep_FILES + BRep_Builder.cxx + BRep_Builder.hxx + BRep_Builder.lxx + BRep_Curve3D.cxx + BRep_Curve3D.hxx + BRep_CurveOn2Surfaces.cxx + BRep_CurveOn2Surfaces.hxx + BRep_CurveOnClosedSurface.cxx + BRep_CurveOnClosedSurface.hxx + BRep_CurveOnClosedSurface.lxx + BRep_CurveOnSurface.cxx + BRep_CurveOnSurface.hxx + BRep_CurveOnSurface.lxx + BRep_CurveRepresentation.cxx + BRep_CurveRepresentation.hxx + BRep_CurveRepresentation.lxx + BRep_GCurve.cxx + BRep_GCurve.hxx + BRep_GCurve.lxx + BRep_ListIteratorOfListOfCurveRepresentation.hxx + BRep_ListIteratorOfListOfPointRepresentation.hxx + BRep_ListOfCurveRepresentation.hxx + BRep_ListOfPointRepresentation.hxx + BRep_PointOnCurve.cxx + BRep_PointOnCurve.hxx + BRep_PointOnCurveOnSurface.cxx + BRep_PointOnCurveOnSurface.hxx + BRep_PointOnSurface.cxx + BRep_PointOnSurface.hxx + BRep_PointRepresentation.cxx + BRep_PointRepresentation.hxx + BRep_PointRepresentation.lxx + BRep_PointsOnSurface.cxx + BRep_PointsOnSurface.hxx + BRep_Polygon3D.cxx + BRep_Polygon3D.hxx + BRep_PolygonOnClosedSurface.cxx + BRep_PolygonOnClosedSurface.hxx + BRep_PolygonOnClosedTriangulation.cxx + BRep_PolygonOnClosedTriangulation.hxx + BRep_PolygonOnSurface.cxx + BRep_PolygonOnSurface.hxx + BRep_PolygonOnTriangulation.cxx + BRep_PolygonOnTriangulation.hxx + BRep_TEdge.cxx + BRep_TEdge.hxx + BRep_TEdge.lxx + BRep_TFace.cxx + BRep_TFace.hxx + BRep_Tool.cxx + BRep_Tool.hxx + BRep_TVertex.cxx + BRep_TVertex.hxx + BRep_TVertex.lxx +) diff --git a/src/BRepAdaptor/BRepAdaptor_Array1OfCurve.hxx b/src/ModelingData/TKBRep/BRepAdaptor/BRepAdaptor_Array1OfCurve.hxx similarity index 100% rename from src/BRepAdaptor/BRepAdaptor_Array1OfCurve.hxx rename to src/ModelingData/TKBRep/BRepAdaptor/BRepAdaptor_Array1OfCurve.hxx diff --git a/src/BRepAdaptor/BRepAdaptor_CompCurve.cxx b/src/ModelingData/TKBRep/BRepAdaptor/BRepAdaptor_CompCurve.cxx similarity index 100% rename from src/BRepAdaptor/BRepAdaptor_CompCurve.cxx rename to src/ModelingData/TKBRep/BRepAdaptor/BRepAdaptor_CompCurve.cxx diff --git a/src/BRepAdaptor/BRepAdaptor_CompCurve.hxx b/src/ModelingData/TKBRep/BRepAdaptor/BRepAdaptor_CompCurve.hxx similarity index 100% rename from src/BRepAdaptor/BRepAdaptor_CompCurve.hxx rename to src/ModelingData/TKBRep/BRepAdaptor/BRepAdaptor_CompCurve.hxx diff --git a/src/BRepAdaptor/BRepAdaptor_Curve.cxx b/src/ModelingData/TKBRep/BRepAdaptor/BRepAdaptor_Curve.cxx similarity index 100% rename from src/BRepAdaptor/BRepAdaptor_Curve.cxx rename to src/ModelingData/TKBRep/BRepAdaptor/BRepAdaptor_Curve.cxx diff --git a/src/BRepAdaptor/BRepAdaptor_Curve.hxx b/src/ModelingData/TKBRep/BRepAdaptor/BRepAdaptor_Curve.hxx similarity index 100% rename from src/BRepAdaptor/BRepAdaptor_Curve.hxx rename to src/ModelingData/TKBRep/BRepAdaptor/BRepAdaptor_Curve.hxx diff --git a/src/BRepAdaptor/BRepAdaptor_Curve2d.cxx b/src/ModelingData/TKBRep/BRepAdaptor/BRepAdaptor_Curve2d.cxx similarity index 100% rename from src/BRepAdaptor/BRepAdaptor_Curve2d.cxx rename to src/ModelingData/TKBRep/BRepAdaptor/BRepAdaptor_Curve2d.cxx diff --git a/src/BRepAdaptor/BRepAdaptor_Curve2d.hxx b/src/ModelingData/TKBRep/BRepAdaptor/BRepAdaptor_Curve2d.hxx similarity index 100% rename from src/BRepAdaptor/BRepAdaptor_Curve2d.hxx rename to src/ModelingData/TKBRep/BRepAdaptor/BRepAdaptor_Curve2d.hxx diff --git a/src/BRepAdaptor/BRepAdaptor_HArray1OfCurve.hxx b/src/ModelingData/TKBRep/BRepAdaptor/BRepAdaptor_HArray1OfCurve.hxx similarity index 100% rename from src/BRepAdaptor/BRepAdaptor_HArray1OfCurve.hxx rename to src/ModelingData/TKBRep/BRepAdaptor/BRepAdaptor_HArray1OfCurve.hxx diff --git a/src/BRepAdaptor/BRepAdaptor_Surface.cxx b/src/ModelingData/TKBRep/BRepAdaptor/BRepAdaptor_Surface.cxx similarity index 100% rename from src/BRepAdaptor/BRepAdaptor_Surface.cxx rename to src/ModelingData/TKBRep/BRepAdaptor/BRepAdaptor_Surface.cxx diff --git a/src/BRepAdaptor/BRepAdaptor_Surface.hxx b/src/ModelingData/TKBRep/BRepAdaptor/BRepAdaptor_Surface.hxx similarity index 100% rename from src/BRepAdaptor/BRepAdaptor_Surface.hxx rename to src/ModelingData/TKBRep/BRepAdaptor/BRepAdaptor_Surface.hxx diff --git a/src/ModelingData/TKBRep/BRepAdaptor/FILES.cmake b/src/ModelingData/TKBRep/BRepAdaptor/FILES.cmake new file mode 100644 index 0000000000..a0b7546d94 --- /dev/null +++ b/src/ModelingData/TKBRep/BRepAdaptor/FILES.cmake @@ -0,0 +1,15 @@ +# Source files for BRepAdaptor package +set(OCCT_BRepAdaptor_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepAdaptor_FILES + BRepAdaptor_Array1OfCurve.hxx + BRepAdaptor_CompCurve.cxx + BRepAdaptor_CompCurve.hxx + BRepAdaptor_Curve.cxx + BRepAdaptor_Curve.hxx + BRepAdaptor_Curve2d.cxx + BRepAdaptor_Curve2d.hxx + BRepAdaptor_HArray1OfCurve.hxx + BRepAdaptor_Surface.cxx + BRepAdaptor_Surface.hxx +) diff --git a/src/BRepLProp/BRepLProp.cxx b/src/ModelingData/TKBRep/BRepLProp/BRepLProp.cxx similarity index 100% rename from src/BRepLProp/BRepLProp.cxx rename to src/ModelingData/TKBRep/BRepLProp/BRepLProp.cxx diff --git a/src/BRepLProp/BRepLProp.hxx b/src/ModelingData/TKBRep/BRepLProp/BRepLProp.hxx similarity index 100% rename from src/BRepLProp/BRepLProp.hxx rename to src/ModelingData/TKBRep/BRepLProp/BRepLProp.hxx diff --git a/src/BRepLProp/BRepLProp_CLProps.hxx b/src/ModelingData/TKBRep/BRepLProp/BRepLProp_CLProps.hxx similarity index 100% rename from src/BRepLProp/BRepLProp_CLProps.hxx rename to src/ModelingData/TKBRep/BRepLProp/BRepLProp_CLProps.hxx diff --git a/src/BRepLProp/BRepLProp_CLProps_0.cxx b/src/ModelingData/TKBRep/BRepLProp/BRepLProp_CLProps_0.cxx similarity index 100% rename from src/BRepLProp/BRepLProp_CLProps_0.cxx rename to src/ModelingData/TKBRep/BRepLProp/BRepLProp_CLProps_0.cxx diff --git a/src/BRepLProp/BRepLProp_CurveTool.cxx b/src/ModelingData/TKBRep/BRepLProp/BRepLProp_CurveTool.cxx similarity index 100% rename from src/BRepLProp/BRepLProp_CurveTool.cxx rename to src/ModelingData/TKBRep/BRepLProp/BRepLProp_CurveTool.cxx diff --git a/src/BRepLProp/BRepLProp_CurveTool.hxx b/src/ModelingData/TKBRep/BRepLProp/BRepLProp_CurveTool.hxx similarity index 100% rename from src/BRepLProp/BRepLProp_CurveTool.hxx rename to src/ModelingData/TKBRep/BRepLProp/BRepLProp_CurveTool.hxx diff --git a/src/BRepLProp/BRepLProp_SLProps.hxx b/src/ModelingData/TKBRep/BRepLProp/BRepLProp_SLProps.hxx similarity index 100% rename from src/BRepLProp/BRepLProp_SLProps.hxx rename to src/ModelingData/TKBRep/BRepLProp/BRepLProp_SLProps.hxx diff --git a/src/BRepLProp/BRepLProp_SLProps_0.cxx b/src/ModelingData/TKBRep/BRepLProp/BRepLProp_SLProps_0.cxx similarity index 100% rename from src/BRepLProp/BRepLProp_SLProps_0.cxx rename to src/ModelingData/TKBRep/BRepLProp/BRepLProp_SLProps_0.cxx diff --git a/src/BRepLProp/BRepLProp_SurfaceTool.cxx b/src/ModelingData/TKBRep/BRepLProp/BRepLProp_SurfaceTool.cxx similarity index 100% rename from src/BRepLProp/BRepLProp_SurfaceTool.cxx rename to src/ModelingData/TKBRep/BRepLProp/BRepLProp_SurfaceTool.cxx diff --git a/src/BRepLProp/BRepLProp_SurfaceTool.hxx b/src/ModelingData/TKBRep/BRepLProp/BRepLProp_SurfaceTool.hxx similarity index 100% rename from src/BRepLProp/BRepLProp_SurfaceTool.hxx rename to src/ModelingData/TKBRep/BRepLProp/BRepLProp_SurfaceTool.hxx diff --git a/src/ModelingData/TKBRep/BRepLProp/FILES.cmake b/src/ModelingData/TKBRep/BRepLProp/FILES.cmake new file mode 100644 index 0000000000..5c812cf534 --- /dev/null +++ b/src/ModelingData/TKBRep/BRepLProp/FILES.cmake @@ -0,0 +1,15 @@ +# Source files for BRepLProp package +set(OCCT_BRepLProp_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepLProp_FILES + BRepLProp.cxx + BRepLProp.hxx + BRepLProp_CLProps.hxx + BRepLProp_CLProps_0.cxx + BRepLProp_CurveTool.cxx + BRepLProp_CurveTool.hxx + BRepLProp_SLProps.hxx + BRepLProp_SLProps_0.cxx + BRepLProp_SurfaceTool.cxx + BRepLProp_SurfaceTool.hxx +) diff --git a/src/BRepTools/BRepTools.cxx b/src/ModelingData/TKBRep/BRepTools/BRepTools.cxx similarity index 100% rename from src/BRepTools/BRepTools.cxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools.cxx diff --git a/src/BRepTools/BRepTools.hxx b/src/ModelingData/TKBRep/BRepTools/BRepTools.hxx similarity index 100% rename from src/BRepTools/BRepTools.hxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools.hxx diff --git a/src/BRepTools/BRepTools_CopyModification.cxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_CopyModification.cxx similarity index 100% rename from src/BRepTools/BRepTools_CopyModification.cxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_CopyModification.cxx diff --git a/src/BRepTools/BRepTools_CopyModification.hxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_CopyModification.hxx similarity index 100% rename from src/BRepTools/BRepTools_CopyModification.hxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_CopyModification.hxx diff --git a/src/BRepTools/BRepTools_DataMapIteratorOfMapOfVertexPnt2d.hxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_DataMapIteratorOfMapOfVertexPnt2d.hxx similarity index 100% rename from src/BRepTools/BRepTools_DataMapIteratorOfMapOfVertexPnt2d.hxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_DataMapIteratorOfMapOfVertexPnt2d.hxx diff --git a/src/BRepTools/BRepTools_Debug.cxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_Debug.cxx similarity index 100% rename from src/BRepTools/BRepTools_Debug.cxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_Debug.cxx diff --git a/src/BRepTools/BRepTools_GTrsfModification.cxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_GTrsfModification.cxx similarity index 100% rename from src/BRepTools/BRepTools_GTrsfModification.cxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_GTrsfModification.cxx diff --git a/src/BRepTools/BRepTools_GTrsfModification.hxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_GTrsfModification.hxx similarity index 100% rename from src/BRepTools/BRepTools_GTrsfModification.hxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_GTrsfModification.hxx diff --git a/src/BRepTools/BRepTools_History.cxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_History.cxx similarity index 100% rename from src/BRepTools/BRepTools_History.cxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_History.cxx diff --git a/src/BRepTools/BRepTools_History.hxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_History.hxx similarity index 100% rename from src/BRepTools/BRepTools_History.hxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_History.hxx diff --git a/src/BRepTools/BRepTools_MapOfVertexPnt2d.hxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_MapOfVertexPnt2d.hxx similarity index 100% rename from src/BRepTools/BRepTools_MapOfVertexPnt2d.hxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_MapOfVertexPnt2d.hxx diff --git a/src/BRepTools/BRepTools_Modification.cxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_Modification.cxx similarity index 100% rename from src/BRepTools/BRepTools_Modification.cxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_Modification.cxx diff --git a/src/BRepTools/BRepTools_Modification.hxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_Modification.hxx similarity index 100% rename from src/BRepTools/BRepTools_Modification.hxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_Modification.hxx diff --git a/src/BRepTools/BRepTools_Modifier.cxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_Modifier.cxx similarity index 100% rename from src/BRepTools/BRepTools_Modifier.cxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_Modifier.cxx diff --git a/src/BRepTools/BRepTools_Modifier.hxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_Modifier.hxx similarity index 100% rename from src/BRepTools/BRepTools_Modifier.hxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_Modifier.hxx diff --git a/src/BRepTools/BRepTools_Modifier.lxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_Modifier.lxx similarity index 100% rename from src/BRepTools/BRepTools_Modifier.lxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_Modifier.lxx diff --git a/src/BRepTools/BRepTools_NurbsConvertModification.cxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_NurbsConvertModification.cxx similarity index 100% rename from src/BRepTools/BRepTools_NurbsConvertModification.cxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_NurbsConvertModification.cxx diff --git a/src/BRepTools/BRepTools_NurbsConvertModification.hxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_NurbsConvertModification.hxx similarity index 100% rename from src/BRepTools/BRepTools_NurbsConvertModification.hxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_NurbsConvertModification.hxx diff --git a/src/BRepTools/BRepTools_PurgeLocations.cxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_PurgeLocations.cxx similarity index 100% rename from src/BRepTools/BRepTools_PurgeLocations.cxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_PurgeLocations.cxx diff --git a/src/BRepTools/BRepTools_PurgeLocations.hxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_PurgeLocations.hxx similarity index 100% rename from src/BRepTools/BRepTools_PurgeLocations.hxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_PurgeLocations.hxx diff --git a/src/BRepTools/BRepTools_Quilt.cxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_Quilt.cxx similarity index 100% rename from src/BRepTools/BRepTools_Quilt.cxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_Quilt.cxx diff --git a/src/BRepTools/BRepTools_Quilt.hxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_Quilt.hxx similarity index 100% rename from src/BRepTools/BRepTools_Quilt.hxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_Quilt.hxx diff --git a/src/BRepTools/BRepTools_ReShape.cxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_ReShape.cxx similarity index 100% rename from src/BRepTools/BRepTools_ReShape.cxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_ReShape.cxx diff --git a/src/BRepTools/BRepTools_ReShape.hxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_ReShape.hxx similarity index 100% rename from src/BRepTools/BRepTools_ReShape.hxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_ReShape.hxx diff --git a/src/BRepTools/BRepTools_ShapeSet.cxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_ShapeSet.cxx similarity index 100% rename from src/BRepTools/BRepTools_ShapeSet.cxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_ShapeSet.cxx diff --git a/src/BRepTools/BRepTools_ShapeSet.hxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_ShapeSet.hxx similarity index 100% rename from src/BRepTools/BRepTools_ShapeSet.hxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_ShapeSet.hxx diff --git a/src/BRepTools/BRepTools_Substitution.cxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_Substitution.cxx similarity index 100% rename from src/BRepTools/BRepTools_Substitution.cxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_Substitution.cxx diff --git a/src/BRepTools/BRepTools_Substitution.hxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_Substitution.hxx similarity index 100% rename from src/BRepTools/BRepTools_Substitution.hxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_Substitution.hxx diff --git a/src/BRepTools/BRepTools_TrsfModification.cxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_TrsfModification.cxx similarity index 100% rename from src/BRepTools/BRepTools_TrsfModification.cxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_TrsfModification.cxx diff --git a/src/BRepTools/BRepTools_TrsfModification.hxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_TrsfModification.hxx similarity index 100% rename from src/BRepTools/BRepTools_TrsfModification.hxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_TrsfModification.hxx diff --git a/src/BRepTools/BRepTools_WireExplorer.cxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_WireExplorer.cxx similarity index 100% rename from src/BRepTools/BRepTools_WireExplorer.cxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_WireExplorer.cxx diff --git a/src/BRepTools/BRepTools_WireExplorer.hxx b/src/ModelingData/TKBRep/BRepTools/BRepTools_WireExplorer.hxx similarity index 100% rename from src/BRepTools/BRepTools_WireExplorer.hxx rename to src/ModelingData/TKBRep/BRepTools/BRepTools_WireExplorer.hxx diff --git a/src/ModelingData/TKBRep/BRepTools/FILES.cmake b/src/ModelingData/TKBRep/BRepTools/FILES.cmake new file mode 100644 index 0000000000..2f2c11f012 --- /dev/null +++ b/src/ModelingData/TKBRep/BRepTools/FILES.cmake @@ -0,0 +1,37 @@ +# Source files for BRepTools package +set(OCCT_BRepTools_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BRepTools_FILES + BRepTools.cxx + BRepTools.hxx + BRepTools_CopyModification.cxx + BRepTools_CopyModification.hxx + BRepTools_DataMapIteratorOfMapOfVertexPnt2d.hxx + BRepTools_Debug.cxx + BRepTools_GTrsfModification.cxx + BRepTools_GTrsfModification.hxx + BRepTools_History.hxx + BRepTools_History.cxx + BRepTools_MapOfVertexPnt2d.hxx + BRepTools_Modification.cxx + BRepTools_Modification.hxx + BRepTools_Modifier.cxx + BRepTools_Modifier.hxx + BRepTools_Modifier.lxx + BRepTools_NurbsConvertModification.cxx + BRepTools_NurbsConvertModification.hxx + BRepTools_Quilt.cxx + BRepTools_Quilt.hxx + BRepTools_ReShape.cxx + BRepTools_ReShape.hxx + BRepTools_ShapeSet.cxx + BRepTools_ShapeSet.hxx + BRepTools_Substitution.cxx + BRepTools_Substitution.hxx + BRepTools_TrsfModification.cxx + BRepTools_TrsfModification.hxx + BRepTools_WireExplorer.cxx + BRepTools_WireExplorer.hxx + BRepTools_PurgeLocations.cxx + BRepTools_PurgeLocations.hxx +) diff --git a/src/BinTools/BinTools.cxx b/src/ModelingData/TKBRep/BinTools/BinTools.cxx similarity index 100% rename from src/BinTools/BinTools.cxx rename to src/ModelingData/TKBRep/BinTools/BinTools.cxx diff --git a/src/BinTools/BinTools.hxx b/src/ModelingData/TKBRep/BinTools/BinTools.hxx similarity index 100% rename from src/BinTools/BinTools.hxx rename to src/ModelingData/TKBRep/BinTools/BinTools.hxx diff --git a/src/BinTools/BinTools_Curve2dSet.cxx b/src/ModelingData/TKBRep/BinTools/BinTools_Curve2dSet.cxx similarity index 100% rename from src/BinTools/BinTools_Curve2dSet.cxx rename to src/ModelingData/TKBRep/BinTools/BinTools_Curve2dSet.cxx diff --git a/src/BinTools/BinTools_Curve2dSet.hxx b/src/ModelingData/TKBRep/BinTools/BinTools_Curve2dSet.hxx similarity index 100% rename from src/BinTools/BinTools_Curve2dSet.hxx rename to src/ModelingData/TKBRep/BinTools/BinTools_Curve2dSet.hxx diff --git a/src/BinTools/BinTools_CurveSet.cxx b/src/ModelingData/TKBRep/BinTools/BinTools_CurveSet.cxx similarity index 100% rename from src/BinTools/BinTools_CurveSet.cxx rename to src/ModelingData/TKBRep/BinTools/BinTools_CurveSet.cxx diff --git a/src/BinTools/BinTools_CurveSet.hxx b/src/ModelingData/TKBRep/BinTools/BinTools_CurveSet.hxx similarity index 100% rename from src/BinTools/BinTools_CurveSet.hxx rename to src/ModelingData/TKBRep/BinTools/BinTools_CurveSet.hxx diff --git a/src/BinTools/BinTools_FormatVersion.hxx b/src/ModelingData/TKBRep/BinTools/BinTools_FormatVersion.hxx similarity index 100% rename from src/BinTools/BinTools_FormatVersion.hxx rename to src/ModelingData/TKBRep/BinTools/BinTools_FormatVersion.hxx diff --git a/src/BinTools/BinTools_IStream.cxx b/src/ModelingData/TKBRep/BinTools/BinTools_IStream.cxx similarity index 100% rename from src/BinTools/BinTools_IStream.cxx rename to src/ModelingData/TKBRep/BinTools/BinTools_IStream.cxx diff --git a/src/BinTools/BinTools_IStream.hxx b/src/ModelingData/TKBRep/BinTools/BinTools_IStream.hxx similarity index 100% rename from src/BinTools/BinTools_IStream.hxx rename to src/ModelingData/TKBRep/BinTools/BinTools_IStream.hxx diff --git a/src/BinTools/BinTools_LocationSet.cxx b/src/ModelingData/TKBRep/BinTools/BinTools_LocationSet.cxx similarity index 100% rename from src/BinTools/BinTools_LocationSet.cxx rename to src/ModelingData/TKBRep/BinTools/BinTools_LocationSet.cxx diff --git a/src/BinTools/BinTools_LocationSet.hxx b/src/ModelingData/TKBRep/BinTools/BinTools_LocationSet.hxx similarity index 100% rename from src/BinTools/BinTools_LocationSet.hxx rename to src/ModelingData/TKBRep/BinTools/BinTools_LocationSet.hxx diff --git a/src/BinTools/BinTools_LocationSetPtr.hxx b/src/ModelingData/TKBRep/BinTools/BinTools_LocationSetPtr.hxx similarity index 100% rename from src/BinTools/BinTools_LocationSetPtr.hxx rename to src/ModelingData/TKBRep/BinTools/BinTools_LocationSetPtr.hxx diff --git a/src/BinTools/BinTools_OStream.cxx b/src/ModelingData/TKBRep/BinTools/BinTools_OStream.cxx similarity index 100% rename from src/BinTools/BinTools_OStream.cxx rename to src/ModelingData/TKBRep/BinTools/BinTools_OStream.cxx diff --git a/src/BinTools/BinTools_OStream.hxx b/src/ModelingData/TKBRep/BinTools/BinTools_OStream.hxx similarity index 100% rename from src/BinTools/BinTools_OStream.hxx rename to src/ModelingData/TKBRep/BinTools/BinTools_OStream.hxx diff --git a/src/BinTools/BinTools_ObjectType.hxx b/src/ModelingData/TKBRep/BinTools/BinTools_ObjectType.hxx similarity index 100% rename from src/BinTools/BinTools_ObjectType.hxx rename to src/ModelingData/TKBRep/BinTools/BinTools_ObjectType.hxx diff --git a/src/BinTools/BinTools_ShapeReader.cxx b/src/ModelingData/TKBRep/BinTools/BinTools_ShapeReader.cxx similarity index 100% rename from src/BinTools/BinTools_ShapeReader.cxx rename to src/ModelingData/TKBRep/BinTools/BinTools_ShapeReader.cxx diff --git a/src/BinTools/BinTools_ShapeReader.hxx b/src/ModelingData/TKBRep/BinTools/BinTools_ShapeReader.hxx similarity index 100% rename from src/BinTools/BinTools_ShapeReader.hxx rename to src/ModelingData/TKBRep/BinTools/BinTools_ShapeReader.hxx diff --git a/src/BinTools/BinTools_ShapeSet.cxx b/src/ModelingData/TKBRep/BinTools/BinTools_ShapeSet.cxx similarity index 100% rename from src/BinTools/BinTools_ShapeSet.cxx rename to src/ModelingData/TKBRep/BinTools/BinTools_ShapeSet.cxx diff --git a/src/BinTools/BinTools_ShapeSet.hxx b/src/ModelingData/TKBRep/BinTools/BinTools_ShapeSet.hxx similarity index 100% rename from src/BinTools/BinTools_ShapeSet.hxx rename to src/ModelingData/TKBRep/BinTools/BinTools_ShapeSet.hxx diff --git a/src/BinTools/BinTools_ShapeSetBase.cxx b/src/ModelingData/TKBRep/BinTools/BinTools_ShapeSetBase.cxx similarity index 100% rename from src/BinTools/BinTools_ShapeSetBase.cxx rename to src/ModelingData/TKBRep/BinTools/BinTools_ShapeSetBase.cxx diff --git a/src/BinTools/BinTools_ShapeSetBase.hxx b/src/ModelingData/TKBRep/BinTools/BinTools_ShapeSetBase.hxx similarity index 100% rename from src/BinTools/BinTools_ShapeSetBase.hxx rename to src/ModelingData/TKBRep/BinTools/BinTools_ShapeSetBase.hxx diff --git a/src/BinTools/BinTools_ShapeWriter.cxx b/src/ModelingData/TKBRep/BinTools/BinTools_ShapeWriter.cxx similarity index 100% rename from src/BinTools/BinTools_ShapeWriter.cxx rename to src/ModelingData/TKBRep/BinTools/BinTools_ShapeWriter.cxx diff --git a/src/BinTools/BinTools_ShapeWriter.hxx b/src/ModelingData/TKBRep/BinTools/BinTools_ShapeWriter.hxx similarity index 100% rename from src/BinTools/BinTools_ShapeWriter.hxx rename to src/ModelingData/TKBRep/BinTools/BinTools_ShapeWriter.hxx diff --git a/src/BinTools/BinTools_SurfaceSet.cxx b/src/ModelingData/TKBRep/BinTools/BinTools_SurfaceSet.cxx similarity index 100% rename from src/BinTools/BinTools_SurfaceSet.cxx rename to src/ModelingData/TKBRep/BinTools/BinTools_SurfaceSet.cxx diff --git a/src/BinTools/BinTools_SurfaceSet.hxx b/src/ModelingData/TKBRep/BinTools/BinTools_SurfaceSet.hxx similarity index 100% rename from src/BinTools/BinTools_SurfaceSet.hxx rename to src/ModelingData/TKBRep/BinTools/BinTools_SurfaceSet.hxx diff --git a/src/ModelingData/TKBRep/BinTools/FILES.cmake b/src/ModelingData/TKBRep/BinTools/FILES.cmake new file mode 100644 index 0000000000..f7429f5636 --- /dev/null +++ b/src/ModelingData/TKBRep/BinTools/FILES.cmake @@ -0,0 +1,30 @@ +# Source files for BinTools package +set(OCCT_BinTools_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BinTools_FILES + BinTools.cxx + BinTools.hxx + BinTools_Curve2dSet.cxx + BinTools_Curve2dSet.hxx + BinTools_CurveSet.cxx + BinTools_CurveSet.hxx + BinTools_FormatVersion.hxx + BinTools_IStream.cxx + BinTools_IStream.hxx + BinTools_LocationSet.cxx + BinTools_LocationSet.hxx + BinTools_LocationSetPtr.hxx + BinTools_ShapeSet.cxx + BinTools_ShapeSet.hxx + BinTools_ShapeSetBase.cxx + BinTools_ShapeSetBase.hxx + BinTools_SurfaceSet.cxx + BinTools_SurfaceSet.hxx + BinTools_ObjectType.hxx + BinTools_OStream.cxx + BinTools_OStream.hxx + BinTools_ShapeReader.hxx + BinTools_ShapeReader.cxx + BinTools_ShapeWriter.hxx + BinTools_ShapeWriter.cxx +) diff --git a/src/TKBRep/CMakeLists.txt b/src/ModelingData/TKBRep/CMakeLists.txt similarity index 100% rename from src/TKBRep/CMakeLists.txt rename to src/ModelingData/TKBRep/CMakeLists.txt diff --git a/src/ModelingData/TKBRep/EXTERNLIB.cmake b/src/ModelingData/TKBRep/EXTERNLIB.cmake new file mode 100644 index 0000000000..0aec21519b --- /dev/null +++ b/src/ModelingData/TKBRep/EXTERNLIB.cmake @@ -0,0 +1,8 @@ +# External dependencies for TKBRep +set(OCCT_TKBRep_EXTERNAL_LIBS + TKMath + TKernel + TKG2d + TKG3d + TKGeomBase +) diff --git a/src/ModelingData/TKBRep/FILES.cmake b/src/ModelingData/TKBRep/FILES.cmake new file mode 100644 index 0000000000..b1d537d03b --- /dev/null +++ b/src/ModelingData/TKBRep/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKBRep +set(OCCT_TKBRep_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKBRep_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ModelingData/TKBRep/PACKAGES.cmake b/src/ModelingData/TKBRep/PACKAGES.cmake new file mode 100644 index 0000000000..8189ac33ed --- /dev/null +++ b/src/ModelingData/TKBRep/PACKAGES.cmake @@ -0,0 +1,11 @@ +# Auto-generated list of packages for TKBRep toolkit +set(OCCT_TKBRep_LIST_OF_PACKAGES + TopoDS + TopExp + TopTools + BRep + BRepLProp + BRepAdaptor + BRepTools + BinTools +) diff --git a/src/TKBRep/TKBRep_pch.hxx b/src/ModelingData/TKBRep/TKBRep_pch.hxx similarity index 100% rename from src/TKBRep/TKBRep_pch.hxx rename to src/ModelingData/TKBRep/TKBRep_pch.hxx diff --git a/src/ModelingData/TKBRep/TopExp/FILES.cmake b/src/ModelingData/TKBRep/TopExp/FILES.cmake new file mode 100644 index 0000000000..e1d85bccdd --- /dev/null +++ b/src/ModelingData/TKBRep/TopExp/FILES.cmake @@ -0,0 +1,10 @@ +# Source files for TopExp package +set(OCCT_TopExp_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TopExp_FILES + TopExp.cxx + TopExp.hxx + TopExp_Explorer.cxx + TopExp_Explorer.hxx + TopExp_Stack.hxx +) diff --git a/src/TopExp/TopExp.cxx b/src/ModelingData/TKBRep/TopExp/TopExp.cxx similarity index 100% rename from src/TopExp/TopExp.cxx rename to src/ModelingData/TKBRep/TopExp/TopExp.cxx diff --git a/src/TopExp/TopExp.hxx b/src/ModelingData/TKBRep/TopExp/TopExp.hxx similarity index 100% rename from src/TopExp/TopExp.hxx rename to src/ModelingData/TKBRep/TopExp/TopExp.hxx diff --git a/src/TopExp/TopExp_Explorer.cxx b/src/ModelingData/TKBRep/TopExp/TopExp_Explorer.cxx similarity index 100% rename from src/TopExp/TopExp_Explorer.cxx rename to src/ModelingData/TKBRep/TopExp/TopExp_Explorer.cxx diff --git a/src/TopExp/TopExp_Explorer.hxx b/src/ModelingData/TKBRep/TopExp/TopExp_Explorer.hxx similarity index 100% rename from src/TopExp/TopExp_Explorer.hxx rename to src/ModelingData/TKBRep/TopExp/TopExp_Explorer.hxx diff --git a/src/TopExp/TopExp_Stack.hxx b/src/ModelingData/TKBRep/TopExp/TopExp_Stack.hxx similarity index 100% rename from src/TopExp/TopExp_Stack.hxx rename to src/ModelingData/TKBRep/TopExp/TopExp_Stack.hxx diff --git a/src/ModelingData/TKBRep/TopTools/FILES.cmake b/src/ModelingData/TKBRep/TopTools/FILES.cmake new file mode 100644 index 0000000000..e01d90f0c5 --- /dev/null +++ b/src/ModelingData/TKBRep/TopTools/FILES.cmake @@ -0,0 +1,58 @@ +# Source files for TopTools package +set(OCCT_TopTools_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TopTools_FILES + TopTools.cxx + TopTools.hxx + TopTools_Array1OfListOfShape.hxx + TopTools_Array1OfShape.hxx + TopTools_Array2OfShape.hxx + TopTools_DataMapIteratorOfDataMapOfIntegerListOfShape.hxx + TopTools_DataMapIteratorOfDataMapOfIntegerShape.hxx + TopTools_DataMapIteratorOfDataMapOfOrientedShapeInteger.hxx + TopTools_DataMapIteratorOfDataMapOfOrientedShapeShape.hxx + TopTools_DataMapIteratorOfDataMapOfShapeInteger.hxx + TopTools_DataMapIteratorOfDataMapOfShapeListOfInteger.hxx + TopTools_DataMapIteratorOfDataMapOfShapeListOfShape.hxx + TopTools_DataMapIteratorOfDataMapOfShapeReal.hxx + TopTools_DataMapIteratorOfDataMapOfShapeSequenceOfShape.hxx + TopTools_DataMapIteratorOfDataMapOfShapeShape.hxx + TopTools_DataMapOfIntegerListOfShape.hxx + TopTools_DataMapOfIntegerShape.hxx + TopTools_DataMapOfOrientedShapeInteger.hxx + TopTools_DataMapOfOrientedShapeShape.hxx + TopTools_DataMapOfShapeBox.hxx + TopTools_DataMapOfShapeInteger.hxx + TopTools_DataMapOfShapeListOfInteger.hxx + TopTools_DataMapOfShapeListOfShape.hxx + TopTools_DataMapOfShapeReal.hxx + TopTools_DataMapOfShapeSequenceOfShape.hxx + TopTools_DataMapOfShapeShape.hxx + TopTools_FormatVersion.hxx + TopTools_HArray1OfListOfShape.hxx + TopTools_HArray1OfShape.hxx + TopTools_HArray2OfShape.hxx + TopTools_HSequenceOfShape.hxx + TopTools_IndexedDataMapOfShapeAddress.hxx + TopTools_IndexedDataMapOfShapeListOfShape.hxx + TopTools_IndexedDataMapOfShapeReal.hxx + TopTools_IndexedDataMapOfShapeShape.hxx + TopTools_IndexedMapOfOrientedShape.hxx + TopTools_IndexedMapOfShape.hxx + TopTools_ListIteratorOfListOfShape.hxx + TopTools_ListOfListOfShape.hxx + TopTools_ListOfShape.hxx + TopTools_LocationSet.cxx + TopTools_LocationSet.hxx + TopTools_LocationSetPtr.hxx + TopTools_MapIteratorOfMapOfOrientedShape.hxx + TopTools_MapIteratorOfMapOfShape.hxx + TopTools_MapOfOrientedShape.hxx + TopTools_MapOfShape.hxx + TopTools_MutexForShapeProvider.cxx + TopTools_MutexForShapeProvider.hxx + TopTools_SequenceOfShape.hxx + TopTools_ShapeMapHasher.hxx + TopTools_ShapeSet.cxx + TopTools_ShapeSet.hxx +) diff --git a/src/TopTools/TopTools.cxx b/src/ModelingData/TKBRep/TopTools/TopTools.cxx similarity index 100% rename from src/TopTools/TopTools.cxx rename to src/ModelingData/TKBRep/TopTools/TopTools.cxx diff --git a/src/TopTools/TopTools.hxx b/src/ModelingData/TKBRep/TopTools/TopTools.hxx similarity index 100% rename from src/TopTools/TopTools.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools.hxx diff --git a/src/TopTools/TopTools_Array1OfListOfShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_Array1OfListOfShape.hxx similarity index 100% rename from src/TopTools/TopTools_Array1OfListOfShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_Array1OfListOfShape.hxx diff --git a/src/TopTools/TopTools_Array1OfShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_Array1OfShape.hxx similarity index 100% rename from src/TopTools/TopTools_Array1OfShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_Array1OfShape.hxx diff --git a/src/TopTools/TopTools_Array2OfShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_Array2OfShape.hxx similarity index 100% rename from src/TopTools/TopTools_Array2OfShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_Array2OfShape.hxx diff --git a/src/TopTools/TopTools_DataMapIteratorOfDataMapOfIntegerListOfShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_DataMapIteratorOfDataMapOfIntegerListOfShape.hxx similarity index 100% rename from src/TopTools/TopTools_DataMapIteratorOfDataMapOfIntegerListOfShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_DataMapIteratorOfDataMapOfIntegerListOfShape.hxx diff --git a/src/TopTools/TopTools_DataMapIteratorOfDataMapOfIntegerShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_DataMapIteratorOfDataMapOfIntegerShape.hxx similarity index 100% rename from src/TopTools/TopTools_DataMapIteratorOfDataMapOfIntegerShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_DataMapIteratorOfDataMapOfIntegerShape.hxx diff --git a/src/TopTools/TopTools_DataMapIteratorOfDataMapOfOrientedShapeInteger.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_DataMapIteratorOfDataMapOfOrientedShapeInteger.hxx similarity index 100% rename from src/TopTools/TopTools_DataMapIteratorOfDataMapOfOrientedShapeInteger.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_DataMapIteratorOfDataMapOfOrientedShapeInteger.hxx diff --git a/src/TopTools/TopTools_DataMapIteratorOfDataMapOfOrientedShapeShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_DataMapIteratorOfDataMapOfOrientedShapeShape.hxx similarity index 100% rename from src/TopTools/TopTools_DataMapIteratorOfDataMapOfOrientedShapeShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_DataMapIteratorOfDataMapOfOrientedShapeShape.hxx diff --git a/src/TopTools/TopTools_DataMapIteratorOfDataMapOfShapeInteger.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_DataMapIteratorOfDataMapOfShapeInteger.hxx similarity index 100% rename from src/TopTools/TopTools_DataMapIteratorOfDataMapOfShapeInteger.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_DataMapIteratorOfDataMapOfShapeInteger.hxx diff --git a/src/TopTools/TopTools_DataMapIteratorOfDataMapOfShapeListOfInteger.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_DataMapIteratorOfDataMapOfShapeListOfInteger.hxx similarity index 100% rename from src/TopTools/TopTools_DataMapIteratorOfDataMapOfShapeListOfInteger.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_DataMapIteratorOfDataMapOfShapeListOfInteger.hxx diff --git a/src/TopTools/TopTools_DataMapIteratorOfDataMapOfShapeListOfShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_DataMapIteratorOfDataMapOfShapeListOfShape.hxx similarity index 100% rename from src/TopTools/TopTools_DataMapIteratorOfDataMapOfShapeListOfShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_DataMapIteratorOfDataMapOfShapeListOfShape.hxx diff --git a/src/TopTools/TopTools_DataMapIteratorOfDataMapOfShapeReal.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_DataMapIteratorOfDataMapOfShapeReal.hxx similarity index 100% rename from src/TopTools/TopTools_DataMapIteratorOfDataMapOfShapeReal.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_DataMapIteratorOfDataMapOfShapeReal.hxx diff --git a/src/TopTools/TopTools_DataMapIteratorOfDataMapOfShapeSequenceOfShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_DataMapIteratorOfDataMapOfShapeSequenceOfShape.hxx similarity index 100% rename from src/TopTools/TopTools_DataMapIteratorOfDataMapOfShapeSequenceOfShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_DataMapIteratorOfDataMapOfShapeSequenceOfShape.hxx diff --git a/src/TopTools/TopTools_DataMapIteratorOfDataMapOfShapeShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_DataMapIteratorOfDataMapOfShapeShape.hxx similarity index 100% rename from src/TopTools/TopTools_DataMapIteratorOfDataMapOfShapeShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_DataMapIteratorOfDataMapOfShapeShape.hxx diff --git a/src/TopTools/TopTools_DataMapOfIntegerListOfShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_DataMapOfIntegerListOfShape.hxx similarity index 100% rename from src/TopTools/TopTools_DataMapOfIntegerListOfShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_DataMapOfIntegerListOfShape.hxx diff --git a/src/TopTools/TopTools_DataMapOfIntegerShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_DataMapOfIntegerShape.hxx similarity index 100% rename from src/TopTools/TopTools_DataMapOfIntegerShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_DataMapOfIntegerShape.hxx diff --git a/src/TopTools/TopTools_DataMapOfOrientedShapeInteger.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_DataMapOfOrientedShapeInteger.hxx similarity index 100% rename from src/TopTools/TopTools_DataMapOfOrientedShapeInteger.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_DataMapOfOrientedShapeInteger.hxx diff --git a/src/TopTools/TopTools_DataMapOfOrientedShapeShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_DataMapOfOrientedShapeShape.hxx similarity index 100% rename from src/TopTools/TopTools_DataMapOfOrientedShapeShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_DataMapOfOrientedShapeShape.hxx diff --git a/src/TopTools/TopTools_DataMapOfShapeBox.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_DataMapOfShapeBox.hxx similarity index 100% rename from src/TopTools/TopTools_DataMapOfShapeBox.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_DataMapOfShapeBox.hxx diff --git a/src/TopTools/TopTools_DataMapOfShapeInteger.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_DataMapOfShapeInteger.hxx similarity index 100% rename from src/TopTools/TopTools_DataMapOfShapeInteger.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_DataMapOfShapeInteger.hxx diff --git a/src/TopTools/TopTools_DataMapOfShapeListOfInteger.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_DataMapOfShapeListOfInteger.hxx similarity index 100% rename from src/TopTools/TopTools_DataMapOfShapeListOfInteger.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_DataMapOfShapeListOfInteger.hxx diff --git a/src/TopTools/TopTools_DataMapOfShapeListOfShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_DataMapOfShapeListOfShape.hxx similarity index 100% rename from src/TopTools/TopTools_DataMapOfShapeListOfShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_DataMapOfShapeListOfShape.hxx diff --git a/src/TopTools/TopTools_DataMapOfShapeReal.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_DataMapOfShapeReal.hxx similarity index 100% rename from src/TopTools/TopTools_DataMapOfShapeReal.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_DataMapOfShapeReal.hxx diff --git a/src/TopTools/TopTools_DataMapOfShapeSequenceOfShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_DataMapOfShapeSequenceOfShape.hxx similarity index 100% rename from src/TopTools/TopTools_DataMapOfShapeSequenceOfShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_DataMapOfShapeSequenceOfShape.hxx diff --git a/src/TopTools/TopTools_DataMapOfShapeShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_DataMapOfShapeShape.hxx similarity index 100% rename from src/TopTools/TopTools_DataMapOfShapeShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_DataMapOfShapeShape.hxx diff --git a/src/TopTools/TopTools_FormatVersion.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_FormatVersion.hxx similarity index 100% rename from src/TopTools/TopTools_FormatVersion.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_FormatVersion.hxx diff --git a/src/TopTools/TopTools_HArray1OfListOfShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_HArray1OfListOfShape.hxx similarity index 100% rename from src/TopTools/TopTools_HArray1OfListOfShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_HArray1OfListOfShape.hxx diff --git a/src/TopTools/TopTools_HArray1OfShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_HArray1OfShape.hxx similarity index 100% rename from src/TopTools/TopTools_HArray1OfShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_HArray1OfShape.hxx diff --git a/src/TopTools/TopTools_HArray2OfShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_HArray2OfShape.hxx similarity index 100% rename from src/TopTools/TopTools_HArray2OfShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_HArray2OfShape.hxx diff --git a/src/TopTools/TopTools_HSequenceOfShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_HSequenceOfShape.hxx similarity index 100% rename from src/TopTools/TopTools_HSequenceOfShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_HSequenceOfShape.hxx diff --git a/src/TopTools/TopTools_IndexedDataMapOfShapeAddress.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_IndexedDataMapOfShapeAddress.hxx similarity index 100% rename from src/TopTools/TopTools_IndexedDataMapOfShapeAddress.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_IndexedDataMapOfShapeAddress.hxx diff --git a/src/TopTools/TopTools_IndexedDataMapOfShapeListOfShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_IndexedDataMapOfShapeListOfShape.hxx similarity index 100% rename from src/TopTools/TopTools_IndexedDataMapOfShapeListOfShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_IndexedDataMapOfShapeListOfShape.hxx diff --git a/src/TopTools/TopTools_IndexedDataMapOfShapeReal.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_IndexedDataMapOfShapeReal.hxx similarity index 100% rename from src/TopTools/TopTools_IndexedDataMapOfShapeReal.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_IndexedDataMapOfShapeReal.hxx diff --git a/src/TopTools/TopTools_IndexedDataMapOfShapeShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_IndexedDataMapOfShapeShape.hxx similarity index 100% rename from src/TopTools/TopTools_IndexedDataMapOfShapeShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_IndexedDataMapOfShapeShape.hxx diff --git a/src/TopTools/TopTools_IndexedMapOfOrientedShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_IndexedMapOfOrientedShape.hxx similarity index 100% rename from src/TopTools/TopTools_IndexedMapOfOrientedShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_IndexedMapOfOrientedShape.hxx diff --git a/src/TopTools/TopTools_IndexedMapOfShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_IndexedMapOfShape.hxx similarity index 100% rename from src/TopTools/TopTools_IndexedMapOfShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_IndexedMapOfShape.hxx diff --git a/src/TopTools/TopTools_ListIteratorOfListOfShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_ListIteratorOfListOfShape.hxx similarity index 100% rename from src/TopTools/TopTools_ListIteratorOfListOfShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_ListIteratorOfListOfShape.hxx diff --git a/src/TopTools/TopTools_ListOfListOfShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_ListOfListOfShape.hxx similarity index 100% rename from src/TopTools/TopTools_ListOfListOfShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_ListOfListOfShape.hxx diff --git a/src/TopTools/TopTools_ListOfShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_ListOfShape.hxx similarity index 100% rename from src/TopTools/TopTools_ListOfShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_ListOfShape.hxx diff --git a/src/TopTools/TopTools_LocationSet.cxx b/src/ModelingData/TKBRep/TopTools/TopTools_LocationSet.cxx similarity index 100% rename from src/TopTools/TopTools_LocationSet.cxx rename to src/ModelingData/TKBRep/TopTools/TopTools_LocationSet.cxx diff --git a/src/TopTools/TopTools_LocationSet.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_LocationSet.hxx similarity index 100% rename from src/TopTools/TopTools_LocationSet.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_LocationSet.hxx diff --git a/src/TopTools/TopTools_LocationSetPtr.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_LocationSetPtr.hxx similarity index 100% rename from src/TopTools/TopTools_LocationSetPtr.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_LocationSetPtr.hxx diff --git a/src/TopTools/TopTools_MapIteratorOfMapOfOrientedShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_MapIteratorOfMapOfOrientedShape.hxx similarity index 100% rename from src/TopTools/TopTools_MapIteratorOfMapOfOrientedShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_MapIteratorOfMapOfOrientedShape.hxx diff --git a/src/TopTools/TopTools_MapIteratorOfMapOfShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_MapIteratorOfMapOfShape.hxx similarity index 100% rename from src/TopTools/TopTools_MapIteratorOfMapOfShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_MapIteratorOfMapOfShape.hxx diff --git a/src/TopTools/TopTools_MapOfOrientedShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_MapOfOrientedShape.hxx similarity index 100% rename from src/TopTools/TopTools_MapOfOrientedShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_MapOfOrientedShape.hxx diff --git a/src/TopTools/TopTools_MapOfShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_MapOfShape.hxx similarity index 100% rename from src/TopTools/TopTools_MapOfShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_MapOfShape.hxx diff --git a/src/TopTools/TopTools_MutexForShapeProvider.cxx b/src/ModelingData/TKBRep/TopTools/TopTools_MutexForShapeProvider.cxx similarity index 100% rename from src/TopTools/TopTools_MutexForShapeProvider.cxx rename to src/ModelingData/TKBRep/TopTools/TopTools_MutexForShapeProvider.cxx diff --git a/src/TopTools/TopTools_MutexForShapeProvider.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_MutexForShapeProvider.hxx similarity index 100% rename from src/TopTools/TopTools_MutexForShapeProvider.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_MutexForShapeProvider.hxx diff --git a/src/TopTools/TopTools_SequenceOfShape.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_SequenceOfShape.hxx similarity index 100% rename from src/TopTools/TopTools_SequenceOfShape.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_SequenceOfShape.hxx diff --git a/src/TopTools/TopTools_ShapeMapHasher.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_ShapeMapHasher.hxx similarity index 100% rename from src/TopTools/TopTools_ShapeMapHasher.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_ShapeMapHasher.hxx diff --git a/src/TopTools/TopTools_ShapeSet.cxx b/src/ModelingData/TKBRep/TopTools/TopTools_ShapeSet.cxx similarity index 100% rename from src/TopTools/TopTools_ShapeSet.cxx rename to src/ModelingData/TKBRep/TopTools/TopTools_ShapeSet.cxx diff --git a/src/TopTools/TopTools_ShapeSet.hxx b/src/ModelingData/TKBRep/TopTools/TopTools_ShapeSet.hxx similarity index 100% rename from src/TopTools/TopTools_ShapeSet.hxx rename to src/ModelingData/TKBRep/TopTools/TopTools_ShapeSet.hxx diff --git a/src/ModelingData/TKBRep/TopoDS/FILES.cmake b/src/ModelingData/TKBRep/TopoDS/FILES.cmake new file mode 100644 index 0000000000..6bdc33cdb0 --- /dev/null +++ b/src/ModelingData/TKBRep/TopoDS/FILES.cmake @@ -0,0 +1,51 @@ +# Source files for TopoDS package +set(OCCT_TopoDS_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TopoDS_FILES + TopoDS.hxx + TopoDS_AlertAttribute.hxx + TopoDS_AlertAttribute.cxx + TopoDS_Builder.cxx + TopoDS_Builder.hxx + TopoDS_Builder.lxx + TopoDS_Compound.hxx + TopoDS_CompSolid.hxx + TopoDS_Edge.hxx + TopoDS_Face.hxx + TopoDS_FrozenShape.hxx + TopoDS_HShape.cxx + TopoDS_HShape.hxx + TopoDS_HShape.lxx + TopoDS_Iterator.cxx + TopoDS_Iterator.hxx + TopoDS_ListIteratorOfListOfShape.hxx + TopoDS_ListOfShape.hxx + TopoDS_LockedShape.hxx + TopoDS_Shape.cxx + TopoDS_Shape.hxx + TopoDS_Shell.hxx + TopoDS_Solid.hxx + TopoDS_TCompound.cxx + TopoDS_TCompound.hxx + TopoDS_TCompSolid.cxx + TopoDS_TCompSolid.hxx + TopoDS_TEdge.cxx + TopoDS_TEdge.hxx + TopoDS_TFace.cxx + TopoDS_TFace.hxx + TopoDS_TShape.cxx + TopoDS_TShape.hxx + TopoDS_TShell.cxx + TopoDS_TShell.hxx + TopoDS_TSolid.cxx + TopoDS_TSolid.hxx + TopoDS_TVertex.cxx + TopoDS_TVertex.hxx + TopoDS_TWire.cxx + TopoDS_TWire.hxx + TopoDS_UnCompatibleShapes.hxx + TopoDS_Vertex.hxx + TopoDS_Wire.hxx + TopoDS_AlertWithShape.cxx + TopoDS_AlertWithShape.hxx +) diff --git a/src/TopoDS/TopoDS.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS.hxx similarity index 100% rename from src/TopoDS/TopoDS.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS.hxx diff --git a/src/TopoDS/TopoDS_AlertAttribute.cxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_AlertAttribute.cxx similarity index 100% rename from src/TopoDS/TopoDS_AlertAttribute.cxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_AlertAttribute.cxx diff --git a/src/TopoDS/TopoDS_AlertAttribute.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_AlertAttribute.hxx similarity index 100% rename from src/TopoDS/TopoDS_AlertAttribute.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_AlertAttribute.hxx diff --git a/src/TopoDS/TopoDS_AlertWithShape.cxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_AlertWithShape.cxx similarity index 100% rename from src/TopoDS/TopoDS_AlertWithShape.cxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_AlertWithShape.cxx diff --git a/src/TopoDS/TopoDS_AlertWithShape.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_AlertWithShape.hxx similarity index 100% rename from src/TopoDS/TopoDS_AlertWithShape.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_AlertWithShape.hxx diff --git a/src/TopoDS/TopoDS_Builder.cxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_Builder.cxx similarity index 100% rename from src/TopoDS/TopoDS_Builder.cxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_Builder.cxx diff --git a/src/TopoDS/TopoDS_Builder.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_Builder.hxx similarity index 100% rename from src/TopoDS/TopoDS_Builder.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_Builder.hxx diff --git a/src/TopoDS/TopoDS_Builder.lxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_Builder.lxx similarity index 100% rename from src/TopoDS/TopoDS_Builder.lxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_Builder.lxx diff --git a/src/TopoDS/TopoDS_CompSolid.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_CompSolid.hxx similarity index 100% rename from src/TopoDS/TopoDS_CompSolid.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_CompSolid.hxx diff --git a/src/TopoDS/TopoDS_Compound.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_Compound.hxx similarity index 100% rename from src/TopoDS/TopoDS_Compound.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_Compound.hxx diff --git a/src/TopoDS/TopoDS_Edge.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_Edge.hxx similarity index 100% rename from src/TopoDS/TopoDS_Edge.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_Edge.hxx diff --git a/src/TopoDS/TopoDS_Face.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_Face.hxx similarity index 100% rename from src/TopoDS/TopoDS_Face.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_Face.hxx diff --git a/src/TopoDS/TopoDS_FrozenShape.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_FrozenShape.hxx similarity index 100% rename from src/TopoDS/TopoDS_FrozenShape.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_FrozenShape.hxx diff --git a/src/TopoDS/TopoDS_HShape.cxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_HShape.cxx similarity index 100% rename from src/TopoDS/TopoDS_HShape.cxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_HShape.cxx diff --git a/src/TopoDS/TopoDS_HShape.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_HShape.hxx similarity index 100% rename from src/TopoDS/TopoDS_HShape.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_HShape.hxx diff --git a/src/TopoDS/TopoDS_HShape.lxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_HShape.lxx similarity index 100% rename from src/TopoDS/TopoDS_HShape.lxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_HShape.lxx diff --git a/src/TopoDS/TopoDS_Iterator.cxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_Iterator.cxx similarity index 100% rename from src/TopoDS/TopoDS_Iterator.cxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_Iterator.cxx diff --git a/src/TopoDS/TopoDS_Iterator.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_Iterator.hxx similarity index 100% rename from src/TopoDS/TopoDS_Iterator.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_Iterator.hxx diff --git a/src/TopoDS/TopoDS_ListIteratorOfListOfShape.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_ListIteratorOfListOfShape.hxx similarity index 100% rename from src/TopoDS/TopoDS_ListIteratorOfListOfShape.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_ListIteratorOfListOfShape.hxx diff --git a/src/TopoDS/TopoDS_ListOfShape.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_ListOfShape.hxx similarity index 100% rename from src/TopoDS/TopoDS_ListOfShape.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_ListOfShape.hxx diff --git a/src/TopoDS/TopoDS_LockedShape.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_LockedShape.hxx similarity index 100% rename from src/TopoDS/TopoDS_LockedShape.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_LockedShape.hxx diff --git a/src/TopoDS/TopoDS_Shape.cxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_Shape.cxx similarity index 100% rename from src/TopoDS/TopoDS_Shape.cxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_Shape.cxx diff --git a/src/TopoDS/TopoDS_Shape.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_Shape.hxx similarity index 100% rename from src/TopoDS/TopoDS_Shape.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_Shape.hxx diff --git a/src/TopoDS/TopoDS_Shell.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_Shell.hxx similarity index 100% rename from src/TopoDS/TopoDS_Shell.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_Shell.hxx diff --git a/src/TopoDS/TopoDS_Solid.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_Solid.hxx similarity index 100% rename from src/TopoDS/TopoDS_Solid.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_Solid.hxx diff --git a/src/TopoDS/TopoDS_TCompSolid.cxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_TCompSolid.cxx similarity index 100% rename from src/TopoDS/TopoDS_TCompSolid.cxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_TCompSolid.cxx diff --git a/src/TopoDS/TopoDS_TCompSolid.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_TCompSolid.hxx similarity index 100% rename from src/TopoDS/TopoDS_TCompSolid.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_TCompSolid.hxx diff --git a/src/TopoDS/TopoDS_TCompound.cxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_TCompound.cxx similarity index 100% rename from src/TopoDS/TopoDS_TCompound.cxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_TCompound.cxx diff --git a/src/TopoDS/TopoDS_TCompound.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_TCompound.hxx similarity index 100% rename from src/TopoDS/TopoDS_TCompound.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_TCompound.hxx diff --git a/src/TopoDS/TopoDS_TEdge.cxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_TEdge.cxx similarity index 100% rename from src/TopoDS/TopoDS_TEdge.cxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_TEdge.cxx diff --git a/src/TopoDS/TopoDS_TEdge.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_TEdge.hxx similarity index 100% rename from src/TopoDS/TopoDS_TEdge.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_TEdge.hxx diff --git a/src/TopoDS/TopoDS_TFace.cxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_TFace.cxx similarity index 100% rename from src/TopoDS/TopoDS_TFace.cxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_TFace.cxx diff --git a/src/TopoDS/TopoDS_TFace.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_TFace.hxx similarity index 100% rename from src/TopoDS/TopoDS_TFace.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_TFace.hxx diff --git a/src/TopoDS/TopoDS_TShape.cxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_TShape.cxx similarity index 100% rename from src/TopoDS/TopoDS_TShape.cxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_TShape.cxx diff --git a/src/TopoDS/TopoDS_TShape.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_TShape.hxx similarity index 100% rename from src/TopoDS/TopoDS_TShape.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_TShape.hxx diff --git a/src/TopoDS/TopoDS_TShell.cxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_TShell.cxx similarity index 100% rename from src/TopoDS/TopoDS_TShell.cxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_TShell.cxx diff --git a/src/TopoDS/TopoDS_TShell.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_TShell.hxx similarity index 100% rename from src/TopoDS/TopoDS_TShell.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_TShell.hxx diff --git a/src/TopoDS/TopoDS_TSolid.cxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_TSolid.cxx similarity index 100% rename from src/TopoDS/TopoDS_TSolid.cxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_TSolid.cxx diff --git a/src/TopoDS/TopoDS_TSolid.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_TSolid.hxx similarity index 100% rename from src/TopoDS/TopoDS_TSolid.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_TSolid.hxx diff --git a/src/TopoDS/TopoDS_TVertex.cxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_TVertex.cxx similarity index 100% rename from src/TopoDS/TopoDS_TVertex.cxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_TVertex.cxx diff --git a/src/TopoDS/TopoDS_TVertex.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_TVertex.hxx similarity index 100% rename from src/TopoDS/TopoDS_TVertex.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_TVertex.hxx diff --git a/src/TopoDS/TopoDS_TWire.cxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_TWire.cxx similarity index 100% rename from src/TopoDS/TopoDS_TWire.cxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_TWire.cxx diff --git a/src/TopoDS/TopoDS_TWire.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_TWire.hxx similarity index 100% rename from src/TopoDS/TopoDS_TWire.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_TWire.hxx diff --git a/src/TopoDS/TopoDS_UnCompatibleShapes.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_UnCompatibleShapes.hxx similarity index 100% rename from src/TopoDS/TopoDS_UnCompatibleShapes.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_UnCompatibleShapes.hxx diff --git a/src/TopoDS/TopoDS_Vertex.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_Vertex.hxx similarity index 100% rename from src/TopoDS/TopoDS_Vertex.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_Vertex.hxx diff --git a/src/TopoDS/TopoDS_Wire.hxx b/src/ModelingData/TKBRep/TopoDS/TopoDS_Wire.hxx similarity index 100% rename from src/TopoDS/TopoDS_Wire.hxx rename to src/ModelingData/TKBRep/TopoDS/TopoDS_Wire.hxx diff --git a/src/Adaptor2d/Adaptor2d_Curve2d.cxx b/src/ModelingData/TKG2d/Adaptor2d/Adaptor2d_Curve2d.cxx similarity index 100% rename from src/Adaptor2d/Adaptor2d_Curve2d.cxx rename to src/ModelingData/TKG2d/Adaptor2d/Adaptor2d_Curve2d.cxx diff --git a/src/Adaptor2d/Adaptor2d_Curve2d.hxx b/src/ModelingData/TKG2d/Adaptor2d/Adaptor2d_Curve2d.hxx similarity index 100% rename from src/Adaptor2d/Adaptor2d_Curve2d.hxx rename to src/ModelingData/TKG2d/Adaptor2d/Adaptor2d_Curve2d.hxx diff --git a/src/Adaptor2d/Adaptor2d_Line2d.cxx b/src/ModelingData/TKG2d/Adaptor2d/Adaptor2d_Line2d.cxx similarity index 100% rename from src/Adaptor2d/Adaptor2d_Line2d.cxx rename to src/ModelingData/TKG2d/Adaptor2d/Adaptor2d_Line2d.cxx diff --git a/src/Adaptor2d/Adaptor2d_Line2d.hxx b/src/ModelingData/TKG2d/Adaptor2d/Adaptor2d_Line2d.hxx similarity index 100% rename from src/Adaptor2d/Adaptor2d_Line2d.hxx rename to src/ModelingData/TKG2d/Adaptor2d/Adaptor2d_Line2d.hxx diff --git a/src/Adaptor2d/Adaptor2d_OffsetCurve.cxx b/src/ModelingData/TKG2d/Adaptor2d/Adaptor2d_OffsetCurve.cxx similarity index 100% rename from src/Adaptor2d/Adaptor2d_OffsetCurve.cxx rename to src/ModelingData/TKG2d/Adaptor2d/Adaptor2d_OffsetCurve.cxx diff --git a/src/Adaptor2d/Adaptor2d_OffsetCurve.hxx b/src/ModelingData/TKG2d/Adaptor2d/Adaptor2d_OffsetCurve.hxx similarity index 100% rename from src/Adaptor2d/Adaptor2d_OffsetCurve.hxx rename to src/ModelingData/TKG2d/Adaptor2d/Adaptor2d_OffsetCurve.hxx diff --git a/src/ModelingData/TKG2d/Adaptor2d/FILES.cmake b/src/ModelingData/TKG2d/Adaptor2d/FILES.cmake new file mode 100644 index 0000000000..71c7dbfdd2 --- /dev/null +++ b/src/ModelingData/TKG2d/Adaptor2d/FILES.cmake @@ -0,0 +1,11 @@ +# Source files for Adaptor2d package +set(OCCT_Adaptor2d_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Adaptor2d_FILES + Adaptor2d_Curve2d.cxx + Adaptor2d_Curve2d.hxx + Adaptor2d_Line2d.cxx + Adaptor2d_Line2d.hxx + Adaptor2d_OffsetCurve.cxx + Adaptor2d_OffsetCurve.hxx +) diff --git a/src/TKG2d/CMakeLists.txt b/src/ModelingData/TKG2d/CMakeLists.txt similarity index 100% rename from src/TKG2d/CMakeLists.txt rename to src/ModelingData/TKG2d/CMakeLists.txt diff --git a/src/ModelingData/TKG2d/EXTERNLIB.cmake b/src/ModelingData/TKG2d/EXTERNLIB.cmake new file mode 100644 index 0000000000..f6a2f33224 --- /dev/null +++ b/src/ModelingData/TKG2d/EXTERNLIB.cmake @@ -0,0 +1,5 @@ +# External dependencies for TKG2d +set(OCCT_TKG2d_EXTERNAL_LIBS + TKernel + TKMath +) diff --git a/src/ModelingData/TKG2d/FILES.cmake b/src/ModelingData/TKG2d/FILES.cmake new file mode 100644 index 0000000000..e40ece55aa --- /dev/null +++ b/src/ModelingData/TKG2d/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKG2d +set(OCCT_TKG2d_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKG2d_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ModelingData/TKG2d/Geom2d/FILES.cmake b/src/ModelingData/TKG2d/Geom2d/FILES.cmake new file mode 100644 index 0000000000..a207fb8251 --- /dev/null +++ b/src/ModelingData/TKG2d/Geom2d/FILES.cmake @@ -0,0 +1,48 @@ +# Source files for Geom2d package +set(OCCT_Geom2d_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Geom2d_FILES + Geom2d_AxisPlacement.cxx + Geom2d_AxisPlacement.hxx + Geom2d_BezierCurve.cxx + Geom2d_BezierCurve.hxx + Geom2d_BoundedCurve.cxx + Geom2d_BoundedCurve.hxx + Geom2d_BSplineCurve.cxx + Geom2d_BSplineCurve.hxx + Geom2d_BSplineCurve_1.cxx + Geom2d_CartesianPoint.cxx + Geom2d_CartesianPoint.hxx + Geom2d_Circle.cxx + Geom2d_Circle.hxx + Geom2d_Conic.cxx + Geom2d_Conic.hxx + Geom2d_Curve.cxx + Geom2d_Curve.hxx + Geom2d_Direction.cxx + Geom2d_Direction.hxx + Geom2d_Ellipse.cxx + Geom2d_Ellipse.hxx + Geom2d_Geometry.cxx + Geom2d_Geometry.hxx + Geom2d_Hyperbola.cxx + Geom2d_Hyperbola.hxx + Geom2d_Line.cxx + Geom2d_Line.hxx + Geom2d_OffsetCurve.cxx + Geom2d_OffsetCurve.hxx + Geom2d_Parabola.cxx + Geom2d_Parabola.hxx + Geom2d_Point.cxx + Geom2d_Point.hxx + Geom2d_Transformation.cxx + Geom2d_Transformation.hxx + Geom2d_TrimmedCurve.cxx + Geom2d_TrimmedCurve.hxx + Geom2d_UndefinedDerivative.hxx + Geom2d_UndefinedValue.hxx + Geom2d_Vector.cxx + Geom2d_Vector.hxx + Geom2d_VectorWithMagnitude.cxx + Geom2d_VectorWithMagnitude.hxx +) diff --git a/src/Geom2d/Geom2d_AxisPlacement.cxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_AxisPlacement.cxx similarity index 100% rename from src/Geom2d/Geom2d_AxisPlacement.cxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_AxisPlacement.cxx diff --git a/src/Geom2d/Geom2d_AxisPlacement.hxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_AxisPlacement.hxx similarity index 100% rename from src/Geom2d/Geom2d_AxisPlacement.hxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_AxisPlacement.hxx diff --git a/src/Geom2d/Geom2d_BSplineCurve.cxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_BSplineCurve.cxx similarity index 100% rename from src/Geom2d/Geom2d_BSplineCurve.cxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_BSplineCurve.cxx diff --git a/src/Geom2d/Geom2d_BSplineCurve.hxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_BSplineCurve.hxx similarity index 100% rename from src/Geom2d/Geom2d_BSplineCurve.hxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_BSplineCurve.hxx diff --git a/src/Geom2d/Geom2d_BSplineCurve_1.cxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_BSplineCurve_1.cxx similarity index 100% rename from src/Geom2d/Geom2d_BSplineCurve_1.cxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_BSplineCurve_1.cxx diff --git a/src/Geom2d/Geom2d_BezierCurve.cxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_BezierCurve.cxx similarity index 100% rename from src/Geom2d/Geom2d_BezierCurve.cxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_BezierCurve.cxx diff --git a/src/Geom2d/Geom2d_BezierCurve.hxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_BezierCurve.hxx similarity index 100% rename from src/Geom2d/Geom2d_BezierCurve.hxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_BezierCurve.hxx diff --git a/src/Geom2d/Geom2d_BoundedCurve.cxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_BoundedCurve.cxx similarity index 100% rename from src/Geom2d/Geom2d_BoundedCurve.cxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_BoundedCurve.cxx diff --git a/src/Geom2d/Geom2d_BoundedCurve.hxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_BoundedCurve.hxx similarity index 100% rename from src/Geom2d/Geom2d_BoundedCurve.hxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_BoundedCurve.hxx diff --git a/src/Geom2d/Geom2d_CartesianPoint.cxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_CartesianPoint.cxx similarity index 100% rename from src/Geom2d/Geom2d_CartesianPoint.cxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_CartesianPoint.cxx diff --git a/src/Geom2d/Geom2d_CartesianPoint.hxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_CartesianPoint.hxx similarity index 100% rename from src/Geom2d/Geom2d_CartesianPoint.hxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_CartesianPoint.hxx diff --git a/src/Geom2d/Geom2d_Circle.cxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_Circle.cxx similarity index 100% rename from src/Geom2d/Geom2d_Circle.cxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_Circle.cxx diff --git a/src/Geom2d/Geom2d_Circle.hxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_Circle.hxx similarity index 100% rename from src/Geom2d/Geom2d_Circle.hxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_Circle.hxx diff --git a/src/Geom2d/Geom2d_Conic.cxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_Conic.cxx similarity index 100% rename from src/Geom2d/Geom2d_Conic.cxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_Conic.cxx diff --git a/src/Geom2d/Geom2d_Conic.hxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_Conic.hxx similarity index 100% rename from src/Geom2d/Geom2d_Conic.hxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_Conic.hxx diff --git a/src/Geom2d/Geom2d_Curve.cxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_Curve.cxx similarity index 100% rename from src/Geom2d/Geom2d_Curve.cxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_Curve.cxx diff --git a/src/Geom2d/Geom2d_Curve.hxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_Curve.hxx similarity index 100% rename from src/Geom2d/Geom2d_Curve.hxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_Curve.hxx diff --git a/src/Geom2d/Geom2d_Direction.cxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_Direction.cxx similarity index 100% rename from src/Geom2d/Geom2d_Direction.cxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_Direction.cxx diff --git a/src/Geom2d/Geom2d_Direction.hxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_Direction.hxx similarity index 100% rename from src/Geom2d/Geom2d_Direction.hxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_Direction.hxx diff --git a/src/Geom2d/Geom2d_Ellipse.cxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_Ellipse.cxx similarity index 100% rename from src/Geom2d/Geom2d_Ellipse.cxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_Ellipse.cxx diff --git a/src/Geom2d/Geom2d_Ellipse.hxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_Ellipse.hxx similarity index 100% rename from src/Geom2d/Geom2d_Ellipse.hxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_Ellipse.hxx diff --git a/src/Geom2d/Geom2d_Geometry.cxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_Geometry.cxx similarity index 100% rename from src/Geom2d/Geom2d_Geometry.cxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_Geometry.cxx diff --git a/src/Geom2d/Geom2d_Geometry.hxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_Geometry.hxx similarity index 100% rename from src/Geom2d/Geom2d_Geometry.hxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_Geometry.hxx diff --git a/src/Geom2d/Geom2d_Hyperbola.cxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_Hyperbola.cxx similarity index 100% rename from src/Geom2d/Geom2d_Hyperbola.cxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_Hyperbola.cxx diff --git a/src/Geom2d/Geom2d_Hyperbola.hxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_Hyperbola.hxx similarity index 100% rename from src/Geom2d/Geom2d_Hyperbola.hxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_Hyperbola.hxx diff --git a/src/Geom2d/Geom2d_Line.cxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_Line.cxx similarity index 100% rename from src/Geom2d/Geom2d_Line.cxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_Line.cxx diff --git a/src/Geom2d/Geom2d_Line.hxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_Line.hxx similarity index 100% rename from src/Geom2d/Geom2d_Line.hxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_Line.hxx diff --git a/src/Geom2d/Geom2d_OffsetCurve.cxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_OffsetCurve.cxx similarity index 100% rename from src/Geom2d/Geom2d_OffsetCurve.cxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_OffsetCurve.cxx diff --git a/src/Geom2d/Geom2d_OffsetCurve.hxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_OffsetCurve.hxx similarity index 100% rename from src/Geom2d/Geom2d_OffsetCurve.hxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_OffsetCurve.hxx diff --git a/src/Geom2d/Geom2d_Parabola.cxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_Parabola.cxx similarity index 100% rename from src/Geom2d/Geom2d_Parabola.cxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_Parabola.cxx diff --git a/src/Geom2d/Geom2d_Parabola.hxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_Parabola.hxx similarity index 100% rename from src/Geom2d/Geom2d_Parabola.hxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_Parabola.hxx diff --git a/src/Geom2d/Geom2d_Point.cxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_Point.cxx similarity index 100% rename from src/Geom2d/Geom2d_Point.cxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_Point.cxx diff --git a/src/Geom2d/Geom2d_Point.hxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_Point.hxx similarity index 100% rename from src/Geom2d/Geom2d_Point.hxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_Point.hxx diff --git a/src/Geom2d/Geom2d_Transformation.cxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_Transformation.cxx similarity index 100% rename from src/Geom2d/Geom2d_Transformation.cxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_Transformation.cxx diff --git a/src/Geom2d/Geom2d_Transformation.hxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_Transformation.hxx similarity index 100% rename from src/Geom2d/Geom2d_Transformation.hxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_Transformation.hxx diff --git a/src/Geom2d/Geom2d_TrimmedCurve.cxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_TrimmedCurve.cxx similarity index 100% rename from src/Geom2d/Geom2d_TrimmedCurve.cxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_TrimmedCurve.cxx diff --git a/src/Geom2d/Geom2d_TrimmedCurve.hxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_TrimmedCurve.hxx similarity index 100% rename from src/Geom2d/Geom2d_TrimmedCurve.hxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_TrimmedCurve.hxx diff --git a/src/Geom2d/Geom2d_UndefinedDerivative.hxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_UndefinedDerivative.hxx similarity index 100% rename from src/Geom2d/Geom2d_UndefinedDerivative.hxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_UndefinedDerivative.hxx diff --git a/src/Geom2d/Geom2d_UndefinedValue.hxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_UndefinedValue.hxx similarity index 100% rename from src/Geom2d/Geom2d_UndefinedValue.hxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_UndefinedValue.hxx diff --git a/src/Geom2d/Geom2d_Vector.cxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_Vector.cxx similarity index 100% rename from src/Geom2d/Geom2d_Vector.cxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_Vector.cxx diff --git a/src/Geom2d/Geom2d_Vector.hxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_Vector.hxx similarity index 100% rename from src/Geom2d/Geom2d_Vector.hxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_Vector.hxx diff --git a/src/Geom2d/Geom2d_VectorWithMagnitude.cxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_VectorWithMagnitude.cxx similarity index 100% rename from src/Geom2d/Geom2d_VectorWithMagnitude.cxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_VectorWithMagnitude.cxx diff --git a/src/Geom2d/Geom2d_VectorWithMagnitude.hxx b/src/ModelingData/TKG2d/Geom2d/Geom2d_VectorWithMagnitude.hxx similarity index 100% rename from src/Geom2d/Geom2d_VectorWithMagnitude.hxx rename to src/ModelingData/TKG2d/Geom2d/Geom2d_VectorWithMagnitude.hxx diff --git a/src/ModelingData/TKG2d/Geom2dAdaptor/FILES.cmake b/src/ModelingData/TKG2d/Geom2dAdaptor/FILES.cmake new file mode 100644 index 0000000000..1ad9122b13 --- /dev/null +++ b/src/ModelingData/TKG2d/Geom2dAdaptor/FILES.cmake @@ -0,0 +1,9 @@ +# Source files for Geom2dAdaptor package +set(OCCT_Geom2dAdaptor_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Geom2dAdaptor_FILES + Geom2dAdaptor.cxx + Geom2dAdaptor.hxx + Geom2dAdaptor_Curve.cxx + Geom2dAdaptor_Curve.hxx +) diff --git a/src/Geom2dAdaptor/Geom2dAdaptor.cxx b/src/ModelingData/TKG2d/Geom2dAdaptor/Geom2dAdaptor.cxx similarity index 100% rename from src/Geom2dAdaptor/Geom2dAdaptor.cxx rename to src/ModelingData/TKG2d/Geom2dAdaptor/Geom2dAdaptor.cxx diff --git a/src/Geom2dAdaptor/Geom2dAdaptor.hxx b/src/ModelingData/TKG2d/Geom2dAdaptor/Geom2dAdaptor.hxx similarity index 100% rename from src/Geom2dAdaptor/Geom2dAdaptor.hxx rename to src/ModelingData/TKG2d/Geom2dAdaptor/Geom2dAdaptor.hxx diff --git a/src/Geom2dAdaptor/Geom2dAdaptor_Curve.cxx b/src/ModelingData/TKG2d/Geom2dAdaptor/Geom2dAdaptor_Curve.cxx similarity index 100% rename from src/Geom2dAdaptor/Geom2dAdaptor_Curve.cxx rename to src/ModelingData/TKG2d/Geom2dAdaptor/Geom2dAdaptor_Curve.cxx diff --git a/src/Geom2dAdaptor/Geom2dAdaptor_Curve.hxx b/src/ModelingData/TKG2d/Geom2dAdaptor/Geom2dAdaptor_Curve.hxx similarity index 100% rename from src/Geom2dAdaptor/Geom2dAdaptor_Curve.hxx rename to src/ModelingData/TKG2d/Geom2dAdaptor/Geom2dAdaptor_Curve.hxx diff --git a/src/ModelingData/TKG2d/Geom2dEvaluator/FILES.cmake b/src/ModelingData/TKG2d/Geom2dEvaluator/FILES.cmake new file mode 100644 index 0000000000..87d08f6969 --- /dev/null +++ b/src/ModelingData/TKG2d/Geom2dEvaluator/FILES.cmake @@ -0,0 +1,10 @@ +# Source files for Geom2dEvaluator package +set(OCCT_Geom2dEvaluator_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Geom2dEvaluator_FILES + Geom2dEvaluator_Curve.hxx + Geom2dEvaluator_OffsetCurve.cxx + Geom2dEvaluator_OffsetCurve.hxx + Geom2dEvaluator.hxx + Geom2dEvaluator.cxx +) diff --git a/src/Geom2dEvaluator/Geom2dEvaluator.cxx b/src/ModelingData/TKG2d/Geom2dEvaluator/Geom2dEvaluator.cxx similarity index 100% rename from src/Geom2dEvaluator/Geom2dEvaluator.cxx rename to src/ModelingData/TKG2d/Geom2dEvaluator/Geom2dEvaluator.cxx diff --git a/src/Geom2dEvaluator/Geom2dEvaluator.hxx b/src/ModelingData/TKG2d/Geom2dEvaluator/Geom2dEvaluator.hxx similarity index 100% rename from src/Geom2dEvaluator/Geom2dEvaluator.hxx rename to src/ModelingData/TKG2d/Geom2dEvaluator/Geom2dEvaluator.hxx diff --git a/src/Geom2dEvaluator/Geom2dEvaluator_Curve.hxx b/src/ModelingData/TKG2d/Geom2dEvaluator/Geom2dEvaluator_Curve.hxx similarity index 100% rename from src/Geom2dEvaluator/Geom2dEvaluator_Curve.hxx rename to src/ModelingData/TKG2d/Geom2dEvaluator/Geom2dEvaluator_Curve.hxx diff --git a/src/Geom2dEvaluator/Geom2dEvaluator_OffsetCurve.cxx b/src/ModelingData/TKG2d/Geom2dEvaluator/Geom2dEvaluator_OffsetCurve.cxx similarity index 100% rename from src/Geom2dEvaluator/Geom2dEvaluator_OffsetCurve.cxx rename to src/ModelingData/TKG2d/Geom2dEvaluator/Geom2dEvaluator_OffsetCurve.cxx diff --git a/src/Geom2dEvaluator/Geom2dEvaluator_OffsetCurve.hxx b/src/ModelingData/TKG2d/Geom2dEvaluator/Geom2dEvaluator_OffsetCurve.hxx similarity index 100% rename from src/Geom2dEvaluator/Geom2dEvaluator_OffsetCurve.hxx rename to src/ModelingData/TKG2d/Geom2dEvaluator/Geom2dEvaluator_OffsetCurve.hxx diff --git a/src/ModelingData/TKG2d/Geom2dLProp/FILES.cmake b/src/ModelingData/TKG2d/Geom2dLProp/FILES.cmake new file mode 100644 index 0000000000..46f3c64e61 --- /dev/null +++ b/src/ModelingData/TKG2d/Geom2dLProp/FILES.cmake @@ -0,0 +1,17 @@ +# Source files for Geom2dLProp package +set(OCCT_Geom2dLProp_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Geom2dLProp_FILES + Geom2dLProp_CLProps2d.hxx + Geom2dLProp_CLProps2d_0.cxx + Geom2dLProp_CurAndInf2d.cxx + Geom2dLProp_CurAndInf2d.hxx + Geom2dLProp_Curve2dTool.cxx + Geom2dLProp_Curve2dTool.hxx + Geom2dLProp_FuncCurExt.cxx + Geom2dLProp_FuncCurExt.hxx + Geom2dLProp_FuncCurNul.cxx + Geom2dLProp_FuncCurNul.hxx + Geom2dLProp_NumericCurInf2d.cxx + Geom2dLProp_NumericCurInf2d.hxx +) diff --git a/src/Geom2dLProp/Geom2dLProp_CLProps2d.hxx b/src/ModelingData/TKG2d/Geom2dLProp/Geom2dLProp_CLProps2d.hxx similarity index 100% rename from src/Geom2dLProp/Geom2dLProp_CLProps2d.hxx rename to src/ModelingData/TKG2d/Geom2dLProp/Geom2dLProp_CLProps2d.hxx diff --git a/src/Geom2dLProp/Geom2dLProp_CLProps2d_0.cxx b/src/ModelingData/TKG2d/Geom2dLProp/Geom2dLProp_CLProps2d_0.cxx similarity index 100% rename from src/Geom2dLProp/Geom2dLProp_CLProps2d_0.cxx rename to src/ModelingData/TKG2d/Geom2dLProp/Geom2dLProp_CLProps2d_0.cxx diff --git a/src/Geom2dLProp/Geom2dLProp_CurAndInf2d.cxx b/src/ModelingData/TKG2d/Geom2dLProp/Geom2dLProp_CurAndInf2d.cxx similarity index 100% rename from src/Geom2dLProp/Geom2dLProp_CurAndInf2d.cxx rename to src/ModelingData/TKG2d/Geom2dLProp/Geom2dLProp_CurAndInf2d.cxx diff --git a/src/Geom2dLProp/Geom2dLProp_CurAndInf2d.hxx b/src/ModelingData/TKG2d/Geom2dLProp/Geom2dLProp_CurAndInf2d.hxx similarity index 100% rename from src/Geom2dLProp/Geom2dLProp_CurAndInf2d.hxx rename to src/ModelingData/TKG2d/Geom2dLProp/Geom2dLProp_CurAndInf2d.hxx diff --git a/src/Geom2dLProp/Geom2dLProp_Curve2dTool.cxx b/src/ModelingData/TKG2d/Geom2dLProp/Geom2dLProp_Curve2dTool.cxx similarity index 100% rename from src/Geom2dLProp/Geom2dLProp_Curve2dTool.cxx rename to src/ModelingData/TKG2d/Geom2dLProp/Geom2dLProp_Curve2dTool.cxx diff --git a/src/Geom2dLProp/Geom2dLProp_Curve2dTool.hxx b/src/ModelingData/TKG2d/Geom2dLProp/Geom2dLProp_Curve2dTool.hxx similarity index 100% rename from src/Geom2dLProp/Geom2dLProp_Curve2dTool.hxx rename to src/ModelingData/TKG2d/Geom2dLProp/Geom2dLProp_Curve2dTool.hxx diff --git a/src/Geom2dLProp/Geom2dLProp_FuncCurExt.cxx b/src/ModelingData/TKG2d/Geom2dLProp/Geom2dLProp_FuncCurExt.cxx similarity index 100% rename from src/Geom2dLProp/Geom2dLProp_FuncCurExt.cxx rename to src/ModelingData/TKG2d/Geom2dLProp/Geom2dLProp_FuncCurExt.cxx diff --git a/src/Geom2dLProp/Geom2dLProp_FuncCurExt.hxx b/src/ModelingData/TKG2d/Geom2dLProp/Geom2dLProp_FuncCurExt.hxx similarity index 100% rename from src/Geom2dLProp/Geom2dLProp_FuncCurExt.hxx rename to src/ModelingData/TKG2d/Geom2dLProp/Geom2dLProp_FuncCurExt.hxx diff --git a/src/Geom2dLProp/Geom2dLProp_FuncCurNul.cxx b/src/ModelingData/TKG2d/Geom2dLProp/Geom2dLProp_FuncCurNul.cxx similarity index 100% rename from src/Geom2dLProp/Geom2dLProp_FuncCurNul.cxx rename to src/ModelingData/TKG2d/Geom2dLProp/Geom2dLProp_FuncCurNul.cxx diff --git a/src/Geom2dLProp/Geom2dLProp_FuncCurNul.hxx b/src/ModelingData/TKG2d/Geom2dLProp/Geom2dLProp_FuncCurNul.hxx similarity index 100% rename from src/Geom2dLProp/Geom2dLProp_FuncCurNul.hxx rename to src/ModelingData/TKG2d/Geom2dLProp/Geom2dLProp_FuncCurNul.hxx diff --git a/src/Geom2dLProp/Geom2dLProp_NumericCurInf2d.cxx b/src/ModelingData/TKG2d/Geom2dLProp/Geom2dLProp_NumericCurInf2d.cxx similarity index 100% rename from src/Geom2dLProp/Geom2dLProp_NumericCurInf2d.cxx rename to src/ModelingData/TKG2d/Geom2dLProp/Geom2dLProp_NumericCurInf2d.cxx diff --git a/src/Geom2dLProp/Geom2dLProp_NumericCurInf2d.hxx b/src/ModelingData/TKG2d/Geom2dLProp/Geom2dLProp_NumericCurInf2d.hxx similarity index 100% rename from src/Geom2dLProp/Geom2dLProp_NumericCurInf2d.hxx rename to src/ModelingData/TKG2d/Geom2dLProp/Geom2dLProp_NumericCurInf2d.hxx diff --git a/src/ModelingData/TKG2d/LProp/FILES.cmake b/src/ModelingData/TKG2d/LProp/FILES.cmake new file mode 100644 index 0000000000..338921b988 --- /dev/null +++ b/src/ModelingData/TKG2d/LProp/FILES.cmake @@ -0,0 +1,16 @@ +# Source files for LProp package +set(OCCT_LProp_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_LProp_FILES + LProp_AnalyticCurInf.cxx + LProp_AnalyticCurInf.hxx + LProp_BadContinuity.hxx + LProp_CIType.hxx + LProp_CLProps.gxx + LProp_CurAndInf.cxx + LProp_CurAndInf.hxx + LProp_NotDefined.hxx + LProp_SequenceOfCIType.hxx + LProp_SLProps.gxx + LProp_Status.hxx +) diff --git a/src/LProp/LProp_AnalyticCurInf.cxx b/src/ModelingData/TKG2d/LProp/LProp_AnalyticCurInf.cxx similarity index 100% rename from src/LProp/LProp_AnalyticCurInf.cxx rename to src/ModelingData/TKG2d/LProp/LProp_AnalyticCurInf.cxx diff --git a/src/LProp/LProp_AnalyticCurInf.hxx b/src/ModelingData/TKG2d/LProp/LProp_AnalyticCurInf.hxx similarity index 100% rename from src/LProp/LProp_AnalyticCurInf.hxx rename to src/ModelingData/TKG2d/LProp/LProp_AnalyticCurInf.hxx diff --git a/src/LProp/LProp_BadContinuity.hxx b/src/ModelingData/TKG2d/LProp/LProp_BadContinuity.hxx similarity index 100% rename from src/LProp/LProp_BadContinuity.hxx rename to src/ModelingData/TKG2d/LProp/LProp_BadContinuity.hxx diff --git a/src/LProp/LProp_CIType.hxx b/src/ModelingData/TKG2d/LProp/LProp_CIType.hxx similarity index 100% rename from src/LProp/LProp_CIType.hxx rename to src/ModelingData/TKG2d/LProp/LProp_CIType.hxx diff --git a/src/LProp/LProp_CLProps.gxx b/src/ModelingData/TKG2d/LProp/LProp_CLProps.gxx similarity index 100% rename from src/LProp/LProp_CLProps.gxx rename to src/ModelingData/TKG2d/LProp/LProp_CLProps.gxx diff --git a/src/LProp/LProp_CurAndInf.cxx b/src/ModelingData/TKG2d/LProp/LProp_CurAndInf.cxx similarity index 100% rename from src/LProp/LProp_CurAndInf.cxx rename to src/ModelingData/TKG2d/LProp/LProp_CurAndInf.cxx diff --git a/src/LProp/LProp_CurAndInf.hxx b/src/ModelingData/TKG2d/LProp/LProp_CurAndInf.hxx similarity index 100% rename from src/LProp/LProp_CurAndInf.hxx rename to src/ModelingData/TKG2d/LProp/LProp_CurAndInf.hxx diff --git a/src/LProp/LProp_NotDefined.hxx b/src/ModelingData/TKG2d/LProp/LProp_NotDefined.hxx similarity index 100% rename from src/LProp/LProp_NotDefined.hxx rename to src/ModelingData/TKG2d/LProp/LProp_NotDefined.hxx diff --git a/src/LProp/LProp_SLProps.gxx b/src/ModelingData/TKG2d/LProp/LProp_SLProps.gxx similarity index 100% rename from src/LProp/LProp_SLProps.gxx rename to src/ModelingData/TKG2d/LProp/LProp_SLProps.gxx diff --git a/src/LProp/LProp_SequenceOfCIType.hxx b/src/ModelingData/TKG2d/LProp/LProp_SequenceOfCIType.hxx similarity index 100% rename from src/LProp/LProp_SequenceOfCIType.hxx rename to src/ModelingData/TKG2d/LProp/LProp_SequenceOfCIType.hxx diff --git a/src/LProp/LProp_Status.hxx b/src/ModelingData/TKG2d/LProp/LProp_Status.hxx similarity index 100% rename from src/LProp/LProp_Status.hxx rename to src/ModelingData/TKG2d/LProp/LProp_Status.hxx diff --git a/src/ModelingData/TKG2d/PACKAGES.cmake b/src/ModelingData/TKG2d/PACKAGES.cmake new file mode 100644 index 0000000000..3b08d25058 --- /dev/null +++ b/src/ModelingData/TKG2d/PACKAGES.cmake @@ -0,0 +1,10 @@ +# Auto-generated list of packages for TKG2d toolkit +set(OCCT_TKG2d_LIST_OF_PACKAGES + Geom2d + LProp + TColGeom2d + Adaptor2d + Geom2dLProp + Geom2dAdaptor + Geom2dEvaluator +) diff --git a/src/ModelingData/TKG2d/TColGeom2d/FILES.cmake b/src/ModelingData/TKG2d/TColGeom2d/FILES.cmake new file mode 100644 index 0000000000..65f4432698 --- /dev/null +++ b/src/ModelingData/TKG2d/TColGeom2d/FILES.cmake @@ -0,0 +1,16 @@ +# Source files for TColGeom2d package +set(OCCT_TColGeom2d_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TColGeom2d_FILES + TColGeom2d_Array1OfBezierCurve.hxx + TColGeom2d_Array1OfBSplineCurve.hxx + TColGeom2d_Array1OfCurve.hxx + TColGeom2d_HArray1OfBezierCurve.hxx + TColGeom2d_HArray1OfBSplineCurve.hxx + TColGeom2d_HArray1OfCurve.hxx + TColGeom2d_HSequenceOfBoundedCurve.hxx + TColGeom2d_HSequenceOfCurve.hxx + TColGeom2d_SequenceOfBoundedCurve.hxx + TColGeom2d_SequenceOfCurve.hxx + TColGeom2d_SequenceOfGeometry.hxx +) diff --git a/src/TColGeom2d/TColGeom2d_Array1OfBSplineCurve.hxx b/src/ModelingData/TKG2d/TColGeom2d/TColGeom2d_Array1OfBSplineCurve.hxx similarity index 100% rename from src/TColGeom2d/TColGeom2d_Array1OfBSplineCurve.hxx rename to src/ModelingData/TKG2d/TColGeom2d/TColGeom2d_Array1OfBSplineCurve.hxx diff --git a/src/TColGeom2d/TColGeom2d_Array1OfBezierCurve.hxx b/src/ModelingData/TKG2d/TColGeom2d/TColGeom2d_Array1OfBezierCurve.hxx similarity index 100% rename from src/TColGeom2d/TColGeom2d_Array1OfBezierCurve.hxx rename to src/ModelingData/TKG2d/TColGeom2d/TColGeom2d_Array1OfBezierCurve.hxx diff --git a/src/TColGeom2d/TColGeom2d_Array1OfCurve.hxx b/src/ModelingData/TKG2d/TColGeom2d/TColGeom2d_Array1OfCurve.hxx similarity index 100% rename from src/TColGeom2d/TColGeom2d_Array1OfCurve.hxx rename to src/ModelingData/TKG2d/TColGeom2d/TColGeom2d_Array1OfCurve.hxx diff --git a/src/TColGeom2d/TColGeom2d_HArray1OfBSplineCurve.hxx b/src/ModelingData/TKG2d/TColGeom2d/TColGeom2d_HArray1OfBSplineCurve.hxx similarity index 100% rename from src/TColGeom2d/TColGeom2d_HArray1OfBSplineCurve.hxx rename to src/ModelingData/TKG2d/TColGeom2d/TColGeom2d_HArray1OfBSplineCurve.hxx diff --git a/src/TColGeom2d/TColGeom2d_HArray1OfBezierCurve.hxx b/src/ModelingData/TKG2d/TColGeom2d/TColGeom2d_HArray1OfBezierCurve.hxx similarity index 100% rename from src/TColGeom2d/TColGeom2d_HArray1OfBezierCurve.hxx rename to src/ModelingData/TKG2d/TColGeom2d/TColGeom2d_HArray1OfBezierCurve.hxx diff --git a/src/TColGeom2d/TColGeom2d_HArray1OfCurve.hxx b/src/ModelingData/TKG2d/TColGeom2d/TColGeom2d_HArray1OfCurve.hxx similarity index 100% rename from src/TColGeom2d/TColGeom2d_HArray1OfCurve.hxx rename to src/ModelingData/TKG2d/TColGeom2d/TColGeom2d_HArray1OfCurve.hxx diff --git a/src/TColGeom2d/TColGeom2d_HSequenceOfBoundedCurve.hxx b/src/ModelingData/TKG2d/TColGeom2d/TColGeom2d_HSequenceOfBoundedCurve.hxx similarity index 100% rename from src/TColGeom2d/TColGeom2d_HSequenceOfBoundedCurve.hxx rename to src/ModelingData/TKG2d/TColGeom2d/TColGeom2d_HSequenceOfBoundedCurve.hxx diff --git a/src/TColGeom2d/TColGeom2d_HSequenceOfCurve.hxx b/src/ModelingData/TKG2d/TColGeom2d/TColGeom2d_HSequenceOfCurve.hxx similarity index 100% rename from src/TColGeom2d/TColGeom2d_HSequenceOfCurve.hxx rename to src/ModelingData/TKG2d/TColGeom2d/TColGeom2d_HSequenceOfCurve.hxx diff --git a/src/TColGeom2d/TColGeom2d_SequenceOfBoundedCurve.hxx b/src/ModelingData/TKG2d/TColGeom2d/TColGeom2d_SequenceOfBoundedCurve.hxx similarity index 100% rename from src/TColGeom2d/TColGeom2d_SequenceOfBoundedCurve.hxx rename to src/ModelingData/TKG2d/TColGeom2d/TColGeom2d_SequenceOfBoundedCurve.hxx diff --git a/src/TColGeom2d/TColGeom2d_SequenceOfCurve.hxx b/src/ModelingData/TKG2d/TColGeom2d/TColGeom2d_SequenceOfCurve.hxx similarity index 100% rename from src/TColGeom2d/TColGeom2d_SequenceOfCurve.hxx rename to src/ModelingData/TKG2d/TColGeom2d/TColGeom2d_SequenceOfCurve.hxx diff --git a/src/TColGeom2d/TColGeom2d_SequenceOfGeometry.hxx b/src/ModelingData/TKG2d/TColGeom2d/TColGeom2d_SequenceOfGeometry.hxx similarity index 100% rename from src/TColGeom2d/TColGeom2d_SequenceOfGeometry.hxx rename to src/ModelingData/TKG2d/TColGeom2d/TColGeom2d_SequenceOfGeometry.hxx diff --git a/src/Adaptor3d/Adaptor3d_Curve.cxx b/src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_Curve.cxx similarity index 100% rename from src/Adaptor3d/Adaptor3d_Curve.cxx rename to src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_Curve.cxx diff --git a/src/Adaptor3d/Adaptor3d_Curve.hxx b/src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_Curve.hxx similarity index 100% rename from src/Adaptor3d/Adaptor3d_Curve.hxx rename to src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_Curve.hxx diff --git a/src/Adaptor3d/Adaptor3d_CurveOnSurface.cxx b/src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_CurveOnSurface.cxx similarity index 100% rename from src/Adaptor3d/Adaptor3d_CurveOnSurface.cxx rename to src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_CurveOnSurface.cxx diff --git a/src/Adaptor3d/Adaptor3d_CurveOnSurface.hxx b/src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_CurveOnSurface.hxx similarity index 100% rename from src/Adaptor3d/Adaptor3d_CurveOnSurface.hxx rename to src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_CurveOnSurface.hxx diff --git a/src/Adaptor3d/Adaptor3d_HSurfaceTool.cxx b/src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_HSurfaceTool.cxx similarity index 100% rename from src/Adaptor3d/Adaptor3d_HSurfaceTool.cxx rename to src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_HSurfaceTool.cxx diff --git a/src/Adaptor3d/Adaptor3d_HSurfaceTool.hxx b/src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_HSurfaceTool.hxx similarity index 100% rename from src/Adaptor3d/Adaptor3d_HSurfaceTool.hxx rename to src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_HSurfaceTool.hxx diff --git a/src/Adaptor3d/Adaptor3d_HVertex.cxx b/src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_HVertex.cxx similarity index 100% rename from src/Adaptor3d/Adaptor3d_HVertex.cxx rename to src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_HVertex.cxx diff --git a/src/Adaptor3d/Adaptor3d_HVertex.hxx b/src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_HVertex.hxx similarity index 100% rename from src/Adaptor3d/Adaptor3d_HVertex.hxx rename to src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_HVertex.hxx diff --git a/src/Adaptor3d/Adaptor3d_InterFunc.cxx b/src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_InterFunc.cxx similarity index 100% rename from src/Adaptor3d/Adaptor3d_InterFunc.cxx rename to src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_InterFunc.cxx diff --git a/src/Adaptor3d/Adaptor3d_InterFunc.hxx b/src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_InterFunc.hxx similarity index 100% rename from src/Adaptor3d/Adaptor3d_InterFunc.hxx rename to src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_InterFunc.hxx diff --git a/src/Adaptor3d/Adaptor3d_IsoCurve.cxx b/src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_IsoCurve.cxx similarity index 100% rename from src/Adaptor3d/Adaptor3d_IsoCurve.cxx rename to src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_IsoCurve.cxx diff --git a/src/Adaptor3d/Adaptor3d_IsoCurve.hxx b/src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_IsoCurve.hxx similarity index 100% rename from src/Adaptor3d/Adaptor3d_IsoCurve.hxx rename to src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_IsoCurve.hxx diff --git a/src/Adaptor3d/Adaptor3d_Surface.cxx b/src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_Surface.cxx similarity index 100% rename from src/Adaptor3d/Adaptor3d_Surface.cxx rename to src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_Surface.cxx diff --git a/src/Adaptor3d/Adaptor3d_Surface.hxx b/src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_Surface.hxx similarity index 100% rename from src/Adaptor3d/Adaptor3d_Surface.hxx rename to src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_Surface.hxx diff --git a/src/Adaptor3d/Adaptor3d_TopolTool.cxx b/src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_TopolTool.cxx similarity index 100% rename from src/Adaptor3d/Adaptor3d_TopolTool.cxx rename to src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_TopolTool.cxx diff --git a/src/Adaptor3d/Adaptor3d_TopolTool.hxx b/src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_TopolTool.hxx similarity index 100% rename from src/Adaptor3d/Adaptor3d_TopolTool.hxx rename to src/ModelingData/TKG3d/Adaptor3d/Adaptor3d_TopolTool.hxx diff --git a/src/ModelingData/TKG3d/Adaptor3d/FILES.cmake b/src/ModelingData/TKG3d/Adaptor3d/FILES.cmake new file mode 100644 index 0000000000..86500038de --- /dev/null +++ b/src/ModelingData/TKG3d/Adaptor3d/FILES.cmake @@ -0,0 +1,21 @@ +# Source files for Adaptor3d package +set(OCCT_Adaptor3d_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Adaptor3d_FILES + Adaptor3d_Curve.cxx + Adaptor3d_Curve.hxx + Adaptor3d_CurveOnSurface.cxx + Adaptor3d_CurveOnSurface.hxx + Adaptor3d_HSurfaceTool.cxx + Adaptor3d_HSurfaceTool.hxx + Adaptor3d_HVertex.cxx + Adaptor3d_HVertex.hxx + Adaptor3d_InterFunc.cxx + Adaptor3d_InterFunc.hxx + Adaptor3d_IsoCurve.cxx + Adaptor3d_IsoCurve.hxx + Adaptor3d_Surface.cxx + Adaptor3d_Surface.hxx + Adaptor3d_TopolTool.cxx + Adaptor3d_TopolTool.hxx +) diff --git a/src/AdvApprox/AdvApprox_ApproxAFunction.cxx b/src/ModelingData/TKG3d/AdvApprox/AdvApprox_ApproxAFunction.cxx similarity index 100% rename from src/AdvApprox/AdvApprox_ApproxAFunction.cxx rename to src/ModelingData/TKG3d/AdvApprox/AdvApprox_ApproxAFunction.cxx diff --git a/src/AdvApprox/AdvApprox_ApproxAFunction.hxx b/src/ModelingData/TKG3d/AdvApprox/AdvApprox_ApproxAFunction.hxx similarity index 100% rename from src/AdvApprox/AdvApprox_ApproxAFunction.hxx rename to src/ModelingData/TKG3d/AdvApprox/AdvApprox_ApproxAFunction.hxx diff --git a/src/AdvApprox/AdvApprox_ApproxAFunction.lxx b/src/ModelingData/TKG3d/AdvApprox/AdvApprox_ApproxAFunction.lxx similarity index 100% rename from src/AdvApprox/AdvApprox_ApproxAFunction.lxx rename to src/ModelingData/TKG3d/AdvApprox/AdvApprox_ApproxAFunction.lxx diff --git a/src/AdvApprox/AdvApprox_Cutting.cxx b/src/ModelingData/TKG3d/AdvApprox/AdvApprox_Cutting.cxx similarity index 100% rename from src/AdvApprox/AdvApprox_Cutting.cxx rename to src/ModelingData/TKG3d/AdvApprox/AdvApprox_Cutting.cxx diff --git a/src/AdvApprox/AdvApprox_Cutting.hxx b/src/ModelingData/TKG3d/AdvApprox/AdvApprox_Cutting.hxx similarity index 100% rename from src/AdvApprox/AdvApprox_Cutting.hxx rename to src/ModelingData/TKG3d/AdvApprox/AdvApprox_Cutting.hxx diff --git a/src/AdvApprox/AdvApprox_DichoCutting.cxx b/src/ModelingData/TKG3d/AdvApprox/AdvApprox_DichoCutting.cxx similarity index 100% rename from src/AdvApprox/AdvApprox_DichoCutting.cxx rename to src/ModelingData/TKG3d/AdvApprox/AdvApprox_DichoCutting.cxx diff --git a/src/AdvApprox/AdvApprox_DichoCutting.hxx b/src/ModelingData/TKG3d/AdvApprox/AdvApprox_DichoCutting.hxx similarity index 100% rename from src/AdvApprox/AdvApprox_DichoCutting.hxx rename to src/ModelingData/TKG3d/AdvApprox/AdvApprox_DichoCutting.hxx diff --git a/src/AdvApprox/AdvApprox_EvaluatorFunction.hxx b/src/ModelingData/TKG3d/AdvApprox/AdvApprox_EvaluatorFunction.hxx similarity index 100% rename from src/AdvApprox/AdvApprox_EvaluatorFunction.hxx rename to src/ModelingData/TKG3d/AdvApprox/AdvApprox_EvaluatorFunction.hxx diff --git a/src/AdvApprox/AdvApprox_PrefAndRec.cxx b/src/ModelingData/TKG3d/AdvApprox/AdvApprox_PrefAndRec.cxx similarity index 100% rename from src/AdvApprox/AdvApprox_PrefAndRec.cxx rename to src/ModelingData/TKG3d/AdvApprox/AdvApprox_PrefAndRec.cxx diff --git a/src/AdvApprox/AdvApprox_PrefAndRec.hxx b/src/ModelingData/TKG3d/AdvApprox/AdvApprox_PrefAndRec.hxx similarity index 100% rename from src/AdvApprox/AdvApprox_PrefAndRec.hxx rename to src/ModelingData/TKG3d/AdvApprox/AdvApprox_PrefAndRec.hxx diff --git a/src/AdvApprox/AdvApprox_PrefCutting.cxx b/src/ModelingData/TKG3d/AdvApprox/AdvApprox_PrefCutting.cxx similarity index 100% rename from src/AdvApprox/AdvApprox_PrefCutting.cxx rename to src/ModelingData/TKG3d/AdvApprox/AdvApprox_PrefCutting.cxx diff --git a/src/AdvApprox/AdvApprox_PrefCutting.hxx b/src/ModelingData/TKG3d/AdvApprox/AdvApprox_PrefCutting.hxx similarity index 100% rename from src/AdvApprox/AdvApprox_PrefCutting.hxx rename to src/ModelingData/TKG3d/AdvApprox/AdvApprox_PrefCutting.hxx diff --git a/src/AdvApprox/AdvApprox_SimpleApprox.cxx b/src/ModelingData/TKG3d/AdvApprox/AdvApprox_SimpleApprox.cxx similarity index 100% rename from src/AdvApprox/AdvApprox_SimpleApprox.cxx rename to src/ModelingData/TKG3d/AdvApprox/AdvApprox_SimpleApprox.cxx diff --git a/src/AdvApprox/AdvApprox_SimpleApprox.hxx b/src/ModelingData/TKG3d/AdvApprox/AdvApprox_SimpleApprox.hxx similarity index 100% rename from src/AdvApprox/AdvApprox_SimpleApprox.hxx rename to src/ModelingData/TKG3d/AdvApprox/AdvApprox_SimpleApprox.hxx diff --git a/src/ModelingData/TKG3d/AdvApprox/FILES.cmake b/src/ModelingData/TKG3d/AdvApprox/FILES.cmake new file mode 100644 index 0000000000..7ec124446f --- /dev/null +++ b/src/ModelingData/TKG3d/AdvApprox/FILES.cmake @@ -0,0 +1,19 @@ +# Source files for AdvApprox package +set(OCCT_AdvApprox_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_AdvApprox_FILES + AdvApprox_ApproxAFunction.cxx + AdvApprox_ApproxAFunction.hxx + AdvApprox_ApproxAFunction.lxx + AdvApprox_Cutting.cxx + AdvApprox_Cutting.hxx + AdvApprox_DichoCutting.cxx + AdvApprox_DichoCutting.hxx + AdvApprox_EvaluatorFunction.hxx + AdvApprox_PrefAndRec.cxx + AdvApprox_PrefAndRec.hxx + AdvApprox_PrefCutting.cxx + AdvApprox_PrefCutting.hxx + AdvApprox_SimpleApprox.cxx + AdvApprox_SimpleApprox.hxx +) diff --git a/src/TKG3d/CMakeLists.txt b/src/ModelingData/TKG3d/CMakeLists.txt similarity index 100% rename from src/TKG3d/CMakeLists.txt rename to src/ModelingData/TKG3d/CMakeLists.txt diff --git a/src/ModelingData/TKG3d/EXTERNLIB.cmake b/src/ModelingData/TKG3d/EXTERNLIB.cmake new file mode 100644 index 0000000000..4ba7031e15 --- /dev/null +++ b/src/ModelingData/TKG3d/EXTERNLIB.cmake @@ -0,0 +1,6 @@ +# External dependencies for TKG3d +set(OCCT_TKG3d_EXTERNAL_LIBS + TKMath + TKernel + TKG2d +) diff --git a/src/ModelingData/TKG3d/FILES.cmake b/src/ModelingData/TKG3d/FILES.cmake new file mode 100644 index 0000000000..f27845b3b8 --- /dev/null +++ b/src/ModelingData/TKG3d/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKG3d +set(OCCT_TKG3d_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKG3d_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ModelingData/TKG3d/GProp/FILES.cmake b/src/ModelingData/TKG3d/GProp/FILES.cmake new file mode 100644 index 0000000000..2bd26037ef --- /dev/null +++ b/src/ModelingData/TKG3d/GProp/FILES.cmake @@ -0,0 +1,24 @@ +# Source files for GProp package +set(OCCT_GProp_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_GProp_FILES + GProp.cxx + GProp.hxx + GProp_CelGProps.cxx + GProp_CelGProps.hxx + GProp_EquaType.hxx + GProp_GProps.cxx + GProp_GProps.hxx + GProp_PEquation.cxx + GProp_PEquation.hxx + GProp_PGProps.cxx + GProp_PGProps.hxx + GProp_PrincipalProps.cxx + GProp_PrincipalProps.hxx + GProp_SelGProps.cxx + GProp_SelGProps.hxx + GProp_UndefinedAxis.hxx + GProp_ValueType.hxx + GProp_VelGProps.cxx + GProp_VelGProps.hxx +) diff --git a/src/GProp/GProp.cxx b/src/ModelingData/TKG3d/GProp/GProp.cxx similarity index 100% rename from src/GProp/GProp.cxx rename to src/ModelingData/TKG3d/GProp/GProp.cxx diff --git a/src/GProp/GProp.hxx b/src/ModelingData/TKG3d/GProp/GProp.hxx similarity index 100% rename from src/GProp/GProp.hxx rename to src/ModelingData/TKG3d/GProp/GProp.hxx diff --git a/src/GProp/GProp_CelGProps.cxx b/src/ModelingData/TKG3d/GProp/GProp_CelGProps.cxx similarity index 100% rename from src/GProp/GProp_CelGProps.cxx rename to src/ModelingData/TKG3d/GProp/GProp_CelGProps.cxx diff --git a/src/GProp/GProp_CelGProps.hxx b/src/ModelingData/TKG3d/GProp/GProp_CelGProps.hxx similarity index 100% rename from src/GProp/GProp_CelGProps.hxx rename to src/ModelingData/TKG3d/GProp/GProp_CelGProps.hxx diff --git a/src/GProp/GProp_EquaType.hxx b/src/ModelingData/TKG3d/GProp/GProp_EquaType.hxx similarity index 100% rename from src/GProp/GProp_EquaType.hxx rename to src/ModelingData/TKG3d/GProp/GProp_EquaType.hxx diff --git a/src/GProp/GProp_GProps.cxx b/src/ModelingData/TKG3d/GProp/GProp_GProps.cxx similarity index 100% rename from src/GProp/GProp_GProps.cxx rename to src/ModelingData/TKG3d/GProp/GProp_GProps.cxx diff --git a/src/GProp/GProp_GProps.hxx b/src/ModelingData/TKG3d/GProp/GProp_GProps.hxx similarity index 100% rename from src/GProp/GProp_GProps.hxx rename to src/ModelingData/TKG3d/GProp/GProp_GProps.hxx diff --git a/src/GProp/GProp_PEquation.cxx b/src/ModelingData/TKG3d/GProp/GProp_PEquation.cxx similarity index 100% rename from src/GProp/GProp_PEquation.cxx rename to src/ModelingData/TKG3d/GProp/GProp_PEquation.cxx diff --git a/src/GProp/GProp_PEquation.hxx b/src/ModelingData/TKG3d/GProp/GProp_PEquation.hxx similarity index 100% rename from src/GProp/GProp_PEquation.hxx rename to src/ModelingData/TKG3d/GProp/GProp_PEquation.hxx diff --git a/src/GProp/GProp_PGProps.cxx b/src/ModelingData/TKG3d/GProp/GProp_PGProps.cxx similarity index 100% rename from src/GProp/GProp_PGProps.cxx rename to src/ModelingData/TKG3d/GProp/GProp_PGProps.cxx diff --git a/src/GProp/GProp_PGProps.hxx b/src/ModelingData/TKG3d/GProp/GProp_PGProps.hxx similarity index 100% rename from src/GProp/GProp_PGProps.hxx rename to src/ModelingData/TKG3d/GProp/GProp_PGProps.hxx diff --git a/src/GProp/GProp_PrincipalProps.cxx b/src/ModelingData/TKG3d/GProp/GProp_PrincipalProps.cxx similarity index 100% rename from src/GProp/GProp_PrincipalProps.cxx rename to src/ModelingData/TKG3d/GProp/GProp_PrincipalProps.cxx diff --git a/src/GProp/GProp_PrincipalProps.hxx b/src/ModelingData/TKG3d/GProp/GProp_PrincipalProps.hxx similarity index 100% rename from src/GProp/GProp_PrincipalProps.hxx rename to src/ModelingData/TKG3d/GProp/GProp_PrincipalProps.hxx diff --git a/src/GProp/GProp_SelGProps.cxx b/src/ModelingData/TKG3d/GProp/GProp_SelGProps.cxx similarity index 100% rename from src/GProp/GProp_SelGProps.cxx rename to src/ModelingData/TKG3d/GProp/GProp_SelGProps.cxx diff --git a/src/GProp/GProp_SelGProps.hxx b/src/ModelingData/TKG3d/GProp/GProp_SelGProps.hxx similarity index 100% rename from src/GProp/GProp_SelGProps.hxx rename to src/ModelingData/TKG3d/GProp/GProp_SelGProps.hxx diff --git a/src/GProp/GProp_UndefinedAxis.hxx b/src/ModelingData/TKG3d/GProp/GProp_UndefinedAxis.hxx similarity index 100% rename from src/GProp/GProp_UndefinedAxis.hxx rename to src/ModelingData/TKG3d/GProp/GProp_UndefinedAxis.hxx diff --git a/src/GProp/GProp_ValueType.hxx b/src/ModelingData/TKG3d/GProp/GProp_ValueType.hxx similarity index 100% rename from src/GProp/GProp_ValueType.hxx rename to src/ModelingData/TKG3d/GProp/GProp_ValueType.hxx diff --git a/src/GProp/GProp_VelGProps.cxx b/src/ModelingData/TKG3d/GProp/GProp_VelGProps.cxx similarity index 100% rename from src/GProp/GProp_VelGProps.cxx rename to src/ModelingData/TKG3d/GProp/GProp_VelGProps.cxx diff --git a/src/GProp/GProp_VelGProps.hxx b/src/ModelingData/TKG3d/GProp/GProp_VelGProps.hxx similarity index 100% rename from src/GProp/GProp_VelGProps.hxx rename to src/ModelingData/TKG3d/GProp/GProp_VelGProps.hxx diff --git a/src/ModelingData/TKG3d/Geom/FILES.cmake b/src/ModelingData/TKG3d/Geom/FILES.cmake new file mode 100644 index 0000000000..044def655d --- /dev/null +++ b/src/ModelingData/TKG3d/Geom/FILES.cmake @@ -0,0 +1,87 @@ +# Source files for Geom package +set(OCCT_Geom_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Geom_FILES + Geom_Axis1Placement.cxx + Geom_Axis1Placement.hxx + Geom_Axis2Placement.cxx + Geom_Axis2Placement.hxx + Geom_AxisPlacement.cxx + Geom_AxisPlacement.hxx + Geom_BezierCurve.cxx + Geom_BezierCurve.hxx + Geom_BezierSurface.cxx + Geom_BezierSurface.hxx + Geom_BoundedCurve.cxx + Geom_BoundedCurve.hxx + Geom_BoundedSurface.cxx + Geom_BoundedSurface.hxx + Geom_BSplineCurve.cxx + Geom_BSplineCurve.hxx + Geom_BSplineCurve_1.cxx + Geom_BSplineSurface.cxx + Geom_BSplineSurface.hxx + Geom_BSplineSurface_1.cxx + Geom_CartesianPoint.cxx + Geom_CartesianPoint.hxx + Geom_Circle.cxx + Geom_Circle.hxx + Geom_Conic.cxx + Geom_Conic.hxx + Geom_ConicalSurface.cxx + Geom_ConicalSurface.hxx + Geom_Curve.cxx + Geom_Curve.hxx + Geom_CylindricalSurface.cxx + Geom_CylindricalSurface.hxx + Geom_Direction.cxx + Geom_Direction.hxx + Geom_ElementarySurface.cxx + Geom_ElementarySurface.hxx + Geom_Ellipse.cxx + Geom_Ellipse.hxx + Geom_Geometry.cxx + Geom_Geometry.hxx + Geom_HSequenceOfBSplineSurface.hxx + Geom_Hyperbola.cxx + Geom_Hyperbola.hxx + Geom_Line.cxx + Geom_Line.hxx + Geom_OffsetCurve.cxx + Geom_OffsetCurve.hxx + Geom_OffsetSurface.cxx + Geom_OffsetSurface.hxx + Geom_OsculatingSurface.cxx + Geom_OsculatingSurface.hxx + Geom_Parabola.cxx + Geom_Parabola.hxx + Geom_Plane.cxx + Geom_Plane.hxx + Geom_Point.cxx + Geom_Point.hxx + Geom_RectangularTrimmedSurface.cxx + Geom_RectangularTrimmedSurface.hxx + Geom_SequenceOfBSplineSurface.hxx + Geom_SphericalSurface.cxx + Geom_SphericalSurface.hxx + Geom_Surface.cxx + Geom_Surface.hxx + Geom_SurfaceOfLinearExtrusion.cxx + Geom_SurfaceOfLinearExtrusion.hxx + Geom_SurfaceOfRevolution.cxx + Geom_SurfaceOfRevolution.hxx + Geom_SweptSurface.cxx + Geom_SweptSurface.hxx + Geom_ToroidalSurface.cxx + Geom_ToroidalSurface.hxx + Geom_Transformation.cxx + Geom_Transformation.hxx + Geom_TrimmedCurve.cxx + Geom_TrimmedCurve.hxx + Geom_UndefinedDerivative.hxx + Geom_UndefinedValue.hxx + Geom_Vector.cxx + Geom_Vector.hxx + Geom_VectorWithMagnitude.cxx + Geom_VectorWithMagnitude.hxx +) diff --git a/src/Geom/Geom_Axis1Placement.cxx b/src/ModelingData/TKG3d/Geom/Geom_Axis1Placement.cxx similarity index 100% rename from src/Geom/Geom_Axis1Placement.cxx rename to src/ModelingData/TKG3d/Geom/Geom_Axis1Placement.cxx diff --git a/src/Geom/Geom_Axis1Placement.hxx b/src/ModelingData/TKG3d/Geom/Geom_Axis1Placement.hxx similarity index 100% rename from src/Geom/Geom_Axis1Placement.hxx rename to src/ModelingData/TKG3d/Geom/Geom_Axis1Placement.hxx diff --git a/src/Geom/Geom_Axis2Placement.cxx b/src/ModelingData/TKG3d/Geom/Geom_Axis2Placement.cxx similarity index 100% rename from src/Geom/Geom_Axis2Placement.cxx rename to src/ModelingData/TKG3d/Geom/Geom_Axis2Placement.cxx diff --git a/src/Geom/Geom_Axis2Placement.hxx b/src/ModelingData/TKG3d/Geom/Geom_Axis2Placement.hxx similarity index 100% rename from src/Geom/Geom_Axis2Placement.hxx rename to src/ModelingData/TKG3d/Geom/Geom_Axis2Placement.hxx diff --git a/src/Geom/Geom_AxisPlacement.cxx b/src/ModelingData/TKG3d/Geom/Geom_AxisPlacement.cxx similarity index 100% rename from src/Geom/Geom_AxisPlacement.cxx rename to src/ModelingData/TKG3d/Geom/Geom_AxisPlacement.cxx diff --git a/src/Geom/Geom_AxisPlacement.hxx b/src/ModelingData/TKG3d/Geom/Geom_AxisPlacement.hxx similarity index 100% rename from src/Geom/Geom_AxisPlacement.hxx rename to src/ModelingData/TKG3d/Geom/Geom_AxisPlacement.hxx diff --git a/src/Geom/Geom_BSplineCurve.cxx b/src/ModelingData/TKG3d/Geom/Geom_BSplineCurve.cxx similarity index 100% rename from src/Geom/Geom_BSplineCurve.cxx rename to src/ModelingData/TKG3d/Geom/Geom_BSplineCurve.cxx diff --git a/src/Geom/Geom_BSplineCurve.hxx b/src/ModelingData/TKG3d/Geom/Geom_BSplineCurve.hxx similarity index 100% rename from src/Geom/Geom_BSplineCurve.hxx rename to src/ModelingData/TKG3d/Geom/Geom_BSplineCurve.hxx diff --git a/src/Geom/Geom_BSplineCurve_1.cxx b/src/ModelingData/TKG3d/Geom/Geom_BSplineCurve_1.cxx similarity index 100% rename from src/Geom/Geom_BSplineCurve_1.cxx rename to src/ModelingData/TKG3d/Geom/Geom_BSplineCurve_1.cxx diff --git a/src/Geom/Geom_BSplineSurface.cxx b/src/ModelingData/TKG3d/Geom/Geom_BSplineSurface.cxx similarity index 100% rename from src/Geom/Geom_BSplineSurface.cxx rename to src/ModelingData/TKG3d/Geom/Geom_BSplineSurface.cxx diff --git a/src/Geom/Geom_BSplineSurface.hxx b/src/ModelingData/TKG3d/Geom/Geom_BSplineSurface.hxx similarity index 100% rename from src/Geom/Geom_BSplineSurface.hxx rename to src/ModelingData/TKG3d/Geom/Geom_BSplineSurface.hxx diff --git a/src/Geom/Geom_BSplineSurface_1.cxx b/src/ModelingData/TKG3d/Geom/Geom_BSplineSurface_1.cxx similarity index 100% rename from src/Geom/Geom_BSplineSurface_1.cxx rename to src/ModelingData/TKG3d/Geom/Geom_BSplineSurface_1.cxx diff --git a/src/Geom/Geom_BezierCurve.cxx b/src/ModelingData/TKG3d/Geom/Geom_BezierCurve.cxx similarity index 100% rename from src/Geom/Geom_BezierCurve.cxx rename to src/ModelingData/TKG3d/Geom/Geom_BezierCurve.cxx diff --git a/src/Geom/Geom_BezierCurve.hxx b/src/ModelingData/TKG3d/Geom/Geom_BezierCurve.hxx similarity index 100% rename from src/Geom/Geom_BezierCurve.hxx rename to src/ModelingData/TKG3d/Geom/Geom_BezierCurve.hxx diff --git a/src/Geom/Geom_BezierSurface.cxx b/src/ModelingData/TKG3d/Geom/Geom_BezierSurface.cxx similarity index 100% rename from src/Geom/Geom_BezierSurface.cxx rename to src/ModelingData/TKG3d/Geom/Geom_BezierSurface.cxx diff --git a/src/Geom/Geom_BezierSurface.hxx b/src/ModelingData/TKG3d/Geom/Geom_BezierSurface.hxx similarity index 100% rename from src/Geom/Geom_BezierSurface.hxx rename to src/ModelingData/TKG3d/Geom/Geom_BezierSurface.hxx diff --git a/src/Geom/Geom_BoundedCurve.cxx b/src/ModelingData/TKG3d/Geom/Geom_BoundedCurve.cxx similarity index 100% rename from src/Geom/Geom_BoundedCurve.cxx rename to src/ModelingData/TKG3d/Geom/Geom_BoundedCurve.cxx diff --git a/src/Geom/Geom_BoundedCurve.hxx b/src/ModelingData/TKG3d/Geom/Geom_BoundedCurve.hxx similarity index 100% rename from src/Geom/Geom_BoundedCurve.hxx rename to src/ModelingData/TKG3d/Geom/Geom_BoundedCurve.hxx diff --git a/src/Geom/Geom_BoundedSurface.cxx b/src/ModelingData/TKG3d/Geom/Geom_BoundedSurface.cxx similarity index 100% rename from src/Geom/Geom_BoundedSurface.cxx rename to src/ModelingData/TKG3d/Geom/Geom_BoundedSurface.cxx diff --git a/src/Geom/Geom_BoundedSurface.hxx b/src/ModelingData/TKG3d/Geom/Geom_BoundedSurface.hxx similarity index 100% rename from src/Geom/Geom_BoundedSurface.hxx rename to src/ModelingData/TKG3d/Geom/Geom_BoundedSurface.hxx diff --git a/src/Geom/Geom_CartesianPoint.cxx b/src/ModelingData/TKG3d/Geom/Geom_CartesianPoint.cxx similarity index 100% rename from src/Geom/Geom_CartesianPoint.cxx rename to src/ModelingData/TKG3d/Geom/Geom_CartesianPoint.cxx diff --git a/src/Geom/Geom_CartesianPoint.hxx b/src/ModelingData/TKG3d/Geom/Geom_CartesianPoint.hxx similarity index 100% rename from src/Geom/Geom_CartesianPoint.hxx rename to src/ModelingData/TKG3d/Geom/Geom_CartesianPoint.hxx diff --git a/src/Geom/Geom_Circle.cxx b/src/ModelingData/TKG3d/Geom/Geom_Circle.cxx similarity index 100% rename from src/Geom/Geom_Circle.cxx rename to src/ModelingData/TKG3d/Geom/Geom_Circle.cxx diff --git a/src/Geom/Geom_Circle.hxx b/src/ModelingData/TKG3d/Geom/Geom_Circle.hxx similarity index 100% rename from src/Geom/Geom_Circle.hxx rename to src/ModelingData/TKG3d/Geom/Geom_Circle.hxx diff --git a/src/Geom/Geom_Conic.cxx b/src/ModelingData/TKG3d/Geom/Geom_Conic.cxx similarity index 100% rename from src/Geom/Geom_Conic.cxx rename to src/ModelingData/TKG3d/Geom/Geom_Conic.cxx diff --git a/src/Geom/Geom_Conic.hxx b/src/ModelingData/TKG3d/Geom/Geom_Conic.hxx similarity index 100% rename from src/Geom/Geom_Conic.hxx rename to src/ModelingData/TKG3d/Geom/Geom_Conic.hxx diff --git a/src/Geom/Geom_ConicalSurface.cxx b/src/ModelingData/TKG3d/Geom/Geom_ConicalSurface.cxx similarity index 100% rename from src/Geom/Geom_ConicalSurface.cxx rename to src/ModelingData/TKG3d/Geom/Geom_ConicalSurface.cxx diff --git a/src/Geom/Geom_ConicalSurface.hxx b/src/ModelingData/TKG3d/Geom/Geom_ConicalSurface.hxx similarity index 100% rename from src/Geom/Geom_ConicalSurface.hxx rename to src/ModelingData/TKG3d/Geom/Geom_ConicalSurface.hxx diff --git a/src/Geom/Geom_Curve.cxx b/src/ModelingData/TKG3d/Geom/Geom_Curve.cxx similarity index 100% rename from src/Geom/Geom_Curve.cxx rename to src/ModelingData/TKG3d/Geom/Geom_Curve.cxx diff --git a/src/Geom/Geom_Curve.hxx b/src/ModelingData/TKG3d/Geom/Geom_Curve.hxx similarity index 100% rename from src/Geom/Geom_Curve.hxx rename to src/ModelingData/TKG3d/Geom/Geom_Curve.hxx diff --git a/src/Geom/Geom_CylindricalSurface.cxx b/src/ModelingData/TKG3d/Geom/Geom_CylindricalSurface.cxx similarity index 100% rename from src/Geom/Geom_CylindricalSurface.cxx rename to src/ModelingData/TKG3d/Geom/Geom_CylindricalSurface.cxx diff --git a/src/Geom/Geom_CylindricalSurface.hxx b/src/ModelingData/TKG3d/Geom/Geom_CylindricalSurface.hxx similarity index 100% rename from src/Geom/Geom_CylindricalSurface.hxx rename to src/ModelingData/TKG3d/Geom/Geom_CylindricalSurface.hxx diff --git a/src/Geom/Geom_Direction.cxx b/src/ModelingData/TKG3d/Geom/Geom_Direction.cxx similarity index 100% rename from src/Geom/Geom_Direction.cxx rename to src/ModelingData/TKG3d/Geom/Geom_Direction.cxx diff --git a/src/Geom/Geom_Direction.hxx b/src/ModelingData/TKG3d/Geom/Geom_Direction.hxx similarity index 100% rename from src/Geom/Geom_Direction.hxx rename to src/ModelingData/TKG3d/Geom/Geom_Direction.hxx diff --git a/src/Geom/Geom_ElementarySurface.cxx b/src/ModelingData/TKG3d/Geom/Geom_ElementarySurface.cxx similarity index 100% rename from src/Geom/Geom_ElementarySurface.cxx rename to src/ModelingData/TKG3d/Geom/Geom_ElementarySurface.cxx diff --git a/src/Geom/Geom_ElementarySurface.hxx b/src/ModelingData/TKG3d/Geom/Geom_ElementarySurface.hxx similarity index 100% rename from src/Geom/Geom_ElementarySurface.hxx rename to src/ModelingData/TKG3d/Geom/Geom_ElementarySurface.hxx diff --git a/src/Geom/Geom_Ellipse.cxx b/src/ModelingData/TKG3d/Geom/Geom_Ellipse.cxx similarity index 100% rename from src/Geom/Geom_Ellipse.cxx rename to src/ModelingData/TKG3d/Geom/Geom_Ellipse.cxx diff --git a/src/Geom/Geom_Ellipse.hxx b/src/ModelingData/TKG3d/Geom/Geom_Ellipse.hxx similarity index 100% rename from src/Geom/Geom_Ellipse.hxx rename to src/ModelingData/TKG3d/Geom/Geom_Ellipse.hxx diff --git a/src/Geom/Geom_Geometry.cxx b/src/ModelingData/TKG3d/Geom/Geom_Geometry.cxx similarity index 100% rename from src/Geom/Geom_Geometry.cxx rename to src/ModelingData/TKG3d/Geom/Geom_Geometry.cxx diff --git a/src/Geom/Geom_Geometry.hxx b/src/ModelingData/TKG3d/Geom/Geom_Geometry.hxx similarity index 100% rename from src/Geom/Geom_Geometry.hxx rename to src/ModelingData/TKG3d/Geom/Geom_Geometry.hxx diff --git a/src/Geom/Geom_HSequenceOfBSplineSurface.hxx b/src/ModelingData/TKG3d/Geom/Geom_HSequenceOfBSplineSurface.hxx similarity index 100% rename from src/Geom/Geom_HSequenceOfBSplineSurface.hxx rename to src/ModelingData/TKG3d/Geom/Geom_HSequenceOfBSplineSurface.hxx diff --git a/src/Geom/Geom_Hyperbola.cxx b/src/ModelingData/TKG3d/Geom/Geom_Hyperbola.cxx similarity index 100% rename from src/Geom/Geom_Hyperbola.cxx rename to src/ModelingData/TKG3d/Geom/Geom_Hyperbola.cxx diff --git a/src/Geom/Geom_Hyperbola.hxx b/src/ModelingData/TKG3d/Geom/Geom_Hyperbola.hxx similarity index 100% rename from src/Geom/Geom_Hyperbola.hxx rename to src/ModelingData/TKG3d/Geom/Geom_Hyperbola.hxx diff --git a/src/Geom/Geom_Line.cxx b/src/ModelingData/TKG3d/Geom/Geom_Line.cxx similarity index 100% rename from src/Geom/Geom_Line.cxx rename to src/ModelingData/TKG3d/Geom/Geom_Line.cxx diff --git a/src/Geom/Geom_Line.hxx b/src/ModelingData/TKG3d/Geom/Geom_Line.hxx similarity index 100% rename from src/Geom/Geom_Line.hxx rename to src/ModelingData/TKG3d/Geom/Geom_Line.hxx diff --git a/src/Geom/Geom_OffsetCurve.cxx b/src/ModelingData/TKG3d/Geom/Geom_OffsetCurve.cxx similarity index 100% rename from src/Geom/Geom_OffsetCurve.cxx rename to src/ModelingData/TKG3d/Geom/Geom_OffsetCurve.cxx diff --git a/src/Geom/Geom_OffsetCurve.hxx b/src/ModelingData/TKG3d/Geom/Geom_OffsetCurve.hxx similarity index 100% rename from src/Geom/Geom_OffsetCurve.hxx rename to src/ModelingData/TKG3d/Geom/Geom_OffsetCurve.hxx diff --git a/src/Geom/Geom_OffsetSurface.cxx b/src/ModelingData/TKG3d/Geom/Geom_OffsetSurface.cxx similarity index 100% rename from src/Geom/Geom_OffsetSurface.cxx rename to src/ModelingData/TKG3d/Geom/Geom_OffsetSurface.cxx diff --git a/src/Geom/Geom_OffsetSurface.hxx b/src/ModelingData/TKG3d/Geom/Geom_OffsetSurface.hxx similarity index 100% rename from src/Geom/Geom_OffsetSurface.hxx rename to src/ModelingData/TKG3d/Geom/Geom_OffsetSurface.hxx diff --git a/src/Geom/Geom_OsculatingSurface.cxx b/src/ModelingData/TKG3d/Geom/Geom_OsculatingSurface.cxx similarity index 100% rename from src/Geom/Geom_OsculatingSurface.cxx rename to src/ModelingData/TKG3d/Geom/Geom_OsculatingSurface.cxx diff --git a/src/Geom/Geom_OsculatingSurface.hxx b/src/ModelingData/TKG3d/Geom/Geom_OsculatingSurface.hxx similarity index 100% rename from src/Geom/Geom_OsculatingSurface.hxx rename to src/ModelingData/TKG3d/Geom/Geom_OsculatingSurface.hxx diff --git a/src/Geom/Geom_Parabola.cxx b/src/ModelingData/TKG3d/Geom/Geom_Parabola.cxx similarity index 100% rename from src/Geom/Geom_Parabola.cxx rename to src/ModelingData/TKG3d/Geom/Geom_Parabola.cxx diff --git a/src/Geom/Geom_Parabola.hxx b/src/ModelingData/TKG3d/Geom/Geom_Parabola.hxx similarity index 100% rename from src/Geom/Geom_Parabola.hxx rename to src/ModelingData/TKG3d/Geom/Geom_Parabola.hxx diff --git a/src/Geom/Geom_Plane.cxx b/src/ModelingData/TKG3d/Geom/Geom_Plane.cxx similarity index 100% rename from src/Geom/Geom_Plane.cxx rename to src/ModelingData/TKG3d/Geom/Geom_Plane.cxx diff --git a/src/Geom/Geom_Plane.hxx b/src/ModelingData/TKG3d/Geom/Geom_Plane.hxx similarity index 100% rename from src/Geom/Geom_Plane.hxx rename to src/ModelingData/TKG3d/Geom/Geom_Plane.hxx diff --git a/src/Geom/Geom_Point.cxx b/src/ModelingData/TKG3d/Geom/Geom_Point.cxx similarity index 100% rename from src/Geom/Geom_Point.cxx rename to src/ModelingData/TKG3d/Geom/Geom_Point.cxx diff --git a/src/Geom/Geom_Point.hxx b/src/ModelingData/TKG3d/Geom/Geom_Point.hxx similarity index 100% rename from src/Geom/Geom_Point.hxx rename to src/ModelingData/TKG3d/Geom/Geom_Point.hxx diff --git a/src/Geom/Geom_RectangularTrimmedSurface.cxx b/src/ModelingData/TKG3d/Geom/Geom_RectangularTrimmedSurface.cxx similarity index 100% rename from src/Geom/Geom_RectangularTrimmedSurface.cxx rename to src/ModelingData/TKG3d/Geom/Geom_RectangularTrimmedSurface.cxx diff --git a/src/Geom/Geom_RectangularTrimmedSurface.hxx b/src/ModelingData/TKG3d/Geom/Geom_RectangularTrimmedSurface.hxx similarity index 100% rename from src/Geom/Geom_RectangularTrimmedSurface.hxx rename to src/ModelingData/TKG3d/Geom/Geom_RectangularTrimmedSurface.hxx diff --git a/src/Geom/Geom_SequenceOfBSplineSurface.hxx b/src/ModelingData/TKG3d/Geom/Geom_SequenceOfBSplineSurface.hxx similarity index 100% rename from src/Geom/Geom_SequenceOfBSplineSurface.hxx rename to src/ModelingData/TKG3d/Geom/Geom_SequenceOfBSplineSurface.hxx diff --git a/src/Geom/Geom_SphericalSurface.cxx b/src/ModelingData/TKG3d/Geom/Geom_SphericalSurface.cxx similarity index 100% rename from src/Geom/Geom_SphericalSurface.cxx rename to src/ModelingData/TKG3d/Geom/Geom_SphericalSurface.cxx diff --git a/src/Geom/Geom_SphericalSurface.hxx b/src/ModelingData/TKG3d/Geom/Geom_SphericalSurface.hxx similarity index 100% rename from src/Geom/Geom_SphericalSurface.hxx rename to src/ModelingData/TKG3d/Geom/Geom_SphericalSurface.hxx diff --git a/src/Geom/Geom_Surface.cxx b/src/ModelingData/TKG3d/Geom/Geom_Surface.cxx similarity index 100% rename from src/Geom/Geom_Surface.cxx rename to src/ModelingData/TKG3d/Geom/Geom_Surface.cxx diff --git a/src/Geom/Geom_Surface.hxx b/src/ModelingData/TKG3d/Geom/Geom_Surface.hxx similarity index 100% rename from src/Geom/Geom_Surface.hxx rename to src/ModelingData/TKG3d/Geom/Geom_Surface.hxx diff --git a/src/Geom/Geom_SurfaceOfLinearExtrusion.cxx b/src/ModelingData/TKG3d/Geom/Geom_SurfaceOfLinearExtrusion.cxx similarity index 100% rename from src/Geom/Geom_SurfaceOfLinearExtrusion.cxx rename to src/ModelingData/TKG3d/Geom/Geom_SurfaceOfLinearExtrusion.cxx diff --git a/src/Geom/Geom_SurfaceOfLinearExtrusion.hxx b/src/ModelingData/TKG3d/Geom/Geom_SurfaceOfLinearExtrusion.hxx similarity index 100% rename from src/Geom/Geom_SurfaceOfLinearExtrusion.hxx rename to src/ModelingData/TKG3d/Geom/Geom_SurfaceOfLinearExtrusion.hxx diff --git a/src/Geom/Geom_SurfaceOfRevolution.cxx b/src/ModelingData/TKG3d/Geom/Geom_SurfaceOfRevolution.cxx similarity index 100% rename from src/Geom/Geom_SurfaceOfRevolution.cxx rename to src/ModelingData/TKG3d/Geom/Geom_SurfaceOfRevolution.cxx diff --git a/src/Geom/Geom_SurfaceOfRevolution.hxx b/src/ModelingData/TKG3d/Geom/Geom_SurfaceOfRevolution.hxx similarity index 100% rename from src/Geom/Geom_SurfaceOfRevolution.hxx rename to src/ModelingData/TKG3d/Geom/Geom_SurfaceOfRevolution.hxx diff --git a/src/Geom/Geom_SweptSurface.cxx b/src/ModelingData/TKG3d/Geom/Geom_SweptSurface.cxx similarity index 100% rename from src/Geom/Geom_SweptSurface.cxx rename to src/ModelingData/TKG3d/Geom/Geom_SweptSurface.cxx diff --git a/src/Geom/Geom_SweptSurface.hxx b/src/ModelingData/TKG3d/Geom/Geom_SweptSurface.hxx similarity index 100% rename from src/Geom/Geom_SweptSurface.hxx rename to src/ModelingData/TKG3d/Geom/Geom_SweptSurface.hxx diff --git a/src/Geom/Geom_ToroidalSurface.cxx b/src/ModelingData/TKG3d/Geom/Geom_ToroidalSurface.cxx similarity index 100% rename from src/Geom/Geom_ToroidalSurface.cxx rename to src/ModelingData/TKG3d/Geom/Geom_ToroidalSurface.cxx diff --git a/src/Geom/Geom_ToroidalSurface.hxx b/src/ModelingData/TKG3d/Geom/Geom_ToroidalSurface.hxx similarity index 100% rename from src/Geom/Geom_ToroidalSurface.hxx rename to src/ModelingData/TKG3d/Geom/Geom_ToroidalSurface.hxx diff --git a/src/Geom/Geom_Transformation.cxx b/src/ModelingData/TKG3d/Geom/Geom_Transformation.cxx similarity index 100% rename from src/Geom/Geom_Transformation.cxx rename to src/ModelingData/TKG3d/Geom/Geom_Transformation.cxx diff --git a/src/Geom/Geom_Transformation.hxx b/src/ModelingData/TKG3d/Geom/Geom_Transformation.hxx similarity index 100% rename from src/Geom/Geom_Transformation.hxx rename to src/ModelingData/TKG3d/Geom/Geom_Transformation.hxx diff --git a/src/Geom/Geom_TrimmedCurve.cxx b/src/ModelingData/TKG3d/Geom/Geom_TrimmedCurve.cxx similarity index 100% rename from src/Geom/Geom_TrimmedCurve.cxx rename to src/ModelingData/TKG3d/Geom/Geom_TrimmedCurve.cxx diff --git a/src/Geom/Geom_TrimmedCurve.hxx b/src/ModelingData/TKG3d/Geom/Geom_TrimmedCurve.hxx similarity index 100% rename from src/Geom/Geom_TrimmedCurve.hxx rename to src/ModelingData/TKG3d/Geom/Geom_TrimmedCurve.hxx diff --git a/src/Geom/Geom_UndefinedDerivative.hxx b/src/ModelingData/TKG3d/Geom/Geom_UndefinedDerivative.hxx similarity index 100% rename from src/Geom/Geom_UndefinedDerivative.hxx rename to src/ModelingData/TKG3d/Geom/Geom_UndefinedDerivative.hxx diff --git a/src/Geom/Geom_UndefinedValue.hxx b/src/ModelingData/TKG3d/Geom/Geom_UndefinedValue.hxx similarity index 100% rename from src/Geom/Geom_UndefinedValue.hxx rename to src/ModelingData/TKG3d/Geom/Geom_UndefinedValue.hxx diff --git a/src/Geom/Geom_Vector.cxx b/src/ModelingData/TKG3d/Geom/Geom_Vector.cxx similarity index 100% rename from src/Geom/Geom_Vector.cxx rename to src/ModelingData/TKG3d/Geom/Geom_Vector.cxx diff --git a/src/Geom/Geom_Vector.hxx b/src/ModelingData/TKG3d/Geom/Geom_Vector.hxx similarity index 100% rename from src/Geom/Geom_Vector.hxx rename to src/ModelingData/TKG3d/Geom/Geom_Vector.hxx diff --git a/src/Geom/Geom_VectorWithMagnitude.cxx b/src/ModelingData/TKG3d/Geom/Geom_VectorWithMagnitude.cxx similarity index 100% rename from src/Geom/Geom_VectorWithMagnitude.cxx rename to src/ModelingData/TKG3d/Geom/Geom_VectorWithMagnitude.cxx diff --git a/src/Geom/Geom_VectorWithMagnitude.hxx b/src/ModelingData/TKG3d/Geom/Geom_VectorWithMagnitude.hxx similarity index 100% rename from src/Geom/Geom_VectorWithMagnitude.hxx rename to src/ModelingData/TKG3d/Geom/Geom_VectorWithMagnitude.hxx diff --git a/src/ModelingData/TKG3d/GeomAdaptor/FILES.cmake b/src/ModelingData/TKG3d/GeomAdaptor/FILES.cmake new file mode 100644 index 0000000000..a83a191dbf --- /dev/null +++ b/src/ModelingData/TKG3d/GeomAdaptor/FILES.cmake @@ -0,0 +1,15 @@ +# Source files for GeomAdaptor package +set(OCCT_GeomAdaptor_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_GeomAdaptor_FILES + GeomAdaptor.cxx + GeomAdaptor.hxx + GeomAdaptor_Curve.cxx + GeomAdaptor_Curve.hxx + GeomAdaptor_Surface.cxx + GeomAdaptor_Surface.hxx + GeomAdaptor_SurfaceOfLinearExtrusion.cxx + GeomAdaptor_SurfaceOfLinearExtrusion.hxx + GeomAdaptor_SurfaceOfRevolution.cxx + GeomAdaptor_SurfaceOfRevolution.hxx +) diff --git a/src/GeomAdaptor/GeomAdaptor.cxx b/src/ModelingData/TKG3d/GeomAdaptor/GeomAdaptor.cxx similarity index 100% rename from src/GeomAdaptor/GeomAdaptor.cxx rename to src/ModelingData/TKG3d/GeomAdaptor/GeomAdaptor.cxx diff --git a/src/GeomAdaptor/GeomAdaptor.hxx b/src/ModelingData/TKG3d/GeomAdaptor/GeomAdaptor.hxx similarity index 100% rename from src/GeomAdaptor/GeomAdaptor.hxx rename to src/ModelingData/TKG3d/GeomAdaptor/GeomAdaptor.hxx diff --git a/src/GeomAdaptor/GeomAdaptor_Curve.cxx b/src/ModelingData/TKG3d/GeomAdaptor/GeomAdaptor_Curve.cxx similarity index 100% rename from src/GeomAdaptor/GeomAdaptor_Curve.cxx rename to src/ModelingData/TKG3d/GeomAdaptor/GeomAdaptor_Curve.cxx diff --git a/src/GeomAdaptor/GeomAdaptor_Curve.hxx b/src/ModelingData/TKG3d/GeomAdaptor/GeomAdaptor_Curve.hxx similarity index 100% rename from src/GeomAdaptor/GeomAdaptor_Curve.hxx rename to src/ModelingData/TKG3d/GeomAdaptor/GeomAdaptor_Curve.hxx diff --git a/src/GeomAdaptor/GeomAdaptor_Surface.cxx b/src/ModelingData/TKG3d/GeomAdaptor/GeomAdaptor_Surface.cxx similarity index 100% rename from src/GeomAdaptor/GeomAdaptor_Surface.cxx rename to src/ModelingData/TKG3d/GeomAdaptor/GeomAdaptor_Surface.cxx diff --git a/src/GeomAdaptor/GeomAdaptor_Surface.hxx b/src/ModelingData/TKG3d/GeomAdaptor/GeomAdaptor_Surface.hxx similarity index 100% rename from src/GeomAdaptor/GeomAdaptor_Surface.hxx rename to src/ModelingData/TKG3d/GeomAdaptor/GeomAdaptor_Surface.hxx diff --git a/src/GeomAdaptor/GeomAdaptor_SurfaceOfLinearExtrusion.cxx b/src/ModelingData/TKG3d/GeomAdaptor/GeomAdaptor_SurfaceOfLinearExtrusion.cxx similarity index 100% rename from src/GeomAdaptor/GeomAdaptor_SurfaceOfLinearExtrusion.cxx rename to src/ModelingData/TKG3d/GeomAdaptor/GeomAdaptor_SurfaceOfLinearExtrusion.cxx diff --git a/src/GeomAdaptor/GeomAdaptor_SurfaceOfLinearExtrusion.hxx b/src/ModelingData/TKG3d/GeomAdaptor/GeomAdaptor_SurfaceOfLinearExtrusion.hxx similarity index 100% rename from src/GeomAdaptor/GeomAdaptor_SurfaceOfLinearExtrusion.hxx rename to src/ModelingData/TKG3d/GeomAdaptor/GeomAdaptor_SurfaceOfLinearExtrusion.hxx diff --git a/src/GeomAdaptor/GeomAdaptor_SurfaceOfRevolution.cxx b/src/ModelingData/TKG3d/GeomAdaptor/GeomAdaptor_SurfaceOfRevolution.cxx similarity index 100% rename from src/GeomAdaptor/GeomAdaptor_SurfaceOfRevolution.cxx rename to src/ModelingData/TKG3d/GeomAdaptor/GeomAdaptor_SurfaceOfRevolution.cxx diff --git a/src/GeomAdaptor/GeomAdaptor_SurfaceOfRevolution.hxx b/src/ModelingData/TKG3d/GeomAdaptor/GeomAdaptor_SurfaceOfRevolution.hxx similarity index 100% rename from src/GeomAdaptor/GeomAdaptor_SurfaceOfRevolution.hxx rename to src/ModelingData/TKG3d/GeomAdaptor/GeomAdaptor_SurfaceOfRevolution.hxx diff --git a/src/ModelingData/TKG3d/GeomEvaluator/FILES.cmake b/src/ModelingData/TKG3d/GeomEvaluator/FILES.cmake new file mode 100644 index 0000000000..d86f4e5541 --- /dev/null +++ b/src/ModelingData/TKG3d/GeomEvaluator/FILES.cmake @@ -0,0 +1,15 @@ +# Source files for GeomEvaluator package +set(OCCT_GeomEvaluator_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_GeomEvaluator_FILES + GeomEvaluator_Curve.hxx + GeomEvaluator_OffsetCurve.cxx + GeomEvaluator_OffsetCurve.hxx + GeomEvaluator_OffsetSurface.cxx + GeomEvaluator_OffsetSurface.hxx + GeomEvaluator_Surface.hxx + GeomEvaluator_SurfaceOfExtrusion.cxx + GeomEvaluator_SurfaceOfExtrusion.hxx + GeomEvaluator_SurfaceOfRevolution.cxx + GeomEvaluator_SurfaceOfRevolution.hxx +) diff --git a/src/GeomEvaluator/GeomEvaluator_Curve.hxx b/src/ModelingData/TKG3d/GeomEvaluator/GeomEvaluator_Curve.hxx similarity index 100% rename from src/GeomEvaluator/GeomEvaluator_Curve.hxx rename to src/ModelingData/TKG3d/GeomEvaluator/GeomEvaluator_Curve.hxx diff --git a/src/GeomEvaluator/GeomEvaluator_OffsetCurve.cxx b/src/ModelingData/TKG3d/GeomEvaluator/GeomEvaluator_OffsetCurve.cxx similarity index 100% rename from src/GeomEvaluator/GeomEvaluator_OffsetCurve.cxx rename to src/ModelingData/TKG3d/GeomEvaluator/GeomEvaluator_OffsetCurve.cxx diff --git a/src/GeomEvaluator/GeomEvaluator_OffsetCurve.hxx b/src/ModelingData/TKG3d/GeomEvaluator/GeomEvaluator_OffsetCurve.hxx similarity index 100% rename from src/GeomEvaluator/GeomEvaluator_OffsetCurve.hxx rename to src/ModelingData/TKG3d/GeomEvaluator/GeomEvaluator_OffsetCurve.hxx diff --git a/src/GeomEvaluator/GeomEvaluator_OffsetSurface.cxx b/src/ModelingData/TKG3d/GeomEvaluator/GeomEvaluator_OffsetSurface.cxx similarity index 100% rename from src/GeomEvaluator/GeomEvaluator_OffsetSurface.cxx rename to src/ModelingData/TKG3d/GeomEvaluator/GeomEvaluator_OffsetSurface.cxx diff --git a/src/GeomEvaluator/GeomEvaluator_OffsetSurface.hxx b/src/ModelingData/TKG3d/GeomEvaluator/GeomEvaluator_OffsetSurface.hxx similarity index 100% rename from src/GeomEvaluator/GeomEvaluator_OffsetSurface.hxx rename to src/ModelingData/TKG3d/GeomEvaluator/GeomEvaluator_OffsetSurface.hxx diff --git a/src/GeomEvaluator/GeomEvaluator_Surface.hxx b/src/ModelingData/TKG3d/GeomEvaluator/GeomEvaluator_Surface.hxx similarity index 100% rename from src/GeomEvaluator/GeomEvaluator_Surface.hxx rename to src/ModelingData/TKG3d/GeomEvaluator/GeomEvaluator_Surface.hxx diff --git a/src/GeomEvaluator/GeomEvaluator_SurfaceOfExtrusion.cxx b/src/ModelingData/TKG3d/GeomEvaluator/GeomEvaluator_SurfaceOfExtrusion.cxx similarity index 100% rename from src/GeomEvaluator/GeomEvaluator_SurfaceOfExtrusion.cxx rename to src/ModelingData/TKG3d/GeomEvaluator/GeomEvaluator_SurfaceOfExtrusion.cxx diff --git a/src/GeomEvaluator/GeomEvaluator_SurfaceOfExtrusion.hxx b/src/ModelingData/TKG3d/GeomEvaluator/GeomEvaluator_SurfaceOfExtrusion.hxx similarity index 100% rename from src/GeomEvaluator/GeomEvaluator_SurfaceOfExtrusion.hxx rename to src/ModelingData/TKG3d/GeomEvaluator/GeomEvaluator_SurfaceOfExtrusion.hxx diff --git a/src/GeomEvaluator/GeomEvaluator_SurfaceOfRevolution.cxx b/src/ModelingData/TKG3d/GeomEvaluator/GeomEvaluator_SurfaceOfRevolution.cxx similarity index 100% rename from src/GeomEvaluator/GeomEvaluator_SurfaceOfRevolution.cxx rename to src/ModelingData/TKG3d/GeomEvaluator/GeomEvaluator_SurfaceOfRevolution.cxx diff --git a/src/GeomEvaluator/GeomEvaluator_SurfaceOfRevolution.hxx b/src/ModelingData/TKG3d/GeomEvaluator/GeomEvaluator_SurfaceOfRevolution.hxx similarity index 100% rename from src/GeomEvaluator/GeomEvaluator_SurfaceOfRevolution.hxx rename to src/ModelingData/TKG3d/GeomEvaluator/GeomEvaluator_SurfaceOfRevolution.hxx diff --git a/src/ModelingData/TKG3d/GeomLProp/FILES.cmake b/src/ModelingData/TKG3d/GeomLProp/FILES.cmake new file mode 100644 index 0000000000..3fd07bc48e --- /dev/null +++ b/src/ModelingData/TKG3d/GeomLProp/FILES.cmake @@ -0,0 +1,15 @@ +# Source files for GeomLProp package +set(OCCT_GeomLProp_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_GeomLProp_FILES + GeomLProp.cxx + GeomLProp.hxx + GeomLProp_CLProps.hxx + GeomLProp_CLProps_0.cxx + GeomLProp_CurveTool.cxx + GeomLProp_CurveTool.hxx + GeomLProp_SLProps.hxx + GeomLProp_SLProps_0.cxx + GeomLProp_SurfaceTool.cxx + GeomLProp_SurfaceTool.hxx +) diff --git a/src/GeomLProp/GeomLProp.cxx b/src/ModelingData/TKG3d/GeomLProp/GeomLProp.cxx similarity index 100% rename from src/GeomLProp/GeomLProp.cxx rename to src/ModelingData/TKG3d/GeomLProp/GeomLProp.cxx diff --git a/src/GeomLProp/GeomLProp.hxx b/src/ModelingData/TKG3d/GeomLProp/GeomLProp.hxx similarity index 100% rename from src/GeomLProp/GeomLProp.hxx rename to src/ModelingData/TKG3d/GeomLProp/GeomLProp.hxx diff --git a/src/GeomLProp/GeomLProp_CLProps.hxx b/src/ModelingData/TKG3d/GeomLProp/GeomLProp_CLProps.hxx similarity index 100% rename from src/GeomLProp/GeomLProp_CLProps.hxx rename to src/ModelingData/TKG3d/GeomLProp/GeomLProp_CLProps.hxx diff --git a/src/GeomLProp/GeomLProp_CLProps_0.cxx b/src/ModelingData/TKG3d/GeomLProp/GeomLProp_CLProps_0.cxx similarity index 100% rename from src/GeomLProp/GeomLProp_CLProps_0.cxx rename to src/ModelingData/TKG3d/GeomLProp/GeomLProp_CLProps_0.cxx diff --git a/src/GeomLProp/GeomLProp_CurveTool.cxx b/src/ModelingData/TKG3d/GeomLProp/GeomLProp_CurveTool.cxx similarity index 100% rename from src/GeomLProp/GeomLProp_CurveTool.cxx rename to src/ModelingData/TKG3d/GeomLProp/GeomLProp_CurveTool.cxx diff --git a/src/GeomLProp/GeomLProp_CurveTool.hxx b/src/ModelingData/TKG3d/GeomLProp/GeomLProp_CurveTool.hxx similarity index 100% rename from src/GeomLProp/GeomLProp_CurveTool.hxx rename to src/ModelingData/TKG3d/GeomLProp/GeomLProp_CurveTool.hxx diff --git a/src/GeomLProp/GeomLProp_SLProps.hxx b/src/ModelingData/TKG3d/GeomLProp/GeomLProp_SLProps.hxx similarity index 100% rename from src/GeomLProp/GeomLProp_SLProps.hxx rename to src/ModelingData/TKG3d/GeomLProp/GeomLProp_SLProps.hxx diff --git a/src/GeomLProp/GeomLProp_SLProps_0.cxx b/src/ModelingData/TKG3d/GeomLProp/GeomLProp_SLProps_0.cxx similarity index 100% rename from src/GeomLProp/GeomLProp_SLProps_0.cxx rename to src/ModelingData/TKG3d/GeomLProp/GeomLProp_SLProps_0.cxx diff --git a/src/GeomLProp/GeomLProp_SurfaceTool.cxx b/src/ModelingData/TKG3d/GeomLProp/GeomLProp_SurfaceTool.cxx similarity index 100% rename from src/GeomLProp/GeomLProp_SurfaceTool.cxx rename to src/ModelingData/TKG3d/GeomLProp/GeomLProp_SurfaceTool.cxx diff --git a/src/GeomLProp/GeomLProp_SurfaceTool.hxx b/src/ModelingData/TKG3d/GeomLProp/GeomLProp_SurfaceTool.hxx similarity index 100% rename from src/GeomLProp/GeomLProp_SurfaceTool.hxx rename to src/ModelingData/TKG3d/GeomLProp/GeomLProp_SurfaceTool.hxx diff --git a/src/ModelingData/TKG3d/LProp3d/FILES.cmake b/src/ModelingData/TKG3d/LProp3d/FILES.cmake new file mode 100644 index 0000000000..f470bf5785 --- /dev/null +++ b/src/ModelingData/TKG3d/LProp3d/FILES.cmake @@ -0,0 +1,13 @@ +# Source files for LProp3d package +set(OCCT_LProp3d_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_LProp3d_FILES + LProp3d_CLProps.hxx + LProp3d_CLProps_0.cxx + LProp3d_CurveTool.cxx + LProp3d_CurveTool.hxx + LProp3d_SLProps.hxx + LProp3d_SLProps_0.cxx + LProp3d_SurfaceTool.cxx + LProp3d_SurfaceTool.hxx +) diff --git a/src/LProp3d/LProp3d_CLProps.hxx b/src/ModelingData/TKG3d/LProp3d/LProp3d_CLProps.hxx similarity index 100% rename from src/LProp3d/LProp3d_CLProps.hxx rename to src/ModelingData/TKG3d/LProp3d/LProp3d_CLProps.hxx diff --git a/src/LProp3d/LProp3d_CLProps_0.cxx b/src/ModelingData/TKG3d/LProp3d/LProp3d_CLProps_0.cxx similarity index 100% rename from src/LProp3d/LProp3d_CLProps_0.cxx rename to src/ModelingData/TKG3d/LProp3d/LProp3d_CLProps_0.cxx diff --git a/src/LProp3d/LProp3d_CurveTool.cxx b/src/ModelingData/TKG3d/LProp3d/LProp3d_CurveTool.cxx similarity index 100% rename from src/LProp3d/LProp3d_CurveTool.cxx rename to src/ModelingData/TKG3d/LProp3d/LProp3d_CurveTool.cxx diff --git a/src/LProp3d/LProp3d_CurveTool.hxx b/src/ModelingData/TKG3d/LProp3d/LProp3d_CurveTool.hxx similarity index 100% rename from src/LProp3d/LProp3d_CurveTool.hxx rename to src/ModelingData/TKG3d/LProp3d/LProp3d_CurveTool.hxx diff --git a/src/LProp3d/LProp3d_SLProps.hxx b/src/ModelingData/TKG3d/LProp3d/LProp3d_SLProps.hxx similarity index 100% rename from src/LProp3d/LProp3d_SLProps.hxx rename to src/ModelingData/TKG3d/LProp3d/LProp3d_SLProps.hxx diff --git a/src/LProp3d/LProp3d_SLProps_0.cxx b/src/ModelingData/TKG3d/LProp3d/LProp3d_SLProps_0.cxx similarity index 100% rename from src/LProp3d/LProp3d_SLProps_0.cxx rename to src/ModelingData/TKG3d/LProp3d/LProp3d_SLProps_0.cxx diff --git a/src/LProp3d/LProp3d_SurfaceTool.cxx b/src/ModelingData/TKG3d/LProp3d/LProp3d_SurfaceTool.cxx similarity index 100% rename from src/LProp3d/LProp3d_SurfaceTool.cxx rename to src/ModelingData/TKG3d/LProp3d/LProp3d_SurfaceTool.cxx diff --git a/src/LProp3d/LProp3d_SurfaceTool.hxx b/src/ModelingData/TKG3d/LProp3d/LProp3d_SurfaceTool.hxx similarity index 100% rename from src/LProp3d/LProp3d_SurfaceTool.hxx rename to src/ModelingData/TKG3d/LProp3d/LProp3d_SurfaceTool.hxx diff --git a/src/ModelingData/TKG3d/PACKAGES.cmake b/src/ModelingData/TKG3d/PACKAGES.cmake new file mode 100644 index 0000000000..f7bad084e3 --- /dev/null +++ b/src/ModelingData/TKG3d/PACKAGES.cmake @@ -0,0 +1,13 @@ +# Auto-generated list of packages for TKG3d toolkit +set(OCCT_TKG3d_LIST_OF_PACKAGES + Geom + TColGeom + GeomAdaptor + AdvApprox + GeomLProp + Adaptor3d + LProp3d + TopAbs + GeomEvaluator + GProp +) diff --git a/src/ModelingData/TKG3d/TColGeom/FILES.cmake b/src/ModelingData/TKG3d/TColGeom/FILES.cmake new file mode 100644 index 0000000000..0983e1775c --- /dev/null +++ b/src/ModelingData/TKG3d/TColGeom/FILES.cmake @@ -0,0 +1,21 @@ +# Source files for TColGeom package +set(OCCT_TColGeom_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TColGeom_FILES + TColGeom_Array1OfBezierCurve.hxx + TColGeom_Array1OfBSplineCurve.hxx + TColGeom_Array1OfCurve.hxx + TColGeom_Array1OfSurface.hxx + TColGeom_Array2OfBezierSurface.hxx + TColGeom_Array2OfSurface.hxx + TColGeom_HArray1OfBezierCurve.hxx + TColGeom_HArray1OfBSplineCurve.hxx + TColGeom_HArray1OfCurve.hxx + TColGeom_HArray1OfSurface.hxx + TColGeom_HArray2OfSurface.hxx + TColGeom_HSequenceOfBoundedCurve.hxx + TColGeom_HSequenceOfCurve.hxx + TColGeom_SequenceOfBoundedCurve.hxx + TColGeom_SequenceOfCurve.hxx + TColGeom_SequenceOfSurface.hxx +) diff --git a/src/TColGeom/TColGeom_Array1OfBSplineCurve.hxx b/src/ModelingData/TKG3d/TColGeom/TColGeom_Array1OfBSplineCurve.hxx similarity index 100% rename from src/TColGeom/TColGeom_Array1OfBSplineCurve.hxx rename to src/ModelingData/TKG3d/TColGeom/TColGeom_Array1OfBSplineCurve.hxx diff --git a/src/TColGeom/TColGeom_Array1OfBezierCurve.hxx b/src/ModelingData/TKG3d/TColGeom/TColGeom_Array1OfBezierCurve.hxx similarity index 100% rename from src/TColGeom/TColGeom_Array1OfBezierCurve.hxx rename to src/ModelingData/TKG3d/TColGeom/TColGeom_Array1OfBezierCurve.hxx diff --git a/src/TColGeom/TColGeom_Array1OfCurve.hxx b/src/ModelingData/TKG3d/TColGeom/TColGeom_Array1OfCurve.hxx similarity index 100% rename from src/TColGeom/TColGeom_Array1OfCurve.hxx rename to src/ModelingData/TKG3d/TColGeom/TColGeom_Array1OfCurve.hxx diff --git a/src/TColGeom/TColGeom_Array1OfSurface.hxx b/src/ModelingData/TKG3d/TColGeom/TColGeom_Array1OfSurface.hxx similarity index 100% rename from src/TColGeom/TColGeom_Array1OfSurface.hxx rename to src/ModelingData/TKG3d/TColGeom/TColGeom_Array1OfSurface.hxx diff --git a/src/TColGeom/TColGeom_Array2OfBezierSurface.hxx b/src/ModelingData/TKG3d/TColGeom/TColGeom_Array2OfBezierSurface.hxx similarity index 100% rename from src/TColGeom/TColGeom_Array2OfBezierSurface.hxx rename to src/ModelingData/TKG3d/TColGeom/TColGeom_Array2OfBezierSurface.hxx diff --git a/src/TColGeom/TColGeom_Array2OfSurface.hxx b/src/ModelingData/TKG3d/TColGeom/TColGeom_Array2OfSurface.hxx similarity index 100% rename from src/TColGeom/TColGeom_Array2OfSurface.hxx rename to src/ModelingData/TKG3d/TColGeom/TColGeom_Array2OfSurface.hxx diff --git a/src/TColGeom/TColGeom_HArray1OfBSplineCurve.hxx b/src/ModelingData/TKG3d/TColGeom/TColGeom_HArray1OfBSplineCurve.hxx similarity index 100% rename from src/TColGeom/TColGeom_HArray1OfBSplineCurve.hxx rename to src/ModelingData/TKG3d/TColGeom/TColGeom_HArray1OfBSplineCurve.hxx diff --git a/src/TColGeom/TColGeom_HArray1OfBezierCurve.hxx b/src/ModelingData/TKG3d/TColGeom/TColGeom_HArray1OfBezierCurve.hxx similarity index 100% rename from src/TColGeom/TColGeom_HArray1OfBezierCurve.hxx rename to src/ModelingData/TKG3d/TColGeom/TColGeom_HArray1OfBezierCurve.hxx diff --git a/src/TColGeom/TColGeom_HArray1OfCurve.hxx b/src/ModelingData/TKG3d/TColGeom/TColGeom_HArray1OfCurve.hxx similarity index 100% rename from src/TColGeom/TColGeom_HArray1OfCurve.hxx rename to src/ModelingData/TKG3d/TColGeom/TColGeom_HArray1OfCurve.hxx diff --git a/src/TColGeom/TColGeom_HArray1OfSurface.hxx b/src/ModelingData/TKG3d/TColGeom/TColGeom_HArray1OfSurface.hxx similarity index 100% rename from src/TColGeom/TColGeom_HArray1OfSurface.hxx rename to src/ModelingData/TKG3d/TColGeom/TColGeom_HArray1OfSurface.hxx diff --git a/src/TColGeom/TColGeom_HArray2OfSurface.hxx b/src/ModelingData/TKG3d/TColGeom/TColGeom_HArray2OfSurface.hxx similarity index 100% rename from src/TColGeom/TColGeom_HArray2OfSurface.hxx rename to src/ModelingData/TKG3d/TColGeom/TColGeom_HArray2OfSurface.hxx diff --git a/src/TColGeom/TColGeom_HSequenceOfBoundedCurve.hxx b/src/ModelingData/TKG3d/TColGeom/TColGeom_HSequenceOfBoundedCurve.hxx similarity index 100% rename from src/TColGeom/TColGeom_HSequenceOfBoundedCurve.hxx rename to src/ModelingData/TKG3d/TColGeom/TColGeom_HSequenceOfBoundedCurve.hxx diff --git a/src/TColGeom/TColGeom_HSequenceOfCurve.hxx b/src/ModelingData/TKG3d/TColGeom/TColGeom_HSequenceOfCurve.hxx similarity index 100% rename from src/TColGeom/TColGeom_HSequenceOfCurve.hxx rename to src/ModelingData/TKG3d/TColGeom/TColGeom_HSequenceOfCurve.hxx diff --git a/src/TColGeom/TColGeom_SequenceOfBoundedCurve.hxx b/src/ModelingData/TKG3d/TColGeom/TColGeom_SequenceOfBoundedCurve.hxx similarity index 100% rename from src/TColGeom/TColGeom_SequenceOfBoundedCurve.hxx rename to src/ModelingData/TKG3d/TColGeom/TColGeom_SequenceOfBoundedCurve.hxx diff --git a/src/TColGeom/TColGeom_SequenceOfCurve.hxx b/src/ModelingData/TKG3d/TColGeom/TColGeom_SequenceOfCurve.hxx similarity index 100% rename from src/TColGeom/TColGeom_SequenceOfCurve.hxx rename to src/ModelingData/TKG3d/TColGeom/TColGeom_SequenceOfCurve.hxx diff --git a/src/TColGeom/TColGeom_SequenceOfSurface.hxx b/src/ModelingData/TKG3d/TColGeom/TColGeom_SequenceOfSurface.hxx similarity index 100% rename from src/TColGeom/TColGeom_SequenceOfSurface.hxx rename to src/ModelingData/TKG3d/TColGeom/TColGeom_SequenceOfSurface.hxx diff --git a/src/ModelingData/TKG3d/TopAbs/FILES.cmake b/src/ModelingData/TKG3d/TopAbs/FILES.cmake new file mode 100644 index 0000000000..d7ed1d190c --- /dev/null +++ b/src/ModelingData/TKG3d/TopAbs/FILES.cmake @@ -0,0 +1,10 @@ +# Source files for TopAbs package +set(OCCT_TopAbs_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TopAbs_FILES + TopAbs.cxx + TopAbs.hxx + TopAbs_Orientation.hxx + TopAbs_ShapeEnum.hxx + TopAbs_State.hxx +) diff --git a/src/TopAbs/TopAbs.cxx b/src/ModelingData/TKG3d/TopAbs/TopAbs.cxx similarity index 100% rename from src/TopAbs/TopAbs.cxx rename to src/ModelingData/TKG3d/TopAbs/TopAbs.cxx diff --git a/src/TopAbs/TopAbs.hxx b/src/ModelingData/TKG3d/TopAbs/TopAbs.hxx similarity index 100% rename from src/TopAbs/TopAbs.hxx rename to src/ModelingData/TKG3d/TopAbs/TopAbs.hxx diff --git a/src/TopAbs/TopAbs_Orientation.hxx b/src/ModelingData/TKG3d/TopAbs/TopAbs_Orientation.hxx similarity index 100% rename from src/TopAbs/TopAbs_Orientation.hxx rename to src/ModelingData/TKG3d/TopAbs/TopAbs_Orientation.hxx diff --git a/src/TopAbs/TopAbs_ShapeEnum.hxx b/src/ModelingData/TKG3d/TopAbs/TopAbs_ShapeEnum.hxx similarity index 100% rename from src/TopAbs/TopAbs_ShapeEnum.hxx rename to src/ModelingData/TKG3d/TopAbs/TopAbs_ShapeEnum.hxx diff --git a/src/TopAbs/TopAbs_State.hxx b/src/ModelingData/TKG3d/TopAbs/TopAbs_State.hxx similarity index 100% rename from src/TopAbs/TopAbs_State.hxx rename to src/ModelingData/TKG3d/TopAbs/TopAbs_State.hxx diff --git a/src/AdvApp2Var/AdvApp2Var_ApproxAFunc2Var.cxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_ApproxAFunc2Var.cxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_ApproxAFunc2Var.cxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_ApproxAFunc2Var.cxx diff --git a/src/AdvApp2Var/AdvApp2Var_ApproxAFunc2Var.hxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_ApproxAFunc2Var.hxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_ApproxAFunc2Var.hxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_ApproxAFunc2Var.hxx diff --git a/src/AdvApp2Var/AdvApp2Var_ApproxAFunc2Var.lxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_ApproxAFunc2Var.lxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_ApproxAFunc2Var.lxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_ApproxAFunc2Var.lxx diff --git a/src/AdvApp2Var/AdvApp2Var_ApproxF2var.cxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_ApproxF2var.cxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_ApproxF2var.cxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_ApproxF2var.cxx diff --git a/src/AdvApp2Var/AdvApp2Var_ApproxF2var.hxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_ApproxF2var.hxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_ApproxF2var.hxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_ApproxF2var.hxx diff --git a/src/AdvApp2Var/AdvApp2Var_Context.cxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Context.cxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_Context.cxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Context.cxx diff --git a/src/AdvApp2Var/AdvApp2Var_Context.hxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Context.hxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_Context.hxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Context.hxx diff --git a/src/AdvApp2Var/AdvApp2Var_Criterion.cxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Criterion.cxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_Criterion.cxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Criterion.cxx diff --git a/src/AdvApp2Var/AdvApp2Var_Criterion.hxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Criterion.hxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_Criterion.hxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Criterion.hxx diff --git a/src/AdvApp2Var/AdvApp2Var_CriterionRepartition.hxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_CriterionRepartition.hxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_CriterionRepartition.hxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_CriterionRepartition.hxx diff --git a/src/AdvApp2Var/AdvApp2Var_CriterionType.hxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_CriterionType.hxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_CriterionType.hxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_CriterionType.hxx diff --git a/src/AdvApp2Var/AdvApp2Var_Data.hxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Data.hxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_Data.hxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Data.hxx diff --git a/src/AdvApp2Var/AdvApp2Var_Data_0.cxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Data_0.cxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_Data_0.cxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Data_0.cxx diff --git a/src/AdvApp2Var/AdvApp2Var_Data_1.cxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Data_1.cxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_Data_1.cxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Data_1.cxx diff --git a/src/AdvApp2Var/AdvApp2Var_Data_2.cxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Data_2.cxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_Data_2.cxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Data_2.cxx diff --git a/src/AdvApp2Var/AdvApp2Var_Data_3.cxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Data_3.cxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_Data_3.cxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Data_3.cxx diff --git a/src/AdvApp2Var/AdvApp2Var_Data_4.cxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Data_4.cxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_Data_4.cxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Data_4.cxx diff --git a/src/AdvApp2Var/AdvApp2Var_Data_5.cxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Data_5.cxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_Data_5.cxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Data_5.cxx diff --git a/src/AdvApp2Var/AdvApp2Var_Data_6.cxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Data_6.cxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_Data_6.cxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Data_6.cxx diff --git a/src/AdvApp2Var/AdvApp2Var_Data_7.cxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Data_7.cxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_Data_7.cxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Data_7.cxx diff --git a/src/AdvApp2Var/AdvApp2Var_Data_f2c.hxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Data_f2c.hxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_Data_f2c.hxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Data_f2c.hxx diff --git a/src/AdvApp2Var/AdvApp2Var_EvaluatorFunc2Var.hxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_EvaluatorFunc2Var.hxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_EvaluatorFunc2Var.hxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_EvaluatorFunc2Var.hxx diff --git a/src/AdvApp2Var/AdvApp2Var_Framework.cxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Framework.cxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_Framework.cxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Framework.cxx diff --git a/src/AdvApp2Var/AdvApp2Var_Framework.hxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Framework.hxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_Framework.hxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Framework.hxx diff --git a/src/AdvApp2Var/AdvApp2Var_Iso.cxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Iso.cxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_Iso.cxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Iso.cxx diff --git a/src/AdvApp2Var/AdvApp2Var_Iso.hxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Iso.hxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_Iso.hxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Iso.hxx diff --git a/src/AdvApp2Var/AdvApp2Var_MathBase.cxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_MathBase.cxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_MathBase.cxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_MathBase.cxx diff --git a/src/AdvApp2Var/AdvApp2Var_MathBase.hxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_MathBase.hxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_MathBase.hxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_MathBase.hxx diff --git a/src/AdvApp2Var/AdvApp2Var_MathBase_mathinit.cxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_MathBase_mathinit.cxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_MathBase_mathinit.cxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_MathBase_mathinit.cxx diff --git a/src/AdvApp2Var/AdvApp2Var_Network.cxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Network.cxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_Network.cxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Network.cxx diff --git a/src/AdvApp2Var/AdvApp2Var_Network.hxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Network.hxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_Network.hxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Network.hxx diff --git a/src/AdvApp2Var/AdvApp2Var_Node.cxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Node.cxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_Node.cxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Node.cxx diff --git a/src/AdvApp2Var/AdvApp2Var_Node.hxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Node.hxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_Node.hxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Node.hxx diff --git a/src/AdvApp2Var/AdvApp2Var_Patch.cxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Patch.cxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_Patch.cxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Patch.cxx diff --git a/src/AdvApp2Var/AdvApp2Var_Patch.hxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Patch.hxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_Patch.hxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Patch.hxx diff --git a/src/AdvApp2Var/AdvApp2Var_SequenceOfNode.hxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_SequenceOfNode.hxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_SequenceOfNode.hxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_SequenceOfNode.hxx diff --git a/src/AdvApp2Var/AdvApp2Var_SequenceOfPatch.hxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_SequenceOfPatch.hxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_SequenceOfPatch.hxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_SequenceOfPatch.hxx diff --git a/src/AdvApp2Var/AdvApp2Var_SequenceOfStrip.hxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_SequenceOfStrip.hxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_SequenceOfStrip.hxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_SequenceOfStrip.hxx diff --git a/src/AdvApp2Var/AdvApp2Var_Strip.hxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Strip.hxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_Strip.hxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_Strip.hxx diff --git a/src/AdvApp2Var/AdvApp2Var_SysBase.cxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_SysBase.cxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_SysBase.cxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_SysBase.cxx diff --git a/src/AdvApp2Var/AdvApp2Var_SysBase.hxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_SysBase.hxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_SysBase.hxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_SysBase.hxx diff --git a/src/AdvApp2Var/AdvApp2Var_SysBase_baseinit.cxx b/src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_SysBase_baseinit.cxx similarity index 100% rename from src/AdvApp2Var/AdvApp2Var_SysBase_baseinit.cxx rename to src/ModelingData/TKGeomBase/AdvApp2Var/AdvApp2Var_SysBase_baseinit.cxx diff --git a/src/ModelingData/TKGeomBase/AdvApp2Var/FILES.cmake b/src/ModelingData/TKGeomBase/AdvApp2Var/FILES.cmake new file mode 100644 index 0000000000..ac90bd095b --- /dev/null +++ b/src/ModelingData/TKGeomBase/AdvApp2Var/FILES.cmake @@ -0,0 +1,47 @@ +# Source files for AdvApp2Var package +set(OCCT_AdvApp2Var_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_AdvApp2Var_FILES + AdvApp2Var_ApproxAFunc2Var.cxx + AdvApp2Var_ApproxAFunc2Var.hxx + AdvApp2Var_ApproxAFunc2Var.lxx + AdvApp2Var_ApproxF2var.cxx + AdvApp2Var_ApproxF2var.hxx + AdvApp2Var_Context.cxx + AdvApp2Var_Context.hxx + AdvApp2Var_Criterion.cxx + AdvApp2Var_Criterion.hxx + AdvApp2Var_CriterionRepartition.hxx + AdvApp2Var_CriterionType.hxx + AdvApp2Var_Data.hxx + AdvApp2Var_Data_0.cxx + AdvApp2Var_Data_1.cxx + AdvApp2Var_Data_2.cxx + AdvApp2Var_Data_3.cxx + AdvApp2Var_Data_4.cxx + AdvApp2Var_Data_5.cxx + AdvApp2Var_Data_6.cxx + AdvApp2Var_Data_7.cxx + AdvApp2Var_Data_f2c.hxx + AdvApp2Var_EvaluatorFunc2Var.hxx + AdvApp2Var_Framework.cxx + AdvApp2Var_Framework.hxx + AdvApp2Var_Iso.cxx + AdvApp2Var_Iso.hxx + AdvApp2Var_MathBase.cxx + AdvApp2Var_MathBase.hxx + AdvApp2Var_MathBase_mathinit.cxx + AdvApp2Var_Network.cxx + AdvApp2Var_Network.hxx + AdvApp2Var_Node.cxx + AdvApp2Var_Node.hxx + AdvApp2Var_Patch.cxx + AdvApp2Var_Patch.hxx + AdvApp2Var_SequenceOfNode.hxx + AdvApp2Var_SequenceOfPatch.hxx + AdvApp2Var_SequenceOfStrip.hxx + AdvApp2Var_Strip.hxx + AdvApp2Var_SysBase.cxx + AdvApp2Var_SysBase.hxx + AdvApp2Var_SysBase_baseinit.cxx +) diff --git a/src/AppCont/AppCont_ContMatrices.cxx b/src/ModelingData/TKGeomBase/AppCont/AppCont_ContMatrices.cxx similarity index 100% rename from src/AppCont/AppCont_ContMatrices.cxx rename to src/ModelingData/TKGeomBase/AppCont/AppCont_ContMatrices.cxx diff --git a/src/AppCont/AppCont_ContMatrices.hxx b/src/ModelingData/TKGeomBase/AppCont/AppCont_ContMatrices.hxx similarity index 100% rename from src/AppCont/AppCont_ContMatrices.hxx rename to src/ModelingData/TKGeomBase/AppCont/AppCont_ContMatrices.hxx diff --git a/src/AppCont/AppCont_ContMatrices_1.cxx b/src/ModelingData/TKGeomBase/AppCont/AppCont_ContMatrices_1.cxx similarity index 100% rename from src/AppCont/AppCont_ContMatrices_1.cxx rename to src/ModelingData/TKGeomBase/AppCont/AppCont_ContMatrices_1.cxx diff --git a/src/AppCont/AppCont_ContMatrices_2.cxx b/src/ModelingData/TKGeomBase/AppCont/AppCont_ContMatrices_2.cxx similarity index 100% rename from src/AppCont/AppCont_ContMatrices_2.cxx rename to src/ModelingData/TKGeomBase/AppCont/AppCont_ContMatrices_2.cxx diff --git a/src/AppCont/AppCont_ContMatrices_3.cxx b/src/ModelingData/TKGeomBase/AppCont/AppCont_ContMatrices_3.cxx similarity index 100% rename from src/AppCont/AppCont_ContMatrices_3.cxx rename to src/ModelingData/TKGeomBase/AppCont/AppCont_ContMatrices_3.cxx diff --git a/src/AppCont/AppCont_ContMatrices_4.cxx b/src/ModelingData/TKGeomBase/AppCont/AppCont_ContMatrices_4.cxx similarity index 100% rename from src/AppCont/AppCont_ContMatrices_4.cxx rename to src/ModelingData/TKGeomBase/AppCont/AppCont_ContMatrices_4.cxx diff --git a/src/AppCont/AppCont_Function.hxx b/src/ModelingData/TKGeomBase/AppCont/AppCont_Function.hxx similarity index 100% rename from src/AppCont/AppCont_Function.hxx rename to src/ModelingData/TKGeomBase/AppCont/AppCont_Function.hxx diff --git a/src/AppCont/AppCont_LeastSquare.cxx b/src/ModelingData/TKGeomBase/AppCont/AppCont_LeastSquare.cxx similarity index 100% rename from src/AppCont/AppCont_LeastSquare.cxx rename to src/ModelingData/TKGeomBase/AppCont/AppCont_LeastSquare.cxx diff --git a/src/AppCont/AppCont_LeastSquare.hxx b/src/ModelingData/TKGeomBase/AppCont/AppCont_LeastSquare.hxx similarity index 100% rename from src/AppCont/AppCont_LeastSquare.hxx rename to src/ModelingData/TKGeomBase/AppCont/AppCont_LeastSquare.hxx diff --git a/src/ModelingData/TKGeomBase/AppCont/FILES.cmake b/src/ModelingData/TKGeomBase/AppCont/FILES.cmake new file mode 100644 index 0000000000..ae75afd551 --- /dev/null +++ b/src/ModelingData/TKGeomBase/AppCont/FILES.cmake @@ -0,0 +1,14 @@ +# Source files for AppCont package +set(OCCT_AppCont_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_AppCont_FILES + AppCont_ContMatrices.cxx + AppCont_ContMatrices.hxx + AppCont_ContMatrices_1.cxx + AppCont_ContMatrices_2.cxx + AppCont_ContMatrices_3.cxx + AppCont_ContMatrices_4.cxx + AppCont_Function.hxx + AppCont_LeastSquare.cxx + AppCont_LeastSquare.hxx +) diff --git a/src/AppDef/AppDef_Array1OfMultiPointConstraint.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_Array1OfMultiPointConstraint.hxx similarity index 100% rename from src/AppDef/AppDef_Array1OfMultiPointConstraint.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_Array1OfMultiPointConstraint.hxx diff --git a/src/AppDef/AppDef_BSpGradient_BFGSOfMyBSplGradientOfBSplineCompute.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_BSpGradient_BFGSOfMyBSplGradientOfBSplineCompute.hxx similarity index 100% rename from src/AppDef/AppDef_BSpGradient_BFGSOfMyBSplGradientOfBSplineCompute.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_BSpGradient_BFGSOfMyBSplGradientOfBSplineCompute.hxx diff --git a/src/AppDef/AppDef_BSpGradient_BFGSOfMyBSplGradientOfBSplineCompute_0.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_BSpGradient_BFGSOfMyBSplGradientOfBSplineCompute_0.cxx similarity index 100% rename from src/AppDef/AppDef_BSpGradient_BFGSOfMyBSplGradientOfBSplineCompute_0.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_BSpGradient_BFGSOfMyBSplGradientOfBSplineCompute_0.cxx diff --git a/src/AppDef/AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute.hxx similarity index 100% rename from src/AppDef/AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute.hxx diff --git a/src/AppDef/AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute_0.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute_0.cxx similarity index 100% rename from src/AppDef/AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute_0.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute_0.cxx diff --git a/src/AppDef/AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute.hxx similarity index 100% rename from src/AppDef/AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute.hxx diff --git a/src/AppDef/AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute_0.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute_0.cxx similarity index 100% rename from src/AppDef/AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute_0.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute_0.cxx diff --git a/src/AppDef/AppDef_BSplineCompute.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_BSplineCompute.hxx similarity index 100% rename from src/AppDef/AppDef_BSplineCompute.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_BSplineCompute.hxx diff --git a/src/AppDef/AppDef_BSplineCompute_0.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_BSplineCompute_0.cxx similarity index 100% rename from src/AppDef/AppDef_BSplineCompute_0.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_BSplineCompute_0.cxx diff --git a/src/AppDef/AppDef_Compute.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_Compute.hxx similarity index 100% rename from src/AppDef/AppDef_Compute.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_Compute.hxx diff --git a/src/AppDef/AppDef_Compute_0.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_Compute_0.cxx similarity index 100% rename from src/AppDef/AppDef_Compute_0.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_Compute_0.cxx diff --git a/src/AppDef/AppDef_Gradient_BFGSOfMyGradientOfCompute.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_Gradient_BFGSOfMyGradientOfCompute.hxx similarity index 100% rename from src/AppDef/AppDef_Gradient_BFGSOfMyGradientOfCompute.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_Gradient_BFGSOfMyGradientOfCompute.hxx diff --git a/src/AppDef/AppDef_Gradient_BFGSOfMyGradientOfCompute_0.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_Gradient_BFGSOfMyGradientOfCompute_0.cxx similarity index 100% rename from src/AppDef/AppDef_Gradient_BFGSOfMyGradientOfCompute_0.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_Gradient_BFGSOfMyGradientOfCompute_0.cxx diff --git a/src/AppDef/AppDef_Gradient_BFGSOfMyGradientbisOfBSplineCompute.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_Gradient_BFGSOfMyGradientbisOfBSplineCompute.hxx similarity index 100% rename from src/AppDef/AppDef_Gradient_BFGSOfMyGradientbisOfBSplineCompute.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_Gradient_BFGSOfMyGradientbisOfBSplineCompute.hxx diff --git a/src/AppDef/AppDef_Gradient_BFGSOfMyGradientbisOfBSplineCompute_0.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_Gradient_BFGSOfMyGradientbisOfBSplineCompute_0.cxx similarity index 100% rename from src/AppDef/AppDef_Gradient_BFGSOfMyGradientbisOfBSplineCompute_0.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_Gradient_BFGSOfMyGradientbisOfBSplineCompute_0.cxx diff --git a/src/AppDef/AppDef_Gradient_BFGSOfTheGradient.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_Gradient_BFGSOfTheGradient.hxx similarity index 100% rename from src/AppDef/AppDef_Gradient_BFGSOfTheGradient.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_Gradient_BFGSOfTheGradient.hxx diff --git a/src/AppDef/AppDef_Gradient_BFGSOfTheGradient_0.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_Gradient_BFGSOfTheGradient_0.cxx similarity index 100% rename from src/AppDef/AppDef_Gradient_BFGSOfTheGradient_0.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_Gradient_BFGSOfTheGradient_0.cxx diff --git a/src/AppDef/AppDef_HArray1OfMultiPointConstraint.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_HArray1OfMultiPointConstraint.hxx similarity index 100% rename from src/AppDef/AppDef_HArray1OfMultiPointConstraint.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_HArray1OfMultiPointConstraint.hxx diff --git a/src/AppDef/AppDef_LinearCriteria.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_LinearCriteria.cxx similarity index 100% rename from src/AppDef/AppDef_LinearCriteria.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_LinearCriteria.cxx diff --git a/src/AppDef/AppDef_LinearCriteria.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_LinearCriteria.hxx similarity index 100% rename from src/AppDef/AppDef_LinearCriteria.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_LinearCriteria.hxx diff --git a/src/AppDef/AppDef_MultiLine.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_MultiLine.cxx similarity index 100% rename from src/AppDef/AppDef_MultiLine.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_MultiLine.cxx diff --git a/src/AppDef/AppDef_MultiLine.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_MultiLine.hxx similarity index 100% rename from src/AppDef/AppDef_MultiLine.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_MultiLine.hxx diff --git a/src/AppDef/AppDef_MultiPointConstraint.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_MultiPointConstraint.cxx similarity index 100% rename from src/AppDef/AppDef_MultiPointConstraint.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_MultiPointConstraint.cxx diff --git a/src/AppDef/AppDef_MultiPointConstraint.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_MultiPointConstraint.hxx similarity index 100% rename from src/AppDef/AppDef_MultiPointConstraint.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_MultiPointConstraint.hxx diff --git a/src/AppDef/AppDef_MyBSplGradientOfBSplineCompute.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_MyBSplGradientOfBSplineCompute.hxx similarity index 100% rename from src/AppDef/AppDef_MyBSplGradientOfBSplineCompute.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_MyBSplGradientOfBSplineCompute.hxx diff --git a/src/AppDef/AppDef_MyBSplGradientOfBSplineCompute_0.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_MyBSplGradientOfBSplineCompute_0.cxx similarity index 100% rename from src/AppDef/AppDef_MyBSplGradientOfBSplineCompute_0.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_MyBSplGradientOfBSplineCompute_0.cxx diff --git a/src/AppDef/AppDef_MyGradientOfCompute.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_MyGradientOfCompute.hxx similarity index 100% rename from src/AppDef/AppDef_MyGradientOfCompute.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_MyGradientOfCompute.hxx diff --git a/src/AppDef/AppDef_MyGradientOfCompute_0.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_MyGradientOfCompute_0.cxx similarity index 100% rename from src/AppDef/AppDef_MyGradientOfCompute_0.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_MyGradientOfCompute_0.cxx diff --git a/src/AppDef/AppDef_MyGradientbisOfBSplineCompute.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_MyGradientbisOfBSplineCompute.hxx similarity index 100% rename from src/AppDef/AppDef_MyGradientbisOfBSplineCompute.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_MyGradientbisOfBSplineCompute.hxx diff --git a/src/AppDef/AppDef_MyGradientbisOfBSplineCompute_0.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_MyGradientbisOfBSplineCompute_0.cxx similarity index 100% rename from src/AppDef/AppDef_MyGradientbisOfBSplineCompute_0.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_MyGradientbisOfBSplineCompute_0.cxx diff --git a/src/AppDef/AppDef_MyLineTool.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_MyLineTool.cxx similarity index 100% rename from src/AppDef/AppDef_MyLineTool.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_MyLineTool.cxx diff --git a/src/AppDef/AppDef_MyLineTool.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_MyLineTool.hxx similarity index 100% rename from src/AppDef/AppDef_MyLineTool.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_MyLineTool.hxx diff --git a/src/AppDef/AppDef_ParFunctionOfMyGradientOfCompute.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_ParFunctionOfMyGradientOfCompute.hxx similarity index 100% rename from src/AppDef/AppDef_ParFunctionOfMyGradientOfCompute.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_ParFunctionOfMyGradientOfCompute.hxx diff --git a/src/AppDef/AppDef_ParFunctionOfMyGradientOfCompute_0.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_ParFunctionOfMyGradientOfCompute_0.cxx similarity index 100% rename from src/AppDef/AppDef_ParFunctionOfMyGradientOfCompute_0.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_ParFunctionOfMyGradientOfCompute_0.cxx diff --git a/src/AppDef/AppDef_ParFunctionOfMyGradientbisOfBSplineCompute.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_ParFunctionOfMyGradientbisOfBSplineCompute.hxx similarity index 100% rename from src/AppDef/AppDef_ParFunctionOfMyGradientbisOfBSplineCompute.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_ParFunctionOfMyGradientbisOfBSplineCompute.hxx diff --git a/src/AppDef/AppDef_ParFunctionOfMyGradientbisOfBSplineCompute_0.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_ParFunctionOfMyGradientbisOfBSplineCompute_0.cxx similarity index 100% rename from src/AppDef/AppDef_ParFunctionOfMyGradientbisOfBSplineCompute_0.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_ParFunctionOfMyGradientbisOfBSplineCompute_0.cxx diff --git a/src/AppDef/AppDef_ParFunctionOfTheGradient.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_ParFunctionOfTheGradient.hxx similarity index 100% rename from src/AppDef/AppDef_ParFunctionOfTheGradient.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_ParFunctionOfTheGradient.hxx diff --git a/src/AppDef/AppDef_ParFunctionOfTheGradient_0.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_ParFunctionOfTheGradient_0.cxx similarity index 100% rename from src/AppDef/AppDef_ParFunctionOfTheGradient_0.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_ParFunctionOfTheGradient_0.cxx diff --git a/src/AppDef/AppDef_ParLeastSquareOfMyGradientOfCompute.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_ParLeastSquareOfMyGradientOfCompute.hxx similarity index 100% rename from src/AppDef/AppDef_ParLeastSquareOfMyGradientOfCompute.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_ParLeastSquareOfMyGradientOfCompute.hxx diff --git a/src/AppDef/AppDef_ParLeastSquareOfMyGradientOfCompute_0.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_ParLeastSquareOfMyGradientOfCompute_0.cxx similarity index 100% rename from src/AppDef/AppDef_ParLeastSquareOfMyGradientOfCompute_0.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_ParLeastSquareOfMyGradientOfCompute_0.cxx diff --git a/src/AppDef/AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute.hxx similarity index 100% rename from src/AppDef/AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute.hxx diff --git a/src/AppDef/AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute_0.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute_0.cxx similarity index 100% rename from src/AppDef/AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute_0.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute_0.cxx diff --git a/src/AppDef/AppDef_ParLeastSquareOfTheGradient.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_ParLeastSquareOfTheGradient.hxx similarity index 100% rename from src/AppDef/AppDef_ParLeastSquareOfTheGradient.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_ParLeastSquareOfTheGradient.hxx diff --git a/src/AppDef/AppDef_ParLeastSquareOfTheGradient_0.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_ParLeastSquareOfTheGradient_0.cxx similarity index 100% rename from src/AppDef/AppDef_ParLeastSquareOfTheGradient_0.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_ParLeastSquareOfTheGradient_0.cxx diff --git a/src/AppDef/AppDef_ResConstraintOfMyGradientOfCompute.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_ResConstraintOfMyGradientOfCompute.hxx similarity index 100% rename from src/AppDef/AppDef_ResConstraintOfMyGradientOfCompute.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_ResConstraintOfMyGradientOfCompute.hxx diff --git a/src/AppDef/AppDef_ResConstraintOfMyGradientOfCompute_0.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_ResConstraintOfMyGradientOfCompute_0.cxx similarity index 100% rename from src/AppDef/AppDef_ResConstraintOfMyGradientOfCompute_0.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_ResConstraintOfMyGradientOfCompute_0.cxx diff --git a/src/AppDef/AppDef_ResConstraintOfMyGradientbisOfBSplineCompute.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_ResConstraintOfMyGradientbisOfBSplineCompute.hxx similarity index 100% rename from src/AppDef/AppDef_ResConstraintOfMyGradientbisOfBSplineCompute.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_ResConstraintOfMyGradientbisOfBSplineCompute.hxx diff --git a/src/AppDef/AppDef_ResConstraintOfMyGradientbisOfBSplineCompute_0.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_ResConstraintOfMyGradientbisOfBSplineCompute_0.cxx similarity index 100% rename from src/AppDef/AppDef_ResConstraintOfMyGradientbisOfBSplineCompute_0.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_ResConstraintOfMyGradientbisOfBSplineCompute_0.cxx diff --git a/src/AppDef/AppDef_ResConstraintOfTheGradient.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_ResConstraintOfTheGradient.hxx similarity index 100% rename from src/AppDef/AppDef_ResConstraintOfTheGradient.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_ResConstraintOfTheGradient.hxx diff --git a/src/AppDef/AppDef_ResConstraintOfTheGradient_0.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_ResConstraintOfTheGradient_0.cxx similarity index 100% rename from src/AppDef/AppDef_ResConstraintOfTheGradient_0.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_ResConstraintOfTheGradient_0.cxx diff --git a/src/AppDef/AppDef_SmoothCriterion.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_SmoothCriterion.cxx similarity index 100% rename from src/AppDef/AppDef_SmoothCriterion.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_SmoothCriterion.cxx diff --git a/src/AppDef/AppDef_SmoothCriterion.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_SmoothCriterion.hxx similarity index 100% rename from src/AppDef/AppDef_SmoothCriterion.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_SmoothCriterion.hxx diff --git a/src/AppDef/AppDef_TheFunction.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_TheFunction.hxx similarity index 100% rename from src/AppDef/AppDef_TheFunction.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_TheFunction.hxx diff --git a/src/AppDef/AppDef_TheFunction_0.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_TheFunction_0.cxx similarity index 100% rename from src/AppDef/AppDef_TheFunction_0.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_TheFunction_0.cxx diff --git a/src/AppDef/AppDef_TheGradient.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_TheGradient.hxx similarity index 100% rename from src/AppDef/AppDef_TheGradient.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_TheGradient.hxx diff --git a/src/AppDef/AppDef_TheGradient_0.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_TheGradient_0.cxx similarity index 100% rename from src/AppDef/AppDef_TheGradient_0.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_TheGradient_0.cxx diff --git a/src/AppDef/AppDef_TheLeastSquares.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_TheLeastSquares.hxx similarity index 100% rename from src/AppDef/AppDef_TheLeastSquares.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_TheLeastSquares.hxx diff --git a/src/AppDef/AppDef_TheLeastSquares_0.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_TheLeastSquares_0.cxx similarity index 100% rename from src/AppDef/AppDef_TheLeastSquares_0.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_TheLeastSquares_0.cxx diff --git a/src/AppDef/AppDef_TheResol.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_TheResol.hxx similarity index 100% rename from src/AppDef/AppDef_TheResol.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_TheResol.hxx diff --git a/src/AppDef/AppDef_TheResol_0.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_TheResol_0.cxx similarity index 100% rename from src/AppDef/AppDef_TheResol_0.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_TheResol_0.cxx diff --git a/src/AppDef/AppDef_Variational.cxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_Variational.cxx similarity index 100% rename from src/AppDef/AppDef_Variational.cxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_Variational.cxx diff --git a/src/AppDef/AppDef_Variational.hxx b/src/ModelingData/TKGeomBase/AppDef/AppDef_Variational.hxx similarity index 100% rename from src/AppDef/AppDef_Variational.hxx rename to src/ModelingData/TKGeomBase/AppDef/AppDef_Variational.hxx diff --git a/src/ModelingData/TKGeomBase/AppDef/FILES.cmake b/src/ModelingData/TKGeomBase/AppDef/FILES.cmake new file mode 100644 index 0000000000..7c00d0b06d --- /dev/null +++ b/src/ModelingData/TKGeomBase/AppDef/FILES.cmake @@ -0,0 +1,67 @@ +# Source files for AppDef package +set(OCCT_AppDef_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_AppDef_FILES + AppDef_Array1OfMultiPointConstraint.hxx + AppDef_BSpGradient_BFGSOfMyBSplGradientOfBSplineCompute.hxx + AppDef_BSpGradient_BFGSOfMyBSplGradientOfBSplineCompute_0.cxx + AppDef_BSplineCompute.hxx + AppDef_BSplineCompute_0.cxx + AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute.hxx + AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute_0.cxx + AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute.hxx + AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute_0.cxx + AppDef_Compute.hxx + AppDef_Compute_0.cxx + AppDef_Gradient_BFGSOfMyGradientbisOfBSplineCompute.hxx + AppDef_Gradient_BFGSOfMyGradientbisOfBSplineCompute_0.cxx + AppDef_Gradient_BFGSOfMyGradientOfCompute.hxx + AppDef_Gradient_BFGSOfMyGradientOfCompute_0.cxx + AppDef_Gradient_BFGSOfTheGradient.hxx + AppDef_Gradient_BFGSOfTheGradient_0.cxx + AppDef_HArray1OfMultiPointConstraint.hxx + AppDef_LinearCriteria.cxx + AppDef_LinearCriteria.hxx + AppDef_MultiLine.cxx + AppDef_MultiLine.hxx + AppDef_MultiPointConstraint.cxx + AppDef_MultiPointConstraint.hxx + AppDef_MyBSplGradientOfBSplineCompute.hxx + AppDef_MyBSplGradientOfBSplineCompute_0.cxx + AppDef_MyGradientbisOfBSplineCompute.hxx + AppDef_MyGradientbisOfBSplineCompute_0.cxx + AppDef_MyGradientOfCompute.hxx + AppDef_MyGradientOfCompute_0.cxx + AppDef_MyLineTool.cxx + AppDef_MyLineTool.hxx + AppDef_ParFunctionOfMyGradientbisOfBSplineCompute.hxx + AppDef_ParFunctionOfMyGradientbisOfBSplineCompute_0.cxx + AppDef_ParFunctionOfMyGradientOfCompute.hxx + AppDef_ParFunctionOfMyGradientOfCompute_0.cxx + AppDef_ParFunctionOfTheGradient.hxx + AppDef_ParFunctionOfTheGradient_0.cxx + AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute.hxx + AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute_0.cxx + AppDef_ParLeastSquareOfMyGradientOfCompute.hxx + AppDef_ParLeastSquareOfMyGradientOfCompute_0.cxx + AppDef_ParLeastSquareOfTheGradient.hxx + AppDef_ParLeastSquareOfTheGradient_0.cxx + AppDef_ResConstraintOfMyGradientbisOfBSplineCompute.hxx + AppDef_ResConstraintOfMyGradientbisOfBSplineCompute_0.cxx + AppDef_ResConstraintOfMyGradientOfCompute.hxx + AppDef_ResConstraintOfMyGradientOfCompute_0.cxx + AppDef_ResConstraintOfTheGradient.hxx + AppDef_ResConstraintOfTheGradient_0.cxx + AppDef_SmoothCriterion.cxx + AppDef_SmoothCriterion.hxx + AppDef_TheFunction.hxx + AppDef_TheFunction_0.cxx + AppDef_TheGradient.hxx + AppDef_TheGradient_0.cxx + AppDef_TheLeastSquares.hxx + AppDef_TheLeastSquares_0.cxx + AppDef_TheResol.hxx + AppDef_TheResol_0.cxx + AppDef_Variational.cxx + AppDef_Variational.hxx +) diff --git a/src/AppParCurves/AppParCurves.cxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves.cxx similarity index 100% rename from src/AppParCurves/AppParCurves.cxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves.cxx diff --git a/src/AppParCurves/AppParCurves.hxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves.hxx similarity index 100% rename from src/AppParCurves/AppParCurves.hxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves.hxx diff --git a/src/AppParCurves/AppParCurves_Array1OfConstraintCouple.hxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_Array1OfConstraintCouple.hxx similarity index 100% rename from src/AppParCurves/AppParCurves_Array1OfConstraintCouple.hxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_Array1OfConstraintCouple.hxx diff --git a/src/AppParCurves/AppParCurves_Array1OfMultiBSpCurve.hxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_Array1OfMultiBSpCurve.hxx similarity index 100% rename from src/AppParCurves/AppParCurves_Array1OfMultiBSpCurve.hxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_Array1OfMultiBSpCurve.hxx diff --git a/src/AppParCurves/AppParCurves_Array1OfMultiCurve.hxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_Array1OfMultiCurve.hxx similarity index 100% rename from src/AppParCurves/AppParCurves_Array1OfMultiCurve.hxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_Array1OfMultiCurve.hxx diff --git a/src/AppParCurves/AppParCurves_Array1OfMultiPoint.hxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_Array1OfMultiPoint.hxx similarity index 100% rename from src/AppParCurves/AppParCurves_Array1OfMultiPoint.hxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_Array1OfMultiPoint.hxx diff --git a/src/AppParCurves/AppParCurves_BSpFunction.gxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_BSpFunction.gxx similarity index 100% rename from src/AppParCurves/AppParCurves_BSpFunction.gxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_BSpFunction.gxx diff --git a/src/AppParCurves/AppParCurves_BSpGradient.gxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_BSpGradient.gxx similarity index 100% rename from src/AppParCurves/AppParCurves_BSpGradient.gxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_BSpGradient.gxx diff --git a/src/AppParCurves/AppParCurves_BSpGradient_BFGS.gxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_BSpGradient_BFGS.gxx similarity index 100% rename from src/AppParCurves/AppParCurves_BSpGradient_BFGS.gxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_BSpGradient_BFGS.gxx diff --git a/src/AppParCurves/AppParCurves_Constraint.hxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_Constraint.hxx similarity index 100% rename from src/AppParCurves/AppParCurves_Constraint.hxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_Constraint.hxx diff --git a/src/AppParCurves/AppParCurves_ConstraintCouple.cxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_ConstraintCouple.cxx similarity index 100% rename from src/AppParCurves/AppParCurves_ConstraintCouple.cxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_ConstraintCouple.cxx diff --git a/src/AppParCurves/AppParCurves_ConstraintCouple.hxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_ConstraintCouple.hxx similarity index 100% rename from src/AppParCurves/AppParCurves_ConstraintCouple.hxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_ConstraintCouple.hxx diff --git a/src/AppParCurves/AppParCurves_Function.gxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_Function.gxx similarity index 100% rename from src/AppParCurves/AppParCurves_Function.gxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_Function.gxx diff --git a/src/AppParCurves/AppParCurves_Gradient.gxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_Gradient.gxx similarity index 100% rename from src/AppParCurves/AppParCurves_Gradient.gxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_Gradient.gxx diff --git a/src/AppParCurves/AppParCurves_Gradient_BFGS.gxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_Gradient_BFGS.gxx similarity index 100% rename from src/AppParCurves/AppParCurves_Gradient_BFGS.gxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_Gradient_BFGS.gxx diff --git a/src/AppParCurves/AppParCurves_HArray1OfConstraintCouple.hxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_HArray1OfConstraintCouple.hxx similarity index 100% rename from src/AppParCurves/AppParCurves_HArray1OfConstraintCouple.hxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_HArray1OfConstraintCouple.hxx diff --git a/src/AppParCurves/AppParCurves_HArray1OfMultiBSpCurve.hxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_HArray1OfMultiBSpCurve.hxx similarity index 100% rename from src/AppParCurves/AppParCurves_HArray1OfMultiBSpCurve.hxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_HArray1OfMultiBSpCurve.hxx diff --git a/src/AppParCurves/AppParCurves_HArray1OfMultiCurve.hxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_HArray1OfMultiCurve.hxx similarity index 100% rename from src/AppParCurves/AppParCurves_HArray1OfMultiCurve.hxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_HArray1OfMultiCurve.hxx diff --git a/src/AppParCurves/AppParCurves_HArray1OfMultiPoint.hxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_HArray1OfMultiPoint.hxx similarity index 100% rename from src/AppParCurves/AppParCurves_HArray1OfMultiPoint.hxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_HArray1OfMultiPoint.hxx diff --git a/src/AppParCurves/AppParCurves_LeastSquare.gxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_LeastSquare.gxx similarity index 100% rename from src/AppParCurves/AppParCurves_LeastSquare.gxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_LeastSquare.gxx diff --git a/src/AppParCurves/AppParCurves_MultiBSpCurve.cxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_MultiBSpCurve.cxx similarity index 100% rename from src/AppParCurves/AppParCurves_MultiBSpCurve.cxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_MultiBSpCurve.cxx diff --git a/src/AppParCurves/AppParCurves_MultiBSpCurve.hxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_MultiBSpCurve.hxx similarity index 100% rename from src/AppParCurves/AppParCurves_MultiBSpCurve.hxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_MultiBSpCurve.hxx diff --git a/src/AppParCurves/AppParCurves_MultiCurve.cxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_MultiCurve.cxx similarity index 100% rename from src/AppParCurves/AppParCurves_MultiCurve.cxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_MultiCurve.cxx diff --git a/src/AppParCurves/AppParCurves_MultiCurve.hxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_MultiCurve.hxx similarity index 100% rename from src/AppParCurves/AppParCurves_MultiCurve.hxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_MultiCurve.hxx diff --git a/src/AppParCurves/AppParCurves_MultiPoint.cxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_MultiPoint.cxx similarity index 100% rename from src/AppParCurves/AppParCurves_MultiPoint.cxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_MultiPoint.cxx diff --git a/src/AppParCurves/AppParCurves_MultiPoint.hxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_MultiPoint.hxx similarity index 100% rename from src/AppParCurves/AppParCurves_MultiPoint.hxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_MultiPoint.hxx diff --git a/src/AppParCurves/AppParCurves_MultiPoint.lxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_MultiPoint.lxx similarity index 100% rename from src/AppParCurves/AppParCurves_MultiPoint.lxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_MultiPoint.lxx diff --git a/src/AppParCurves/AppParCurves_ResolConstraint.gxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_ResolConstraint.gxx similarity index 100% rename from src/AppParCurves/AppParCurves_ResolConstraint.gxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_ResolConstraint.gxx diff --git a/src/AppParCurves/AppParCurves_SequenceOfMultiBSpCurve.hxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_SequenceOfMultiBSpCurve.hxx similarity index 100% rename from src/AppParCurves/AppParCurves_SequenceOfMultiBSpCurve.hxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_SequenceOfMultiBSpCurve.hxx diff --git a/src/AppParCurves/AppParCurves_SequenceOfMultiCurve.hxx b/src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_SequenceOfMultiCurve.hxx similarity index 100% rename from src/AppParCurves/AppParCurves_SequenceOfMultiCurve.hxx rename to src/ModelingData/TKGeomBase/AppParCurves/AppParCurves_SequenceOfMultiCurve.hxx diff --git a/src/ModelingData/TKGeomBase/AppParCurves/FILES.cmake b/src/ModelingData/TKGeomBase/AppParCurves/FILES.cmake new file mode 100644 index 0000000000..6f29275de6 --- /dev/null +++ b/src/ModelingData/TKGeomBase/AppParCurves/FILES.cmake @@ -0,0 +1,35 @@ +# Source files for AppParCurves package +set(OCCT_AppParCurves_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_AppParCurves_FILES + AppParCurves.cxx + AppParCurves.hxx + AppParCurves_Array1OfConstraintCouple.hxx + AppParCurves_Array1OfMultiBSpCurve.hxx + AppParCurves_Array1OfMultiCurve.hxx + AppParCurves_Array1OfMultiPoint.hxx + AppParCurves_BSpFunction.gxx + AppParCurves_BSpGradient.gxx + AppParCurves_BSpGradient_BFGS.gxx + AppParCurves_Constraint.hxx + AppParCurves_ConstraintCouple.cxx + AppParCurves_ConstraintCouple.hxx + AppParCurves_Function.gxx + AppParCurves_Gradient.gxx + AppParCurves_Gradient_BFGS.gxx + AppParCurves_HArray1OfConstraintCouple.hxx + AppParCurves_HArray1OfMultiBSpCurve.hxx + AppParCurves_HArray1OfMultiCurve.hxx + AppParCurves_HArray1OfMultiPoint.hxx + AppParCurves_LeastSquare.gxx + AppParCurves_MultiBSpCurve.cxx + AppParCurves_MultiBSpCurve.hxx + AppParCurves_MultiCurve.cxx + AppParCurves_MultiCurve.hxx + AppParCurves_MultiPoint.cxx + AppParCurves_MultiPoint.hxx + AppParCurves_MultiPoint.lxx + AppParCurves_ResolConstraint.gxx + AppParCurves_SequenceOfMultiBSpCurve.hxx + AppParCurves_SequenceOfMultiCurve.hxx +) diff --git a/src/Approx/Approx_Array1OfAdHSurface.hxx b/src/ModelingData/TKGeomBase/Approx/Approx_Array1OfAdHSurface.hxx similarity index 100% rename from src/Approx/Approx_Array1OfAdHSurface.hxx rename to src/ModelingData/TKGeomBase/Approx/Approx_Array1OfAdHSurface.hxx diff --git a/src/Approx/Approx_Array1OfGTrsf2d.hxx b/src/ModelingData/TKGeomBase/Approx/Approx_Array1OfGTrsf2d.hxx similarity index 100% rename from src/Approx/Approx_Array1OfGTrsf2d.hxx rename to src/ModelingData/TKGeomBase/Approx/Approx_Array1OfGTrsf2d.hxx diff --git a/src/Approx/Approx_BSplComputeLine.gxx b/src/ModelingData/TKGeomBase/Approx/Approx_BSplComputeLine.gxx similarity index 100% rename from src/Approx/Approx_BSplComputeLine.gxx rename to src/ModelingData/TKGeomBase/Approx/Approx_BSplComputeLine.gxx diff --git a/src/Approx/Approx_ComputeCLine.gxx b/src/ModelingData/TKGeomBase/Approx/Approx_ComputeCLine.gxx similarity index 100% rename from src/Approx/Approx_ComputeCLine.gxx rename to src/ModelingData/TKGeomBase/Approx/Approx_ComputeCLine.gxx diff --git a/src/Approx/Approx_ComputeLine.gxx b/src/ModelingData/TKGeomBase/Approx/Approx_ComputeLine.gxx similarity index 100% rename from src/Approx/Approx_ComputeLine.gxx rename to src/ModelingData/TKGeomBase/Approx/Approx_ComputeLine.gxx diff --git a/src/Approx/Approx_Curve2d.cxx b/src/ModelingData/TKGeomBase/Approx/Approx_Curve2d.cxx similarity index 100% rename from src/Approx/Approx_Curve2d.cxx rename to src/ModelingData/TKGeomBase/Approx/Approx_Curve2d.cxx diff --git a/src/Approx/Approx_Curve2d.hxx b/src/ModelingData/TKGeomBase/Approx/Approx_Curve2d.hxx similarity index 100% rename from src/Approx/Approx_Curve2d.hxx rename to src/ModelingData/TKGeomBase/Approx/Approx_Curve2d.hxx diff --git a/src/Approx/Approx_Curve3d.cxx b/src/ModelingData/TKGeomBase/Approx/Approx_Curve3d.cxx similarity index 100% rename from src/Approx/Approx_Curve3d.cxx rename to src/ModelingData/TKGeomBase/Approx/Approx_Curve3d.cxx diff --git a/src/Approx/Approx_Curve3d.hxx b/src/ModelingData/TKGeomBase/Approx/Approx_Curve3d.hxx similarity index 100% rename from src/Approx/Approx_Curve3d.hxx rename to src/ModelingData/TKGeomBase/Approx/Approx_Curve3d.hxx diff --git a/src/Approx/Approx_CurveOnSurface.cxx b/src/ModelingData/TKGeomBase/Approx/Approx_CurveOnSurface.cxx similarity index 100% rename from src/Approx/Approx_CurveOnSurface.cxx rename to src/ModelingData/TKGeomBase/Approx/Approx_CurveOnSurface.cxx diff --git a/src/Approx/Approx_CurveOnSurface.hxx b/src/ModelingData/TKGeomBase/Approx/Approx_CurveOnSurface.hxx similarity index 100% rename from src/Approx/Approx_CurveOnSurface.hxx rename to src/ModelingData/TKGeomBase/Approx/Approx_CurveOnSurface.hxx diff --git a/src/Approx/Approx_CurvilinearParameter.cxx b/src/ModelingData/TKGeomBase/Approx/Approx_CurvilinearParameter.cxx similarity index 100% rename from src/Approx/Approx_CurvilinearParameter.cxx rename to src/ModelingData/TKGeomBase/Approx/Approx_CurvilinearParameter.cxx diff --git a/src/Approx/Approx_CurvilinearParameter.hxx b/src/ModelingData/TKGeomBase/Approx/Approx_CurvilinearParameter.hxx similarity index 100% rename from src/Approx/Approx_CurvilinearParameter.hxx rename to src/ModelingData/TKGeomBase/Approx/Approx_CurvilinearParameter.hxx diff --git a/src/Approx/Approx_CurvlinFunc.cxx b/src/ModelingData/TKGeomBase/Approx/Approx_CurvlinFunc.cxx similarity index 100% rename from src/Approx/Approx_CurvlinFunc.cxx rename to src/ModelingData/TKGeomBase/Approx/Approx_CurvlinFunc.cxx diff --git a/src/Approx/Approx_CurvlinFunc.hxx b/src/ModelingData/TKGeomBase/Approx/Approx_CurvlinFunc.hxx similarity index 100% rename from src/Approx/Approx_CurvlinFunc.hxx rename to src/ModelingData/TKGeomBase/Approx/Approx_CurvlinFunc.hxx diff --git a/src/Approx/Approx_FitAndDivide.hxx b/src/ModelingData/TKGeomBase/Approx/Approx_FitAndDivide.hxx similarity index 100% rename from src/Approx/Approx_FitAndDivide.hxx rename to src/ModelingData/TKGeomBase/Approx/Approx_FitAndDivide.hxx diff --git a/src/Approx/Approx_FitAndDivide2d.hxx b/src/ModelingData/TKGeomBase/Approx/Approx_FitAndDivide2d.hxx similarity index 100% rename from src/Approx/Approx_FitAndDivide2d.hxx rename to src/ModelingData/TKGeomBase/Approx/Approx_FitAndDivide2d.hxx diff --git a/src/Approx/Approx_FitAndDivide2d_0.cxx b/src/ModelingData/TKGeomBase/Approx/Approx_FitAndDivide2d_0.cxx similarity index 100% rename from src/Approx/Approx_FitAndDivide2d_0.cxx rename to src/ModelingData/TKGeomBase/Approx/Approx_FitAndDivide2d_0.cxx diff --git a/src/Approx/Approx_FitAndDivide_0.cxx b/src/ModelingData/TKGeomBase/Approx/Approx_FitAndDivide_0.cxx similarity index 100% rename from src/Approx/Approx_FitAndDivide_0.cxx rename to src/ModelingData/TKGeomBase/Approx/Approx_FitAndDivide_0.cxx diff --git a/src/Approx/Approx_HArray1OfAdHSurface.hxx b/src/ModelingData/TKGeomBase/Approx/Approx_HArray1OfAdHSurface.hxx similarity index 100% rename from src/Approx/Approx_HArray1OfAdHSurface.hxx rename to src/ModelingData/TKGeomBase/Approx/Approx_HArray1OfAdHSurface.hxx diff --git a/src/Approx/Approx_HArray1OfGTrsf2d.hxx b/src/ModelingData/TKGeomBase/Approx/Approx_HArray1OfGTrsf2d.hxx similarity index 100% rename from src/Approx/Approx_HArray1OfGTrsf2d.hxx rename to src/ModelingData/TKGeomBase/Approx/Approx_HArray1OfGTrsf2d.hxx diff --git a/src/Approx/Approx_MCurvesToBSpCurve.cxx b/src/ModelingData/TKGeomBase/Approx/Approx_MCurvesToBSpCurve.cxx similarity index 100% rename from src/Approx/Approx_MCurvesToBSpCurve.cxx rename to src/ModelingData/TKGeomBase/Approx/Approx_MCurvesToBSpCurve.cxx diff --git a/src/Approx/Approx_MCurvesToBSpCurve.hxx b/src/ModelingData/TKGeomBase/Approx/Approx_MCurvesToBSpCurve.hxx similarity index 100% rename from src/Approx/Approx_MCurvesToBSpCurve.hxx rename to src/ModelingData/TKGeomBase/Approx/Approx_MCurvesToBSpCurve.hxx diff --git a/src/Approx/Approx_ParametrizationType.hxx b/src/ModelingData/TKGeomBase/Approx/Approx_ParametrizationType.hxx similarity index 100% rename from src/Approx/Approx_ParametrizationType.hxx rename to src/ModelingData/TKGeomBase/Approx/Approx_ParametrizationType.hxx diff --git a/src/Approx/Approx_SameParameter.cxx b/src/ModelingData/TKGeomBase/Approx/Approx_SameParameter.cxx similarity index 100% rename from src/Approx/Approx_SameParameter.cxx rename to src/ModelingData/TKGeomBase/Approx/Approx_SameParameter.cxx diff --git a/src/Approx/Approx_SameParameter.hxx b/src/ModelingData/TKGeomBase/Approx/Approx_SameParameter.hxx similarity index 100% rename from src/Approx/Approx_SameParameter.hxx rename to src/ModelingData/TKGeomBase/Approx/Approx_SameParameter.hxx diff --git a/src/Approx/Approx_SequenceOfHArray1OfReal.hxx b/src/ModelingData/TKGeomBase/Approx/Approx_SequenceOfHArray1OfReal.hxx similarity index 100% rename from src/Approx/Approx_SequenceOfHArray1OfReal.hxx rename to src/ModelingData/TKGeomBase/Approx/Approx_SequenceOfHArray1OfReal.hxx diff --git a/src/Approx/Approx_Status.hxx b/src/ModelingData/TKGeomBase/Approx/Approx_Status.hxx similarity index 100% rename from src/Approx/Approx_Status.hxx rename to src/ModelingData/TKGeomBase/Approx/Approx_Status.hxx diff --git a/src/Approx/Approx_SweepApproximation.cxx b/src/ModelingData/TKGeomBase/Approx/Approx_SweepApproximation.cxx similarity index 100% rename from src/Approx/Approx_SweepApproximation.cxx rename to src/ModelingData/TKGeomBase/Approx/Approx_SweepApproximation.cxx diff --git a/src/Approx/Approx_SweepApproximation.hxx b/src/ModelingData/TKGeomBase/Approx/Approx_SweepApproximation.hxx similarity index 100% rename from src/Approx/Approx_SweepApproximation.hxx rename to src/ModelingData/TKGeomBase/Approx/Approx_SweepApproximation.hxx diff --git a/src/Approx/Approx_SweepApproximation.lxx b/src/ModelingData/TKGeomBase/Approx/Approx_SweepApproximation.lxx similarity index 100% rename from src/Approx/Approx_SweepApproximation.lxx rename to src/ModelingData/TKGeomBase/Approx/Approx_SweepApproximation.lxx diff --git a/src/Approx/Approx_SweepFunction.cxx b/src/ModelingData/TKGeomBase/Approx/Approx_SweepFunction.cxx similarity index 100% rename from src/Approx/Approx_SweepFunction.cxx rename to src/ModelingData/TKGeomBase/Approx/Approx_SweepFunction.cxx diff --git a/src/Approx/Approx_SweepFunction.hxx b/src/ModelingData/TKGeomBase/Approx/Approx_SweepFunction.hxx similarity index 100% rename from src/Approx/Approx_SweepFunction.hxx rename to src/ModelingData/TKGeomBase/Approx/Approx_SweepFunction.hxx diff --git a/src/ModelingData/TKGeomBase/Approx/FILES.cmake b/src/ModelingData/TKGeomBase/Approx/FILES.cmake new file mode 100644 index 0000000000..85b55c12aa --- /dev/null +++ b/src/ModelingData/TKGeomBase/Approx/FILES.cmake @@ -0,0 +1,38 @@ +# Source files for Approx package +set(OCCT_Approx_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Approx_FILES + Approx_Array1OfAdHSurface.hxx + Approx_Array1OfGTrsf2d.hxx + Approx_BSplComputeLine.gxx + Approx_ComputeCLine.gxx + Approx_ComputeLine.gxx + Approx_Curve2d.cxx + Approx_Curve2d.hxx + Approx_Curve3d.cxx + Approx_Curve3d.hxx + Approx_CurveOnSurface.cxx + Approx_CurveOnSurface.hxx + Approx_CurvilinearParameter.cxx + Approx_CurvilinearParameter.hxx + Approx_CurvlinFunc.cxx + Approx_CurvlinFunc.hxx + Approx_FitAndDivide.hxx + Approx_FitAndDivide2d.hxx + Approx_FitAndDivide2d_0.cxx + Approx_FitAndDivide_0.cxx + Approx_HArray1OfAdHSurface.hxx + Approx_HArray1OfGTrsf2d.hxx + Approx_MCurvesToBSpCurve.cxx + Approx_MCurvesToBSpCurve.hxx + Approx_ParametrizationType.hxx + Approx_SameParameter.cxx + Approx_SameParameter.hxx + Approx_SequenceOfHArray1OfReal.hxx + Approx_Status.hxx + Approx_SweepApproximation.cxx + Approx_SweepApproximation.hxx + Approx_SweepApproximation.lxx + Approx_SweepFunction.cxx + Approx_SweepFunction.hxx +) diff --git a/src/BndLib/BndLib.cxx b/src/ModelingData/TKGeomBase/BndLib/BndLib.cxx similarity index 100% rename from src/BndLib/BndLib.cxx rename to src/ModelingData/TKGeomBase/BndLib/BndLib.cxx diff --git a/src/BndLib/BndLib.hxx b/src/ModelingData/TKGeomBase/BndLib/BndLib.hxx similarity index 100% rename from src/BndLib/BndLib.hxx rename to src/ModelingData/TKGeomBase/BndLib/BndLib.hxx diff --git a/src/BndLib/BndLib_Add2dCurve.cxx b/src/ModelingData/TKGeomBase/BndLib/BndLib_Add2dCurve.cxx similarity index 100% rename from src/BndLib/BndLib_Add2dCurve.cxx rename to src/ModelingData/TKGeomBase/BndLib/BndLib_Add2dCurve.cxx diff --git a/src/BndLib/BndLib_Add2dCurve.hxx b/src/ModelingData/TKGeomBase/BndLib/BndLib_Add2dCurve.hxx similarity index 100% rename from src/BndLib/BndLib_Add2dCurve.hxx rename to src/ModelingData/TKGeomBase/BndLib/BndLib_Add2dCurve.hxx diff --git a/src/BndLib/BndLib_Add3dCurve.cxx b/src/ModelingData/TKGeomBase/BndLib/BndLib_Add3dCurve.cxx similarity index 100% rename from src/BndLib/BndLib_Add3dCurve.cxx rename to src/ModelingData/TKGeomBase/BndLib/BndLib_Add3dCurve.cxx diff --git a/src/BndLib/BndLib_Add3dCurve.hxx b/src/ModelingData/TKGeomBase/BndLib/BndLib_Add3dCurve.hxx similarity index 100% rename from src/BndLib/BndLib_Add3dCurve.hxx rename to src/ModelingData/TKGeomBase/BndLib/BndLib_Add3dCurve.hxx diff --git a/src/BndLib/BndLib_AddSurface.cxx b/src/ModelingData/TKGeomBase/BndLib/BndLib_AddSurface.cxx similarity index 100% rename from src/BndLib/BndLib_AddSurface.cxx rename to src/ModelingData/TKGeomBase/BndLib/BndLib_AddSurface.cxx diff --git a/src/BndLib/BndLib_AddSurface.hxx b/src/ModelingData/TKGeomBase/BndLib/BndLib_AddSurface.hxx similarity index 100% rename from src/BndLib/BndLib_AddSurface.hxx rename to src/ModelingData/TKGeomBase/BndLib/BndLib_AddSurface.hxx diff --git a/src/ModelingData/TKGeomBase/BndLib/FILES.cmake b/src/ModelingData/TKGeomBase/BndLib/FILES.cmake new file mode 100644 index 0000000000..0f8c93a0cd --- /dev/null +++ b/src/ModelingData/TKGeomBase/BndLib/FILES.cmake @@ -0,0 +1,13 @@ +# Source files for BndLib package +set(OCCT_BndLib_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_BndLib_FILES + BndLib.cxx + BndLib.hxx + BndLib_Add2dCurve.cxx + BndLib_Add2dCurve.hxx + BndLib_Add3dCurve.cxx + BndLib_Add3dCurve.hxx + BndLib_AddSurface.cxx + BndLib_AddSurface.hxx +) diff --git a/src/TKGeomBase/CMakeLists.txt b/src/ModelingData/TKGeomBase/CMakeLists.txt similarity index 100% rename from src/TKGeomBase/CMakeLists.txt rename to src/ModelingData/TKGeomBase/CMakeLists.txt diff --git a/src/CPnts/CPnts_AbscissaPoint.cxx b/src/ModelingData/TKGeomBase/CPnts/CPnts_AbscissaPoint.cxx similarity index 100% rename from src/CPnts/CPnts_AbscissaPoint.cxx rename to src/ModelingData/TKGeomBase/CPnts/CPnts_AbscissaPoint.cxx diff --git a/src/CPnts/CPnts_AbscissaPoint.hxx b/src/ModelingData/TKGeomBase/CPnts/CPnts_AbscissaPoint.hxx similarity index 100% rename from src/CPnts/CPnts_AbscissaPoint.hxx rename to src/ModelingData/TKGeomBase/CPnts/CPnts_AbscissaPoint.hxx diff --git a/src/CPnts/CPnts_AbscissaPoint.lxx b/src/ModelingData/TKGeomBase/CPnts/CPnts_AbscissaPoint.lxx similarity index 100% rename from src/CPnts/CPnts_AbscissaPoint.lxx rename to src/ModelingData/TKGeomBase/CPnts/CPnts_AbscissaPoint.lxx diff --git a/src/CPnts/CPnts_MyGaussFunction.cxx b/src/ModelingData/TKGeomBase/CPnts/CPnts_MyGaussFunction.cxx similarity index 100% rename from src/CPnts/CPnts_MyGaussFunction.cxx rename to src/ModelingData/TKGeomBase/CPnts/CPnts_MyGaussFunction.cxx diff --git a/src/CPnts/CPnts_MyGaussFunction.hxx b/src/ModelingData/TKGeomBase/CPnts/CPnts_MyGaussFunction.hxx similarity index 100% rename from src/CPnts/CPnts_MyGaussFunction.hxx rename to src/ModelingData/TKGeomBase/CPnts/CPnts_MyGaussFunction.hxx diff --git a/src/CPnts/CPnts_MyGaussFunction.lxx b/src/ModelingData/TKGeomBase/CPnts/CPnts_MyGaussFunction.lxx similarity index 100% rename from src/CPnts/CPnts_MyGaussFunction.lxx rename to src/ModelingData/TKGeomBase/CPnts/CPnts_MyGaussFunction.lxx diff --git a/src/CPnts/CPnts_MyRootFunction.cxx b/src/ModelingData/TKGeomBase/CPnts/CPnts_MyRootFunction.cxx similarity index 100% rename from src/CPnts/CPnts_MyRootFunction.cxx rename to src/ModelingData/TKGeomBase/CPnts/CPnts_MyRootFunction.cxx diff --git a/src/CPnts/CPnts_MyRootFunction.hxx b/src/ModelingData/TKGeomBase/CPnts/CPnts_MyRootFunction.hxx similarity index 100% rename from src/CPnts/CPnts_MyRootFunction.hxx rename to src/ModelingData/TKGeomBase/CPnts/CPnts_MyRootFunction.hxx diff --git a/src/CPnts/CPnts_MyRootFunction.lxx b/src/ModelingData/TKGeomBase/CPnts/CPnts_MyRootFunction.lxx similarity index 100% rename from src/CPnts/CPnts_MyRootFunction.lxx rename to src/ModelingData/TKGeomBase/CPnts/CPnts_MyRootFunction.lxx diff --git a/src/CPnts/CPnts_RealFunction.hxx b/src/ModelingData/TKGeomBase/CPnts/CPnts_RealFunction.hxx similarity index 100% rename from src/CPnts/CPnts_RealFunction.hxx rename to src/ModelingData/TKGeomBase/CPnts/CPnts_RealFunction.hxx diff --git a/src/CPnts/CPnts_UniformDeflection.cxx b/src/ModelingData/TKGeomBase/CPnts/CPnts_UniformDeflection.cxx similarity index 100% rename from src/CPnts/CPnts_UniformDeflection.cxx rename to src/ModelingData/TKGeomBase/CPnts/CPnts_UniformDeflection.cxx diff --git a/src/CPnts/CPnts_UniformDeflection.hxx b/src/ModelingData/TKGeomBase/CPnts/CPnts_UniformDeflection.hxx similarity index 100% rename from src/CPnts/CPnts_UniformDeflection.hxx rename to src/ModelingData/TKGeomBase/CPnts/CPnts_UniformDeflection.hxx diff --git a/src/CPnts/CPnts_UniformDeflection.lxx b/src/ModelingData/TKGeomBase/CPnts/CPnts_UniformDeflection.lxx similarity index 100% rename from src/CPnts/CPnts_UniformDeflection.lxx rename to src/ModelingData/TKGeomBase/CPnts/CPnts_UniformDeflection.lxx diff --git a/src/ModelingData/TKGeomBase/CPnts/FILES.cmake b/src/ModelingData/TKGeomBase/CPnts/FILES.cmake new file mode 100644 index 0000000000..4fb123cd6d --- /dev/null +++ b/src/ModelingData/TKGeomBase/CPnts/FILES.cmake @@ -0,0 +1,18 @@ +# Source files for CPnts package +set(OCCT_CPnts_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_CPnts_FILES + CPnts_AbscissaPoint.cxx + CPnts_AbscissaPoint.hxx + CPnts_AbscissaPoint.lxx + CPnts_MyGaussFunction.cxx + CPnts_MyGaussFunction.hxx + CPnts_MyGaussFunction.lxx + CPnts_MyRootFunction.cxx + CPnts_MyRootFunction.hxx + CPnts_MyRootFunction.lxx + CPnts_RealFunction.hxx + CPnts_UniformDeflection.cxx + CPnts_UniformDeflection.hxx + CPnts_UniformDeflection.lxx +) diff --git a/src/ModelingData/TKGeomBase/EXTERNLIB.cmake b/src/ModelingData/TKGeomBase/EXTERNLIB.cmake new file mode 100644 index 0000000000..d7e32af078 --- /dev/null +++ b/src/ModelingData/TKGeomBase/EXTERNLIB.cmake @@ -0,0 +1,8 @@ +# External dependencies for TKGeomBase +set(OCCT_TKGeomBase_EXTERNAL_LIBS + TKernel + TKMath + TKG2d + TKG3d + CSF_TBB +) diff --git a/src/Extrema/Extrema_Array1OfPOnCurv.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_Array1OfPOnCurv.hxx similarity index 100% rename from src/Extrema/Extrema_Array1OfPOnCurv.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_Array1OfPOnCurv.hxx diff --git a/src/Extrema/Extrema_Array1OfPOnCurv2d.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_Array1OfPOnCurv2d.hxx similarity index 100% rename from src/Extrema/Extrema_Array1OfPOnCurv2d.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_Array1OfPOnCurv2d.hxx diff --git a/src/Extrema/Extrema_Array1OfPOnSurf.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_Array1OfPOnSurf.hxx similarity index 100% rename from src/Extrema/Extrema_Array1OfPOnSurf.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_Array1OfPOnSurf.hxx diff --git a/src/Extrema/Extrema_Array2OfPOnCurv.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_Array2OfPOnCurv.hxx similarity index 100% rename from src/Extrema/Extrema_Array2OfPOnCurv.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_Array2OfPOnCurv.hxx diff --git a/src/Extrema/Extrema_Array2OfPOnCurv2d.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_Array2OfPOnCurv2d.hxx similarity index 100% rename from src/Extrema/Extrema_Array2OfPOnCurv2d.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_Array2OfPOnCurv2d.hxx diff --git a/src/Extrema/Extrema_Array2OfPOnSurf.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_Array2OfPOnSurf.hxx similarity index 100% rename from src/Extrema/Extrema_Array2OfPOnSurf.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_Array2OfPOnSurf.hxx diff --git a/src/Extrema/Extrema_Array2OfPOnSurfParams.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_Array2OfPOnSurfParams.hxx similarity index 100% rename from src/Extrema/Extrema_Array2OfPOnSurfParams.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_Array2OfPOnSurfParams.hxx diff --git a/src/Extrema/Extrema_CCLocFOfLocECC.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_CCLocFOfLocECC.hxx similarity index 100% rename from src/Extrema/Extrema_CCLocFOfLocECC.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_CCLocFOfLocECC.hxx diff --git a/src/Extrema/Extrema_CCLocFOfLocECC2d.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_CCLocFOfLocECC2d.hxx similarity index 100% rename from src/Extrema/Extrema_CCLocFOfLocECC2d.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_CCLocFOfLocECC2d.hxx diff --git a/src/Extrema/Extrema_CCLocFOfLocECC2d_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_CCLocFOfLocECC2d_0.cxx similarity index 100% rename from src/Extrema/Extrema_CCLocFOfLocECC2d_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_CCLocFOfLocECC2d_0.cxx diff --git a/src/Extrema/Extrema_CCLocFOfLocECC_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_CCLocFOfLocECC_0.cxx similarity index 100% rename from src/Extrema/Extrema_CCLocFOfLocECC_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_CCLocFOfLocECC_0.cxx diff --git a/src/Extrema/Extrema_Curve2dTool.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_Curve2dTool.cxx similarity index 100% rename from src/Extrema/Extrema_Curve2dTool.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_Curve2dTool.cxx diff --git a/src/Extrema/Extrema_Curve2dTool.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_Curve2dTool.hxx similarity index 100% rename from src/Extrema/Extrema_Curve2dTool.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_Curve2dTool.hxx diff --git a/src/Extrema/Extrema_Curve2dTool.lxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_Curve2dTool.lxx similarity index 100% rename from src/Extrema/Extrema_Curve2dTool.lxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_Curve2dTool.lxx diff --git a/src/Extrema/Extrema_CurveLocator.gxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_CurveLocator.gxx similarity index 100% rename from src/Extrema/Extrema_CurveLocator.gxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_CurveLocator.gxx diff --git a/src/Extrema/Extrema_CurveTool.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_CurveTool.cxx similarity index 100% rename from src/Extrema/Extrema_CurveTool.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_CurveTool.cxx diff --git a/src/Extrema/Extrema_CurveTool.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_CurveTool.hxx similarity index 100% rename from src/Extrema/Extrema_CurveTool.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_CurveTool.hxx diff --git a/src/Extrema/Extrema_CurveTool.lxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_CurveTool.lxx similarity index 100% rename from src/Extrema/Extrema_CurveTool.lxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_CurveTool.lxx diff --git a/src/Extrema/Extrema_ECC.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ECC.hxx similarity index 100% rename from src/Extrema/Extrema_ECC.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ECC.hxx diff --git a/src/Extrema/Extrema_ECC2d.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ECC2d.hxx similarity index 100% rename from src/Extrema/Extrema_ECC2d.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ECC2d.hxx diff --git a/src/Extrema/Extrema_ECC2d_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ECC2d_0.cxx similarity index 100% rename from src/Extrema/Extrema_ECC2d_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ECC2d_0.cxx diff --git a/src/Extrema/Extrema_ECC_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ECC_0.cxx similarity index 100% rename from src/Extrema/Extrema_ECC_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ECC_0.cxx diff --git a/src/Extrema/Extrema_ELPCOfLocateExtPC.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ELPCOfLocateExtPC.hxx similarity index 100% rename from src/Extrema/Extrema_ELPCOfLocateExtPC.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ELPCOfLocateExtPC.hxx diff --git a/src/Extrema/Extrema_ELPCOfLocateExtPC2d.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ELPCOfLocateExtPC2d.hxx similarity index 100% rename from src/Extrema/Extrema_ELPCOfLocateExtPC2d.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ELPCOfLocateExtPC2d.hxx diff --git a/src/Extrema/Extrema_ELPCOfLocateExtPC2d_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ELPCOfLocateExtPC2d_0.cxx similarity index 100% rename from src/Extrema/Extrema_ELPCOfLocateExtPC2d_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ELPCOfLocateExtPC2d_0.cxx diff --git a/src/Extrema/Extrema_ELPCOfLocateExtPC_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ELPCOfLocateExtPC_0.cxx similarity index 100% rename from src/Extrema/Extrema_ELPCOfLocateExtPC_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ELPCOfLocateExtPC_0.cxx diff --git a/src/Extrema/Extrema_EPCOfELPCOfLocateExtPC.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_EPCOfELPCOfLocateExtPC.hxx similarity index 100% rename from src/Extrema/Extrema_EPCOfELPCOfLocateExtPC.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_EPCOfELPCOfLocateExtPC.hxx diff --git a/src/Extrema/Extrema_EPCOfELPCOfLocateExtPC2d.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_EPCOfELPCOfLocateExtPC2d.hxx similarity index 100% rename from src/Extrema/Extrema_EPCOfELPCOfLocateExtPC2d.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_EPCOfELPCOfLocateExtPC2d.hxx diff --git a/src/Extrema/Extrema_EPCOfELPCOfLocateExtPC2d_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_EPCOfELPCOfLocateExtPC2d_0.cxx similarity index 100% rename from src/Extrema/Extrema_EPCOfELPCOfLocateExtPC2d_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_EPCOfELPCOfLocateExtPC2d_0.cxx diff --git a/src/Extrema/Extrema_EPCOfELPCOfLocateExtPC_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_EPCOfELPCOfLocateExtPC_0.cxx similarity index 100% rename from src/Extrema/Extrema_EPCOfELPCOfLocateExtPC_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_EPCOfELPCOfLocateExtPC_0.cxx diff --git a/src/Extrema/Extrema_EPCOfExtPC.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_EPCOfExtPC.hxx similarity index 100% rename from src/Extrema/Extrema_EPCOfExtPC.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_EPCOfExtPC.hxx diff --git a/src/Extrema/Extrema_EPCOfExtPC2d.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_EPCOfExtPC2d.hxx similarity index 100% rename from src/Extrema/Extrema_EPCOfExtPC2d.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_EPCOfExtPC2d.hxx diff --git a/src/Extrema/Extrema_EPCOfExtPC2d_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_EPCOfExtPC2d_0.cxx similarity index 100% rename from src/Extrema/Extrema_EPCOfExtPC2d_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_EPCOfExtPC2d_0.cxx diff --git a/src/Extrema/Extrema_EPCOfExtPC_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_EPCOfExtPC_0.cxx similarity index 100% rename from src/Extrema/Extrema_EPCOfExtPC_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_EPCOfExtPC_0.cxx diff --git a/src/Extrema/Extrema_ElementType.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ElementType.hxx similarity index 100% rename from src/Extrema/Extrema_ElementType.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ElementType.hxx diff --git a/src/Extrema/Extrema_ExtAlgo.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtAlgo.hxx similarity index 100% rename from src/Extrema/Extrema_ExtAlgo.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtAlgo.hxx diff --git a/src/Extrema/Extrema_ExtCC.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtCC.cxx similarity index 100% rename from src/Extrema/Extrema_ExtCC.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtCC.cxx diff --git a/src/Extrema/Extrema_ExtCC.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtCC.hxx similarity index 100% rename from src/Extrema/Extrema_ExtCC.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtCC.hxx diff --git a/src/Extrema/Extrema_ExtCC2d.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtCC2d.cxx similarity index 100% rename from src/Extrema/Extrema_ExtCC2d.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtCC2d.cxx diff --git a/src/Extrema/Extrema_ExtCC2d.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtCC2d.hxx similarity index 100% rename from src/Extrema/Extrema_ExtCC2d.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtCC2d.hxx diff --git a/src/Extrema/Extrema_ExtCS.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtCS.cxx similarity index 100% rename from src/Extrema/Extrema_ExtCS.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtCS.cxx diff --git a/src/Extrema/Extrema_ExtCS.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtCS.hxx similarity index 100% rename from src/Extrema/Extrema_ExtCS.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtCS.hxx diff --git a/src/Extrema/Extrema_ExtElC.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtElC.cxx similarity index 100% rename from src/Extrema/Extrema_ExtElC.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtElC.cxx diff --git a/src/Extrema/Extrema_ExtElC.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtElC.hxx similarity index 100% rename from src/Extrema/Extrema_ExtElC.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtElC.hxx diff --git a/src/Extrema/Extrema_ExtElC2d.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtElC2d.cxx similarity index 100% rename from src/Extrema/Extrema_ExtElC2d.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtElC2d.cxx diff --git a/src/Extrema/Extrema_ExtElC2d.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtElC2d.hxx similarity index 100% rename from src/Extrema/Extrema_ExtElC2d.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtElC2d.hxx diff --git a/src/Extrema/Extrema_ExtElCS.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtElCS.cxx similarity index 100% rename from src/Extrema/Extrema_ExtElCS.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtElCS.cxx diff --git a/src/Extrema/Extrema_ExtElCS.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtElCS.hxx similarity index 100% rename from src/Extrema/Extrema_ExtElCS.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtElCS.hxx diff --git a/src/Extrema/Extrema_ExtElSS.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtElSS.cxx similarity index 100% rename from src/Extrema/Extrema_ExtElSS.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtElSS.cxx diff --git a/src/Extrema/Extrema_ExtElSS.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtElSS.hxx similarity index 100% rename from src/Extrema/Extrema_ExtElSS.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtElSS.hxx diff --git a/src/Extrema/Extrema_ExtFlag.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtFlag.hxx similarity index 100% rename from src/Extrema/Extrema_ExtFlag.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtFlag.hxx diff --git a/src/Extrema/Extrema_ExtPC.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPC.hxx similarity index 100% rename from src/Extrema/Extrema_ExtPC.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPC.hxx diff --git a/src/Extrema/Extrema_ExtPC2d.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPC2d.hxx similarity index 100% rename from src/Extrema/Extrema_ExtPC2d.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPC2d.hxx diff --git a/src/Extrema/Extrema_ExtPC2d_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPC2d_0.cxx similarity index 100% rename from src/Extrema/Extrema_ExtPC2d_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPC2d_0.cxx diff --git a/src/Extrema/Extrema_ExtPC_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPC_0.cxx similarity index 100% rename from src/Extrema/Extrema_ExtPC_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPC_0.cxx diff --git a/src/Extrema/Extrema_ExtPElC.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPElC.cxx similarity index 100% rename from src/Extrema/Extrema_ExtPElC.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPElC.cxx diff --git a/src/Extrema/Extrema_ExtPElC.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPElC.hxx similarity index 100% rename from src/Extrema/Extrema_ExtPElC.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPElC.hxx diff --git a/src/Extrema/Extrema_ExtPElC2d.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPElC2d.cxx similarity index 100% rename from src/Extrema/Extrema_ExtPElC2d.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPElC2d.cxx diff --git a/src/Extrema/Extrema_ExtPElC2d.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPElC2d.hxx similarity index 100% rename from src/Extrema/Extrema_ExtPElC2d.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPElC2d.hxx diff --git a/src/Extrema/Extrema_ExtPElS.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPElS.cxx similarity index 100% rename from src/Extrema/Extrema_ExtPElS.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPElS.cxx diff --git a/src/Extrema/Extrema_ExtPElS.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPElS.hxx similarity index 100% rename from src/Extrema/Extrema_ExtPElS.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPElS.hxx diff --git a/src/Extrema/Extrema_ExtPExtS.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPExtS.cxx similarity index 100% rename from src/Extrema/Extrema_ExtPExtS.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPExtS.cxx diff --git a/src/Extrema/Extrema_ExtPExtS.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPExtS.hxx similarity index 100% rename from src/Extrema/Extrema_ExtPExtS.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPExtS.hxx diff --git a/src/Extrema/Extrema_ExtPRevS.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPRevS.cxx similarity index 100% rename from src/Extrema/Extrema_ExtPRevS.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPRevS.cxx diff --git a/src/Extrema/Extrema_ExtPRevS.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPRevS.hxx similarity index 100% rename from src/Extrema/Extrema_ExtPRevS.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPRevS.hxx diff --git a/src/Extrema/Extrema_ExtPS.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPS.cxx similarity index 100% rename from src/Extrema/Extrema_ExtPS.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPS.cxx diff --git a/src/Extrema/Extrema_ExtPS.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPS.hxx similarity index 100% rename from src/Extrema/Extrema_ExtPS.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtPS.hxx diff --git a/src/Extrema/Extrema_ExtSS.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtSS.cxx similarity index 100% rename from src/Extrema/Extrema_ExtSS.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtSS.cxx diff --git a/src/Extrema/Extrema_ExtSS.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_ExtSS.hxx similarity index 100% rename from src/Extrema/Extrema_ExtSS.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_ExtSS.hxx diff --git a/src/Extrema/Extrema_FuncExtCC.gxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_FuncExtCC.gxx similarity index 100% rename from src/Extrema/Extrema_FuncExtCC.gxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_FuncExtCC.gxx diff --git a/src/Extrema/Extrema_FuncExtCC.lxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_FuncExtCC.lxx similarity index 100% rename from src/Extrema/Extrema_FuncExtCC.lxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_FuncExtCC.lxx diff --git a/src/Extrema/Extrema_FuncExtCS.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_FuncExtCS.cxx similarity index 100% rename from src/Extrema/Extrema_FuncExtCS.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_FuncExtCS.cxx diff --git a/src/Extrema/Extrema_FuncExtCS.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_FuncExtCS.hxx similarity index 100% rename from src/Extrema/Extrema_FuncExtCS.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_FuncExtCS.hxx diff --git a/src/Extrema/Extrema_FuncExtPC.gxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_FuncExtPC.gxx similarity index 100% rename from src/Extrema/Extrema_FuncExtPC.gxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_FuncExtPC.gxx diff --git a/src/Extrema/Extrema_FuncExtSS.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_FuncExtSS.cxx similarity index 100% rename from src/Extrema/Extrema_FuncExtSS.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_FuncExtSS.cxx diff --git a/src/Extrema/Extrema_FuncExtSS.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_FuncExtSS.hxx similarity index 100% rename from src/Extrema/Extrema_FuncExtSS.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_FuncExtSS.hxx diff --git a/src/Extrema/Extrema_FuncPSDist.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_FuncPSDist.cxx similarity index 100% rename from src/Extrema/Extrema_FuncPSDist.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_FuncPSDist.cxx diff --git a/src/Extrema/Extrema_FuncPSDist.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_FuncPSDist.hxx similarity index 100% rename from src/Extrema/Extrema_FuncPSDist.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_FuncPSDist.hxx diff --git a/src/Extrema/Extrema_FuncPSNorm.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_FuncPSNorm.cxx similarity index 100% rename from src/Extrema/Extrema_FuncPSNorm.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_FuncPSNorm.cxx diff --git a/src/Extrema/Extrema_FuncPSNorm.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_FuncPSNorm.hxx similarity index 100% rename from src/Extrema/Extrema_FuncPSNorm.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_FuncPSNorm.hxx diff --git a/src/Extrema/Extrema_GExtPC.gxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GExtPC.gxx similarity index 100% rename from src/Extrema/Extrema_GExtPC.gxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GExtPC.gxx diff --git a/src/Extrema/Extrema_GLocateExtPC.gxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GLocateExtPC.gxx similarity index 100% rename from src/Extrema/Extrema_GLocateExtPC.gxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GLocateExtPC.gxx diff --git a/src/Extrema/Extrema_GenExtCC.gxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GenExtCC.gxx similarity index 100% rename from src/Extrema/Extrema_GenExtCC.gxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GenExtCC.gxx diff --git a/src/Extrema/Extrema_GenExtCS.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GenExtCS.cxx similarity index 100% rename from src/Extrema/Extrema_GenExtCS.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GenExtCS.cxx diff --git a/src/Extrema/Extrema_GenExtCS.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GenExtCS.hxx similarity index 100% rename from src/Extrema/Extrema_GenExtCS.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GenExtCS.hxx diff --git a/src/Extrema/Extrema_GenExtPC.gxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GenExtPC.gxx similarity index 100% rename from src/Extrema/Extrema_GenExtPC.gxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GenExtPC.gxx diff --git a/src/Extrema/Extrema_GenExtPS.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GenExtPS.cxx similarity index 100% rename from src/Extrema/Extrema_GenExtPS.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GenExtPS.cxx diff --git a/src/Extrema/Extrema_GenExtPS.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GenExtPS.hxx similarity index 100% rename from src/Extrema/Extrema_GenExtPS.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GenExtPS.hxx diff --git a/src/Extrema/Extrema_GenExtSS.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GenExtSS.cxx similarity index 100% rename from src/Extrema/Extrema_GenExtSS.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GenExtSS.cxx diff --git a/src/Extrema/Extrema_GenExtSS.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GenExtSS.hxx similarity index 100% rename from src/Extrema/Extrema_GenExtSS.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GenExtSS.hxx diff --git a/src/Extrema/Extrema_GenLocateExtCC.gxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GenLocateExtCC.gxx similarity index 100% rename from src/Extrema/Extrema_GenLocateExtCC.gxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GenLocateExtCC.gxx diff --git a/src/Extrema/Extrema_GenLocateExtCS.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GenLocateExtCS.cxx similarity index 100% rename from src/Extrema/Extrema_GenLocateExtCS.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GenLocateExtCS.cxx diff --git a/src/Extrema/Extrema_GenLocateExtCS.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GenLocateExtCS.hxx similarity index 100% rename from src/Extrema/Extrema_GenLocateExtCS.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GenLocateExtCS.hxx diff --git a/src/Extrema/Extrema_GenLocateExtPC.gxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GenLocateExtPC.gxx similarity index 100% rename from src/Extrema/Extrema_GenLocateExtPC.gxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GenLocateExtPC.gxx diff --git a/src/Extrema/Extrema_GenLocateExtPS.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GenLocateExtPS.cxx similarity index 100% rename from src/Extrema/Extrema_GenLocateExtPS.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GenLocateExtPS.cxx diff --git a/src/Extrema/Extrema_GenLocateExtPS.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GenLocateExtPS.hxx similarity index 100% rename from src/Extrema/Extrema_GenLocateExtPS.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GenLocateExtPS.hxx diff --git a/src/Extrema/Extrema_GenLocateExtSS.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GenLocateExtSS.cxx similarity index 100% rename from src/Extrema/Extrema_GenLocateExtSS.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GenLocateExtSS.cxx diff --git a/src/Extrema/Extrema_GenLocateExtSS.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GenLocateExtSS.hxx similarity index 100% rename from src/Extrema/Extrema_GenLocateExtSS.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GenLocateExtSS.hxx diff --git a/src/Extrema/Extrema_GlobOptFuncCC.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GlobOptFuncCC.cxx similarity index 100% rename from src/Extrema/Extrema_GlobOptFuncCC.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GlobOptFuncCC.cxx diff --git a/src/Extrema/Extrema_GlobOptFuncCC.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GlobOptFuncCC.hxx similarity index 100% rename from src/Extrema/Extrema_GlobOptFuncCC.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GlobOptFuncCC.hxx diff --git a/src/Extrema/Extrema_GlobOptFuncCQuadric.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GlobOptFuncCQuadric.cxx similarity index 100% rename from src/Extrema/Extrema_GlobOptFuncCQuadric.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GlobOptFuncCQuadric.cxx diff --git a/src/Extrema/Extrema_GlobOptFuncCQuadric.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GlobOptFuncCQuadric.hxx similarity index 100% rename from src/Extrema/Extrema_GlobOptFuncCQuadric.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GlobOptFuncCQuadric.hxx diff --git a/src/Extrema/Extrema_GlobOptFuncCS.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GlobOptFuncCS.cxx similarity index 100% rename from src/Extrema/Extrema_GlobOptFuncCS.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GlobOptFuncCS.cxx diff --git a/src/Extrema/Extrema_GlobOptFuncCS.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GlobOptFuncCS.hxx similarity index 100% rename from src/Extrema/Extrema_GlobOptFuncCS.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GlobOptFuncCS.hxx diff --git a/src/Extrema/Extrema_GlobOptFuncConicS.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GlobOptFuncConicS.cxx similarity index 100% rename from src/Extrema/Extrema_GlobOptFuncConicS.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GlobOptFuncConicS.cxx diff --git a/src/Extrema/Extrema_GlobOptFuncConicS.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_GlobOptFuncConicS.hxx similarity index 100% rename from src/Extrema/Extrema_GlobOptFuncConicS.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_GlobOptFuncConicS.hxx diff --git a/src/Extrema/Extrema_HArray1OfPOnCurv.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_HArray1OfPOnCurv.hxx similarity index 100% rename from src/Extrema/Extrema_HArray1OfPOnCurv.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_HArray1OfPOnCurv.hxx diff --git a/src/Extrema/Extrema_HArray1OfPOnCurv2d.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_HArray1OfPOnCurv2d.hxx similarity index 100% rename from src/Extrema/Extrema_HArray1OfPOnCurv2d.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_HArray1OfPOnCurv2d.hxx diff --git a/src/Extrema/Extrema_HArray1OfPOnSurf.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_HArray1OfPOnSurf.hxx similarity index 100% rename from src/Extrema/Extrema_HArray1OfPOnSurf.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_HArray1OfPOnSurf.hxx diff --git a/src/Extrema/Extrema_HArray2OfPOnCurv.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_HArray2OfPOnCurv.hxx similarity index 100% rename from src/Extrema/Extrema_HArray2OfPOnCurv.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_HArray2OfPOnCurv.hxx diff --git a/src/Extrema/Extrema_HArray2OfPOnCurv2d.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_HArray2OfPOnCurv2d.hxx similarity index 100% rename from src/Extrema/Extrema_HArray2OfPOnCurv2d.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_HArray2OfPOnCurv2d.hxx diff --git a/src/Extrema/Extrema_HArray2OfPOnSurf.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_HArray2OfPOnSurf.hxx similarity index 100% rename from src/Extrema/Extrema_HArray2OfPOnSurf.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_HArray2OfPOnSurf.hxx diff --git a/src/Extrema/Extrema_HUBTreeOfSphere.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_HUBTreeOfSphere.hxx similarity index 100% rename from src/Extrema/Extrema_HUBTreeOfSphere.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_HUBTreeOfSphere.hxx diff --git a/src/Extrema/Extrema_LocECC.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_LocECC.hxx similarity index 100% rename from src/Extrema/Extrema_LocECC.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_LocECC.hxx diff --git a/src/Extrema/Extrema_LocECC2d.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_LocECC2d.hxx similarity index 100% rename from src/Extrema/Extrema_LocECC2d.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_LocECC2d.hxx diff --git a/src/Extrema/Extrema_LocECC2d_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_LocECC2d_0.cxx similarity index 100% rename from src/Extrema/Extrema_LocECC2d_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_LocECC2d_0.cxx diff --git a/src/Extrema/Extrema_LocECC_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_LocECC_0.cxx similarity index 100% rename from src/Extrema/Extrema_LocECC_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_LocECC_0.cxx diff --git a/src/Extrema/Extrema_LocEPCOfLocateExtPC.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_LocEPCOfLocateExtPC.hxx similarity index 100% rename from src/Extrema/Extrema_LocEPCOfLocateExtPC.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_LocEPCOfLocateExtPC.hxx diff --git a/src/Extrema/Extrema_LocEPCOfLocateExtPC2d.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_LocEPCOfLocateExtPC2d.hxx similarity index 100% rename from src/Extrema/Extrema_LocEPCOfLocateExtPC2d.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_LocEPCOfLocateExtPC2d.hxx diff --git a/src/Extrema/Extrema_LocEPCOfLocateExtPC2d_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_LocEPCOfLocateExtPC2d_0.cxx similarity index 100% rename from src/Extrema/Extrema_LocEPCOfLocateExtPC2d_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_LocEPCOfLocateExtPC2d_0.cxx diff --git a/src/Extrema/Extrema_LocEPCOfLocateExtPC_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_LocEPCOfLocateExtPC_0.cxx similarity index 100% rename from src/Extrema/Extrema_LocEPCOfLocateExtPC_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_LocEPCOfLocateExtPC_0.cxx diff --git a/src/Extrema/Extrema_LocateExtCC.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_LocateExtCC.cxx similarity index 100% rename from src/Extrema/Extrema_LocateExtCC.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_LocateExtCC.cxx diff --git a/src/Extrema/Extrema_LocateExtCC.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_LocateExtCC.hxx similarity index 100% rename from src/Extrema/Extrema_LocateExtCC.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_LocateExtCC.hxx diff --git a/src/Extrema/Extrema_LocateExtCC2d.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_LocateExtCC2d.cxx similarity index 100% rename from src/Extrema/Extrema_LocateExtCC2d.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_LocateExtCC2d.cxx diff --git a/src/Extrema/Extrema_LocateExtCC2d.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_LocateExtCC2d.hxx similarity index 100% rename from src/Extrema/Extrema_LocateExtCC2d.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_LocateExtCC2d.hxx diff --git a/src/Extrema/Extrema_LocateExtPC.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_LocateExtPC.hxx similarity index 100% rename from src/Extrema/Extrema_LocateExtPC.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_LocateExtPC.hxx diff --git a/src/Extrema/Extrema_LocateExtPC2d.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_LocateExtPC2d.hxx similarity index 100% rename from src/Extrema/Extrema_LocateExtPC2d.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_LocateExtPC2d.hxx diff --git a/src/Extrema/Extrema_LocateExtPC2d_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_LocateExtPC2d_0.cxx similarity index 100% rename from src/Extrema/Extrema_LocateExtPC2d_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_LocateExtPC2d_0.cxx diff --git a/src/Extrema/Extrema_LocateExtPC_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_LocateExtPC_0.cxx similarity index 100% rename from src/Extrema/Extrema_LocateExtPC_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_LocateExtPC_0.cxx diff --git a/src/Extrema/Extrema_PCFOfEPCOfELPCOfLocateExtPC.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_PCFOfEPCOfELPCOfLocateExtPC.hxx similarity index 100% rename from src/Extrema/Extrema_PCFOfEPCOfELPCOfLocateExtPC.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_PCFOfEPCOfELPCOfLocateExtPC.hxx diff --git a/src/Extrema/Extrema_PCFOfEPCOfELPCOfLocateExtPC2d.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_PCFOfEPCOfELPCOfLocateExtPC2d.hxx similarity index 100% rename from src/Extrema/Extrema_PCFOfEPCOfELPCOfLocateExtPC2d.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_PCFOfEPCOfELPCOfLocateExtPC2d.hxx diff --git a/src/Extrema/Extrema_PCFOfEPCOfELPCOfLocateExtPC2d_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_PCFOfEPCOfELPCOfLocateExtPC2d_0.cxx similarity index 100% rename from src/Extrema/Extrema_PCFOfEPCOfELPCOfLocateExtPC2d_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_PCFOfEPCOfELPCOfLocateExtPC2d_0.cxx diff --git a/src/Extrema/Extrema_PCFOfEPCOfELPCOfLocateExtPC_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_PCFOfEPCOfELPCOfLocateExtPC_0.cxx similarity index 100% rename from src/Extrema/Extrema_PCFOfEPCOfELPCOfLocateExtPC_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_PCFOfEPCOfELPCOfLocateExtPC_0.cxx diff --git a/src/Extrema/Extrema_PCFOfEPCOfExtPC.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_PCFOfEPCOfExtPC.hxx similarity index 100% rename from src/Extrema/Extrema_PCFOfEPCOfExtPC.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_PCFOfEPCOfExtPC.hxx diff --git a/src/Extrema/Extrema_PCFOfEPCOfExtPC2d.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_PCFOfEPCOfExtPC2d.hxx similarity index 100% rename from src/Extrema/Extrema_PCFOfEPCOfExtPC2d.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_PCFOfEPCOfExtPC2d.hxx diff --git a/src/Extrema/Extrema_PCFOfEPCOfExtPC2d_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_PCFOfEPCOfExtPC2d_0.cxx similarity index 100% rename from src/Extrema/Extrema_PCFOfEPCOfExtPC2d_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_PCFOfEPCOfExtPC2d_0.cxx diff --git a/src/Extrema/Extrema_PCFOfEPCOfExtPC_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_PCFOfEPCOfExtPC_0.cxx similarity index 100% rename from src/Extrema/Extrema_PCFOfEPCOfExtPC_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_PCFOfEPCOfExtPC_0.cxx diff --git a/src/Extrema/Extrema_PCLocFOfLocEPCOfLocateExtPC.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_PCLocFOfLocEPCOfLocateExtPC.hxx similarity index 100% rename from src/Extrema/Extrema_PCLocFOfLocEPCOfLocateExtPC.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_PCLocFOfLocEPCOfLocateExtPC.hxx diff --git a/src/Extrema/Extrema_PCLocFOfLocEPCOfLocateExtPC2d.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_PCLocFOfLocEPCOfLocateExtPC2d.hxx similarity index 100% rename from src/Extrema/Extrema_PCLocFOfLocEPCOfLocateExtPC2d.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_PCLocFOfLocEPCOfLocateExtPC2d.hxx diff --git a/src/Extrema/Extrema_PCLocFOfLocEPCOfLocateExtPC2d_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_PCLocFOfLocEPCOfLocateExtPC2d_0.cxx similarity index 100% rename from src/Extrema/Extrema_PCLocFOfLocEPCOfLocateExtPC2d_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_PCLocFOfLocEPCOfLocateExtPC2d_0.cxx diff --git a/src/Extrema/Extrema_PCLocFOfLocEPCOfLocateExtPC_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_PCLocFOfLocEPCOfLocateExtPC_0.cxx similarity index 100% rename from src/Extrema/Extrema_PCLocFOfLocEPCOfLocateExtPC_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_PCLocFOfLocEPCOfLocateExtPC_0.cxx diff --git a/src/Extrema/Extrema_POnCurv.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_POnCurv.hxx similarity index 100% rename from src/Extrema/Extrema_POnCurv.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_POnCurv.hxx diff --git a/src/Extrema/Extrema_POnCurv2d.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_POnCurv2d.hxx similarity index 100% rename from src/Extrema/Extrema_POnCurv2d.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_POnCurv2d.hxx diff --git a/src/Extrema/Extrema_POnCurv2d_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_POnCurv2d_0.cxx similarity index 100% rename from src/Extrema/Extrema_POnCurv2d_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_POnCurv2d_0.cxx diff --git a/src/Extrema/Extrema_POnCurv_0.cxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_POnCurv_0.cxx similarity index 100% rename from src/Extrema/Extrema_POnCurv_0.cxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_POnCurv_0.cxx diff --git a/src/Extrema/Extrema_POnSurf.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_POnSurf.hxx similarity index 100% rename from src/Extrema/Extrema_POnSurf.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_POnSurf.hxx diff --git a/src/Extrema/Extrema_POnSurf.lxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_POnSurf.lxx similarity index 100% rename from src/Extrema/Extrema_POnSurf.lxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_POnSurf.lxx diff --git a/src/Extrema/Extrema_POnSurfParams.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_POnSurfParams.hxx similarity index 100% rename from src/Extrema/Extrema_POnSurfParams.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_POnSurfParams.hxx diff --git a/src/Extrema/Extrema_POnSurfParams.lxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_POnSurfParams.lxx similarity index 100% rename from src/Extrema/Extrema_POnSurfParams.lxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_POnSurfParams.lxx diff --git a/src/Extrema/Extrema_Point.gxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_Point.gxx similarity index 100% rename from src/Extrema/Extrema_Point.gxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_Point.gxx diff --git a/src/Extrema/Extrema_Point.lxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_Point.lxx similarity index 100% rename from src/Extrema/Extrema_Point.lxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_Point.lxx diff --git a/src/Extrema/Extrema_SequenceOfPOnCurv.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_SequenceOfPOnCurv.hxx similarity index 100% rename from src/Extrema/Extrema_SequenceOfPOnCurv.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_SequenceOfPOnCurv.hxx diff --git a/src/Extrema/Extrema_SequenceOfPOnCurv2d.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_SequenceOfPOnCurv2d.hxx similarity index 100% rename from src/Extrema/Extrema_SequenceOfPOnCurv2d.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_SequenceOfPOnCurv2d.hxx diff --git a/src/Extrema/Extrema_SequenceOfPOnSurf.hxx b/src/ModelingData/TKGeomBase/Extrema/Extrema_SequenceOfPOnSurf.hxx similarity index 100% rename from src/Extrema/Extrema_SequenceOfPOnSurf.hxx rename to src/ModelingData/TKGeomBase/Extrema/Extrema_SequenceOfPOnSurf.hxx diff --git a/src/ModelingData/TKGeomBase/Extrema/FILES.cmake b/src/ModelingData/TKGeomBase/Extrema/FILES.cmake new file mode 100644 index 0000000000..91a7c9308a --- /dev/null +++ b/src/ModelingData/TKGeomBase/Extrema/FILES.cmake @@ -0,0 +1,159 @@ +# Source files for Extrema package +set(OCCT_Extrema_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Extrema_FILES + Extrema_Array1OfPOnCurv.hxx + Extrema_Array1OfPOnCurv2d.hxx + Extrema_Array1OfPOnSurf.hxx + Extrema_Array2OfPOnCurv.hxx + Extrema_Array2OfPOnCurv2d.hxx + Extrema_Array2OfPOnSurf.hxx + Extrema_Array2OfPOnSurfParams.hxx + Extrema_CCLocFOfLocECC.hxx + Extrema_CCLocFOfLocECC2d.hxx + Extrema_CCLocFOfLocECC2d_0.cxx + Extrema_CCLocFOfLocECC_0.cxx + Extrema_Curve2dTool.cxx + Extrema_Curve2dTool.hxx + Extrema_Curve2dTool.lxx + Extrema_CurveLocator.gxx + Extrema_CurveTool.cxx + Extrema_CurveTool.hxx + Extrema_CurveTool.lxx + Extrema_ECC.hxx + Extrema_ECC2d.hxx + Extrema_ECC2d_0.cxx + Extrema_ECC_0.cxx + Extrema_ElementType.hxx + Extrema_ELPCOfLocateExtPC.hxx + Extrema_ELPCOfLocateExtPC2d.hxx + Extrema_ELPCOfLocateExtPC2d_0.cxx + Extrema_ELPCOfLocateExtPC_0.cxx + Extrema_EPCOfELPCOfLocateExtPC.hxx + Extrema_EPCOfELPCOfLocateExtPC2d.hxx + Extrema_EPCOfELPCOfLocateExtPC2d_0.cxx + Extrema_EPCOfELPCOfLocateExtPC_0.cxx + Extrema_EPCOfExtPC.hxx + Extrema_EPCOfExtPC2d.hxx + Extrema_EPCOfExtPC2d_0.cxx + Extrema_EPCOfExtPC_0.cxx + Extrema_ExtAlgo.hxx + Extrema_ExtCC.cxx + Extrema_ExtCC.hxx + Extrema_ExtCC2d.cxx + Extrema_ExtCC2d.hxx + Extrema_ExtCS.cxx + Extrema_ExtCS.hxx + Extrema_ExtElC.cxx + Extrema_ExtElC.hxx + Extrema_ExtElC2d.cxx + Extrema_ExtElC2d.hxx + Extrema_ExtElCS.cxx + Extrema_ExtElCS.hxx + Extrema_ExtElSS.cxx + Extrema_ExtElSS.hxx + Extrema_ExtFlag.hxx + Extrema_ExtPC.hxx + Extrema_ExtPC2d.hxx + Extrema_ExtPC2d_0.cxx + Extrema_ExtPC_0.cxx + Extrema_ExtPElC.cxx + Extrema_ExtPElC.hxx + Extrema_ExtPElC2d.cxx + Extrema_ExtPElC2d.hxx + Extrema_ExtPElS.cxx + Extrema_ExtPElS.hxx + Extrema_ExtPExtS.cxx + Extrema_ExtPExtS.hxx + Extrema_ExtPRevS.cxx + Extrema_ExtPRevS.hxx + Extrema_ExtPS.cxx + Extrema_ExtPS.hxx + Extrema_ExtSS.cxx + Extrema_ExtSS.hxx + Extrema_FuncExtCC.gxx + Extrema_FuncExtCC.lxx + Extrema_FuncExtCS.cxx + Extrema_FuncExtCS.hxx + Extrema_FuncExtPC.gxx + Extrema_FuncPSNorm.cxx + Extrema_FuncPSNorm.hxx + Extrema_FuncPSDist.cxx + Extrema_FuncPSDist.hxx + Extrema_FuncExtSS.cxx + Extrema_FuncExtSS.hxx + Extrema_GenExtCC.gxx + Extrema_GenExtCS.cxx + Extrema_GenExtCS.hxx + Extrema_GenExtPC.gxx + Extrema_GenExtPS.cxx + Extrema_GenExtPS.hxx + Extrema_GenExtSS.cxx + Extrema_GenExtSS.hxx + Extrema_GenLocateExtCC.gxx + Extrema_GenLocateExtCS.cxx + Extrema_GenLocateExtCS.hxx + Extrema_GenLocateExtPC.gxx + Extrema_GenLocateExtPS.cxx + Extrema_GenLocateExtPS.hxx + Extrema_GenLocateExtSS.cxx + Extrema_GenLocateExtSS.hxx + Extrema_GExtPC.gxx + Extrema_GlobOptFuncCC.cxx + Extrema_GlobOptFuncCC.hxx + Extrema_GlobOptFuncCS.cxx + Extrema_GlobOptFuncCS.hxx + Extrema_GlobOptFuncConicS.cxx + Extrema_GlobOptFuncConicS.hxx + Extrema_GlobOptFuncCQuadric.cxx + Extrema_GlobOptFuncCQuadric.hxx + Extrema_GLocateExtPC.gxx + Extrema_HArray1OfPOnCurv.hxx + Extrema_HArray1OfPOnCurv2d.hxx + Extrema_HArray1OfPOnSurf.hxx + Extrema_HArray2OfPOnCurv.hxx + Extrema_HArray2OfPOnCurv2d.hxx + Extrema_HArray2OfPOnSurf.hxx + Extrema_HUBTreeOfSphere.hxx + Extrema_LocateExtCC.cxx + Extrema_LocateExtCC.hxx + Extrema_LocateExtCC2d.cxx + Extrema_LocateExtCC2d.hxx + Extrema_LocateExtPC.hxx + Extrema_LocateExtPC2d.hxx + Extrema_LocateExtPC2d_0.cxx + Extrema_LocateExtPC_0.cxx + Extrema_LocECC.hxx + Extrema_LocECC2d.hxx + Extrema_LocECC2d_0.cxx + Extrema_LocECC_0.cxx + Extrema_LocEPCOfLocateExtPC.hxx + Extrema_LocEPCOfLocateExtPC2d.hxx + Extrema_LocEPCOfLocateExtPC2d_0.cxx + Extrema_LocEPCOfLocateExtPC_0.cxx + Extrema_PCFOfEPCOfELPCOfLocateExtPC.hxx + Extrema_PCFOfEPCOfELPCOfLocateExtPC2d.hxx + Extrema_PCFOfEPCOfELPCOfLocateExtPC2d_0.cxx + Extrema_PCFOfEPCOfELPCOfLocateExtPC_0.cxx + Extrema_PCFOfEPCOfExtPC.hxx + Extrema_PCFOfEPCOfExtPC2d.hxx + Extrema_PCFOfEPCOfExtPC2d_0.cxx + Extrema_PCFOfEPCOfExtPC_0.cxx + Extrema_PCLocFOfLocEPCOfLocateExtPC.hxx + Extrema_PCLocFOfLocEPCOfLocateExtPC2d.hxx + Extrema_PCLocFOfLocEPCOfLocateExtPC2d_0.cxx + Extrema_PCLocFOfLocEPCOfLocateExtPC_0.cxx + Extrema_Point.gxx + Extrema_Point.lxx + Extrema_POnCurv.hxx + Extrema_POnCurv2d.hxx + Extrema_POnCurv2d_0.cxx + Extrema_POnCurv_0.cxx + Extrema_POnSurf.hxx + Extrema_POnSurf.lxx + Extrema_POnSurfParams.hxx + Extrema_POnSurfParams.lxx + Extrema_SequenceOfPOnCurv.hxx + Extrema_SequenceOfPOnCurv2d.hxx + Extrema_SequenceOfPOnSurf.hxx +) diff --git a/src/FEmTool/FEmTool_Assembly.cxx b/src/ModelingData/TKGeomBase/FEmTool/FEmTool_Assembly.cxx similarity index 100% rename from src/FEmTool/FEmTool_Assembly.cxx rename to src/ModelingData/TKGeomBase/FEmTool/FEmTool_Assembly.cxx diff --git a/src/FEmTool/FEmTool_Assembly.hxx b/src/ModelingData/TKGeomBase/FEmTool/FEmTool_Assembly.hxx similarity index 100% rename from src/FEmTool/FEmTool_Assembly.hxx rename to src/ModelingData/TKGeomBase/FEmTool/FEmTool_Assembly.hxx diff --git a/src/FEmTool/FEmTool_AssemblyTable.hxx b/src/ModelingData/TKGeomBase/FEmTool/FEmTool_AssemblyTable.hxx similarity index 100% rename from src/FEmTool/FEmTool_AssemblyTable.hxx rename to src/ModelingData/TKGeomBase/FEmTool/FEmTool_AssemblyTable.hxx diff --git a/src/FEmTool/FEmTool_Curve.cxx b/src/ModelingData/TKGeomBase/FEmTool/FEmTool_Curve.cxx similarity index 100% rename from src/FEmTool/FEmTool_Curve.cxx rename to src/ModelingData/TKGeomBase/FEmTool/FEmTool_Curve.cxx diff --git a/src/FEmTool/FEmTool_Curve.hxx b/src/ModelingData/TKGeomBase/FEmTool/FEmTool_Curve.hxx similarity index 100% rename from src/FEmTool/FEmTool_Curve.hxx rename to src/ModelingData/TKGeomBase/FEmTool/FEmTool_Curve.hxx diff --git a/src/FEmTool/FEmTool_ElementaryCriterion.cxx b/src/ModelingData/TKGeomBase/FEmTool/FEmTool_ElementaryCriterion.cxx similarity index 100% rename from src/FEmTool/FEmTool_ElementaryCriterion.cxx rename to src/ModelingData/TKGeomBase/FEmTool/FEmTool_ElementaryCriterion.cxx diff --git a/src/FEmTool/FEmTool_ElementaryCriterion.hxx b/src/ModelingData/TKGeomBase/FEmTool/FEmTool_ElementaryCriterion.hxx similarity index 100% rename from src/FEmTool/FEmTool_ElementaryCriterion.hxx rename to src/ModelingData/TKGeomBase/FEmTool/FEmTool_ElementaryCriterion.hxx diff --git a/src/FEmTool/FEmTool_ElementsOfRefMatrix.cxx b/src/ModelingData/TKGeomBase/FEmTool/FEmTool_ElementsOfRefMatrix.cxx similarity index 100% rename from src/FEmTool/FEmTool_ElementsOfRefMatrix.cxx rename to src/ModelingData/TKGeomBase/FEmTool/FEmTool_ElementsOfRefMatrix.cxx diff --git a/src/FEmTool/FEmTool_ElementsOfRefMatrix.hxx b/src/ModelingData/TKGeomBase/FEmTool/FEmTool_ElementsOfRefMatrix.hxx similarity index 100% rename from src/FEmTool/FEmTool_ElementsOfRefMatrix.hxx rename to src/ModelingData/TKGeomBase/FEmTool/FEmTool_ElementsOfRefMatrix.hxx diff --git a/src/FEmTool/FEmTool_HAssemblyTable.hxx b/src/ModelingData/TKGeomBase/FEmTool/FEmTool_HAssemblyTable.hxx similarity index 100% rename from src/FEmTool/FEmTool_HAssemblyTable.hxx rename to src/ModelingData/TKGeomBase/FEmTool/FEmTool_HAssemblyTable.hxx diff --git a/src/FEmTool/FEmTool_LinearFlexion.cxx b/src/ModelingData/TKGeomBase/FEmTool/FEmTool_LinearFlexion.cxx similarity index 100% rename from src/FEmTool/FEmTool_LinearFlexion.cxx rename to src/ModelingData/TKGeomBase/FEmTool/FEmTool_LinearFlexion.cxx diff --git a/src/FEmTool/FEmTool_LinearFlexion.hxx b/src/ModelingData/TKGeomBase/FEmTool/FEmTool_LinearFlexion.hxx similarity index 100% rename from src/FEmTool/FEmTool_LinearFlexion.hxx rename to src/ModelingData/TKGeomBase/FEmTool/FEmTool_LinearFlexion.hxx diff --git a/src/FEmTool/FEmTool_LinearJerk.cxx b/src/ModelingData/TKGeomBase/FEmTool/FEmTool_LinearJerk.cxx similarity index 100% rename from src/FEmTool/FEmTool_LinearJerk.cxx rename to src/ModelingData/TKGeomBase/FEmTool/FEmTool_LinearJerk.cxx diff --git a/src/FEmTool/FEmTool_LinearJerk.hxx b/src/ModelingData/TKGeomBase/FEmTool/FEmTool_LinearJerk.hxx similarity index 100% rename from src/FEmTool/FEmTool_LinearJerk.hxx rename to src/ModelingData/TKGeomBase/FEmTool/FEmTool_LinearJerk.hxx diff --git a/src/FEmTool/FEmTool_LinearTension.cxx b/src/ModelingData/TKGeomBase/FEmTool/FEmTool_LinearTension.cxx similarity index 100% rename from src/FEmTool/FEmTool_LinearTension.cxx rename to src/ModelingData/TKGeomBase/FEmTool/FEmTool_LinearTension.cxx diff --git a/src/FEmTool/FEmTool_LinearTension.hxx b/src/ModelingData/TKGeomBase/FEmTool/FEmTool_LinearTension.hxx similarity index 100% rename from src/FEmTool/FEmTool_LinearTension.hxx rename to src/ModelingData/TKGeomBase/FEmTool/FEmTool_LinearTension.hxx diff --git a/src/FEmTool/FEmTool_ListIteratorOfListOfVectors.hxx b/src/ModelingData/TKGeomBase/FEmTool/FEmTool_ListIteratorOfListOfVectors.hxx similarity index 100% rename from src/FEmTool/FEmTool_ListIteratorOfListOfVectors.hxx rename to src/ModelingData/TKGeomBase/FEmTool/FEmTool_ListIteratorOfListOfVectors.hxx diff --git a/src/FEmTool/FEmTool_ListOfVectors.hxx b/src/ModelingData/TKGeomBase/FEmTool/FEmTool_ListOfVectors.hxx similarity index 100% rename from src/FEmTool/FEmTool_ListOfVectors.hxx rename to src/ModelingData/TKGeomBase/FEmTool/FEmTool_ListOfVectors.hxx diff --git a/src/FEmTool/FEmTool_ProfileMatrix.cxx b/src/ModelingData/TKGeomBase/FEmTool/FEmTool_ProfileMatrix.cxx similarity index 100% rename from src/FEmTool/FEmTool_ProfileMatrix.cxx rename to src/ModelingData/TKGeomBase/FEmTool/FEmTool_ProfileMatrix.cxx diff --git a/src/FEmTool/FEmTool_ProfileMatrix.hxx b/src/ModelingData/TKGeomBase/FEmTool/FEmTool_ProfileMatrix.hxx similarity index 100% rename from src/FEmTool/FEmTool_ProfileMatrix.hxx rename to src/ModelingData/TKGeomBase/FEmTool/FEmTool_ProfileMatrix.hxx diff --git a/src/FEmTool/FEmTool_SeqOfLinConstr.hxx b/src/ModelingData/TKGeomBase/FEmTool/FEmTool_SeqOfLinConstr.hxx similarity index 100% rename from src/FEmTool/FEmTool_SeqOfLinConstr.hxx rename to src/ModelingData/TKGeomBase/FEmTool/FEmTool_SeqOfLinConstr.hxx diff --git a/src/FEmTool/FEmTool_SparseMatrix.cxx b/src/ModelingData/TKGeomBase/FEmTool/FEmTool_SparseMatrix.cxx similarity index 100% rename from src/FEmTool/FEmTool_SparseMatrix.cxx rename to src/ModelingData/TKGeomBase/FEmTool/FEmTool_SparseMatrix.cxx diff --git a/src/FEmTool/FEmTool_SparseMatrix.hxx b/src/ModelingData/TKGeomBase/FEmTool/FEmTool_SparseMatrix.hxx similarity index 100% rename from src/FEmTool/FEmTool_SparseMatrix.hxx rename to src/ModelingData/TKGeomBase/FEmTool/FEmTool_SparseMatrix.hxx diff --git a/src/ModelingData/TKGeomBase/FEmTool/FILES.cmake b/src/ModelingData/TKGeomBase/FEmTool/FILES.cmake new file mode 100644 index 0000000000..d7b9c2d396 --- /dev/null +++ b/src/ModelingData/TKGeomBase/FEmTool/FILES.cmake @@ -0,0 +1,28 @@ +# Source files for FEmTool package +set(OCCT_FEmTool_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_FEmTool_FILES + FEmTool_Assembly.cxx + FEmTool_Assembly.hxx + FEmTool_AssemblyTable.hxx + FEmTool_Curve.cxx + FEmTool_Curve.hxx + FEmTool_ElementaryCriterion.cxx + FEmTool_ElementaryCriterion.hxx + FEmTool_ElementsOfRefMatrix.cxx + FEmTool_ElementsOfRefMatrix.hxx + FEmTool_HAssemblyTable.hxx + FEmTool_LinearFlexion.cxx + FEmTool_LinearFlexion.hxx + FEmTool_LinearJerk.cxx + FEmTool_LinearJerk.hxx + FEmTool_LinearTension.cxx + FEmTool_LinearTension.hxx + FEmTool_ListIteratorOfListOfVectors.hxx + FEmTool_ListOfVectors.hxx + FEmTool_ProfileMatrix.cxx + FEmTool_ProfileMatrix.hxx + FEmTool_SeqOfLinConstr.hxx + FEmTool_SparseMatrix.cxx + FEmTool_SparseMatrix.hxx +) diff --git a/src/ModelingData/TKGeomBase/FILES.cmake b/src/ModelingData/TKGeomBase/FILES.cmake new file mode 100644 index 0000000000..cfde496035 --- /dev/null +++ b/src/ModelingData/TKGeomBase/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKGeomBase +set(OCCT_TKGeomBase_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKGeomBase_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/ModelingData/TKGeomBase/GC/FILES.cmake b/src/ModelingData/TKGeomBase/GC/FILES.cmake new file mode 100644 index 0000000000..3566a78a02 --- /dev/null +++ b/src/ModelingData/TKGeomBase/GC/FILES.cmake @@ -0,0 +1,43 @@ +# Source files for GC package +set(OCCT_GC_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_GC_FILES + GC_MakeArcOfCircle.cxx + GC_MakeArcOfCircle.hxx + GC_MakeArcOfEllipse.cxx + GC_MakeArcOfEllipse.hxx + GC_MakeArcOfHyperbola.cxx + GC_MakeArcOfHyperbola.hxx + GC_MakeArcOfParabola.cxx + GC_MakeArcOfParabola.hxx + GC_MakeCircle.cxx + GC_MakeCircle.hxx + GC_MakeConicalSurface.cxx + GC_MakeConicalSurface.hxx + GC_MakeCylindricalSurface.cxx + GC_MakeCylindricalSurface.hxx + GC_MakeEllipse.cxx + GC_MakeEllipse.hxx + GC_MakeHyperbola.cxx + GC_MakeHyperbola.hxx + GC_MakeLine.cxx + GC_MakeLine.hxx + GC_MakeMirror.cxx + GC_MakeMirror.hxx + GC_MakePlane.cxx + GC_MakePlane.hxx + GC_MakeRotation.cxx + GC_MakeRotation.hxx + GC_MakeScale.cxx + GC_MakeScale.hxx + GC_MakeSegment.cxx + GC_MakeSegment.hxx + GC_MakeTranslation.cxx + GC_MakeTranslation.hxx + GC_MakeTrimmedCone.cxx + GC_MakeTrimmedCone.hxx + GC_MakeTrimmedCylinder.cxx + GC_MakeTrimmedCylinder.hxx + GC_Root.hxx + GC_Root.lxx +) diff --git a/src/GC/GC_MakeArcOfCircle.cxx b/src/ModelingData/TKGeomBase/GC/GC_MakeArcOfCircle.cxx similarity index 100% rename from src/GC/GC_MakeArcOfCircle.cxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeArcOfCircle.cxx diff --git a/src/GC/GC_MakeArcOfCircle.hxx b/src/ModelingData/TKGeomBase/GC/GC_MakeArcOfCircle.hxx similarity index 100% rename from src/GC/GC_MakeArcOfCircle.hxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeArcOfCircle.hxx diff --git a/src/GC/GC_MakeArcOfEllipse.cxx b/src/ModelingData/TKGeomBase/GC/GC_MakeArcOfEllipse.cxx similarity index 100% rename from src/GC/GC_MakeArcOfEllipse.cxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeArcOfEllipse.cxx diff --git a/src/GC/GC_MakeArcOfEllipse.hxx b/src/ModelingData/TKGeomBase/GC/GC_MakeArcOfEllipse.hxx similarity index 100% rename from src/GC/GC_MakeArcOfEllipse.hxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeArcOfEllipse.hxx diff --git a/src/GC/GC_MakeArcOfHyperbola.cxx b/src/ModelingData/TKGeomBase/GC/GC_MakeArcOfHyperbola.cxx similarity index 100% rename from src/GC/GC_MakeArcOfHyperbola.cxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeArcOfHyperbola.cxx diff --git a/src/GC/GC_MakeArcOfHyperbola.hxx b/src/ModelingData/TKGeomBase/GC/GC_MakeArcOfHyperbola.hxx similarity index 100% rename from src/GC/GC_MakeArcOfHyperbola.hxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeArcOfHyperbola.hxx diff --git a/src/GC/GC_MakeArcOfParabola.cxx b/src/ModelingData/TKGeomBase/GC/GC_MakeArcOfParabola.cxx similarity index 100% rename from src/GC/GC_MakeArcOfParabola.cxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeArcOfParabola.cxx diff --git a/src/GC/GC_MakeArcOfParabola.hxx b/src/ModelingData/TKGeomBase/GC/GC_MakeArcOfParabola.hxx similarity index 100% rename from src/GC/GC_MakeArcOfParabola.hxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeArcOfParabola.hxx diff --git a/src/GC/GC_MakeCircle.cxx b/src/ModelingData/TKGeomBase/GC/GC_MakeCircle.cxx similarity index 100% rename from src/GC/GC_MakeCircle.cxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeCircle.cxx diff --git a/src/GC/GC_MakeCircle.hxx b/src/ModelingData/TKGeomBase/GC/GC_MakeCircle.hxx similarity index 100% rename from src/GC/GC_MakeCircle.hxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeCircle.hxx diff --git a/src/GC/GC_MakeConicalSurface.cxx b/src/ModelingData/TKGeomBase/GC/GC_MakeConicalSurface.cxx similarity index 100% rename from src/GC/GC_MakeConicalSurface.cxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeConicalSurface.cxx diff --git a/src/GC/GC_MakeConicalSurface.hxx b/src/ModelingData/TKGeomBase/GC/GC_MakeConicalSurface.hxx similarity index 100% rename from src/GC/GC_MakeConicalSurface.hxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeConicalSurface.hxx diff --git a/src/GC/GC_MakeCylindricalSurface.cxx b/src/ModelingData/TKGeomBase/GC/GC_MakeCylindricalSurface.cxx similarity index 100% rename from src/GC/GC_MakeCylindricalSurface.cxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeCylindricalSurface.cxx diff --git a/src/GC/GC_MakeCylindricalSurface.hxx b/src/ModelingData/TKGeomBase/GC/GC_MakeCylindricalSurface.hxx similarity index 100% rename from src/GC/GC_MakeCylindricalSurface.hxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeCylindricalSurface.hxx diff --git a/src/GC/GC_MakeEllipse.cxx b/src/ModelingData/TKGeomBase/GC/GC_MakeEllipse.cxx similarity index 100% rename from src/GC/GC_MakeEllipse.cxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeEllipse.cxx diff --git a/src/GC/GC_MakeEllipse.hxx b/src/ModelingData/TKGeomBase/GC/GC_MakeEllipse.hxx similarity index 100% rename from src/GC/GC_MakeEllipse.hxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeEllipse.hxx diff --git a/src/GC/GC_MakeHyperbola.cxx b/src/ModelingData/TKGeomBase/GC/GC_MakeHyperbola.cxx similarity index 100% rename from src/GC/GC_MakeHyperbola.cxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeHyperbola.cxx diff --git a/src/GC/GC_MakeHyperbola.hxx b/src/ModelingData/TKGeomBase/GC/GC_MakeHyperbola.hxx similarity index 100% rename from src/GC/GC_MakeHyperbola.hxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeHyperbola.hxx diff --git a/src/GC/GC_MakeLine.cxx b/src/ModelingData/TKGeomBase/GC/GC_MakeLine.cxx similarity index 100% rename from src/GC/GC_MakeLine.cxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeLine.cxx diff --git a/src/GC/GC_MakeLine.hxx b/src/ModelingData/TKGeomBase/GC/GC_MakeLine.hxx similarity index 100% rename from src/GC/GC_MakeLine.hxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeLine.hxx diff --git a/src/GC/GC_MakeMirror.cxx b/src/ModelingData/TKGeomBase/GC/GC_MakeMirror.cxx similarity index 100% rename from src/GC/GC_MakeMirror.cxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeMirror.cxx diff --git a/src/GC/GC_MakeMirror.hxx b/src/ModelingData/TKGeomBase/GC/GC_MakeMirror.hxx similarity index 100% rename from src/GC/GC_MakeMirror.hxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeMirror.hxx diff --git a/src/GC/GC_MakePlane.cxx b/src/ModelingData/TKGeomBase/GC/GC_MakePlane.cxx similarity index 100% rename from src/GC/GC_MakePlane.cxx rename to src/ModelingData/TKGeomBase/GC/GC_MakePlane.cxx diff --git a/src/GC/GC_MakePlane.hxx b/src/ModelingData/TKGeomBase/GC/GC_MakePlane.hxx similarity index 100% rename from src/GC/GC_MakePlane.hxx rename to src/ModelingData/TKGeomBase/GC/GC_MakePlane.hxx diff --git a/src/GC/GC_MakeRotation.cxx b/src/ModelingData/TKGeomBase/GC/GC_MakeRotation.cxx similarity index 100% rename from src/GC/GC_MakeRotation.cxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeRotation.cxx diff --git a/src/GC/GC_MakeRotation.hxx b/src/ModelingData/TKGeomBase/GC/GC_MakeRotation.hxx similarity index 100% rename from src/GC/GC_MakeRotation.hxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeRotation.hxx diff --git a/src/GC/GC_MakeScale.cxx b/src/ModelingData/TKGeomBase/GC/GC_MakeScale.cxx similarity index 100% rename from src/GC/GC_MakeScale.cxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeScale.cxx diff --git a/src/GC/GC_MakeScale.hxx b/src/ModelingData/TKGeomBase/GC/GC_MakeScale.hxx similarity index 100% rename from src/GC/GC_MakeScale.hxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeScale.hxx diff --git a/src/GC/GC_MakeSegment.cxx b/src/ModelingData/TKGeomBase/GC/GC_MakeSegment.cxx similarity index 100% rename from src/GC/GC_MakeSegment.cxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeSegment.cxx diff --git a/src/GC/GC_MakeSegment.hxx b/src/ModelingData/TKGeomBase/GC/GC_MakeSegment.hxx similarity index 100% rename from src/GC/GC_MakeSegment.hxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeSegment.hxx diff --git a/src/GC/GC_MakeTranslation.cxx b/src/ModelingData/TKGeomBase/GC/GC_MakeTranslation.cxx similarity index 100% rename from src/GC/GC_MakeTranslation.cxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeTranslation.cxx diff --git a/src/GC/GC_MakeTranslation.hxx b/src/ModelingData/TKGeomBase/GC/GC_MakeTranslation.hxx similarity index 100% rename from src/GC/GC_MakeTranslation.hxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeTranslation.hxx diff --git a/src/GC/GC_MakeTrimmedCone.cxx b/src/ModelingData/TKGeomBase/GC/GC_MakeTrimmedCone.cxx similarity index 100% rename from src/GC/GC_MakeTrimmedCone.cxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeTrimmedCone.cxx diff --git a/src/GC/GC_MakeTrimmedCone.hxx b/src/ModelingData/TKGeomBase/GC/GC_MakeTrimmedCone.hxx similarity index 100% rename from src/GC/GC_MakeTrimmedCone.hxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeTrimmedCone.hxx diff --git a/src/GC/GC_MakeTrimmedCylinder.cxx b/src/ModelingData/TKGeomBase/GC/GC_MakeTrimmedCylinder.cxx similarity index 100% rename from src/GC/GC_MakeTrimmedCylinder.cxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeTrimmedCylinder.cxx diff --git a/src/GC/GC_MakeTrimmedCylinder.hxx b/src/ModelingData/TKGeomBase/GC/GC_MakeTrimmedCylinder.hxx similarity index 100% rename from src/GC/GC_MakeTrimmedCylinder.hxx rename to src/ModelingData/TKGeomBase/GC/GC_MakeTrimmedCylinder.hxx diff --git a/src/GC/GC_Root.hxx b/src/ModelingData/TKGeomBase/GC/GC_Root.hxx similarity index 100% rename from src/GC/GC_Root.hxx rename to src/ModelingData/TKGeomBase/GC/GC_Root.hxx diff --git a/src/GC/GC_Root.lxx b/src/ModelingData/TKGeomBase/GC/GC_Root.lxx similarity index 100% rename from src/GC/GC_Root.lxx rename to src/ModelingData/TKGeomBase/GC/GC_Root.lxx diff --git a/src/ModelingData/TKGeomBase/GCE2d/FILES.cmake b/src/ModelingData/TKGeomBase/GCE2d/FILES.cmake new file mode 100644 index 0000000000..4f0bd5c2b4 --- /dev/null +++ b/src/ModelingData/TKGeomBase/GCE2d/FILES.cmake @@ -0,0 +1,35 @@ +# Source files for GCE2d package +set(OCCT_GCE2d_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_GCE2d_FILES + GCE2d_MakeArcOfCircle.cxx + GCE2d_MakeArcOfCircle.hxx + GCE2d_MakeArcOfEllipse.cxx + GCE2d_MakeArcOfEllipse.hxx + GCE2d_MakeArcOfHyperbola.cxx + GCE2d_MakeArcOfHyperbola.hxx + GCE2d_MakeArcOfParabola.cxx + GCE2d_MakeArcOfParabola.hxx + GCE2d_MakeCircle.cxx + GCE2d_MakeCircle.hxx + GCE2d_MakeEllipse.cxx + GCE2d_MakeEllipse.hxx + GCE2d_MakeHyperbola.cxx + GCE2d_MakeHyperbola.hxx + GCE2d_MakeLine.cxx + GCE2d_MakeLine.hxx + GCE2d_MakeMirror.cxx + GCE2d_MakeMirror.hxx + GCE2d_MakeParabola.cxx + GCE2d_MakeParabola.hxx + GCE2d_MakeRotation.cxx + GCE2d_MakeRotation.hxx + GCE2d_MakeScale.cxx + GCE2d_MakeScale.hxx + GCE2d_MakeSegment.cxx + GCE2d_MakeSegment.hxx + GCE2d_MakeTranslation.cxx + GCE2d_MakeTranslation.hxx + GCE2d_Root.hxx + GCE2d_Root.lxx +) diff --git a/src/GCE2d/GCE2d_MakeArcOfCircle.cxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeArcOfCircle.cxx similarity index 100% rename from src/GCE2d/GCE2d_MakeArcOfCircle.cxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeArcOfCircle.cxx diff --git a/src/GCE2d/GCE2d_MakeArcOfCircle.hxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeArcOfCircle.hxx similarity index 100% rename from src/GCE2d/GCE2d_MakeArcOfCircle.hxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeArcOfCircle.hxx diff --git a/src/GCE2d/GCE2d_MakeArcOfEllipse.cxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeArcOfEllipse.cxx similarity index 100% rename from src/GCE2d/GCE2d_MakeArcOfEllipse.cxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeArcOfEllipse.cxx diff --git a/src/GCE2d/GCE2d_MakeArcOfEllipse.hxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeArcOfEllipse.hxx similarity index 100% rename from src/GCE2d/GCE2d_MakeArcOfEllipse.hxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeArcOfEllipse.hxx diff --git a/src/GCE2d/GCE2d_MakeArcOfHyperbola.cxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeArcOfHyperbola.cxx similarity index 100% rename from src/GCE2d/GCE2d_MakeArcOfHyperbola.cxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeArcOfHyperbola.cxx diff --git a/src/GCE2d/GCE2d_MakeArcOfHyperbola.hxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeArcOfHyperbola.hxx similarity index 100% rename from src/GCE2d/GCE2d_MakeArcOfHyperbola.hxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeArcOfHyperbola.hxx diff --git a/src/GCE2d/GCE2d_MakeArcOfParabola.cxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeArcOfParabola.cxx similarity index 100% rename from src/GCE2d/GCE2d_MakeArcOfParabola.cxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeArcOfParabola.cxx diff --git a/src/GCE2d/GCE2d_MakeArcOfParabola.hxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeArcOfParabola.hxx similarity index 100% rename from src/GCE2d/GCE2d_MakeArcOfParabola.hxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeArcOfParabola.hxx diff --git a/src/GCE2d/GCE2d_MakeCircle.cxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeCircle.cxx similarity index 100% rename from src/GCE2d/GCE2d_MakeCircle.cxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeCircle.cxx diff --git a/src/GCE2d/GCE2d_MakeCircle.hxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeCircle.hxx similarity index 100% rename from src/GCE2d/GCE2d_MakeCircle.hxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeCircle.hxx diff --git a/src/GCE2d/GCE2d_MakeEllipse.cxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeEllipse.cxx similarity index 100% rename from src/GCE2d/GCE2d_MakeEllipse.cxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeEllipse.cxx diff --git a/src/GCE2d/GCE2d_MakeEllipse.hxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeEllipse.hxx similarity index 100% rename from src/GCE2d/GCE2d_MakeEllipse.hxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeEllipse.hxx diff --git a/src/GCE2d/GCE2d_MakeHyperbola.cxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeHyperbola.cxx similarity index 100% rename from src/GCE2d/GCE2d_MakeHyperbola.cxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeHyperbola.cxx diff --git a/src/GCE2d/GCE2d_MakeHyperbola.hxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeHyperbola.hxx similarity index 100% rename from src/GCE2d/GCE2d_MakeHyperbola.hxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeHyperbola.hxx diff --git a/src/GCE2d/GCE2d_MakeLine.cxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeLine.cxx similarity index 100% rename from src/GCE2d/GCE2d_MakeLine.cxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeLine.cxx diff --git a/src/GCE2d/GCE2d_MakeLine.hxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeLine.hxx similarity index 100% rename from src/GCE2d/GCE2d_MakeLine.hxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeLine.hxx diff --git a/src/GCE2d/GCE2d_MakeMirror.cxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeMirror.cxx similarity index 100% rename from src/GCE2d/GCE2d_MakeMirror.cxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeMirror.cxx diff --git a/src/GCE2d/GCE2d_MakeMirror.hxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeMirror.hxx similarity index 100% rename from src/GCE2d/GCE2d_MakeMirror.hxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeMirror.hxx diff --git a/src/GCE2d/GCE2d_MakeParabola.cxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeParabola.cxx similarity index 100% rename from src/GCE2d/GCE2d_MakeParabola.cxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeParabola.cxx diff --git a/src/GCE2d/GCE2d_MakeParabola.hxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeParabola.hxx similarity index 100% rename from src/GCE2d/GCE2d_MakeParabola.hxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeParabola.hxx diff --git a/src/GCE2d/GCE2d_MakeRotation.cxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeRotation.cxx similarity index 100% rename from src/GCE2d/GCE2d_MakeRotation.cxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeRotation.cxx diff --git a/src/GCE2d/GCE2d_MakeRotation.hxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeRotation.hxx similarity index 100% rename from src/GCE2d/GCE2d_MakeRotation.hxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeRotation.hxx diff --git a/src/GCE2d/GCE2d_MakeScale.cxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeScale.cxx similarity index 100% rename from src/GCE2d/GCE2d_MakeScale.cxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeScale.cxx diff --git a/src/GCE2d/GCE2d_MakeScale.hxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeScale.hxx similarity index 100% rename from src/GCE2d/GCE2d_MakeScale.hxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeScale.hxx diff --git a/src/GCE2d/GCE2d_MakeSegment.cxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeSegment.cxx similarity index 100% rename from src/GCE2d/GCE2d_MakeSegment.cxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeSegment.cxx diff --git a/src/GCE2d/GCE2d_MakeSegment.hxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeSegment.hxx similarity index 100% rename from src/GCE2d/GCE2d_MakeSegment.hxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeSegment.hxx diff --git a/src/GCE2d/GCE2d_MakeTranslation.cxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeTranslation.cxx similarity index 100% rename from src/GCE2d/GCE2d_MakeTranslation.cxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeTranslation.cxx diff --git a/src/GCE2d/GCE2d_MakeTranslation.hxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeTranslation.hxx similarity index 100% rename from src/GCE2d/GCE2d_MakeTranslation.hxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_MakeTranslation.hxx diff --git a/src/GCE2d/GCE2d_Root.hxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_Root.hxx similarity index 100% rename from src/GCE2d/GCE2d_Root.hxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_Root.hxx diff --git a/src/GCE2d/GCE2d_Root.lxx b/src/ModelingData/TKGeomBase/GCE2d/GCE2d_Root.lxx similarity index 100% rename from src/GCE2d/GCE2d_Root.lxx rename to src/ModelingData/TKGeomBase/GCE2d/GCE2d_Root.lxx diff --git a/src/ModelingData/TKGeomBase/GCPnts/FILES.cmake b/src/ModelingData/TKGeomBase/GCPnts/FILES.cmake new file mode 100644 index 0000000000..b74dcd8514 --- /dev/null +++ b/src/ModelingData/TKGeomBase/GCPnts/FILES.cmake @@ -0,0 +1,24 @@ +# Source files for GCPnts package +set(OCCT_GCPnts_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_GCPnts_FILES + GCPnts_AbscissaPoint.cxx + GCPnts_AbscissaPoint.hxx + GCPnts_AbscissaType.hxx + GCPnts_DeflectionType.hxx + GCPnts_QuasiUniformAbscissa.cxx + GCPnts_QuasiUniformAbscissa.hxx + GCPnts_QuasiUniformDeflection.cxx + GCPnts_QuasiUniformDeflection.hxx + GCPnts_TangentialDeflection.cxx + GCPnts_TangentialDeflection.hxx + GCPnts_TCurveTypes.hxx + GCPnts_UniformAbscissa.cxx + GCPnts_UniformAbscissa.hxx + GCPnts_UniformDeflection.cxx + GCPnts_UniformDeflection.hxx + GCPnts_DistFunction.hxx + GCPnts_DistFunction.cxx + GCPnts_DistFunction2d.hxx + GCPnts_DistFunction2d.cxx +) diff --git a/src/GCPnts/GCPnts_AbscissaPoint.cxx b/src/ModelingData/TKGeomBase/GCPnts/GCPnts_AbscissaPoint.cxx similarity index 100% rename from src/GCPnts/GCPnts_AbscissaPoint.cxx rename to src/ModelingData/TKGeomBase/GCPnts/GCPnts_AbscissaPoint.cxx diff --git a/src/GCPnts/GCPnts_AbscissaPoint.hxx b/src/ModelingData/TKGeomBase/GCPnts/GCPnts_AbscissaPoint.hxx similarity index 100% rename from src/GCPnts/GCPnts_AbscissaPoint.hxx rename to src/ModelingData/TKGeomBase/GCPnts/GCPnts_AbscissaPoint.hxx diff --git a/src/GCPnts/GCPnts_AbscissaType.hxx b/src/ModelingData/TKGeomBase/GCPnts/GCPnts_AbscissaType.hxx similarity index 100% rename from src/GCPnts/GCPnts_AbscissaType.hxx rename to src/ModelingData/TKGeomBase/GCPnts/GCPnts_AbscissaType.hxx diff --git a/src/GCPnts/GCPnts_DeflectionType.hxx b/src/ModelingData/TKGeomBase/GCPnts/GCPnts_DeflectionType.hxx similarity index 100% rename from src/GCPnts/GCPnts_DeflectionType.hxx rename to src/ModelingData/TKGeomBase/GCPnts/GCPnts_DeflectionType.hxx diff --git a/src/GCPnts/GCPnts_DistFunction.cxx b/src/ModelingData/TKGeomBase/GCPnts/GCPnts_DistFunction.cxx similarity index 100% rename from src/GCPnts/GCPnts_DistFunction.cxx rename to src/ModelingData/TKGeomBase/GCPnts/GCPnts_DistFunction.cxx diff --git a/src/GCPnts/GCPnts_DistFunction.hxx b/src/ModelingData/TKGeomBase/GCPnts/GCPnts_DistFunction.hxx similarity index 100% rename from src/GCPnts/GCPnts_DistFunction.hxx rename to src/ModelingData/TKGeomBase/GCPnts/GCPnts_DistFunction.hxx diff --git a/src/GCPnts/GCPnts_DistFunction2d.cxx b/src/ModelingData/TKGeomBase/GCPnts/GCPnts_DistFunction2d.cxx similarity index 100% rename from src/GCPnts/GCPnts_DistFunction2d.cxx rename to src/ModelingData/TKGeomBase/GCPnts/GCPnts_DistFunction2d.cxx diff --git a/src/GCPnts/GCPnts_DistFunction2d.hxx b/src/ModelingData/TKGeomBase/GCPnts/GCPnts_DistFunction2d.hxx similarity index 100% rename from src/GCPnts/GCPnts_DistFunction2d.hxx rename to src/ModelingData/TKGeomBase/GCPnts/GCPnts_DistFunction2d.hxx diff --git a/src/GCPnts/GCPnts_QuasiUniformAbscissa.cxx b/src/ModelingData/TKGeomBase/GCPnts/GCPnts_QuasiUniformAbscissa.cxx similarity index 100% rename from src/GCPnts/GCPnts_QuasiUniformAbscissa.cxx rename to src/ModelingData/TKGeomBase/GCPnts/GCPnts_QuasiUniformAbscissa.cxx diff --git a/src/GCPnts/GCPnts_QuasiUniformAbscissa.hxx b/src/ModelingData/TKGeomBase/GCPnts/GCPnts_QuasiUniformAbscissa.hxx similarity index 100% rename from src/GCPnts/GCPnts_QuasiUniformAbscissa.hxx rename to src/ModelingData/TKGeomBase/GCPnts/GCPnts_QuasiUniformAbscissa.hxx diff --git a/src/GCPnts/GCPnts_QuasiUniformDeflection.cxx b/src/ModelingData/TKGeomBase/GCPnts/GCPnts_QuasiUniformDeflection.cxx similarity index 100% rename from src/GCPnts/GCPnts_QuasiUniformDeflection.cxx rename to src/ModelingData/TKGeomBase/GCPnts/GCPnts_QuasiUniformDeflection.cxx diff --git a/src/GCPnts/GCPnts_QuasiUniformDeflection.hxx b/src/ModelingData/TKGeomBase/GCPnts/GCPnts_QuasiUniformDeflection.hxx similarity index 100% rename from src/GCPnts/GCPnts_QuasiUniformDeflection.hxx rename to src/ModelingData/TKGeomBase/GCPnts/GCPnts_QuasiUniformDeflection.hxx diff --git a/src/GCPnts/GCPnts_TCurveTypes.hxx b/src/ModelingData/TKGeomBase/GCPnts/GCPnts_TCurveTypes.hxx similarity index 100% rename from src/GCPnts/GCPnts_TCurveTypes.hxx rename to src/ModelingData/TKGeomBase/GCPnts/GCPnts_TCurveTypes.hxx diff --git a/src/GCPnts/GCPnts_TangentialDeflection.cxx b/src/ModelingData/TKGeomBase/GCPnts/GCPnts_TangentialDeflection.cxx similarity index 100% rename from src/GCPnts/GCPnts_TangentialDeflection.cxx rename to src/ModelingData/TKGeomBase/GCPnts/GCPnts_TangentialDeflection.cxx diff --git a/src/GCPnts/GCPnts_TangentialDeflection.hxx b/src/ModelingData/TKGeomBase/GCPnts/GCPnts_TangentialDeflection.hxx similarity index 100% rename from src/GCPnts/GCPnts_TangentialDeflection.hxx rename to src/ModelingData/TKGeomBase/GCPnts/GCPnts_TangentialDeflection.hxx diff --git a/src/GCPnts/GCPnts_UniformAbscissa.cxx b/src/ModelingData/TKGeomBase/GCPnts/GCPnts_UniformAbscissa.cxx similarity index 100% rename from src/GCPnts/GCPnts_UniformAbscissa.cxx rename to src/ModelingData/TKGeomBase/GCPnts/GCPnts_UniformAbscissa.cxx diff --git a/src/GCPnts/GCPnts_UniformAbscissa.hxx b/src/ModelingData/TKGeomBase/GCPnts/GCPnts_UniformAbscissa.hxx similarity index 100% rename from src/GCPnts/GCPnts_UniformAbscissa.hxx rename to src/ModelingData/TKGeomBase/GCPnts/GCPnts_UniformAbscissa.hxx diff --git a/src/GCPnts/GCPnts_UniformDeflection.cxx b/src/ModelingData/TKGeomBase/GCPnts/GCPnts_UniformDeflection.cxx similarity index 100% rename from src/GCPnts/GCPnts_UniformDeflection.cxx rename to src/ModelingData/TKGeomBase/GCPnts/GCPnts_UniformDeflection.cxx diff --git a/src/GCPnts/GCPnts_UniformDeflection.hxx b/src/ModelingData/TKGeomBase/GCPnts/GCPnts_UniformDeflection.hxx similarity index 100% rename from src/GCPnts/GCPnts_UniformDeflection.hxx rename to src/ModelingData/TKGeomBase/GCPnts/GCPnts_UniformDeflection.hxx diff --git a/src/ModelingData/TKGeomBase/Geom2dConvert/FILES.cmake b/src/ModelingData/TKGeomBase/Geom2dConvert/FILES.cmake new file mode 100644 index 0000000000..3cb2015cb9 --- /dev/null +++ b/src/ModelingData/TKGeomBase/Geom2dConvert/FILES.cmake @@ -0,0 +1,20 @@ +# Source files for Geom2dConvert package +set(OCCT_Geom2dConvert_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Geom2dConvert_FILES + Geom2dConvert.cxx + Geom2dConvert.hxx + Geom2dConvert_ApproxArcsSegments.cxx + Geom2dConvert_ApproxArcsSegments.hxx + Geom2dConvert_ApproxCurve.cxx + Geom2dConvert_ApproxCurve.hxx + Geom2dConvert_BSplineCurveKnotSplitting.cxx + Geom2dConvert_BSplineCurveKnotSplitting.hxx + Geom2dConvert_BSplineCurveToBezierCurve.cxx + Geom2dConvert_BSplineCurveToBezierCurve.hxx + Geom2dConvert_CompCurveToBSplineCurve.cxx + Geom2dConvert_CompCurveToBSplineCurve.hxx + Geom2dConvert_PPoint.cxx + Geom2dConvert_PPoint.hxx + Geom2dConvert_SequenceOfPPoint.hxx +) diff --git a/src/Geom2dConvert/Geom2dConvert.cxx b/src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert.cxx similarity index 100% rename from src/Geom2dConvert/Geom2dConvert.cxx rename to src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert.cxx diff --git a/src/Geom2dConvert/Geom2dConvert.hxx b/src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert.hxx similarity index 100% rename from src/Geom2dConvert/Geom2dConvert.hxx rename to src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert.hxx diff --git a/src/Geom2dConvert/Geom2dConvert_ApproxArcsSegments.cxx b/src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_ApproxArcsSegments.cxx similarity index 100% rename from src/Geom2dConvert/Geom2dConvert_ApproxArcsSegments.cxx rename to src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_ApproxArcsSegments.cxx diff --git a/src/Geom2dConvert/Geom2dConvert_ApproxArcsSegments.hxx b/src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_ApproxArcsSegments.hxx similarity index 100% rename from src/Geom2dConvert/Geom2dConvert_ApproxArcsSegments.hxx rename to src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_ApproxArcsSegments.hxx diff --git a/src/Geom2dConvert/Geom2dConvert_ApproxCurve.cxx b/src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_ApproxCurve.cxx similarity index 100% rename from src/Geom2dConvert/Geom2dConvert_ApproxCurve.cxx rename to src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_ApproxCurve.cxx diff --git a/src/Geom2dConvert/Geom2dConvert_ApproxCurve.hxx b/src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_ApproxCurve.hxx similarity index 100% rename from src/Geom2dConvert/Geom2dConvert_ApproxCurve.hxx rename to src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_ApproxCurve.hxx diff --git a/src/Geom2dConvert/Geom2dConvert_BSplineCurveKnotSplitting.cxx b/src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_BSplineCurveKnotSplitting.cxx similarity index 100% rename from src/Geom2dConvert/Geom2dConvert_BSplineCurveKnotSplitting.cxx rename to src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_BSplineCurveKnotSplitting.cxx diff --git a/src/Geom2dConvert/Geom2dConvert_BSplineCurveKnotSplitting.hxx b/src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_BSplineCurveKnotSplitting.hxx similarity index 100% rename from src/Geom2dConvert/Geom2dConvert_BSplineCurveKnotSplitting.hxx rename to src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_BSplineCurveKnotSplitting.hxx diff --git a/src/Geom2dConvert/Geom2dConvert_BSplineCurveToBezierCurve.cxx b/src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_BSplineCurveToBezierCurve.cxx similarity index 100% rename from src/Geom2dConvert/Geom2dConvert_BSplineCurveToBezierCurve.cxx rename to src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_BSplineCurveToBezierCurve.cxx diff --git a/src/Geom2dConvert/Geom2dConvert_BSplineCurveToBezierCurve.hxx b/src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_BSplineCurveToBezierCurve.hxx similarity index 100% rename from src/Geom2dConvert/Geom2dConvert_BSplineCurveToBezierCurve.hxx rename to src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_BSplineCurveToBezierCurve.hxx diff --git a/src/Geom2dConvert/Geom2dConvert_CompCurveToBSplineCurve.cxx b/src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_CompCurveToBSplineCurve.cxx similarity index 100% rename from src/Geom2dConvert/Geom2dConvert_CompCurveToBSplineCurve.cxx rename to src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_CompCurveToBSplineCurve.cxx diff --git a/src/Geom2dConvert/Geom2dConvert_CompCurveToBSplineCurve.hxx b/src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_CompCurveToBSplineCurve.hxx similarity index 100% rename from src/Geom2dConvert/Geom2dConvert_CompCurveToBSplineCurve.hxx rename to src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_CompCurveToBSplineCurve.hxx diff --git a/src/Geom2dConvert/Geom2dConvert_PPoint.cxx b/src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_PPoint.cxx similarity index 100% rename from src/Geom2dConvert/Geom2dConvert_PPoint.cxx rename to src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_PPoint.cxx diff --git a/src/Geom2dConvert/Geom2dConvert_PPoint.hxx b/src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_PPoint.hxx similarity index 100% rename from src/Geom2dConvert/Geom2dConvert_PPoint.hxx rename to src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_PPoint.hxx diff --git a/src/Geom2dConvert/Geom2dConvert_SequenceOfPPoint.hxx b/src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_SequenceOfPPoint.hxx similarity index 100% rename from src/Geom2dConvert/Geom2dConvert_SequenceOfPPoint.hxx rename to src/ModelingData/TKGeomBase/Geom2dConvert/Geom2dConvert_SequenceOfPPoint.hxx diff --git a/src/ModelingData/TKGeomBase/GeomConvert/FILES.cmake b/src/ModelingData/TKGeomBase/GeomConvert/FILES.cmake new file mode 100644 index 0000000000..3d78deed79 --- /dev/null +++ b/src/ModelingData/TKGeomBase/GeomConvert/FILES.cmake @@ -0,0 +1,38 @@ +# Source files for GeomConvert package +set(OCCT_GeomConvert_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_GeomConvert_FILES + GeomConvert.cxx + GeomConvert.hxx + GeomConvert_1.cxx + GeomConvert_ApproxCurve.cxx + GeomConvert_ApproxCurve.hxx + GeomConvert_ApproxSurface.cxx + GeomConvert_ApproxSurface.hxx + GeomConvert_BSplineCurveKnotSplitting.cxx + GeomConvert_BSplineCurveKnotSplitting.hxx + GeomConvert_BSplineCurveToBezierCurve.cxx + GeomConvert_BSplineCurveToBezierCurve.hxx + GeomConvert_BSplineSurfaceKnotSplitting.cxx + GeomConvert_BSplineSurfaceKnotSplitting.hxx + GeomConvert_BSplineSurfaceToBezierSurface.cxx + GeomConvert_BSplineSurfaceToBezierSurface.hxx + GeomConvert_CompBezierSurfacesToBSplineSurface.cxx + GeomConvert_CompBezierSurfacesToBSplineSurface.hxx + GeomConvert_CompBezierSurfacesToBSplineSurface.lxx + GeomConvert_CompCurveToBSplineCurve.cxx + GeomConvert_CompCurveToBSplineCurve.hxx + GeomConvert_Units.cxx + GeomConvert_Units.hxx + GeomConvert_CurveToAnaCurve.cxx + GeomConvert_CurveToAnaCurve.hxx + GeomConvert_SurfToAnaSurf.cxx + GeomConvert_SurfToAnaSurf.hxx + GeomConvert_ConvType.hxx + GeomConvert_FuncSphereLSDist.cxx + GeomConvert_FuncSphereLSDist.hxx + GeomConvert_FuncCylinderLSDist.cxx + GeomConvert_FuncCylinderLSDist.hxx + GeomConvert_FuncConeLSDist.cxx + GeomConvert_FuncConeLSDist.hxx +) diff --git a/src/GeomConvert/GeomConvert.cxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert.cxx similarity index 100% rename from src/GeomConvert/GeomConvert.cxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert.cxx diff --git a/src/GeomConvert/GeomConvert.hxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert.hxx similarity index 100% rename from src/GeomConvert/GeomConvert.hxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert.hxx diff --git a/src/GeomConvert/GeomConvert_1.cxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_1.cxx similarity index 100% rename from src/GeomConvert/GeomConvert_1.cxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_1.cxx diff --git a/src/GeomConvert/GeomConvert_ApproxCurve.cxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_ApproxCurve.cxx similarity index 100% rename from src/GeomConvert/GeomConvert_ApproxCurve.cxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_ApproxCurve.cxx diff --git a/src/GeomConvert/GeomConvert_ApproxCurve.hxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_ApproxCurve.hxx similarity index 100% rename from src/GeomConvert/GeomConvert_ApproxCurve.hxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_ApproxCurve.hxx diff --git a/src/GeomConvert/GeomConvert_ApproxSurface.cxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_ApproxSurface.cxx similarity index 100% rename from src/GeomConvert/GeomConvert_ApproxSurface.cxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_ApproxSurface.cxx diff --git a/src/GeomConvert/GeomConvert_ApproxSurface.hxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_ApproxSurface.hxx similarity index 100% rename from src/GeomConvert/GeomConvert_ApproxSurface.hxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_ApproxSurface.hxx diff --git a/src/GeomConvert/GeomConvert_BSplineCurveKnotSplitting.cxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_BSplineCurveKnotSplitting.cxx similarity index 100% rename from src/GeomConvert/GeomConvert_BSplineCurveKnotSplitting.cxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_BSplineCurveKnotSplitting.cxx diff --git a/src/GeomConvert/GeomConvert_BSplineCurveKnotSplitting.hxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_BSplineCurveKnotSplitting.hxx similarity index 100% rename from src/GeomConvert/GeomConvert_BSplineCurveKnotSplitting.hxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_BSplineCurveKnotSplitting.hxx diff --git a/src/GeomConvert/GeomConvert_BSplineCurveToBezierCurve.cxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_BSplineCurveToBezierCurve.cxx similarity index 100% rename from src/GeomConvert/GeomConvert_BSplineCurveToBezierCurve.cxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_BSplineCurveToBezierCurve.cxx diff --git a/src/GeomConvert/GeomConvert_BSplineCurveToBezierCurve.hxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_BSplineCurveToBezierCurve.hxx similarity index 100% rename from src/GeomConvert/GeomConvert_BSplineCurveToBezierCurve.hxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_BSplineCurveToBezierCurve.hxx diff --git a/src/GeomConvert/GeomConvert_BSplineSurfaceKnotSplitting.cxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_BSplineSurfaceKnotSplitting.cxx similarity index 100% rename from src/GeomConvert/GeomConvert_BSplineSurfaceKnotSplitting.cxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_BSplineSurfaceKnotSplitting.cxx diff --git a/src/GeomConvert/GeomConvert_BSplineSurfaceKnotSplitting.hxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_BSplineSurfaceKnotSplitting.hxx similarity index 100% rename from src/GeomConvert/GeomConvert_BSplineSurfaceKnotSplitting.hxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_BSplineSurfaceKnotSplitting.hxx diff --git a/src/GeomConvert/GeomConvert_BSplineSurfaceToBezierSurface.cxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_BSplineSurfaceToBezierSurface.cxx similarity index 100% rename from src/GeomConvert/GeomConvert_BSplineSurfaceToBezierSurface.cxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_BSplineSurfaceToBezierSurface.cxx diff --git a/src/GeomConvert/GeomConvert_BSplineSurfaceToBezierSurface.hxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_BSplineSurfaceToBezierSurface.hxx similarity index 100% rename from src/GeomConvert/GeomConvert_BSplineSurfaceToBezierSurface.hxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_BSplineSurfaceToBezierSurface.hxx diff --git a/src/GeomConvert/GeomConvert_CompBezierSurfacesToBSplineSurface.cxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_CompBezierSurfacesToBSplineSurface.cxx similarity index 100% rename from src/GeomConvert/GeomConvert_CompBezierSurfacesToBSplineSurface.cxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_CompBezierSurfacesToBSplineSurface.cxx diff --git a/src/GeomConvert/GeomConvert_CompBezierSurfacesToBSplineSurface.hxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_CompBezierSurfacesToBSplineSurface.hxx similarity index 100% rename from src/GeomConvert/GeomConvert_CompBezierSurfacesToBSplineSurface.hxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_CompBezierSurfacesToBSplineSurface.hxx diff --git a/src/GeomConvert/GeomConvert_CompBezierSurfacesToBSplineSurface.lxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_CompBezierSurfacesToBSplineSurface.lxx similarity index 100% rename from src/GeomConvert/GeomConvert_CompBezierSurfacesToBSplineSurface.lxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_CompBezierSurfacesToBSplineSurface.lxx diff --git a/src/GeomConvert/GeomConvert_CompCurveToBSplineCurve.cxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_CompCurveToBSplineCurve.cxx similarity index 100% rename from src/GeomConvert/GeomConvert_CompCurveToBSplineCurve.cxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_CompCurveToBSplineCurve.cxx diff --git a/src/GeomConvert/GeomConvert_CompCurveToBSplineCurve.hxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_CompCurveToBSplineCurve.hxx similarity index 100% rename from src/GeomConvert/GeomConvert_CompCurveToBSplineCurve.hxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_CompCurveToBSplineCurve.hxx diff --git a/src/GeomConvert/GeomConvert_ConvType.hxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_ConvType.hxx similarity index 100% rename from src/GeomConvert/GeomConvert_ConvType.hxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_ConvType.hxx diff --git a/src/GeomConvert/GeomConvert_CurveToAnaCurve.cxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_CurveToAnaCurve.cxx similarity index 100% rename from src/GeomConvert/GeomConvert_CurveToAnaCurve.cxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_CurveToAnaCurve.cxx diff --git a/src/GeomConvert/GeomConvert_CurveToAnaCurve.hxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_CurveToAnaCurve.hxx similarity index 100% rename from src/GeomConvert/GeomConvert_CurveToAnaCurve.hxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_CurveToAnaCurve.hxx diff --git a/src/GeomConvert/GeomConvert_FuncConeLSDist.cxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_FuncConeLSDist.cxx similarity index 100% rename from src/GeomConvert/GeomConvert_FuncConeLSDist.cxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_FuncConeLSDist.cxx diff --git a/src/GeomConvert/GeomConvert_FuncConeLSDist.hxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_FuncConeLSDist.hxx similarity index 100% rename from src/GeomConvert/GeomConvert_FuncConeLSDist.hxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_FuncConeLSDist.hxx diff --git a/src/GeomConvert/GeomConvert_FuncCylinderLSDist.cxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_FuncCylinderLSDist.cxx similarity index 100% rename from src/GeomConvert/GeomConvert_FuncCylinderLSDist.cxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_FuncCylinderLSDist.cxx diff --git a/src/GeomConvert/GeomConvert_FuncCylinderLSDist.hxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_FuncCylinderLSDist.hxx similarity index 100% rename from src/GeomConvert/GeomConvert_FuncCylinderLSDist.hxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_FuncCylinderLSDist.hxx diff --git a/src/GeomConvert/GeomConvert_FuncSphereLSDist.cxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_FuncSphereLSDist.cxx similarity index 100% rename from src/GeomConvert/GeomConvert_FuncSphereLSDist.cxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_FuncSphereLSDist.cxx diff --git a/src/GeomConvert/GeomConvert_FuncSphereLSDist.hxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_FuncSphereLSDist.hxx similarity index 100% rename from src/GeomConvert/GeomConvert_FuncSphereLSDist.hxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_FuncSphereLSDist.hxx diff --git a/src/GeomConvert/GeomConvert_SurfToAnaSurf.cxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_SurfToAnaSurf.cxx similarity index 100% rename from src/GeomConvert/GeomConvert_SurfToAnaSurf.cxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_SurfToAnaSurf.cxx diff --git a/src/GeomConvert/GeomConvert_SurfToAnaSurf.hxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_SurfToAnaSurf.hxx similarity index 100% rename from src/GeomConvert/GeomConvert_SurfToAnaSurf.hxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_SurfToAnaSurf.hxx diff --git a/src/GeomConvert/GeomConvert_Units.cxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_Units.cxx similarity index 100% rename from src/GeomConvert/GeomConvert_Units.cxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_Units.cxx diff --git a/src/GeomConvert/GeomConvert_Units.hxx b/src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_Units.hxx similarity index 100% rename from src/GeomConvert/GeomConvert_Units.hxx rename to src/ModelingData/TKGeomBase/GeomConvert/GeomConvert_Units.hxx diff --git a/src/ModelingData/TKGeomBase/GeomLib/FILES.cmake b/src/ModelingData/TKGeomBase/GeomLib/FILES.cmake new file mode 100644 index 0000000000..07bd979a13 --- /dev/null +++ b/src/ModelingData/TKGeomBase/GeomLib/FILES.cmake @@ -0,0 +1,34 @@ +# Source files for GeomLib package +set(OCCT_GeomLib_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_GeomLib_FILES + GeomLib.cxx + GeomLib.hxx + GeomLib_Array1OfMat.hxx + GeomLib_Check2dBSplineCurve.cxx + GeomLib_Check2dBSplineCurve.hxx + GeomLib_Check2dBSplineCurve.lxx + GeomLib_CheckCurveOnSurface.cxx + GeomLib_CheckCurveOnSurface.hxx + GeomLib_CheckBSplineCurve.cxx + GeomLib_CheckBSplineCurve.hxx + GeomLib_CheckBSplineCurve.lxx + GeomLib_DenominatorMultiplier.cxx + GeomLib_DenominatorMultiplier.hxx + GeomLib_DenominatorMultiplierPtr.hxx + GeomLib_Interpolate.cxx + GeomLib_Interpolate.hxx + GeomLib_Interpolate.lxx + GeomLib_InterpolationErrors.hxx + GeomLib_IsPlanarSurface.cxx + GeomLib_IsPlanarSurface.hxx + GeomLib_LogSample.cxx + GeomLib_LogSample.hxx + GeomLib_MakeCurvefromApprox.cxx + GeomLib_MakeCurvefromApprox.hxx + GeomLib_MakeCurvefromApprox.lxx + GeomLib_PolyFunc.cxx + GeomLib_PolyFunc.hxx + GeomLib_Tool.cxx + GeomLib_Tool.hxx +) diff --git a/src/GeomLib/GeomLib.cxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib.cxx similarity index 100% rename from src/GeomLib/GeomLib.cxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib.cxx diff --git a/src/GeomLib/GeomLib.hxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib.hxx similarity index 100% rename from src/GeomLib/GeomLib.hxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib.hxx diff --git a/src/GeomLib/GeomLib_Array1OfMat.hxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_Array1OfMat.hxx similarity index 100% rename from src/GeomLib/GeomLib_Array1OfMat.hxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_Array1OfMat.hxx diff --git a/src/GeomLib/GeomLib_Check2dBSplineCurve.cxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_Check2dBSplineCurve.cxx similarity index 100% rename from src/GeomLib/GeomLib_Check2dBSplineCurve.cxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_Check2dBSplineCurve.cxx diff --git a/src/GeomLib/GeomLib_Check2dBSplineCurve.hxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_Check2dBSplineCurve.hxx similarity index 100% rename from src/GeomLib/GeomLib_Check2dBSplineCurve.hxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_Check2dBSplineCurve.hxx diff --git a/src/GeomLib/GeomLib_Check2dBSplineCurve.lxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_Check2dBSplineCurve.lxx similarity index 100% rename from src/GeomLib/GeomLib_Check2dBSplineCurve.lxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_Check2dBSplineCurve.lxx diff --git a/src/GeomLib/GeomLib_CheckBSplineCurve.cxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_CheckBSplineCurve.cxx similarity index 100% rename from src/GeomLib/GeomLib_CheckBSplineCurve.cxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_CheckBSplineCurve.cxx diff --git a/src/GeomLib/GeomLib_CheckBSplineCurve.hxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_CheckBSplineCurve.hxx similarity index 100% rename from src/GeomLib/GeomLib_CheckBSplineCurve.hxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_CheckBSplineCurve.hxx diff --git a/src/GeomLib/GeomLib_CheckBSplineCurve.lxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_CheckBSplineCurve.lxx similarity index 100% rename from src/GeomLib/GeomLib_CheckBSplineCurve.lxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_CheckBSplineCurve.lxx diff --git a/src/GeomLib/GeomLib_CheckCurveOnSurface.cxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_CheckCurveOnSurface.cxx similarity index 100% rename from src/GeomLib/GeomLib_CheckCurveOnSurface.cxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_CheckCurveOnSurface.cxx diff --git a/src/GeomLib/GeomLib_CheckCurveOnSurface.hxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_CheckCurveOnSurface.hxx similarity index 100% rename from src/GeomLib/GeomLib_CheckCurveOnSurface.hxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_CheckCurveOnSurface.hxx diff --git a/src/GeomLib/GeomLib_DenominatorMultiplier.cxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_DenominatorMultiplier.cxx similarity index 100% rename from src/GeomLib/GeomLib_DenominatorMultiplier.cxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_DenominatorMultiplier.cxx diff --git a/src/GeomLib/GeomLib_DenominatorMultiplier.hxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_DenominatorMultiplier.hxx similarity index 100% rename from src/GeomLib/GeomLib_DenominatorMultiplier.hxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_DenominatorMultiplier.hxx diff --git a/src/GeomLib/GeomLib_DenominatorMultiplierPtr.hxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_DenominatorMultiplierPtr.hxx similarity index 100% rename from src/GeomLib/GeomLib_DenominatorMultiplierPtr.hxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_DenominatorMultiplierPtr.hxx diff --git a/src/GeomLib/GeomLib_Interpolate.cxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_Interpolate.cxx similarity index 100% rename from src/GeomLib/GeomLib_Interpolate.cxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_Interpolate.cxx diff --git a/src/GeomLib/GeomLib_Interpolate.hxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_Interpolate.hxx similarity index 100% rename from src/GeomLib/GeomLib_Interpolate.hxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_Interpolate.hxx diff --git a/src/GeomLib/GeomLib_Interpolate.lxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_Interpolate.lxx similarity index 100% rename from src/GeomLib/GeomLib_Interpolate.lxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_Interpolate.lxx diff --git a/src/GeomLib/GeomLib_InterpolationErrors.hxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_InterpolationErrors.hxx similarity index 100% rename from src/GeomLib/GeomLib_InterpolationErrors.hxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_InterpolationErrors.hxx diff --git a/src/GeomLib/GeomLib_IsPlanarSurface.cxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_IsPlanarSurface.cxx similarity index 100% rename from src/GeomLib/GeomLib_IsPlanarSurface.cxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_IsPlanarSurface.cxx diff --git a/src/GeomLib/GeomLib_IsPlanarSurface.hxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_IsPlanarSurface.hxx similarity index 100% rename from src/GeomLib/GeomLib_IsPlanarSurface.hxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_IsPlanarSurface.hxx diff --git a/src/GeomLib/GeomLib_LogSample.cxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_LogSample.cxx similarity index 100% rename from src/GeomLib/GeomLib_LogSample.cxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_LogSample.cxx diff --git a/src/GeomLib/GeomLib_LogSample.hxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_LogSample.hxx similarity index 100% rename from src/GeomLib/GeomLib_LogSample.hxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_LogSample.hxx diff --git a/src/GeomLib/GeomLib_MakeCurvefromApprox.cxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_MakeCurvefromApprox.cxx similarity index 100% rename from src/GeomLib/GeomLib_MakeCurvefromApprox.cxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_MakeCurvefromApprox.cxx diff --git a/src/GeomLib/GeomLib_MakeCurvefromApprox.hxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_MakeCurvefromApprox.hxx similarity index 100% rename from src/GeomLib/GeomLib_MakeCurvefromApprox.hxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_MakeCurvefromApprox.hxx diff --git a/src/GeomLib/GeomLib_MakeCurvefromApprox.lxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_MakeCurvefromApprox.lxx similarity index 100% rename from src/GeomLib/GeomLib_MakeCurvefromApprox.lxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_MakeCurvefromApprox.lxx diff --git a/src/GeomLib/GeomLib_PolyFunc.cxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_PolyFunc.cxx similarity index 100% rename from src/GeomLib/GeomLib_PolyFunc.cxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_PolyFunc.cxx diff --git a/src/GeomLib/GeomLib_PolyFunc.hxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_PolyFunc.hxx similarity index 100% rename from src/GeomLib/GeomLib_PolyFunc.hxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_PolyFunc.hxx diff --git a/src/GeomLib/GeomLib_Tool.cxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_Tool.cxx similarity index 100% rename from src/GeomLib/GeomLib_Tool.cxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_Tool.cxx diff --git a/src/GeomLib/GeomLib_Tool.hxx b/src/ModelingData/TKGeomBase/GeomLib/GeomLib_Tool.hxx similarity index 100% rename from src/GeomLib/GeomLib_Tool.hxx rename to src/ModelingData/TKGeomBase/GeomLib/GeomLib_Tool.hxx diff --git a/src/ModelingData/TKGeomBase/GeomProjLib/FILES.cmake b/src/ModelingData/TKGeomBase/GeomProjLib/FILES.cmake new file mode 100644 index 0000000000..ef2d465acf --- /dev/null +++ b/src/ModelingData/TKGeomBase/GeomProjLib/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for GeomProjLib package +set(OCCT_GeomProjLib_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_GeomProjLib_FILES + GeomProjLib.cxx + GeomProjLib.hxx +) diff --git a/src/GeomProjLib/GeomProjLib.cxx b/src/ModelingData/TKGeomBase/GeomProjLib/GeomProjLib.cxx similarity index 100% rename from src/GeomProjLib/GeomProjLib.cxx rename to src/ModelingData/TKGeomBase/GeomProjLib/GeomProjLib.cxx diff --git a/src/GeomProjLib/GeomProjLib.hxx b/src/ModelingData/TKGeomBase/GeomProjLib/GeomProjLib.hxx similarity index 100% rename from src/GeomProjLib/GeomProjLib.hxx rename to src/ModelingData/TKGeomBase/GeomProjLib/GeomProjLib.hxx diff --git a/src/ModelingData/TKGeomBase/GeomTools/FILES.cmake b/src/ModelingData/TKGeomBase/GeomTools/FILES.cmake new file mode 100644 index 0000000000..d38b26503a --- /dev/null +++ b/src/ModelingData/TKGeomBase/GeomTools/FILES.cmake @@ -0,0 +1,16 @@ +# Source files for GeomTools package +set(OCCT_GeomTools_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_GeomTools_FILES + GeomTools.cxx + GeomTools.hxx + GeomTools_Curve2dSet.cxx + GeomTools_Curve2dSet.hxx + GeomTools_CurveSet.cxx + GeomTools_CurveSet.hxx + GeomTools_Debug.cxx + GeomTools_SurfaceSet.cxx + GeomTools_SurfaceSet.hxx + GeomTools_UndefinedTypeHandler.cxx + GeomTools_UndefinedTypeHandler.hxx +) diff --git a/src/GeomTools/GeomTools.cxx b/src/ModelingData/TKGeomBase/GeomTools/GeomTools.cxx similarity index 100% rename from src/GeomTools/GeomTools.cxx rename to src/ModelingData/TKGeomBase/GeomTools/GeomTools.cxx diff --git a/src/GeomTools/GeomTools.hxx b/src/ModelingData/TKGeomBase/GeomTools/GeomTools.hxx similarity index 100% rename from src/GeomTools/GeomTools.hxx rename to src/ModelingData/TKGeomBase/GeomTools/GeomTools.hxx diff --git a/src/GeomTools/GeomTools_Curve2dSet.cxx b/src/ModelingData/TKGeomBase/GeomTools/GeomTools_Curve2dSet.cxx similarity index 100% rename from src/GeomTools/GeomTools_Curve2dSet.cxx rename to src/ModelingData/TKGeomBase/GeomTools/GeomTools_Curve2dSet.cxx diff --git a/src/GeomTools/GeomTools_Curve2dSet.hxx b/src/ModelingData/TKGeomBase/GeomTools/GeomTools_Curve2dSet.hxx similarity index 100% rename from src/GeomTools/GeomTools_Curve2dSet.hxx rename to src/ModelingData/TKGeomBase/GeomTools/GeomTools_Curve2dSet.hxx diff --git a/src/GeomTools/GeomTools_CurveSet.cxx b/src/ModelingData/TKGeomBase/GeomTools/GeomTools_CurveSet.cxx similarity index 100% rename from src/GeomTools/GeomTools_CurveSet.cxx rename to src/ModelingData/TKGeomBase/GeomTools/GeomTools_CurveSet.cxx diff --git a/src/GeomTools/GeomTools_CurveSet.hxx b/src/ModelingData/TKGeomBase/GeomTools/GeomTools_CurveSet.hxx similarity index 100% rename from src/GeomTools/GeomTools_CurveSet.hxx rename to src/ModelingData/TKGeomBase/GeomTools/GeomTools_CurveSet.hxx diff --git a/src/GeomTools/GeomTools_Debug.cxx b/src/ModelingData/TKGeomBase/GeomTools/GeomTools_Debug.cxx similarity index 100% rename from src/GeomTools/GeomTools_Debug.cxx rename to src/ModelingData/TKGeomBase/GeomTools/GeomTools_Debug.cxx diff --git a/src/GeomTools/GeomTools_SurfaceSet.cxx b/src/ModelingData/TKGeomBase/GeomTools/GeomTools_SurfaceSet.cxx similarity index 100% rename from src/GeomTools/GeomTools_SurfaceSet.cxx rename to src/ModelingData/TKGeomBase/GeomTools/GeomTools_SurfaceSet.cxx diff --git a/src/GeomTools/GeomTools_SurfaceSet.hxx b/src/ModelingData/TKGeomBase/GeomTools/GeomTools_SurfaceSet.hxx similarity index 100% rename from src/GeomTools/GeomTools_SurfaceSet.hxx rename to src/ModelingData/TKGeomBase/GeomTools/GeomTools_SurfaceSet.hxx diff --git a/src/GeomTools/GeomTools_UndefinedTypeHandler.cxx b/src/ModelingData/TKGeomBase/GeomTools/GeomTools_UndefinedTypeHandler.cxx similarity index 100% rename from src/GeomTools/GeomTools_UndefinedTypeHandler.cxx rename to src/ModelingData/TKGeomBase/GeomTools/GeomTools_UndefinedTypeHandler.cxx diff --git a/src/GeomTools/GeomTools_UndefinedTypeHandler.hxx b/src/ModelingData/TKGeomBase/GeomTools/GeomTools_UndefinedTypeHandler.hxx similarity index 100% rename from src/GeomTools/GeomTools_UndefinedTypeHandler.hxx rename to src/ModelingData/TKGeomBase/GeomTools/GeomTools_UndefinedTypeHandler.hxx diff --git a/src/ModelingData/TKGeomBase/Hermit/FILES.cmake b/src/ModelingData/TKGeomBase/Hermit/FILES.cmake new file mode 100644 index 0000000000..0f0f698ec2 --- /dev/null +++ b/src/ModelingData/TKGeomBase/Hermit/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for Hermit package +set(OCCT_Hermit_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Hermit_FILES + Hermit.cxx + Hermit.hxx +) diff --git a/src/Hermit/Hermit.cxx b/src/ModelingData/TKGeomBase/Hermit/Hermit.cxx similarity index 100% rename from src/Hermit/Hermit.cxx rename to src/ModelingData/TKGeomBase/Hermit/Hermit.cxx diff --git a/src/Hermit/Hermit.hxx b/src/ModelingData/TKGeomBase/Hermit/Hermit.hxx similarity index 100% rename from src/Hermit/Hermit.hxx rename to src/ModelingData/TKGeomBase/Hermit/Hermit.hxx diff --git a/src/ModelingData/TKGeomBase/IntAna/FILES.cmake b/src/ModelingData/TKGeomBase/IntAna/FILES.cmake new file mode 100644 index 0000000000..41ec74465b --- /dev/null +++ b/src/ModelingData/TKGeomBase/IntAna/FILES.cmake @@ -0,0 +1,27 @@ +# Source files for IntAna package +set(OCCT_IntAna_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IntAna_FILES + IntAna_Curve.cxx + IntAna_Curve.hxx + IntAna_Int3Pln.cxx + IntAna_Int3Pln.hxx + IntAna_Int3Pln.lxx + IntAna_IntConicQuad.cxx + IntAna_IntConicQuad.hxx + IntAna_IntConicQuad.lxx + IntAna_IntLinTorus.cxx + IntAna_IntLinTorus.hxx + IntAna_IntLinTorus.lxx + IntAna_IntQuadQuad.cxx + IntAna_IntQuadQuad.hxx + IntAna_IntQuadQuad.lxx + IntAna_ListIteratorOfListOfCurve.hxx + IntAna_ListOfCurve.hxx + IntAna_QuadQuadGeo.cxx + IntAna_QuadQuadGeo.hxx + IntAna_QuadQuadGeo.lxx + IntAna_Quadric.cxx + IntAna_Quadric.hxx + IntAna_ResultType.hxx +) diff --git a/src/IntAna/IntAna_Curve.cxx b/src/ModelingData/TKGeomBase/IntAna/IntAna_Curve.cxx similarity index 100% rename from src/IntAna/IntAna_Curve.cxx rename to src/ModelingData/TKGeomBase/IntAna/IntAna_Curve.cxx diff --git a/src/IntAna/IntAna_Curve.hxx b/src/ModelingData/TKGeomBase/IntAna/IntAna_Curve.hxx similarity index 100% rename from src/IntAna/IntAna_Curve.hxx rename to src/ModelingData/TKGeomBase/IntAna/IntAna_Curve.hxx diff --git a/src/IntAna/IntAna_Int3Pln.cxx b/src/ModelingData/TKGeomBase/IntAna/IntAna_Int3Pln.cxx similarity index 100% rename from src/IntAna/IntAna_Int3Pln.cxx rename to src/ModelingData/TKGeomBase/IntAna/IntAna_Int3Pln.cxx diff --git a/src/IntAna/IntAna_Int3Pln.hxx b/src/ModelingData/TKGeomBase/IntAna/IntAna_Int3Pln.hxx similarity index 100% rename from src/IntAna/IntAna_Int3Pln.hxx rename to src/ModelingData/TKGeomBase/IntAna/IntAna_Int3Pln.hxx diff --git a/src/IntAna/IntAna_Int3Pln.lxx b/src/ModelingData/TKGeomBase/IntAna/IntAna_Int3Pln.lxx similarity index 100% rename from src/IntAna/IntAna_Int3Pln.lxx rename to src/ModelingData/TKGeomBase/IntAna/IntAna_Int3Pln.lxx diff --git a/src/IntAna/IntAna_IntConicQuad.cxx b/src/ModelingData/TKGeomBase/IntAna/IntAna_IntConicQuad.cxx similarity index 100% rename from src/IntAna/IntAna_IntConicQuad.cxx rename to src/ModelingData/TKGeomBase/IntAna/IntAna_IntConicQuad.cxx diff --git a/src/IntAna/IntAna_IntConicQuad.hxx b/src/ModelingData/TKGeomBase/IntAna/IntAna_IntConicQuad.hxx similarity index 100% rename from src/IntAna/IntAna_IntConicQuad.hxx rename to src/ModelingData/TKGeomBase/IntAna/IntAna_IntConicQuad.hxx diff --git a/src/IntAna/IntAna_IntConicQuad.lxx b/src/ModelingData/TKGeomBase/IntAna/IntAna_IntConicQuad.lxx similarity index 100% rename from src/IntAna/IntAna_IntConicQuad.lxx rename to src/ModelingData/TKGeomBase/IntAna/IntAna_IntConicQuad.lxx diff --git a/src/IntAna/IntAna_IntLinTorus.cxx b/src/ModelingData/TKGeomBase/IntAna/IntAna_IntLinTorus.cxx similarity index 100% rename from src/IntAna/IntAna_IntLinTorus.cxx rename to src/ModelingData/TKGeomBase/IntAna/IntAna_IntLinTorus.cxx diff --git a/src/IntAna/IntAna_IntLinTorus.hxx b/src/ModelingData/TKGeomBase/IntAna/IntAna_IntLinTorus.hxx similarity index 100% rename from src/IntAna/IntAna_IntLinTorus.hxx rename to src/ModelingData/TKGeomBase/IntAna/IntAna_IntLinTorus.hxx diff --git a/src/IntAna/IntAna_IntLinTorus.lxx b/src/ModelingData/TKGeomBase/IntAna/IntAna_IntLinTorus.lxx similarity index 100% rename from src/IntAna/IntAna_IntLinTorus.lxx rename to src/ModelingData/TKGeomBase/IntAna/IntAna_IntLinTorus.lxx diff --git a/src/IntAna/IntAna_IntQuadQuad.cxx b/src/ModelingData/TKGeomBase/IntAna/IntAna_IntQuadQuad.cxx similarity index 100% rename from src/IntAna/IntAna_IntQuadQuad.cxx rename to src/ModelingData/TKGeomBase/IntAna/IntAna_IntQuadQuad.cxx diff --git a/src/IntAna/IntAna_IntQuadQuad.hxx b/src/ModelingData/TKGeomBase/IntAna/IntAna_IntQuadQuad.hxx similarity index 100% rename from src/IntAna/IntAna_IntQuadQuad.hxx rename to src/ModelingData/TKGeomBase/IntAna/IntAna_IntQuadQuad.hxx diff --git a/src/IntAna/IntAna_IntQuadQuad.lxx b/src/ModelingData/TKGeomBase/IntAna/IntAna_IntQuadQuad.lxx similarity index 100% rename from src/IntAna/IntAna_IntQuadQuad.lxx rename to src/ModelingData/TKGeomBase/IntAna/IntAna_IntQuadQuad.lxx diff --git a/src/IntAna/IntAna_ListIteratorOfListOfCurve.hxx b/src/ModelingData/TKGeomBase/IntAna/IntAna_ListIteratorOfListOfCurve.hxx similarity index 100% rename from src/IntAna/IntAna_ListIteratorOfListOfCurve.hxx rename to src/ModelingData/TKGeomBase/IntAna/IntAna_ListIteratorOfListOfCurve.hxx diff --git a/src/IntAna/IntAna_ListOfCurve.hxx b/src/ModelingData/TKGeomBase/IntAna/IntAna_ListOfCurve.hxx similarity index 100% rename from src/IntAna/IntAna_ListOfCurve.hxx rename to src/ModelingData/TKGeomBase/IntAna/IntAna_ListOfCurve.hxx diff --git a/src/IntAna/IntAna_QuadQuadGeo.cxx b/src/ModelingData/TKGeomBase/IntAna/IntAna_QuadQuadGeo.cxx similarity index 100% rename from src/IntAna/IntAna_QuadQuadGeo.cxx rename to src/ModelingData/TKGeomBase/IntAna/IntAna_QuadQuadGeo.cxx diff --git a/src/IntAna/IntAna_QuadQuadGeo.hxx b/src/ModelingData/TKGeomBase/IntAna/IntAna_QuadQuadGeo.hxx similarity index 100% rename from src/IntAna/IntAna_QuadQuadGeo.hxx rename to src/ModelingData/TKGeomBase/IntAna/IntAna_QuadQuadGeo.hxx diff --git a/src/IntAna/IntAna_QuadQuadGeo.lxx b/src/ModelingData/TKGeomBase/IntAna/IntAna_QuadQuadGeo.lxx similarity index 100% rename from src/IntAna/IntAna_QuadQuadGeo.lxx rename to src/ModelingData/TKGeomBase/IntAna/IntAna_QuadQuadGeo.lxx diff --git a/src/IntAna/IntAna_Quadric.cxx b/src/ModelingData/TKGeomBase/IntAna/IntAna_Quadric.cxx similarity index 100% rename from src/IntAna/IntAna_Quadric.cxx rename to src/ModelingData/TKGeomBase/IntAna/IntAna_Quadric.cxx diff --git a/src/IntAna/IntAna_Quadric.hxx b/src/ModelingData/TKGeomBase/IntAna/IntAna_Quadric.hxx similarity index 100% rename from src/IntAna/IntAna_Quadric.hxx rename to src/ModelingData/TKGeomBase/IntAna/IntAna_Quadric.hxx diff --git a/src/IntAna/IntAna_ResultType.hxx b/src/ModelingData/TKGeomBase/IntAna/IntAna_ResultType.hxx similarity index 100% rename from src/IntAna/IntAna_ResultType.hxx rename to src/ModelingData/TKGeomBase/IntAna/IntAna_ResultType.hxx diff --git a/src/ModelingData/TKGeomBase/IntAna2d/FILES.cmake b/src/ModelingData/TKGeomBase/IntAna2d/FILES.cmake new file mode 100644 index 0000000000..220d00cc73 --- /dev/null +++ b/src/ModelingData/TKGeomBase/IntAna2d/FILES.cmake @@ -0,0 +1,23 @@ +# Source files for IntAna2d package +set(OCCT_IntAna2d_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IntAna2d_FILES + IntAna2d_AnaIntersection.cxx + IntAna2d_AnaIntersection.hxx + IntAna2d_AnaIntersection.lxx + IntAna2d_AnaIntersection_1.cxx + IntAna2d_AnaIntersection_2.cxx + IntAna2d_AnaIntersection_3.cxx + IntAna2d_AnaIntersection_4.cxx + IntAna2d_AnaIntersection_5.cxx + IntAna2d_AnaIntersection_6.cxx + IntAna2d_AnaIntersection_7.cxx + IntAna2d_AnaIntersection_8.cxx + IntAna2d_Conic.cxx + IntAna2d_Conic.hxx + IntAna2d_IntPoint.cxx + IntAna2d_IntPoint.hxx + IntAna2d_IntPoint.lxx + IntAna2d_Outils.cxx + IntAna2d_Outils.hxx +) diff --git a/src/IntAna2d/IntAna2d_AnaIntersection.cxx b/src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_AnaIntersection.cxx similarity index 100% rename from src/IntAna2d/IntAna2d_AnaIntersection.cxx rename to src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_AnaIntersection.cxx diff --git a/src/IntAna2d/IntAna2d_AnaIntersection.hxx b/src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_AnaIntersection.hxx similarity index 100% rename from src/IntAna2d/IntAna2d_AnaIntersection.hxx rename to src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_AnaIntersection.hxx diff --git a/src/IntAna2d/IntAna2d_AnaIntersection.lxx b/src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_AnaIntersection.lxx similarity index 100% rename from src/IntAna2d/IntAna2d_AnaIntersection.lxx rename to src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_AnaIntersection.lxx diff --git a/src/IntAna2d/IntAna2d_AnaIntersection_1.cxx b/src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_AnaIntersection_1.cxx similarity index 100% rename from src/IntAna2d/IntAna2d_AnaIntersection_1.cxx rename to src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_AnaIntersection_1.cxx diff --git a/src/IntAna2d/IntAna2d_AnaIntersection_2.cxx b/src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_AnaIntersection_2.cxx similarity index 100% rename from src/IntAna2d/IntAna2d_AnaIntersection_2.cxx rename to src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_AnaIntersection_2.cxx diff --git a/src/IntAna2d/IntAna2d_AnaIntersection_3.cxx b/src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_AnaIntersection_3.cxx similarity index 100% rename from src/IntAna2d/IntAna2d_AnaIntersection_3.cxx rename to src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_AnaIntersection_3.cxx diff --git a/src/IntAna2d/IntAna2d_AnaIntersection_4.cxx b/src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_AnaIntersection_4.cxx similarity index 100% rename from src/IntAna2d/IntAna2d_AnaIntersection_4.cxx rename to src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_AnaIntersection_4.cxx diff --git a/src/IntAna2d/IntAna2d_AnaIntersection_5.cxx b/src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_AnaIntersection_5.cxx similarity index 100% rename from src/IntAna2d/IntAna2d_AnaIntersection_5.cxx rename to src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_AnaIntersection_5.cxx diff --git a/src/IntAna2d/IntAna2d_AnaIntersection_6.cxx b/src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_AnaIntersection_6.cxx similarity index 100% rename from src/IntAna2d/IntAna2d_AnaIntersection_6.cxx rename to src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_AnaIntersection_6.cxx diff --git a/src/IntAna2d/IntAna2d_AnaIntersection_7.cxx b/src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_AnaIntersection_7.cxx similarity index 100% rename from src/IntAna2d/IntAna2d_AnaIntersection_7.cxx rename to src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_AnaIntersection_7.cxx diff --git a/src/IntAna2d/IntAna2d_AnaIntersection_8.cxx b/src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_AnaIntersection_8.cxx similarity index 100% rename from src/IntAna2d/IntAna2d_AnaIntersection_8.cxx rename to src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_AnaIntersection_8.cxx diff --git a/src/IntAna2d/IntAna2d_Conic.cxx b/src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_Conic.cxx similarity index 100% rename from src/IntAna2d/IntAna2d_Conic.cxx rename to src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_Conic.cxx diff --git a/src/IntAna2d/IntAna2d_Conic.hxx b/src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_Conic.hxx similarity index 100% rename from src/IntAna2d/IntAna2d_Conic.hxx rename to src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_Conic.hxx diff --git a/src/IntAna2d/IntAna2d_IntPoint.cxx b/src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_IntPoint.cxx similarity index 100% rename from src/IntAna2d/IntAna2d_IntPoint.cxx rename to src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_IntPoint.cxx diff --git a/src/IntAna2d/IntAna2d_IntPoint.hxx b/src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_IntPoint.hxx similarity index 100% rename from src/IntAna2d/IntAna2d_IntPoint.hxx rename to src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_IntPoint.hxx diff --git a/src/IntAna2d/IntAna2d_IntPoint.lxx b/src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_IntPoint.lxx similarity index 100% rename from src/IntAna2d/IntAna2d_IntPoint.lxx rename to src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_IntPoint.lxx diff --git a/src/IntAna2d/IntAna2d_Outils.cxx b/src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_Outils.cxx similarity index 100% rename from src/IntAna2d/IntAna2d_Outils.cxx rename to src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_Outils.cxx diff --git a/src/IntAna2d/IntAna2d_Outils.hxx b/src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_Outils.hxx similarity index 100% rename from src/IntAna2d/IntAna2d_Outils.hxx rename to src/ModelingData/TKGeomBase/IntAna2d/IntAna2d_Outils.hxx diff --git a/src/ModelingData/TKGeomBase/PACKAGES.cmake b/src/ModelingData/TKGeomBase/PACKAGES.cmake new file mode 100644 index 0000000000..b911cde8bc --- /dev/null +++ b/src/ModelingData/TKGeomBase/PACKAGES.cmake @@ -0,0 +1,25 @@ +# Auto-generated list of packages for TKGeomBase toolkit +set(OCCT_TKGeomBase_LIST_OF_PACKAGES + ProjLib + GeomProjLib + GCPnts + CPnts + Approx + AppParCurves + FEmTool + AppCont + Extrema + IntAna + IntAna2d + GeomConvert + AdvApp2Var + GeomLib + Geom2dConvert + Hermit + BndLib + AppDef + GeomTools + GC + GCE2d + gce +) diff --git a/src/ModelingData/TKGeomBase/ProjLib/FILES.cmake b/src/ModelingData/TKGeomBase/ProjLib/FILES.cmake new file mode 100644 index 0000000000..8ba2a1a75a --- /dev/null +++ b/src/ModelingData/TKGeomBase/ProjLib/FILES.cmake @@ -0,0 +1,39 @@ +# Source files for ProjLib package +set(OCCT_ProjLib_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_ProjLib_FILES + ProjLib.cxx + ProjLib.hxx + ProjLib_CompProjectedCurve.cxx + ProjLib_CompProjectedCurve.hxx + ProjLib_ComputeApprox.cxx + ProjLib_ComputeApprox.hxx + ProjLib_ComputeApproxOnPolarSurface.cxx + ProjLib_ComputeApproxOnPolarSurface.hxx + ProjLib_Cone.cxx + ProjLib_Cone.hxx + ProjLib_Cylinder.cxx + ProjLib_Cylinder.hxx + ProjLib_HCompProjectedCurve.hxx + ProjLib_HProjectedCurve.hxx + ProjLib_HSequenceOfHSequenceOfPnt.hxx + ProjLib_Plane.cxx + ProjLib_Plane.hxx + ProjLib_PrjFunc.cxx + ProjLib_PrjFunc.hxx + ProjLib_PrjResolve.cxx + ProjLib_PrjResolve.hxx + ProjLib_ProjectedCurve.cxx + ProjLib_ProjectedCurve.hxx + ProjLib_ProjectOnPlane.cxx + ProjLib_ProjectOnPlane.hxx + ProjLib_ProjectOnSurface.cxx + ProjLib_ProjectOnSurface.hxx + ProjLib_Projector.cxx + ProjLib_Projector.hxx + ProjLib_SequenceOfHSequenceOfPnt.hxx + ProjLib_Sphere.cxx + ProjLib_Sphere.hxx + ProjLib_Torus.cxx + ProjLib_Torus.hxx +) diff --git a/src/ProjLib/ProjLib.cxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib.cxx similarity index 100% rename from src/ProjLib/ProjLib.cxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib.cxx diff --git a/src/ProjLib/ProjLib.hxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib.hxx similarity index 100% rename from src/ProjLib/ProjLib.hxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib.hxx diff --git a/src/ProjLib/ProjLib_CompProjectedCurve.cxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_CompProjectedCurve.cxx similarity index 100% rename from src/ProjLib/ProjLib_CompProjectedCurve.cxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_CompProjectedCurve.cxx diff --git a/src/ProjLib/ProjLib_CompProjectedCurve.hxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_CompProjectedCurve.hxx similarity index 100% rename from src/ProjLib/ProjLib_CompProjectedCurve.hxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_CompProjectedCurve.hxx diff --git a/src/ProjLib/ProjLib_ComputeApprox.cxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_ComputeApprox.cxx similarity index 100% rename from src/ProjLib/ProjLib_ComputeApprox.cxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_ComputeApprox.cxx diff --git a/src/ProjLib/ProjLib_ComputeApprox.hxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_ComputeApprox.hxx similarity index 100% rename from src/ProjLib/ProjLib_ComputeApprox.hxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_ComputeApprox.hxx diff --git a/src/ProjLib/ProjLib_ComputeApproxOnPolarSurface.cxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_ComputeApproxOnPolarSurface.cxx similarity index 100% rename from src/ProjLib/ProjLib_ComputeApproxOnPolarSurface.cxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_ComputeApproxOnPolarSurface.cxx diff --git a/src/ProjLib/ProjLib_ComputeApproxOnPolarSurface.hxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_ComputeApproxOnPolarSurface.hxx similarity index 100% rename from src/ProjLib/ProjLib_ComputeApproxOnPolarSurface.hxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_ComputeApproxOnPolarSurface.hxx diff --git a/src/ProjLib/ProjLib_Cone.cxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_Cone.cxx similarity index 100% rename from src/ProjLib/ProjLib_Cone.cxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_Cone.cxx diff --git a/src/ProjLib/ProjLib_Cone.hxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_Cone.hxx similarity index 100% rename from src/ProjLib/ProjLib_Cone.hxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_Cone.hxx diff --git a/src/ProjLib/ProjLib_Cylinder.cxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_Cylinder.cxx similarity index 100% rename from src/ProjLib/ProjLib_Cylinder.cxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_Cylinder.cxx diff --git a/src/ProjLib/ProjLib_Cylinder.hxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_Cylinder.hxx similarity index 100% rename from src/ProjLib/ProjLib_Cylinder.hxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_Cylinder.hxx diff --git a/src/ProjLib/ProjLib_HCompProjectedCurve.hxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_HCompProjectedCurve.hxx similarity index 100% rename from src/ProjLib/ProjLib_HCompProjectedCurve.hxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_HCompProjectedCurve.hxx diff --git a/src/ProjLib/ProjLib_HProjectedCurve.hxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_HProjectedCurve.hxx similarity index 100% rename from src/ProjLib/ProjLib_HProjectedCurve.hxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_HProjectedCurve.hxx diff --git a/src/ProjLib/ProjLib_HSequenceOfHSequenceOfPnt.hxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_HSequenceOfHSequenceOfPnt.hxx similarity index 100% rename from src/ProjLib/ProjLib_HSequenceOfHSequenceOfPnt.hxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_HSequenceOfHSequenceOfPnt.hxx diff --git a/src/ProjLib/ProjLib_Plane.cxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_Plane.cxx similarity index 100% rename from src/ProjLib/ProjLib_Plane.cxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_Plane.cxx diff --git a/src/ProjLib/ProjLib_Plane.hxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_Plane.hxx similarity index 100% rename from src/ProjLib/ProjLib_Plane.hxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_Plane.hxx diff --git a/src/ProjLib/ProjLib_PrjFunc.cxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_PrjFunc.cxx similarity index 100% rename from src/ProjLib/ProjLib_PrjFunc.cxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_PrjFunc.cxx diff --git a/src/ProjLib/ProjLib_PrjFunc.hxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_PrjFunc.hxx similarity index 100% rename from src/ProjLib/ProjLib_PrjFunc.hxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_PrjFunc.hxx diff --git a/src/ProjLib/ProjLib_PrjResolve.cxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_PrjResolve.cxx similarity index 100% rename from src/ProjLib/ProjLib_PrjResolve.cxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_PrjResolve.cxx diff --git a/src/ProjLib/ProjLib_PrjResolve.hxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_PrjResolve.hxx similarity index 100% rename from src/ProjLib/ProjLib_PrjResolve.hxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_PrjResolve.hxx diff --git a/src/ProjLib/ProjLib_ProjectOnPlane.cxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_ProjectOnPlane.cxx similarity index 100% rename from src/ProjLib/ProjLib_ProjectOnPlane.cxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_ProjectOnPlane.cxx diff --git a/src/ProjLib/ProjLib_ProjectOnPlane.hxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_ProjectOnPlane.hxx similarity index 100% rename from src/ProjLib/ProjLib_ProjectOnPlane.hxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_ProjectOnPlane.hxx diff --git a/src/ProjLib/ProjLib_ProjectOnSurface.cxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_ProjectOnSurface.cxx similarity index 100% rename from src/ProjLib/ProjLib_ProjectOnSurface.cxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_ProjectOnSurface.cxx diff --git a/src/ProjLib/ProjLib_ProjectOnSurface.hxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_ProjectOnSurface.hxx similarity index 100% rename from src/ProjLib/ProjLib_ProjectOnSurface.hxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_ProjectOnSurface.hxx diff --git a/src/ProjLib/ProjLib_ProjectedCurve.cxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_ProjectedCurve.cxx similarity index 100% rename from src/ProjLib/ProjLib_ProjectedCurve.cxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_ProjectedCurve.cxx diff --git a/src/ProjLib/ProjLib_ProjectedCurve.hxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_ProjectedCurve.hxx similarity index 100% rename from src/ProjLib/ProjLib_ProjectedCurve.hxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_ProjectedCurve.hxx diff --git a/src/ProjLib/ProjLib_Projector.cxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_Projector.cxx similarity index 100% rename from src/ProjLib/ProjLib_Projector.cxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_Projector.cxx diff --git a/src/ProjLib/ProjLib_Projector.hxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_Projector.hxx similarity index 100% rename from src/ProjLib/ProjLib_Projector.hxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_Projector.hxx diff --git a/src/ProjLib/ProjLib_SequenceOfHSequenceOfPnt.hxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_SequenceOfHSequenceOfPnt.hxx similarity index 100% rename from src/ProjLib/ProjLib_SequenceOfHSequenceOfPnt.hxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_SequenceOfHSequenceOfPnt.hxx diff --git a/src/ProjLib/ProjLib_Sphere.cxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_Sphere.cxx similarity index 100% rename from src/ProjLib/ProjLib_Sphere.cxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_Sphere.cxx diff --git a/src/ProjLib/ProjLib_Sphere.hxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_Sphere.hxx similarity index 100% rename from src/ProjLib/ProjLib_Sphere.hxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_Sphere.hxx diff --git a/src/ProjLib/ProjLib_Torus.cxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_Torus.cxx similarity index 100% rename from src/ProjLib/ProjLib_Torus.cxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_Torus.cxx diff --git a/src/ProjLib/ProjLib_Torus.hxx b/src/ModelingData/TKGeomBase/ProjLib/ProjLib_Torus.hxx similarity index 100% rename from src/ProjLib/ProjLib_Torus.hxx rename to src/ModelingData/TKGeomBase/ProjLib/ProjLib_Torus.hxx diff --git a/src/ModelingData/TKGeomBase/gce/FILES.cmake b/src/ModelingData/TKGeomBase/gce/FILES.cmake new file mode 100644 index 0000000000..66a75ac9fd --- /dev/null +++ b/src/ModelingData/TKGeomBase/gce/FILES.cmake @@ -0,0 +1,54 @@ +# Source files for gce package +set(OCCT_gce_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_gce_FILES + gce_ErrorType.hxx + gce_MakeCirc.cxx + gce_MakeCirc.hxx + gce_MakeCirc2d.cxx + gce_MakeCirc2d.hxx + gce_MakeCone.cxx + gce_MakeCone.hxx + gce_MakeCylinder.cxx + gce_MakeCylinder.hxx + gce_MakeDir.cxx + gce_MakeDir.hxx + gce_MakeDir2d.cxx + gce_MakeDir2d.hxx + gce_MakeElips.cxx + gce_MakeElips.hxx + gce_MakeElips2d.cxx + gce_MakeElips2d.hxx + gce_MakeHypr.cxx + gce_MakeHypr.hxx + gce_MakeHypr2d.cxx + gce_MakeHypr2d.hxx + gce_MakeLin.cxx + gce_MakeLin.hxx + gce_MakeLin2d.cxx + gce_MakeLin2d.hxx + gce_MakeMirror.cxx + gce_MakeMirror.hxx + gce_MakeMirror2d.cxx + gce_MakeMirror2d.hxx + gce_MakeParab.cxx + gce_MakeParab.hxx + gce_MakeParab2d.cxx + gce_MakeParab2d.hxx + gce_MakePln.cxx + gce_MakePln.hxx + gce_MakeRotation.cxx + gce_MakeRotation.hxx + gce_MakeRotation2d.cxx + gce_MakeRotation2d.hxx + gce_MakeScale.cxx + gce_MakeScale.hxx + gce_MakeScale2d.cxx + gce_MakeScale2d.hxx + gce_MakeTranslation.cxx + gce_MakeTranslation.hxx + gce_MakeTranslation2d.cxx + gce_MakeTranslation2d.hxx + gce_Root.hxx + gce_Root.lxx +) diff --git a/src/gce/gce_ErrorType.hxx b/src/ModelingData/TKGeomBase/gce/gce_ErrorType.hxx similarity index 100% rename from src/gce/gce_ErrorType.hxx rename to src/ModelingData/TKGeomBase/gce/gce_ErrorType.hxx diff --git a/src/gce/gce_MakeCirc.cxx b/src/ModelingData/TKGeomBase/gce/gce_MakeCirc.cxx similarity index 100% rename from src/gce/gce_MakeCirc.cxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeCirc.cxx diff --git a/src/gce/gce_MakeCirc.hxx b/src/ModelingData/TKGeomBase/gce/gce_MakeCirc.hxx similarity index 100% rename from src/gce/gce_MakeCirc.hxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeCirc.hxx diff --git a/src/gce/gce_MakeCirc2d.cxx b/src/ModelingData/TKGeomBase/gce/gce_MakeCirc2d.cxx similarity index 100% rename from src/gce/gce_MakeCirc2d.cxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeCirc2d.cxx diff --git a/src/gce/gce_MakeCirc2d.hxx b/src/ModelingData/TKGeomBase/gce/gce_MakeCirc2d.hxx similarity index 100% rename from src/gce/gce_MakeCirc2d.hxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeCirc2d.hxx diff --git a/src/gce/gce_MakeCone.cxx b/src/ModelingData/TKGeomBase/gce/gce_MakeCone.cxx similarity index 100% rename from src/gce/gce_MakeCone.cxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeCone.cxx diff --git a/src/gce/gce_MakeCone.hxx b/src/ModelingData/TKGeomBase/gce/gce_MakeCone.hxx similarity index 100% rename from src/gce/gce_MakeCone.hxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeCone.hxx diff --git a/src/gce/gce_MakeCylinder.cxx b/src/ModelingData/TKGeomBase/gce/gce_MakeCylinder.cxx similarity index 100% rename from src/gce/gce_MakeCylinder.cxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeCylinder.cxx diff --git a/src/gce/gce_MakeCylinder.hxx b/src/ModelingData/TKGeomBase/gce/gce_MakeCylinder.hxx similarity index 100% rename from src/gce/gce_MakeCylinder.hxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeCylinder.hxx diff --git a/src/gce/gce_MakeDir.cxx b/src/ModelingData/TKGeomBase/gce/gce_MakeDir.cxx similarity index 100% rename from src/gce/gce_MakeDir.cxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeDir.cxx diff --git a/src/gce/gce_MakeDir.hxx b/src/ModelingData/TKGeomBase/gce/gce_MakeDir.hxx similarity index 100% rename from src/gce/gce_MakeDir.hxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeDir.hxx diff --git a/src/gce/gce_MakeDir2d.cxx b/src/ModelingData/TKGeomBase/gce/gce_MakeDir2d.cxx similarity index 100% rename from src/gce/gce_MakeDir2d.cxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeDir2d.cxx diff --git a/src/gce/gce_MakeDir2d.hxx b/src/ModelingData/TKGeomBase/gce/gce_MakeDir2d.hxx similarity index 100% rename from src/gce/gce_MakeDir2d.hxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeDir2d.hxx diff --git a/src/gce/gce_MakeElips.cxx b/src/ModelingData/TKGeomBase/gce/gce_MakeElips.cxx similarity index 100% rename from src/gce/gce_MakeElips.cxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeElips.cxx diff --git a/src/gce/gce_MakeElips.hxx b/src/ModelingData/TKGeomBase/gce/gce_MakeElips.hxx similarity index 100% rename from src/gce/gce_MakeElips.hxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeElips.hxx diff --git a/src/gce/gce_MakeElips2d.cxx b/src/ModelingData/TKGeomBase/gce/gce_MakeElips2d.cxx similarity index 100% rename from src/gce/gce_MakeElips2d.cxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeElips2d.cxx diff --git a/src/gce/gce_MakeElips2d.hxx b/src/ModelingData/TKGeomBase/gce/gce_MakeElips2d.hxx similarity index 100% rename from src/gce/gce_MakeElips2d.hxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeElips2d.hxx diff --git a/src/gce/gce_MakeHypr.cxx b/src/ModelingData/TKGeomBase/gce/gce_MakeHypr.cxx similarity index 100% rename from src/gce/gce_MakeHypr.cxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeHypr.cxx diff --git a/src/gce/gce_MakeHypr.hxx b/src/ModelingData/TKGeomBase/gce/gce_MakeHypr.hxx similarity index 100% rename from src/gce/gce_MakeHypr.hxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeHypr.hxx diff --git a/src/gce/gce_MakeHypr2d.cxx b/src/ModelingData/TKGeomBase/gce/gce_MakeHypr2d.cxx similarity index 100% rename from src/gce/gce_MakeHypr2d.cxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeHypr2d.cxx diff --git a/src/gce/gce_MakeHypr2d.hxx b/src/ModelingData/TKGeomBase/gce/gce_MakeHypr2d.hxx similarity index 100% rename from src/gce/gce_MakeHypr2d.hxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeHypr2d.hxx diff --git a/src/gce/gce_MakeLin.cxx b/src/ModelingData/TKGeomBase/gce/gce_MakeLin.cxx similarity index 100% rename from src/gce/gce_MakeLin.cxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeLin.cxx diff --git a/src/gce/gce_MakeLin.hxx b/src/ModelingData/TKGeomBase/gce/gce_MakeLin.hxx similarity index 100% rename from src/gce/gce_MakeLin.hxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeLin.hxx diff --git a/src/gce/gce_MakeLin2d.cxx b/src/ModelingData/TKGeomBase/gce/gce_MakeLin2d.cxx similarity index 100% rename from src/gce/gce_MakeLin2d.cxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeLin2d.cxx diff --git a/src/gce/gce_MakeLin2d.hxx b/src/ModelingData/TKGeomBase/gce/gce_MakeLin2d.hxx similarity index 100% rename from src/gce/gce_MakeLin2d.hxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeLin2d.hxx diff --git a/src/gce/gce_MakeMirror.cxx b/src/ModelingData/TKGeomBase/gce/gce_MakeMirror.cxx similarity index 100% rename from src/gce/gce_MakeMirror.cxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeMirror.cxx diff --git a/src/gce/gce_MakeMirror.hxx b/src/ModelingData/TKGeomBase/gce/gce_MakeMirror.hxx similarity index 100% rename from src/gce/gce_MakeMirror.hxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeMirror.hxx diff --git a/src/gce/gce_MakeMirror2d.cxx b/src/ModelingData/TKGeomBase/gce/gce_MakeMirror2d.cxx similarity index 100% rename from src/gce/gce_MakeMirror2d.cxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeMirror2d.cxx diff --git a/src/gce/gce_MakeMirror2d.hxx b/src/ModelingData/TKGeomBase/gce/gce_MakeMirror2d.hxx similarity index 100% rename from src/gce/gce_MakeMirror2d.hxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeMirror2d.hxx diff --git a/src/gce/gce_MakeParab.cxx b/src/ModelingData/TKGeomBase/gce/gce_MakeParab.cxx similarity index 100% rename from src/gce/gce_MakeParab.cxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeParab.cxx diff --git a/src/gce/gce_MakeParab.hxx b/src/ModelingData/TKGeomBase/gce/gce_MakeParab.hxx similarity index 100% rename from src/gce/gce_MakeParab.hxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeParab.hxx diff --git a/src/gce/gce_MakeParab2d.cxx b/src/ModelingData/TKGeomBase/gce/gce_MakeParab2d.cxx similarity index 100% rename from src/gce/gce_MakeParab2d.cxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeParab2d.cxx diff --git a/src/gce/gce_MakeParab2d.hxx b/src/ModelingData/TKGeomBase/gce/gce_MakeParab2d.hxx similarity index 100% rename from src/gce/gce_MakeParab2d.hxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeParab2d.hxx diff --git a/src/gce/gce_MakePln.cxx b/src/ModelingData/TKGeomBase/gce/gce_MakePln.cxx similarity index 100% rename from src/gce/gce_MakePln.cxx rename to src/ModelingData/TKGeomBase/gce/gce_MakePln.cxx diff --git a/src/gce/gce_MakePln.hxx b/src/ModelingData/TKGeomBase/gce/gce_MakePln.hxx similarity index 100% rename from src/gce/gce_MakePln.hxx rename to src/ModelingData/TKGeomBase/gce/gce_MakePln.hxx diff --git a/src/gce/gce_MakeRotation.cxx b/src/ModelingData/TKGeomBase/gce/gce_MakeRotation.cxx similarity index 100% rename from src/gce/gce_MakeRotation.cxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeRotation.cxx diff --git a/src/gce/gce_MakeRotation.hxx b/src/ModelingData/TKGeomBase/gce/gce_MakeRotation.hxx similarity index 100% rename from src/gce/gce_MakeRotation.hxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeRotation.hxx diff --git a/src/gce/gce_MakeRotation2d.cxx b/src/ModelingData/TKGeomBase/gce/gce_MakeRotation2d.cxx similarity index 100% rename from src/gce/gce_MakeRotation2d.cxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeRotation2d.cxx diff --git a/src/gce/gce_MakeRotation2d.hxx b/src/ModelingData/TKGeomBase/gce/gce_MakeRotation2d.hxx similarity index 100% rename from src/gce/gce_MakeRotation2d.hxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeRotation2d.hxx diff --git a/src/gce/gce_MakeScale.cxx b/src/ModelingData/TKGeomBase/gce/gce_MakeScale.cxx similarity index 100% rename from src/gce/gce_MakeScale.cxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeScale.cxx diff --git a/src/gce/gce_MakeScale.hxx b/src/ModelingData/TKGeomBase/gce/gce_MakeScale.hxx similarity index 100% rename from src/gce/gce_MakeScale.hxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeScale.hxx diff --git a/src/gce/gce_MakeScale2d.cxx b/src/ModelingData/TKGeomBase/gce/gce_MakeScale2d.cxx similarity index 100% rename from src/gce/gce_MakeScale2d.cxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeScale2d.cxx diff --git a/src/gce/gce_MakeScale2d.hxx b/src/ModelingData/TKGeomBase/gce/gce_MakeScale2d.hxx similarity index 100% rename from src/gce/gce_MakeScale2d.hxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeScale2d.hxx diff --git a/src/gce/gce_MakeTranslation.cxx b/src/ModelingData/TKGeomBase/gce/gce_MakeTranslation.cxx similarity index 100% rename from src/gce/gce_MakeTranslation.cxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeTranslation.cxx diff --git a/src/gce/gce_MakeTranslation.hxx b/src/ModelingData/TKGeomBase/gce/gce_MakeTranslation.hxx similarity index 100% rename from src/gce/gce_MakeTranslation.hxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeTranslation.hxx diff --git a/src/gce/gce_MakeTranslation2d.cxx b/src/ModelingData/TKGeomBase/gce/gce_MakeTranslation2d.cxx similarity index 100% rename from src/gce/gce_MakeTranslation2d.cxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeTranslation2d.cxx diff --git a/src/gce/gce_MakeTranslation2d.hxx b/src/ModelingData/TKGeomBase/gce/gce_MakeTranslation2d.hxx similarity index 100% rename from src/gce/gce_MakeTranslation2d.hxx rename to src/ModelingData/TKGeomBase/gce/gce_MakeTranslation2d.hxx diff --git a/src/gce/gce_Root.hxx b/src/ModelingData/TKGeomBase/gce/gce_Root.hxx similarity index 100% rename from src/gce/gce_Root.hxx rename to src/ModelingData/TKGeomBase/gce/gce_Root.hxx diff --git a/src/gce/gce_Root.lxx b/src/ModelingData/TKGeomBase/gce/gce_Root.lxx similarity index 100% rename from src/gce/gce_Root.lxx rename to src/ModelingData/TKGeomBase/gce/gce_Root.lxx diff --git a/src/ModelingData/TOOLKITS.cmake b/src/ModelingData/TOOLKITS.cmake new file mode 100644 index 0000000000..fef47add76 --- /dev/null +++ b/src/ModelingData/TOOLKITS.cmake @@ -0,0 +1,7 @@ +# Auto-generated list of toolkits for ModelingData module +set(OCCT_ModelingData_LIST_OF_TOOLKITS + TKG2d + TKG3d + TKGeomBase + TKBRep +) diff --git a/src/MoniTool/FILES b/src/MoniTool/FILES deleted file mode 100755 index 93cb2c2a55..0000000000 --- a/src/MoniTool/FILES +++ /dev/null @@ -1,38 +0,0 @@ -MoniTool_AttrList.cxx -MoniTool_AttrList.hxx -MoniTool_CaseData.cxx -MoniTool_CaseData.hxx -MoniTool_DataInfo.cxx -MoniTool_DataInfo.hxx -MoniTool_DataMapIteratorOfDataMapOfShapeTransient.hxx -MoniTool_DataMapIteratorOfDataMapOfTimer.hxx -MoniTool_DataMapOfShapeTransient.hxx -MoniTool_DataMapOfTimer.hxx -MoniTool_Element.cxx -MoniTool_Element.hxx -MoniTool_HSequenceOfElement.hxx -MoniTool_IndexedDataMapOfShapeTransient.hxx -MoniTool_IntVal.cxx -MoniTool_IntVal.hxx -MoniTool_Macros.hxx -MoniTool_RealVal.cxx -MoniTool_RealVal.hxx -MoniTool_SequenceOfElement.hxx -MoniTool_SignShape.cxx -MoniTool_SignShape.hxx -MoniTool_SignText.cxx -MoniTool_SignText.hxx -MoniTool_Stat.cxx -MoniTool_Stat.hxx -MoniTool_Timer.cxx -MoniTool_Timer.hxx -MoniTool_Timer.lxx -MoniTool_TimerSentry.hxx -MoniTool_TimerSentry.lxx -MoniTool_TransientElem.cxx -MoniTool_TransientElem.hxx -MoniTool_TypedValue.cxx -MoniTool_TypedValue.hxx -MoniTool_ValueInterpret.hxx -MoniTool_ValueSatisfies.hxx -MoniTool_ValueType.hxx diff --git a/src/NCollection/FILES b/src/NCollection/FILES deleted file mode 100755 index 0092517dea..0000000000 --- a/src/NCollection/FILES +++ /dev/null @@ -1,77 +0,0 @@ -NCollection_AccAllocator.cxx -NCollection_AccAllocator.hxx -NCollection_AliasedArray.hxx -NCollection_AlignedAllocator.cxx -NCollection_AlignedAllocator.hxx -NCollection_Allocator.hxx -NCollection_Array1.hxx -NCollection_Array2.hxx -NCollection_BaseAllocator.cxx -NCollection_BaseAllocator.hxx -NCollection_BaseList.cxx -NCollection_BaseList.hxx -NCollection_BaseMap.cxx -NCollection_BaseMap.hxx -NCollection_BasePointerVector.cxx -NCollection_BasePointerVector.hxx -NCollection_BaseSequence.cxx -NCollection_BaseSequence.hxx -NCollection_Buffer.hxx -NCollection_CellFilter.hxx -NCollection_DataMap.hxx -NCollection_DefaultHasher.hxx -NCollection_DefineAlloc.hxx -NCollection_DefineHArray1.hxx -NCollection_DefineHArray2.hxx -NCollection_DefineHasher.hxx -NCollection_DefineHSequence.hxx -NCollection_DoubleMap.hxx -NCollection_DynamicArray.hxx -NCollection_EBTree.hxx -NCollection_Haft.h -NCollection_Handle.hxx -NCollection_HArray1.hxx -NCollection_HArray2.hxx -NCollection_HeapAllocator.cxx -NCollection_HeapAllocator.hxx -NCollection_HSequence.hxx -NCollection_IncAllocator.cxx -NCollection_IncAllocator.hxx -NCollection_IndexedDataMap.hxx -NCollection_IndexedIterator.hxx -NCollection_IndexedMap.hxx -NCollection_Iterator.hxx -NCollection_Lerp.hxx -NCollection_List.hxx -NCollection_ListNode.hxx -NCollection_LocalArray.hxx -NCollection_Map.hxx -NCollection_MapAlgo.hxx -NCollection_Mat3.hxx -NCollection_Mat4.hxx -NCollection_OccAllocator.hxx -NCollection_Primes.cxx -NCollection_Primes.hxx -NCollection_Sequence.hxx -NCollection_Shared.hxx -NCollection_SparseArray.hxx -NCollection_SparseArrayBase.cxx -NCollection_SparseArrayBase.hxx -NCollection_StlIterator.hxx -NCollection_String.hxx -NCollection_TListIterator.hxx -NCollection_TListNode.hxx -NCollection_TypeDef.hxx -NCollection_UBTree.hxx -NCollection_UBTreeFiller.hxx -NCollection_UtfIterator.hxx -NCollection_UtfIterator.lxx -NCollection_UtfString.hxx -NCollection_UtfString.lxx -NCollection_UtfString.cxx -NCollection_Vec2.hxx -NCollection_Vec3.hxx -NCollection_Vec4.hxx -NCollection_Vector.hxx -NCollection_WinHeapAllocator.cxx -NCollection_WinHeapAllocator.hxx diff --git a/src/NLPlate/FILES b/src/NLPlate/FILES deleted file mode 100644 index 9fdc4a2a7d..0000000000 --- a/src/NLPlate/FILES +++ /dev/null @@ -1,21 +0,0 @@ -NLPlate_HGPPConstraint.cxx -NLPlate_HGPPConstraint.hxx -NLPlate_HPG0Constraint.cxx -NLPlate_HPG0Constraint.hxx -NLPlate_HPG0G1Constraint.cxx -NLPlate_HPG0G1Constraint.hxx -NLPlate_HPG0G2Constraint.cxx -NLPlate_HPG0G2Constraint.hxx -NLPlate_HPG0G3Constraint.cxx -NLPlate_HPG0G3Constraint.hxx -NLPlate_HPG1Constraint.cxx -NLPlate_HPG1Constraint.hxx -NLPlate_HPG2Constraint.cxx -NLPlate_HPG2Constraint.hxx -NLPlate_HPG3Constraint.cxx -NLPlate_HPG3Constraint.hxx -NLPlate_ListIteratorOfStackOfPlate.hxx -NLPlate_NLPlate.cxx -NLPlate_NLPlate.hxx -NLPlate_SequenceOfHGPPConstraint.hxx -NLPlate_StackOfPlate.hxx diff --git a/src/OSD/FILES b/src/OSD/FILES deleted file mode 100755 index 396f3ebabc..0000000000 --- a/src/OSD/FILES +++ /dev/null @@ -1,97 +0,0 @@ -OSD.cxx -OSD.hxx -OSD_CachedFileSystem.cxx -OSD_CachedFileSystem.hxx -OSD_Chronometer.cxx -OSD_Chronometer.hxx -OSD_Directory.cxx -OSD_Directory.hxx -OSD_DirectoryIterator.cxx -OSD_DirectoryIterator.hxx -OSD_Disk.cxx -OSD_Disk.hxx -OSD_Environment.cxx -OSD_Environment.hxx -OSD_Error.cxx -OSD_Error.hxx -OSD_ErrorList.hxx -OSD_Exception.hxx -OSD_Exception_ACCESS_VIOLATION.hxx -OSD_Exception_ARRAY_BOUNDS_EXCEEDED.hxx -OSD_Exception_CTRL_BREAK.hxx -OSD_Exception_ILLEGAL_INSTRUCTION.hxx -OSD_Exception_IN_PAGE_ERROR.hxx -OSD_Exception_INT_OVERFLOW.hxx -OSD_Exception_INVALID_DISPOSITION.hxx -OSD_Exception_NONCONTINUABLE_EXCEPTION.hxx -OSD_Exception_PRIV_INSTRUCTION.hxx -OSD_Exception_STACK_OVERFLOW.hxx -OSD_Exception_STATUS_NO_MEMORY.hxx -OSD_File.cxx -OSD_File.hxx -OSD_FileIterator.cxx -OSD_FileIterator.hxx -OSD_FileNode.cxx -OSD_FileNode.hxx -OSD_FileSystem.cxx -OSD_FileSystem.hxx -OSD_FileSystemSelector.cxx -OSD_FileSystemSelector.hxx -OSD_FromWhere.hxx -OSD_Function.hxx -OSD_Host.cxx -OSD_Host.hxx -OSD_KindFile.hxx -OSD_LoadMode.hxx -OSD_LocalFileSystem.cxx -OSD_LocalFileSystem.hxx -OSD_LockType.hxx -OSD_MAllocHook.cxx -OSD_MAllocHook.hxx -OSD_MemInfo.cxx -OSD_MemInfo.hxx -OSD_OEMType.hxx -OSD_OpenFile.cxx -OSD_OpenFile.hxx -OSD_OpenMode.hxx -OSD_OSDError.hxx -OSD_Parallel.cxx -OSD_Parallel.hxx -OSD_Parallel_TBB.cxx -OSD_Parallel_Threads.cxx -OSD_Path.cxx -OSD_Path.hxx -OSD_PerfMeter.cxx -OSD_PerfMeter.h -OSD_PerfMeter.hxx -OSD_Process.cxx -OSD_Process.hxx -OSD_Protection.cxx -OSD_Protection.hxx -OSD_PThread.hxx -OSD_SharedLibrary.cxx -OSD_SharedLibrary.hxx -OSD_SIGBUS.hxx -OSD_SIGHUP.hxx -OSD_SIGILL.hxx -OSD_SIGINT.hxx -OSD_SIGKILL.hxx -OSD_signal.cxx -OSD_Signal.hxx -OSD_SIGQUIT.hxx -OSD_SIGSEGV.hxx -OSD_SIGSYS.hxx -OSD_SingleProtection.hxx -OSD_StreamBuffer.hxx -OSD_SysType.hxx -OSD_Thread.cxx -OSD_Thread.hxx -OSD_ThreadPool.cxx -OSD_ThreadPool.hxx -OSD_ThreadFunction.hxx -OSD_Timer.cxx -OSD_Timer.hxx -OSD_WhoAmI.hxx -OSD_WNT.cxx -OSD_WNT.hxx -OSD_SignalMode.hxx diff --git a/src/OpenGl/FILES b/src/OpenGl/FILES deleted file mode 100755 index 990a881650..0000000000 --- a/src/OpenGl/FILES +++ /dev/null @@ -1,155 +0,0 @@ -OpenGl_glext.h -OpenGl_khrplatform.h -OpenGl_ArbDbg.hxx -OpenGl_ArbFBO.hxx -OpenGl_ArbIns.hxx -OpenGl_ArbSamplerObject.hxx -OpenGl_ArbTBO.hxx -OpenGl_ArbTexBindless.hxx -OpenGl_Aspects.cxx -OpenGl_Aspects.hxx -OpenGl_AspectsProgram.cxx -OpenGl_AspectsProgram.hxx -OpenGl_AspectsSprite.cxx -OpenGl_AspectsSprite.hxx -OpenGl_AspectsTextureSet.cxx -OpenGl_AspectsTextureSet.hxx -OpenGl_Buffer.cxx -OpenGl_Buffer.hxx -OpenGl_BufferCompatT.hxx -OpenGl_FrameStats.cxx -OpenGl_FrameStats.hxx -OpenGl_FrameStatsPrs.cxx -OpenGl_FrameStatsPrs.hxx -OpenGl_Group.hxx -OpenGl_Group.cxx -OpenGl_Structure.hxx -OpenGl_Structure.cxx -OpenGl_StructureShadow.hxx -OpenGl_StructureShadow.cxx -OpenGl_Element.hxx -OpenGl_Element.cxx -OpenGl_Text.hxx -OpenGl_Text.cxx -OpenGl_PointSprite.hxx -OpenGl_PointSprite.cxx -OpenGl_PrimitiveArray.hxx -OpenGl_PrimitiveArray.cxx -OpenGl_Workspace.hxx -OpenGl_Workspace.cxx -OpenGl_View.hxx -OpenGl_View.cxx -OpenGl_View_Raytrace.cxx -OpenGl_GraduatedTrihedron.hxx -OpenGl_GraduatedTrihedron.cxx -OpenGl_Material.hxx -OpenGl_MaterialState.hxx -OpenGl_MatrixState.hxx -OpenGl_LineAttributes.hxx -OpenGl_LineAttributes.cxx -OpenGl_Window.hxx -OpenGl_Window.cxx -OpenGl_Window_1.mm -OpenGl_FrameBuffer.hxx -OpenGl_FrameBuffer.cxx -OpenGl_Texture.cxx -OpenGl_Texture.hxx -OpenGl_TextureFormat.cxx -OpenGl_TextureFormat.hxx -OpenGl_TextureSet.cxx -OpenGl_TextureSet.hxx -OpenGl_TextureSetPairIterator.hxx -OpenGl_Resource.hxx -OpenGl_Resource.cxx -OpenGl_NamedResource.hxx -OpenGl_Font.hxx -OpenGl_Font.cxx -OpenGl_BackgroundArray.cxx -OpenGl_BackgroundArray.hxx -OpenGl_CappingAlgo.cxx -OpenGl_CappingAlgo.hxx -OpenGl_CappingPlaneResource.cxx -OpenGl_CappingPlaneResource.hxx -OpenGl_Caps.cxx -OpenGl_Caps.hxx -OpenGl_Clipping.cxx -OpenGl_Clipping.hxx -OpenGl_ClippingIterator.hxx -OpenGl_Context.cxx -OpenGl_Context.hxx -OpenGl_Context_1.mm -OpenGl_DepthPeeling.cxx -OpenGl_DepthPeeling.hxx -OpenGl_ExtGS.hxx -OpenGl_GLESExtensions.hxx -OpenGl_GlFunctions.cxx -OpenGl_GlFunctions.hxx -OpenGl_GlNative.hxx -OpenGl_GlTypes.hxx -OpenGl_Flipper.cxx -OpenGl_Flipper.hxx -OpenGl_GlCore11.hxx -OpenGl_GlCore11Fwd.hxx -OpenGl_GlCore12.hxx -OpenGl_GlCore13.hxx -OpenGl_GlCore14.hxx -OpenGl_GlCore15.hxx -OpenGl_GlCore20.hxx -OpenGl_GlCore21.hxx -OpenGl_GlCore30.hxx -OpenGl_GlCore31.hxx -OpenGl_GlCore32.hxx -OpenGl_GlCore33.hxx -OpenGl_GlCore40.hxx -OpenGl_GlCore41.hxx -OpenGl_GlCore42.hxx -OpenGl_GlCore43.hxx -OpenGl_GlCore44.hxx -OpenGl_GlCore45.hxx -OpenGl_GlCore46.hxx -OpenGl_LayerList.cxx -OpenGl_LayerList.hxx -OpenGl_LayerFilter.hxx -OpenGl_GraphicDriver.cxx -OpenGl_GraphicDriver.hxx -OpenGl_GraphicDriverFactory.cxx -OpenGl_GraphicDriverFactory.hxx -OpenGl_IndexBuffer.cxx -OpenGl_IndexBuffer.hxx -OpenGl_Layer.hxx -OpenGl_PBREnvironment.cxx -OpenGl_PBREnvironment.hxx -OpenGl_RenderFilter.hxx -OpenGl_Sampler.cxx -OpenGl_Sampler.hxx -OpenGl_SceneGeometry.cxx -OpenGl_SceneGeometry.hxx -OpenGl_SetOfShaderPrograms.hxx -OpenGl_ShaderManager.cxx -OpenGl_ShaderManager.hxx -OpenGl_ShaderObject.cxx -OpenGl_ShaderObject.hxx -OpenGl_ShaderProgram.cxx -OpenGl_ShaderProgram.hxx -OpenGl_ShaderStates.cxx -OpenGl_ShaderStates.hxx -OpenGl_ShadowMap.cxx -OpenGl_ShadowMap.hxx -OpenGl_StencilTest.cxx -OpenGl_StencilTest.hxx -OpenGl_TileSampler.hxx -OpenGl_TileSampler.cxx -OpenGl_TextureBuffer.cxx -OpenGl_TextureBuffer.hxx -OpenGl_TextureBufferArb.hxx -OpenGl_UniformBuffer.cxx -OpenGl_UniformBuffer.hxx -OpenGl_Vec.hxx -OpenGl_VertexBuffer.cxx -OpenGl_VertexBuffer.hxx -OpenGl_VertexBufferCompat.hxx -OpenGl_VertexBufferEditor.hxx -OpenGl_TextBuilder.hxx -OpenGl_TextBuilder.cxx -OpenGl_HaltonSampler.hxx -OpenGl_ShaderProgramDumpLevel.hxx diff --git a/src/OpenGlTest/FILES b/src/OpenGlTest/FILES deleted file mode 100644 index 267e9c4726..0000000000 --- a/src/OpenGlTest/FILES +++ /dev/null @@ -1,3 +0,0 @@ -OpenGlTest.cxx -OpenGlTest.hxx -OpenGlTest_Commands.cxx diff --git a/src/PCDM/FILES b/src/PCDM/FILES deleted file mode 100755 index 4bd85fb794..0000000000 --- a/src/PCDM/FILES +++ /dev/null @@ -1,32 +0,0 @@ -PCDM.cxx -PCDM.hxx -PCDM_BaseDriverPointer.hxx -PCDM_Document.cxx -PCDM_Document.hxx -PCDM_DOMHeaderParser.cxx -PCDM_DOMHeaderParser.hxx -PCDM_DriverError.hxx -PCDM_Reader.cxx -PCDM_Reader.hxx -PCDM_Reader.lxx -PCDM_ReaderFilter.cxx -PCDM_ReaderFilter.hxx -PCDM_ReaderStatus.hxx -PCDM_ReadWriter.cxx -PCDM_ReadWriter.hxx -PCDM_ReadWriter_1.cxx -PCDM_ReadWriter_1.hxx -PCDM_Reference.cxx -PCDM_Reference.hxx -PCDM_ReferenceIterator.cxx -PCDM_ReferenceIterator.hxx -PCDM_RetrievalDriver.cxx -PCDM_RetrievalDriver.hxx -PCDM_SequenceOfDocument.hxx -PCDM_SequenceOfReference.hxx -PCDM_StorageDriver.cxx -PCDM_StorageDriver.hxx -PCDM_StoreStatus.hxx -PCDM_TypeOfFileDriver.hxx -PCDM_Writer.cxx -PCDM_Writer.hxx diff --git a/src/PLib/FILES b/src/PLib/FILES deleted file mode 100755 index 2846d81851..0000000000 --- a/src/PLib/FILES +++ /dev/null @@ -1,14 +0,0 @@ -PLib.cxx -PLib.hxx -PLib_Base.cxx -PLib_Base.hxx -PLib_DoubleJacobiPolynomial.cxx -PLib_DoubleJacobiPolynomial.hxx -PLib_DoubleJacobiPolynomial.lxx -PLib_HermitJacobi.cxx -PLib_HermitJacobi.hxx -PLib_HermitJacobi.lxx -PLib_JacobiPolynomial.cxx -PLib_JacobiPolynomial.hxx -PLib_JacobiPolynomial.lxx -PLib_JacobiPolynomial_Data.pxx diff --git a/src/Plate/FILES b/src/Plate/FILES deleted file mode 100644 index 12e529bbc3..0000000000 --- a/src/Plate/FILES +++ /dev/null @@ -1,42 +0,0 @@ -Plate_Array1OfPinpointConstraint.hxx -Plate_D1.cxx -Plate_D1.hxx -Plate_D1.lxx -Plate_D2.cxx -Plate_D2.hxx -Plate_D3.cxx -Plate_D3.hxx -Plate_FreeGtoCConstraint.cxx -Plate_FreeGtoCConstraint.hxx -Plate_FreeGtoCConstraint.lxx -Plate_GlobalTranslationConstraint.cxx -Plate_GlobalTranslationConstraint.hxx -Plate_GlobalTranslationConstraint.lxx -Plate_GtoCConstraint.cxx -Plate_GtoCConstraint.hxx -Plate_GtoCConstraint.lxx -Plate_HArray1OfPinpointConstraint.hxx -Plate_LinearScalarConstraint.cxx -Plate_LinearScalarConstraint.hxx -Plate_LinearScalarConstraint.lxx -Plate_LinearXYZConstraint.cxx -Plate_LinearXYZConstraint.hxx -Plate_LinearXYZConstraint.lxx -Plate_LineConstraint.cxx -Plate_LineConstraint.hxx -Plate_LineConstraint.lxx -Plate_PinpointConstraint.cxx -Plate_PinpointConstraint.hxx -Plate_PinpointConstraint.lxx -Plate_PlaneConstraint.cxx -Plate_PlaneConstraint.hxx -Plate_PlaneConstraint.lxx -Plate_Plate.cxx -Plate_Plate.hxx -Plate_Plate.lxx -Plate_SampledCurveConstraint.cxx -Plate_SampledCurveConstraint.hxx -Plate_SampledCurveConstraint.lxx -Plate_SequenceOfLinearScalarConstraint.hxx -Plate_SequenceOfLinearXYZConstraint.hxx -Plate_SequenceOfPinpointConstraint.hxx diff --git a/src/Plugin/FILES b/src/Plugin/FILES deleted file mode 100755 index 6912517d74..0000000000 --- a/src/Plugin/FILES +++ /dev/null @@ -1,6 +0,0 @@ -Plugin.cxx -Plugin.hxx -Plugin_DataMapIteratorOfMapOfFunctions.hxx -Plugin_Failure.hxx -Plugin_Macro.hxx -Plugin_MapOfFunctions.hxx diff --git a/src/Poly/FILES b/src/Poly/FILES deleted file mode 100755 index 46d643c57a..0000000000 --- a/src/Poly/FILES +++ /dev/null @@ -1,37 +0,0 @@ -Poly.cxx -Poly.hxx -Poly_Array1OfTriangle.hxx -Poly_ArrayOfNodes.cxx -Poly_ArrayOfNodes.hxx -Poly_ArrayOfUVNodes.cxx -Poly_ArrayOfUVNodes.hxx -Poly_CoherentLink.cxx -Poly_CoherentLink.hxx -Poly_CoherentNode.cxx -Poly_CoherentNode.hxx -Poly_CoherentTriangle.cxx -Poly_CoherentTriangle.hxx -Poly_CoherentTriangulation.cxx -Poly_CoherentTriangulation.hxx -Poly_CoherentTriPtr.cxx -Poly_CoherentTriPtr.hxx -Poly_Connect.cxx -Poly_Connect.hxx -Poly_HArray1OfTriangle.hxx -Poly_ListOfTriangulation.hxx -Poly_MakeLoops.cxx -Poly_MakeLoops.hxx -Poly_MeshPurpose.hxx -Poly_MergeNodesTool.cxx -Poly_MergeNodesTool.hxx -Poly_Polygon2D.cxx -Poly_Polygon2D.hxx -Poly_Polygon3D.cxx -Poly_Polygon3D.hxx -Poly_PolygonOnTriangulation.cxx -Poly_PolygonOnTriangulation.hxx -Poly_Triangle.hxx -Poly_TriangulationParameters.hxx -Poly_TriangulationParameters.cxx -Poly_Triangulation.cxx -Poly_Triangulation.hxx diff --git a/src/Precision/FILES b/src/Precision/FILES deleted file mode 100644 index 6e172d2a91..0000000000 --- a/src/Precision/FILES +++ /dev/null @@ -1 +0,0 @@ -Precision.hxx diff --git a/src/ProjLib/FILES b/src/ProjLib/FILES deleted file mode 100644 index 792699d48e..0000000000 --- a/src/ProjLib/FILES +++ /dev/null @@ -1,34 +0,0 @@ -ProjLib.cxx -ProjLib.hxx -ProjLib_CompProjectedCurve.cxx -ProjLib_CompProjectedCurve.hxx -ProjLib_ComputeApprox.cxx -ProjLib_ComputeApprox.hxx -ProjLib_ComputeApproxOnPolarSurface.cxx -ProjLib_ComputeApproxOnPolarSurface.hxx -ProjLib_Cone.cxx -ProjLib_Cone.hxx -ProjLib_Cylinder.cxx -ProjLib_Cylinder.hxx -ProjLib_HCompProjectedCurve.hxx -ProjLib_HProjectedCurve.hxx -ProjLib_HSequenceOfHSequenceOfPnt.hxx -ProjLib_Plane.cxx -ProjLib_Plane.hxx -ProjLib_PrjFunc.cxx -ProjLib_PrjFunc.hxx -ProjLib_PrjResolve.cxx -ProjLib_PrjResolve.hxx -ProjLib_ProjectedCurve.cxx -ProjLib_ProjectedCurve.hxx -ProjLib_ProjectOnPlane.cxx -ProjLib_ProjectOnPlane.hxx -ProjLib_ProjectOnSurface.cxx -ProjLib_ProjectOnSurface.hxx -ProjLib_Projector.cxx -ProjLib_Projector.hxx -ProjLib_SequenceOfHSequenceOfPnt.hxx -ProjLib_Sphere.cxx -ProjLib_Sphere.hxx -ProjLib_Torus.cxx -ProjLib_Torus.hxx diff --git a/src/Prs3d/FILES b/src/Prs3d/FILES deleted file mode 100755 index 2ac227d719..0000000000 --- a/src/Prs3d/FILES +++ /dev/null @@ -1,63 +0,0 @@ -Prs3d.cxx -Prs3d.hxx -Prs3d_Arrow.cxx -Prs3d_Arrow.hxx -Prs3d_ArrowAspect.cxx -Prs3d_ArrowAspect.hxx -Prs3d_BasicAspect.cxx -Prs3d_BasicAspect.hxx -Prs3d_BndBox.cxx -Prs3d_BndBox.hxx -Prs3d_DatumAspect.cxx -Prs3d_DatumAspect.hxx -Prs3d_DatumAttribute.hxx -Prs3d_DatumAxes.hxx -Prs3d_DatumMode.hxx -Prs3d_DatumParts.hxx -Prs3d_DimensionArrowOrientation.hxx -Prs3d_DimensionAspect.cxx -Prs3d_DimensionAspect.hxx -Prs3d_DimensionTextHorizontalPosition.hxx -Prs3d_DimensionTextVerticalPosition.hxx -Prs3d_DimensionUnits.hxx -Prs3d_Drawer.cxx -Prs3d_Drawer.hxx -Prs3d_InvalidAngle.hxx -Prs3d_IsoAspect.cxx -Prs3d_IsoAspect.hxx -Prs3d_LineAspect.cxx -Prs3d_LineAspect.hxx -Prs3d_NListIteratorOfListOfSequenceOfPnt.hxx -Prs3d_NListOfSequenceOfPnt.hxx -Prs3d_PlaneAspect.cxx -Prs3d_PlaneAspect.hxx -Prs3d_Point.hxx -Prs3d_PointAspect.cxx -Prs3d_PointAspect.hxx -Prs3d_Presentation.hxx -Prs3d_PresentationShadow.cxx -Prs3d_PresentationShadow.hxx -Prs3d_Root.hxx -Prs3d_ShadingAspect.cxx -Prs3d_ShadingAspect.hxx -Prs3d_ShapeTool.hxx -Prs3d_Text.cxx -Prs3d_Text.hxx -Prs3d_TextAspect.cxx -Prs3d_TextAspect.hxx -Prs3d_ToolDisk.hxx -Prs3d_ToolDisk.cxx -Prs3d_ToolCylinder.hxx -Prs3d_ToolCylinder.cxx -Prs3d_ToolQuadric.hxx -Prs3d_ToolQuadric.cxx -Prs3d_ToolSector.hxx -Prs3d_ToolSector.cxx -Prs3d_ToolSphere.hxx -Prs3d_ToolSphere.cxx -Prs3d_ToolTorus.hxx -Prs3d_ToolTorus.cxx -Prs3d_TypeOfHighlight.hxx -Prs3d_TypeOfHLR.hxx -Prs3d_TypeOfLinePicking.hxx -Prs3d_VertexDrawMode.hxx diff --git a/src/PrsDim/FILES b/src/PrsDim/FILES deleted file mode 100644 index 03d27fbc4a..0000000000 --- a/src/PrsDim/FILES +++ /dev/null @@ -1,56 +0,0 @@ -PrsDim.cxx -PrsDim.hxx -PrsDim_AngleDimension.cxx -PrsDim_AngleDimension.hxx -PrsDim_Chamf2dDimension.cxx -PrsDim_Chamf2dDimension.hxx -PrsDim_Chamf3dDimension.cxx -PrsDim_Chamf3dDimension.hxx -PrsDim_ConcentricRelation.cxx -PrsDim_ConcentricRelation.hxx -PrsDim_DiameterDimension.cxx -PrsDim_DiameterDimension.hxx -PrsDim_Dimension.cxx -PrsDim_Dimension.hxx -PrsDim_DimensionOwner.cxx -PrsDim_DimensionOwner.hxx -PrsDim_EllipseRadiusDimension.cxx -PrsDim_EllipseRadiusDimension.hxx -PrsDim_EqualDistanceRelation.cxx -PrsDim_EqualDistanceRelation.hxx -PrsDim_EqualRadiusRelation.cxx -PrsDim_EqualRadiusRelation.hxx -PrsDim_FixRelation.cxx -PrsDim_FixRelation.hxx -PrsDim_IdenticRelation.cxx -PrsDim_IdenticRelation.hxx -PrsDim_LengthDimension.cxx -PrsDim_LengthDimension.hxx -PrsDim_MaxRadiusDimension.cxx -PrsDim_MaxRadiusDimension.hxx -PrsDim_MidPointRelation.cxx -PrsDim_MidPointRelation.hxx -PrsDim_MinRadiusDimension.cxx -PrsDim_MinRadiusDimension.hxx -PrsDim_OffsetDimension.cxx -PrsDim_OffsetDimension.hxx -PrsDim_ParallelRelation.cxx -PrsDim_ParallelRelation.hxx -PrsDim_PerpendicularRelation.cxx -PrsDim_PerpendicularRelation.hxx -PrsDim_RadiusDimension.cxx -PrsDim_RadiusDimension.hxx -PrsDim_Relation.cxx -PrsDim_Relation.hxx -PrsDim_SymmetricRelation.cxx -PrsDim_SymmetricRelation.hxx -PrsDim_TangentRelation.cxx -PrsDim_TangentRelation.hxx -PrsDim_DimensionSelectionMode.hxx -PrsDim_DisplaySpecialSymbol.hxx -PrsDim_KindOfDimension.hxx -PrsDim_KindOfRelation.hxx -PrsDim_KindOfSurface.hxx -PrsDim_TypeOfAngle.hxx -PrsDim_TypeOfAngleArrowVisibility.hxx -PrsDim_TypeOfDist.hxx diff --git a/src/PrsMgr/FILES b/src/PrsMgr/FILES deleted file mode 100644 index db60b822b7..0000000000 --- a/src/PrsMgr/FILES +++ /dev/null @@ -1,13 +0,0 @@ -PrsMgr_DisplayStatus.hxx -PrsMgr_ListOfPresentableObjects.hxx -PrsMgr_ListOfPresentations.hxx -PrsMgr_PresentableObject.cxx -PrsMgr_PresentableObject.hxx -PrsMgr_Presentation.cxx -PrsMgr_Presentation.hxx -PrsMgr_Presentation3d.hxx -PrsMgr_PresentationManager.cxx -PrsMgr_PresentationManager.hxx -PrsMgr_PresentationManager3d.hxx -PrsMgr_Presentations.hxx -PrsMgr_TypeOfPresentation3d.hxx diff --git a/src/QABugs/FILES b/src/QABugs/FILES deleted file mode 100644 index e63687d16d..0000000000 --- a/src/QABugs/FILES +++ /dev/null @@ -1,24 +0,0 @@ -QABugs.cxx -QABugs.hxx -QABugs_1.cxx -QABugs_2.cxx -QABugs_3.cxx -QABugs_5.cxx -QABugs_6.cxx -QABugs_7.cxx -QABugs_8.cxx -QABugs_9.cxx -QABugs_10.cxx -QABugs_11.cxx -QABugs_12.cxx -QABugs_13.cxx -QABugs_14.cxx -QABugs_15.cxx -QABugs_16.cxx -QABugs_17.cxx -QABugs_18.cxx -QABugs_19.cxx -QABugs_20.cxx -QABugs_BVH.cxx -QABugs_PresentableObject.cxx -QABugs_PresentableObject.hxx diff --git a/src/QADNaming/FILES b/src/QADNaming/FILES deleted file mode 100755 index 80db1ef999..0000000000 --- a/src/QADNaming/FILES +++ /dev/null @@ -1,8 +0,0 @@ -QADNaming.cxx -QADNaming.hxx -QADNaming_BasicCommands.cxx -QADNaming_BuilderCommands.cxx -QADNaming_IteratorsCommands.cxx -QADNaming_Selection.tcl -QADNaming_SelectionCommands.cxx -QADNaming_ToolsCommands.cxx diff --git a/src/QADraw/FILES b/src/QADraw/FILES deleted file mode 100755 index 4194c1f5c4..0000000000 --- a/src/QADraw/FILES +++ /dev/null @@ -1,3 +0,0 @@ -QADraw.cxx -QADraw.hxx -QADraw_Tutorials.cxx diff --git a/src/QANCollection/FILES b/src/QANCollection/FILES deleted file mode 100755 index 8025e6fc9a..0000000000 --- a/src/QANCollection/FILES +++ /dev/null @@ -1,17 +0,0 @@ -FILES -QANCollection.cxx -QANCollection.hxx -QANCollection_Alloc.cxx -QANCollection_Handle.cxx -QANCollection_Common.cxx -QANCollection_Common.hxx -QANCollection_DataMapIteratorOfDataMapOfRealPnt.hxx -QANCollection_DataMapOfRealPnt.hxx -QANCollection_DoubleMapIteratorOfDoubleMapOfRealInteger.hxx -QANCollection_DoubleMapOfRealInteger.hxx -QANCollection_IndexedDataMapOfRealPnt.hxx -QANCollection_ListIteratorOfListOfPnt.hxx -QANCollection_ListOfPnt.hxx -QANCollection_Perf.cxx -QANCollection_Stl.cxx -QANCollection_Test.cxx diff --git a/src/Quantity/FILES b/src/Quantity/FILES deleted file mode 100755 index ff72f3eafc..0000000000 --- a/src/Quantity/FILES +++ /dev/null @@ -1,15 +0,0 @@ -Quantity_Array1OfColor.hxx -Quantity_Color.cxx -Quantity_Color.hxx -Quantity_ColorTable.pxx -Quantity_ColorRGBA.cxx -Quantity_ColorRGBA.hxx -Quantity_Date.cxx -Quantity_Date.hxx -Quantity_DateDefinitionError.hxx -Quantity_HArray1OfColor.hxx -Quantity_NameOfColor.hxx -Quantity_Period.cxx -Quantity_Period.hxx -Quantity_PeriodDefinitionError.hxx -Quantity_TypeOfColor.hxx diff --git a/src/RWGltf/FILES b/src/RWGltf/FILES deleted file mode 100644 index dda31cfa12..0000000000 --- a/src/RWGltf/FILES +++ /dev/null @@ -1,31 +0,0 @@ -RWGltf_CafReader.cxx -RWGltf_CafReader.hxx -RWGltf_CafWriter.cxx -RWGltf_CafWriter.hxx -RWGltf_ConfigurationNode.hxx -RWGltf_DracoParameters.hxx -RWGltf_GltfAccessor.hxx -RWGltf_GltfAccessorCompType.hxx -RWGltf_GltfAccessorLayout.hxx -RWGltf_GltfAlphaMode.hxx -RWGltf_GltfArrayType.hxx -RWGltf_GltfBufferView.hxx -RWGltf_GltfBufferViewTarget.hxx -RWGltf_GltfFace.hxx -RWGltf_GltfJsonParser.cxx -RWGltf_GltfJsonParser.hxx -RWGltf_GltfLatePrimitiveArray.cxx -RWGltf_GltfLatePrimitiveArray.hxx -RWGltf_GltfMaterialMap.cxx -RWGltf_GltfMaterialMap.hxx -RWGltf_GltfOStreamWriter.hxx -RWGltf_GltfPrimArrayData.hxx -RWGltf_GltfPrimitiveMode.hxx -RWGltf_GltfRootElement.hxx -RWGltf_GltfSceneNodeMap.hxx -RWGltf_MaterialCommon.hxx -RWGltf_MaterialMetallicRoughness.hxx -RWGltf_Provider.hxx -RWGltf_TriangulationReader.cxx -RWGltf_TriangulationReader.hxx -RWGltf_WriterTrsfFormat.hxx diff --git a/src/RWHeaderSection/FILES b/src/RWHeaderSection/FILES deleted file mode 100644 index 52d6bb3016..0000000000 --- a/src/RWHeaderSection/FILES +++ /dev/null @@ -1,12 +0,0 @@ -RWHeaderSection.cxx -RWHeaderSection.hxx -RWHeaderSection_GeneralModule.cxx -RWHeaderSection_GeneralModule.hxx -RWHeaderSection_ReadWriteModule.cxx -RWHeaderSection_ReadWriteModule.hxx -RWHeaderSection_RWFileDescription.cxx -RWHeaderSection_RWFileDescription.hxx -RWHeaderSection_RWFileName.cxx -RWHeaderSection_RWFileName.hxx -RWHeaderSection_RWFileSchema.cxx -RWHeaderSection_RWFileSchema.hxx diff --git a/src/RWMesh/FILES b/src/RWMesh/FILES deleted file mode 100644 index cbe8a51c98..0000000000 --- a/src/RWMesh/FILES +++ /dev/null @@ -1,23 +0,0 @@ -RWMesh.cxx -RWMesh.hxx -RWMesh_CafReader.cxx -RWMesh_CafReader.hxx -RWMesh_CoordinateSystem.hxx -RWMesh_CoordinateSystemConverter.cxx -RWMesh_CoordinateSystemConverter.hxx -RWMesh_EdgeIterator.cxx -RWMesh_EdgeIterator.hxx -RWMesh_FaceIterator.cxx -RWMesh_FaceIterator.hxx -RWMesh_MaterialMap.cxx -RWMesh_MaterialMap.hxx -RWMesh_NameFormat.hxx -RWMesh_NodeAttributes.hxx -RWMesh_ShapeIterator.cxx -RWMesh_ShapeIterator.hxx -RWMesh_TriangulationReader.cxx -RWMesh_TriangulationReader.hxx -RWMesh_TriangulationSource.cxx -RWMesh_TriangulationSource.hxx -RWMesh_VertexIterator.cxx -RWMesh_VertexIterator.hxx diff --git a/src/RWObj/FILES b/src/RWObj/FILES deleted file mode 100644 index ec7301bbf4..0000000000 --- a/src/RWObj/FILES +++ /dev/null @@ -1,22 +0,0 @@ -RWObj.cxx -RWObj.hxx -RWObj_CafReader.cxx -RWObj_CafReader.hxx -RWObj_CafWriter.cxx -RWObj_CafWriter.hxx -RWObj_ConfigurationNode.hxx -RWObj_Material.hxx -RWObj_MtlReader.cxx -RWObj_MtlReader.hxx -RWObj_ObjMaterialMap.cxx -RWObj_ObjMaterialMap.hxx -RWObj_ObjWriterContext.cxx -RWObj_ObjWriterContext.hxx -RWObj_Provider.hxx -RWObj_Reader.cxx -RWObj_Reader.hxx -RWObj_SubMesh.hxx -RWObj_SubMeshReason.hxx -RWObj_Tools.hxx -RWObj_TriangulationReader.cxx -RWObj_TriangulationReader.hxx diff --git a/src/RWPly/FILES b/src/RWPly/FILES deleted file mode 100644 index fe3176ef01..0000000000 --- a/src/RWPly/FILES +++ /dev/null @@ -1,6 +0,0 @@ -RWPly_CafWriter.cxx -RWPly_CafWriter.hxx -RWPly_ConfigurationNode.hxx -RWPly_PlyWriterContext.cxx -RWPly_PlyWriterContext.hxx -RWPly_Provider.hxx diff --git a/src/RWStepAP203/FILES b/src/RWStepAP203/FILES deleted file mode 100644 index c7b3424b60..0000000000 --- a/src/RWStepAP203/FILES +++ /dev/null @@ -1,22 +0,0 @@ -RWStepAP203_RWCcDesignApproval.cxx -RWStepAP203_RWCcDesignApproval.pxx -RWStepAP203_RWCcDesignCertification.cxx -RWStepAP203_RWCcDesignCertification.pxx -RWStepAP203_RWCcDesignContract.cxx -RWStepAP203_RWCcDesignContract.pxx -RWStepAP203_RWCcDesignDateAndTimeAssignment.cxx -RWStepAP203_RWCcDesignDateAndTimeAssignment.pxx -RWStepAP203_RWCcDesignPersonAndOrganizationAssignment.cxx -RWStepAP203_RWCcDesignPersonAndOrganizationAssignment.pxx -RWStepAP203_RWCcDesignSecurityClassification.cxx -RWStepAP203_RWCcDesignSecurityClassification.pxx -RWStepAP203_RWCcDesignSpecificationReference.cxx -RWStepAP203_RWCcDesignSpecificationReference.pxx -RWStepAP203_RWChange.cxx -RWStepAP203_RWChange.pxx -RWStepAP203_RWChangeRequest.cxx -RWStepAP203_RWChangeRequest.pxx -RWStepAP203_RWStartRequest.cxx -RWStepAP203_RWStartRequest.pxx -RWStepAP203_RWStartWork.cxx -RWStepAP203_RWStartWork.pxx diff --git a/src/RWStepAP214/FILES b/src/RWStepAP214/FILES deleted file mode 100755 index 269f9de267..0000000000 --- a/src/RWStepAP214/FILES +++ /dev/null @@ -1,58 +0,0 @@ -RWStepAP214.cxx -RWStepAP214.pxx -RWStepAP214_GeneralModule.cxx -RWStepAP214_GeneralModule.pxx -RWStepAP214_ReadWriteModule.cxx -RWStepAP214_ReadWriteModule.pxx -RWStepAP214_RWAppliedApprovalAssignment.cxx -RWStepAP214_RWAppliedApprovalAssignment.pxx -RWStepAP214_RWAppliedDateAndTimeAssignment.cxx -RWStepAP214_RWAppliedDateAndTimeAssignment.pxx -RWStepAP214_RWAppliedDateAssignment.cxx -RWStepAP214_RWAppliedDateAssignment.pxx -RWStepAP214_RWAppliedDocumentReference.cxx -RWStepAP214_RWAppliedDocumentReference.pxx -RWStepAP214_RWAppliedExternalIdentificationAssignment.cxx -RWStepAP214_RWAppliedExternalIdentificationAssignment.pxx -RWStepAP214_RWAppliedGroupAssignment.cxx -RWStepAP214_RWAppliedGroupAssignment.pxx -RWStepAP214_RWAppliedOrganizationAssignment.cxx -RWStepAP214_RWAppliedOrganizationAssignment.pxx -RWStepAP214_RWAppliedPersonAndOrganizationAssignment.cxx -RWStepAP214_RWAppliedPersonAndOrganizationAssignment.pxx -RWStepAP214_RWAppliedPresentedItem.cxx -RWStepAP214_RWAppliedPresentedItem.pxx -RWStepAP214_RWAppliedSecurityClassificationAssignment.cxx -RWStepAP214_RWAppliedSecurityClassificationAssignment.pxx -RWStepAP214_RWAutoDesignActualDateAndTimeAssignment.cxx -RWStepAP214_RWAutoDesignActualDateAndTimeAssignment.pxx -RWStepAP214_RWAutoDesignActualDateAssignment.cxx -RWStepAP214_RWAutoDesignActualDateAssignment.pxx -RWStepAP214_RWAutoDesignApprovalAssignment.cxx -RWStepAP214_RWAutoDesignApprovalAssignment.pxx -RWStepAP214_RWAutoDesignDateAndPersonAssignment.cxx -RWStepAP214_RWAutoDesignDateAndPersonAssignment.pxx -RWStepAP214_RWAutoDesignDocumentReference.cxx -RWStepAP214_RWAutoDesignDocumentReference.pxx -RWStepAP214_RWAutoDesignGroupAssignment.cxx -RWStepAP214_RWAutoDesignGroupAssignment.pxx -RWStepAP214_RWAutoDesignNominalDateAndTimeAssignment.cxx -RWStepAP214_RWAutoDesignNominalDateAndTimeAssignment.pxx -RWStepAP214_RWAutoDesignNominalDateAssignment.cxx -RWStepAP214_RWAutoDesignNominalDateAssignment.pxx -RWStepAP214_RWAutoDesignOrganizationAssignment.cxx -RWStepAP214_RWAutoDesignOrganizationAssignment.pxx -RWStepAP214_RWAutoDesignPersonAndOrganizationAssignment.cxx -RWStepAP214_RWAutoDesignPersonAndOrganizationAssignment.pxx -RWStepAP214_RWAutoDesignPresentedItem.cxx -RWStepAP214_RWAutoDesignPresentedItem.pxx -RWStepAP214_RWAutoDesignSecurityClassificationAssignment.cxx -RWStepAP214_RWAutoDesignSecurityClassificationAssignment.pxx -RWStepAP214_RWClass.cxx -RWStepAP214_RWClass.pxx -RWStepAP214_RWExternallyDefinedClass.cxx -RWStepAP214_RWExternallyDefinedClass.pxx -RWStepAP214_RWExternallyDefinedGeneralProperty.cxx -RWStepAP214_RWExternallyDefinedGeneralProperty.pxx -RWStepAP214_RWRepItemGroup.cxx -RWStepAP214_RWRepItemGroup.pxx diff --git a/src/RWStepAP242/FILES b/src/RWStepAP242/FILES deleted file mode 100644 index 61e3ade68b..0000000000 --- a/src/RWStepAP242/FILES +++ /dev/null @@ -1,8 +0,0 @@ -RWStepAP242_RWDraughtingModelItemAssociation.cxx -RWStepAP242_RWDraughtingModelItemAssociation.pxx -RWStepAP242_RWGeometricItemSpecificUsage.cxx -RWStepAP242_RWGeometricItemSpecificUsage.pxx -RWStepAP242_RWIdAttribute.cxx -RWStepAP242_RWIdAttribute.pxx -RWStepAP242_RWItemIdentifiedRepresentationUsage.cxx -RWStepAP242_RWItemIdentifiedRepresentationUsage.pxx diff --git a/src/RWStepBasic/FILES b/src/RWStepBasic/FILES deleted file mode 100644 index 2fba769ffb..0000000000 --- a/src/RWStepBasic/FILES +++ /dev/null @@ -1,238 +0,0 @@ -RWStepBasic_RWAction.cxx -RWStepBasic_RWAction.pxx -RWStepBasic_RWActionAssignment.cxx -RWStepBasic_RWActionAssignment.pxx -RWStepBasic_RWActionMethod.cxx -RWStepBasic_RWActionMethod.pxx -RWStepBasic_RWActionRequestAssignment.cxx -RWStepBasic_RWActionRequestAssignment.pxx -RWStepBasic_RWActionRequestSolution.cxx -RWStepBasic_RWActionRequestSolution.pxx -RWStepBasic_RWAddress.cxx -RWStepBasic_RWAddress.pxx -RWStepBasic_RWApplicationContext.cxx -RWStepBasic_RWApplicationContext.pxx -RWStepBasic_RWApplicationContextElement.cxx -RWStepBasic_RWApplicationContextElement.pxx -RWStepBasic_RWApplicationProtocolDefinition.cxx -RWStepBasic_RWApplicationProtocolDefinition.pxx -RWStepBasic_RWApproval.cxx -RWStepBasic_RWApproval.pxx -RWStepBasic_RWApprovalDateTime.cxx -RWStepBasic_RWApprovalDateTime.pxx -RWStepBasic_RWApprovalPersonOrganization.cxx -RWStepBasic_RWApprovalPersonOrganization.pxx -RWStepBasic_RWApprovalRelationship.cxx -RWStepBasic_RWApprovalRelationship.pxx -RWStepBasic_RWApprovalRole.cxx -RWStepBasic_RWApprovalRole.pxx -RWStepBasic_RWApprovalStatus.cxx -RWStepBasic_RWApprovalStatus.pxx -RWStepBasic_RWCalendarDate.cxx -RWStepBasic_RWCalendarDate.pxx -RWStepBasic_RWCertification.cxx -RWStepBasic_RWCertification.pxx -RWStepBasic_RWCertificationAssignment.cxx -RWStepBasic_RWCertificationAssignment.pxx -RWStepBasic_RWCertificationType.cxx -RWStepBasic_RWCertificationType.pxx -RWStepBasic_RWCharacterizedObject.cxx -RWStepBasic_RWCharacterizedObject.pxx -RWStepBasic_RWContract.cxx -RWStepBasic_RWContract.pxx -RWStepBasic_RWContractAssignment.cxx -RWStepBasic_RWContractAssignment.pxx -RWStepBasic_RWContractType.cxx -RWStepBasic_RWContractType.pxx -RWStepBasic_RWConversionBasedUnit.cxx -RWStepBasic_RWConversionBasedUnit.pxx -RWStepBasic_RWConversionBasedUnitAndAreaUnit.cxx -RWStepBasic_RWConversionBasedUnitAndAreaUnit.pxx -RWStepBasic_RWConversionBasedUnitAndLengthUnit.cxx -RWStepBasic_RWConversionBasedUnitAndLengthUnit.pxx -RWStepBasic_RWConversionBasedUnitAndMassUnit.cxx -RWStepBasic_RWConversionBasedUnitAndMassUnit.pxx -RWStepBasic_RWConversionBasedUnitAndPlaneAngleUnit.cxx -RWStepBasic_RWConversionBasedUnitAndPlaneAngleUnit.pxx -RWStepBasic_RWConversionBasedUnitAndRatioUnit.cxx -RWStepBasic_RWConversionBasedUnitAndRatioUnit.pxx -RWStepBasic_RWConversionBasedUnitAndSolidAngleUnit.cxx -RWStepBasic_RWConversionBasedUnitAndSolidAngleUnit.pxx -RWStepBasic_RWConversionBasedUnitAndTimeUnit.cxx -RWStepBasic_RWConversionBasedUnitAndTimeUnit.pxx -RWStepBasic_RWConversionBasedUnitAndVolumeUnit.cxx -RWStepBasic_RWConversionBasedUnitAndVolumeUnit.pxx -RWStepBasic_RWCoordinatedUniversalTimeOffset.cxx -RWStepBasic_RWCoordinatedUniversalTimeOffset.pxx -RWStepBasic_RWDate.cxx -RWStepBasic_RWDate.pxx -RWStepBasic_RWDateAndTime.cxx -RWStepBasic_RWDateAndTime.pxx -RWStepBasic_RWDateRole.cxx -RWStepBasic_RWDateRole.pxx -RWStepBasic_RWDateTimeRole.cxx -RWStepBasic_RWDateTimeRole.pxx -RWStepBasic_RWDerivedUnit.cxx -RWStepBasic_RWDerivedUnit.pxx -RWStepBasic_RWDerivedUnitElement.cxx -RWStepBasic_RWDerivedUnitElement.pxx -RWStepBasic_RWDimensionalExponents.cxx -RWStepBasic_RWDimensionalExponents.pxx -RWStepBasic_RWDocument.cxx -RWStepBasic_RWDocument.pxx -RWStepBasic_RWDocumentFile.cxx -RWStepBasic_RWDocumentFile.pxx -RWStepBasic_RWDocumentProductAssociation.cxx -RWStepBasic_RWDocumentProductAssociation.pxx -RWStepBasic_RWDocumentProductEquivalence.cxx -RWStepBasic_RWDocumentProductEquivalence.pxx -RWStepBasic_RWDocumentRelationship.cxx -RWStepBasic_RWDocumentRelationship.pxx -RWStepBasic_RWDocumentRepresentationType.cxx -RWStepBasic_RWDocumentRepresentationType.pxx -RWStepBasic_RWDocumentType.cxx -RWStepBasic_RWDocumentType.pxx -RWStepBasic_RWDocumentUsageConstraint.cxx -RWStepBasic_RWDocumentUsageConstraint.pxx -RWStepBasic_RWEffectivity.cxx -RWStepBasic_RWEffectivity.pxx -RWStepBasic_RWEffectivityAssignment.cxx -RWStepBasic_RWEffectivityAssignment.pxx -RWStepBasic_RWEulerAngles.cxx -RWStepBasic_RWEulerAngles.pxx -RWStepBasic_RWExternalIdentificationAssignment.cxx -RWStepBasic_RWExternalIdentificationAssignment.pxx -RWStepBasic_RWExternallyDefinedItem.cxx -RWStepBasic_RWExternallyDefinedItem.pxx -RWStepBasic_RWExternalSource.cxx -RWStepBasic_RWExternalSource.pxx -RWStepBasic_RWGeneralProperty.cxx -RWStepBasic_RWGeneralProperty.pxx -RWStepBasic_RWGeneralPropertyAssociation.cxx -RWStepBasic_RWGeneralPropertyAssociation.pxx -RWStepBasic_RWGeneralPropertyRelationship.cxx -RWStepBasic_RWGeneralPropertyRelationship.pxx -RWStepBasic_RWGroup.cxx -RWStepBasic_RWGroup.pxx -RWStepBasic_RWGroupAssignment.cxx -RWStepBasic_RWGroupAssignment.pxx -RWStepBasic_RWGroupRelationship.cxx -RWStepBasic_RWGroupRelationship.pxx -RWStepBasic_RWIdentificationAssignment.cxx -RWStepBasic_RWIdentificationAssignment.pxx -RWStepBasic_RWIdentificationRole.cxx -RWStepBasic_RWIdentificationRole.pxx -RWStepBasic_RWLengthMeasureWithUnit.cxx -RWStepBasic_RWLengthMeasureWithUnit.pxx -RWStepBasic_RWLengthUnit.cxx -RWStepBasic_RWLengthUnit.pxx -RWStepBasic_RWLocalTime.cxx -RWStepBasic_RWLocalTime.pxx -RWStepBasic_RWMassMeasureWithUnit.cxx -RWStepBasic_RWMassMeasureWithUnit.pxx -RWStepBasic_RWMassUnit.cxx -RWStepBasic_RWMassUnit.pxx -RWStepBasic_RWMeasureWithUnit.cxx -RWStepBasic_RWMeasureWithUnit.pxx -RWStepBasic_RWMechanicalContext.cxx -RWStepBasic_RWMechanicalContext.pxx -RWStepBasic_RWNameAssignment.cxx -RWStepBasic_RWNameAssignment.pxx -RWStepBasic_RWNamedUnit.cxx -RWStepBasic_RWNamedUnit.pxx -RWStepBasic_RWObjectRole.cxx -RWStepBasic_RWObjectRole.pxx -RWStepBasic_RWOrdinalDate.cxx -RWStepBasic_RWOrdinalDate.pxx -RWStepBasic_RWOrganization.cxx -RWStepBasic_RWOrganization.pxx -RWStepBasic_RWOrganizationalAddress.cxx -RWStepBasic_RWOrganizationalAddress.pxx -RWStepBasic_RWOrganizationRole.cxx -RWStepBasic_RWOrganizationRole.pxx -RWStepBasic_RWPerson.cxx -RWStepBasic_RWPerson.pxx -RWStepBasic_RWPersonalAddress.cxx -RWStepBasic_RWPersonalAddress.pxx -RWStepBasic_RWPersonAndOrganization.cxx -RWStepBasic_RWPersonAndOrganization.pxx -RWStepBasic_RWPersonAndOrganizationRole.cxx -RWStepBasic_RWPersonAndOrganizationRole.pxx -RWStepBasic_RWPlaneAngleMeasureWithUnit.cxx -RWStepBasic_RWPlaneAngleMeasureWithUnit.pxx -RWStepBasic_RWPlaneAngleUnit.cxx -RWStepBasic_RWPlaneAngleUnit.pxx -RWStepBasic_RWProduct.cxx -RWStepBasic_RWProduct.pxx -RWStepBasic_RWProductCategory.cxx -RWStepBasic_RWProductCategory.pxx -RWStepBasic_RWProductCategoryRelationship.cxx -RWStepBasic_RWProductCategoryRelationship.pxx -RWStepBasic_RWProductConceptContext.cxx -RWStepBasic_RWProductConceptContext.pxx -RWStepBasic_RWProductContext.cxx -RWStepBasic_RWProductContext.pxx -RWStepBasic_RWProductDefinition.cxx -RWStepBasic_RWProductDefinition.pxx -RWStepBasic_RWProductDefinitionContext.cxx -RWStepBasic_RWProductDefinitionContext.pxx -RWStepBasic_RWProductDefinitionEffectivity.cxx -RWStepBasic_RWProductDefinitionEffectivity.pxx -RWStepBasic_RWProductDefinitionFormation.cxx -RWStepBasic_RWProductDefinitionFormation.pxx -RWStepBasic_RWProductDefinitionFormationRelationship.cxx -RWStepBasic_RWProductDefinitionFormationRelationship.pxx -RWStepBasic_RWProductDefinitionFormationWithSpecifiedSource.cxx -RWStepBasic_RWProductDefinitionFormationWithSpecifiedSource.pxx -RWStepBasic_RWProductDefinitionReference.cxx -RWStepBasic_RWProductDefinitionReference.pxx -RWStepBasic_RWProductDefinitionReferenceWithLocalRepresentation.cxx -RWStepBasic_RWProductDefinitionReferenceWithLocalRepresentation.pxx -RWStepBasic_RWProductDefinitionRelationship.cxx -RWStepBasic_RWProductDefinitionRelationship.pxx -RWStepBasic_RWProductDefinitionWithAssociatedDocuments.cxx -RWStepBasic_RWProductDefinitionWithAssociatedDocuments.pxx -RWStepBasic_RWProductRelatedProductCategory.cxx -RWStepBasic_RWProductRelatedProductCategory.pxx -RWStepBasic_RWProductType.cxx -RWStepBasic_RWProductType.pxx -RWStepBasic_RWRatioMeasureWithUnit.cxx -RWStepBasic_RWRatioMeasureWithUnit.pxx -RWStepBasic_RWRoleAssociation.cxx -RWStepBasic_RWRoleAssociation.pxx -RWStepBasic_RWSecurityClassification.cxx -RWStepBasic_RWSecurityClassification.pxx -RWStepBasic_RWSecurityClassificationLevel.cxx -RWStepBasic_RWSecurityClassificationLevel.pxx -RWStepBasic_RWSiUnit.cxx -RWStepBasic_RWSiUnit.pxx -RWStepBasic_RWSiUnitAndAreaUnit.cxx -RWStepBasic_RWSiUnitAndAreaUnit.pxx -RWStepBasic_RWSiUnitAndLengthUnit.cxx -RWStepBasic_RWSiUnitAndLengthUnit.pxx -RWStepBasic_RWSiUnitAndMassUnit.cxx -RWStepBasic_RWSiUnitAndMassUnit.pxx -RWStepBasic_RWSiUnitAndPlaneAngleUnit.cxx -RWStepBasic_RWSiUnitAndPlaneAngleUnit.pxx -RWStepBasic_RWSiUnitAndRatioUnit.cxx -RWStepBasic_RWSiUnitAndRatioUnit.pxx -RWStepBasic_RWSiUnitAndSolidAngleUnit.cxx -RWStepBasic_RWSiUnitAndSolidAngleUnit.pxx -RWStepBasic_RWSiUnitAndThermodynamicTemperatureUnit.cxx -RWStepBasic_RWSiUnitAndThermodynamicTemperatureUnit.pxx -RWStepBasic_RWSiUnitAndTimeUnit.cxx -RWStepBasic_RWSiUnitAndTimeUnit.pxx -RWStepBasic_RWSiUnitAndVolumeUnit.cxx -RWStepBasic_RWSiUnitAndVolumeUnit.pxx -RWStepBasic_RWSolidAngleMeasureWithUnit.cxx -RWStepBasic_RWSolidAngleMeasureWithUnit.pxx -RWStepBasic_RWSolidAngleUnit.cxx -RWStepBasic_RWSolidAngleUnit.pxx -RWStepBasic_RWThermodynamicTemperatureUnit.cxx -RWStepBasic_RWThermodynamicTemperatureUnit.pxx -RWStepBasic_RWUncertaintyMeasureWithUnit.cxx -RWStepBasic_RWUncertaintyMeasureWithUnit.pxx -RWStepBasic_RWVersionedActionRequest.cxx -RWStepBasic_RWVersionedActionRequest.pxx -RWStepBasic_RWWeekOfYearAndDayDate.cxx -RWStepBasic_RWWeekOfYearAndDayDate.pxx diff --git a/src/RWStepDimTol/FILES b/src/RWStepDimTol/FILES deleted file mode 100644 index 2a0cc5a5d0..0000000000 --- a/src/RWStepDimTol/FILES +++ /dev/null @@ -1,98 +0,0 @@ -RWStepDimTol_RWAngularityTolerance.cxx -RWStepDimTol_RWAngularityTolerance.pxx -RWStepDimTol_RWCircularRunoutTolerance.cxx -RWStepDimTol_RWCircularRunoutTolerance.pxx -RWStepDimTol_RWCoaxialityTolerance.cxx -RWStepDimTol_RWCoaxialityTolerance.pxx -RWStepDimTol_RWCommonDatum.cxx -RWStepDimTol_RWCommonDatum.pxx -RWStepDimTol_RWConcentricityTolerance.cxx -RWStepDimTol_RWConcentricityTolerance.pxx -RWStepDimTol_RWCylindricityTolerance.cxx -RWStepDimTol_RWCylindricityTolerance.pxx -RWStepDimTol_RWDatum.cxx -RWStepDimTol_RWDatum.pxx -RWStepDimTol_RWDatumFeature.cxx -RWStepDimTol_RWDatumFeature.pxx -RWStepDimTol_RWDatumReference.cxx -RWStepDimTol_RWDatumReference.pxx -RWStepDimTol_RWDatumReferenceCompartment.cxx -RWStepDimTol_RWDatumReferenceCompartment.pxx -RWStepDimTol_RWDatumReferenceElement.cxx -RWStepDimTol_RWDatumReferenceElement.pxx -RWStepDimTol_RWDatumReferenceModifierWithValue.cxx -RWStepDimTol_RWDatumReferenceModifierWithValue.pxx -RWStepDimTol_RWDatumSystem.cxx -RWStepDimTol_RWDatumSystem.pxx -RWStepDimTol_RWDatumTarget.cxx -RWStepDimTol_RWDatumTarget.pxx -RWStepDimTol_RWFlatnessTolerance.cxx -RWStepDimTol_RWFlatnessTolerance.pxx -RWStepDimTol_RWGeneralDatumReference.cxx -RWStepDimTol_RWGeneralDatumReference.pxx -RWStepDimTol_RWGeometricTolerance.cxx -RWStepDimTol_RWGeometricTolerance.pxx -RWStepDimTol_RWGeometricToleranceRelationship.cxx -RWStepDimTol_RWGeometricToleranceRelationship.pxx -RWStepDimTol_RWGeometricToleranceWithDatumReference.cxx -RWStepDimTol_RWGeometricToleranceWithDatumReference.pxx -RWStepDimTol_RWGeometricToleranceWithDefinedAreaUnit.cxx -RWStepDimTol_RWGeometricToleranceWithDefinedAreaUnit.pxx -RWStepDimTol_RWGeometricToleranceWithDefinedUnit.cxx -RWStepDimTol_RWGeometricToleranceWithDefinedUnit.pxx -RWStepDimTol_RWGeometricToleranceWithMaximumTolerance.cxx -RWStepDimTol_RWGeometricToleranceWithMaximumTolerance.pxx -RWStepDimTol_RWGeometricToleranceWithModifiers.cxx -RWStepDimTol_RWGeometricToleranceWithModifiers.pxx -RWStepDimTol_RWGeoTolAndGeoTolWthDatRef.cxx -RWStepDimTol_RWGeoTolAndGeoTolWthDatRef.pxx -RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMaxTol.cxx -RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMaxTol.pxx -RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMod.cxx -RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndGeoTolWthMod.pxx -RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol.cxx -RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol.pxx -RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndUneqDisGeoTol.cxx -RWStepDimTol_RWGeoTolAndGeoTolWthDatRefAndUneqDisGeoTol.pxx -RWStepDimTol_RWGeoTolAndGeoTolWthMaxTol.cxx -RWStepDimTol_RWGeoTolAndGeoTolWthMaxTol.pxx -RWStepDimTol_RWGeoTolAndGeoTolWthMod.cxx -RWStepDimTol_RWGeoTolAndGeoTolWthMod.pxx -RWStepDimTol_RWLineProfileTolerance.cxx -RWStepDimTol_RWLineProfileTolerance.pxx -RWStepDimTol_RWModifiedGeometricTolerance.cxx -RWStepDimTol_RWModifiedGeometricTolerance.pxx -RWStepDimTol_RWNonUniformZoneDefinition.cxx -RWStepDimTol_RWNonUniformZoneDefinition.pxx -RWStepDimTol_RWParallelismTolerance.cxx -RWStepDimTol_RWParallelismTolerance.pxx -RWStepDimTol_RWPerpendicularityTolerance.cxx -RWStepDimTol_RWPerpendicularityTolerance.pxx -RWStepDimTol_RWPlacedDatumTargetFeature.cxx -RWStepDimTol_RWPlacedDatumTargetFeature.pxx -RWStepDimTol_RWPositionTolerance.cxx -RWStepDimTol_RWPositionTolerance.pxx -RWStepDimTol_RWProjectedZoneDefinition.cxx -RWStepDimTol_RWProjectedZoneDefinition.pxx -RWStepDimTol_RWRoundnessTolerance.cxx -RWStepDimTol_RWRoundnessTolerance.pxx -RWStepDimTol_RWRunoutZoneDefinition.cxx -RWStepDimTol_RWRunoutZoneDefinition.pxx -RWStepDimTol_RWRunoutZoneOrientation.cxx -RWStepDimTol_RWRunoutZoneOrientation.pxx -RWStepDimTol_RWStraightnessTolerance.cxx -RWStepDimTol_RWStraightnessTolerance.pxx -RWStepDimTol_RWSurfaceProfileTolerance.cxx -RWStepDimTol_RWSurfaceProfileTolerance.pxx -RWStepDimTol_RWSymmetryTolerance.cxx -RWStepDimTol_RWSymmetryTolerance.pxx -RWStepDimTol_RWToleranceZone.cxx -RWStepDimTol_RWToleranceZone.pxx -RWStepDimTol_RWToleranceZoneDefinition.cxx -RWStepDimTol_RWToleranceZoneDefinition.pxx -RWStepDimTol_RWToleranceZoneForm.cxx -RWStepDimTol_RWToleranceZoneForm.pxx -RWStepDimTol_RWTotalRunoutTolerance.cxx -RWStepDimTol_RWTotalRunoutTolerance.pxx -RWStepDimTol_RWUnequallyDisposedGeometricTolerance.cxx -RWStepDimTol_RWUnequallyDisposedGeometricTolerance.pxx diff --git a/src/RWStepElement/FILES b/src/RWStepElement/FILES deleted file mode 100644 index 31a0856571..0000000000 --- a/src/RWStepElement/FILES +++ /dev/null @@ -1,30 +0,0 @@ -RWStepElement_RWAnalysisItemWithinRepresentation.cxx -RWStepElement_RWAnalysisItemWithinRepresentation.pxx -RWStepElement_RWCurve3dElementDescriptor.cxx -RWStepElement_RWCurve3dElementDescriptor.pxx -RWStepElement_RWCurveElementEndReleasePacket.cxx -RWStepElement_RWCurveElementEndReleasePacket.pxx -RWStepElement_RWCurveElementSectionDefinition.cxx -RWStepElement_RWCurveElementSectionDefinition.pxx -RWStepElement_RWCurveElementSectionDerivedDefinitions.cxx -RWStepElement_RWCurveElementSectionDerivedDefinitions.pxx -RWStepElement_RWElementDescriptor.cxx -RWStepElement_RWElementDescriptor.pxx -RWStepElement_RWElementMaterial.cxx -RWStepElement_RWElementMaterial.pxx -RWStepElement_RWSurface3dElementDescriptor.cxx -RWStepElement_RWSurface3dElementDescriptor.pxx -RWStepElement_RWSurfaceElementProperty.cxx -RWStepElement_RWSurfaceElementProperty.pxx -RWStepElement_RWSurfaceSection.cxx -RWStepElement_RWSurfaceSection.pxx -RWStepElement_RWSurfaceSectionField.cxx -RWStepElement_RWSurfaceSectionField.pxx -RWStepElement_RWSurfaceSectionFieldConstant.cxx -RWStepElement_RWSurfaceSectionFieldConstant.pxx -RWStepElement_RWSurfaceSectionFieldVarying.cxx -RWStepElement_RWSurfaceSectionFieldVarying.pxx -RWStepElement_RWUniformSurfaceSection.cxx -RWStepElement_RWUniformSurfaceSection.pxx -RWStepElement_RWVolume3dElementDescriptor.cxx -RWStepElement_RWVolume3dElementDescriptor.pxx diff --git a/src/RWStepFEA/FILES b/src/RWStepFEA/FILES deleted file mode 100644 index 25abdc7507..0000000000 --- a/src/RWStepFEA/FILES +++ /dev/null @@ -1,104 +0,0 @@ -RWStepFEA_RWAlignedCurve3dElementCoordinateSystem.cxx -RWStepFEA_RWAlignedCurve3dElementCoordinateSystem.pxx -RWStepFEA_RWAlignedSurface3dElementCoordinateSystem.cxx -RWStepFEA_RWAlignedSurface3dElementCoordinateSystem.pxx -RWStepFEA_RWArbitraryVolume3dElementCoordinateSystem.cxx -RWStepFEA_RWArbitraryVolume3dElementCoordinateSystem.pxx -RWStepFEA_RWConstantSurface3dElementCoordinateSystem.cxx -RWStepFEA_RWConstantSurface3dElementCoordinateSystem.pxx -RWStepFEA_RWCurve3dElementProperty.cxx -RWStepFEA_RWCurve3dElementProperty.pxx -RWStepFEA_RWCurve3dElementRepresentation.cxx -RWStepFEA_RWCurve3dElementRepresentation.pxx -RWStepFEA_RWCurveElementEndOffset.cxx -RWStepFEA_RWCurveElementEndOffset.pxx -RWStepFEA_RWCurveElementEndRelease.cxx -RWStepFEA_RWCurveElementEndRelease.pxx -RWStepFEA_RWCurveElementInterval.cxx -RWStepFEA_RWCurveElementInterval.pxx -RWStepFEA_RWCurveElementIntervalConstant.cxx -RWStepFEA_RWCurveElementIntervalConstant.pxx -RWStepFEA_RWCurveElementIntervalLinearlyVarying.cxx -RWStepFEA_RWCurveElementIntervalLinearlyVarying.pxx -RWStepFEA_RWCurveElementLocation.cxx -RWStepFEA_RWCurveElementLocation.pxx -RWStepFEA_RWDummyNode.cxx -RWStepFEA_RWDummyNode.pxx -RWStepFEA_RWElementGeometricRelationship.cxx -RWStepFEA_RWElementGeometricRelationship.pxx -RWStepFEA_RWElementGroup.cxx -RWStepFEA_RWElementGroup.pxx -RWStepFEA_RWElementRepresentation.cxx -RWStepFEA_RWElementRepresentation.pxx -RWStepFEA_RWFeaAreaDensity.cxx -RWStepFEA_RWFeaAreaDensity.pxx -RWStepFEA_RWFeaAxis2Placement3d.cxx -RWStepFEA_RWFeaAxis2Placement3d.pxx -RWStepFEA_RWFeaCurveSectionGeometricRelationship.cxx -RWStepFEA_RWFeaCurveSectionGeometricRelationship.pxx -RWStepFEA_RWFeaGroup.cxx -RWStepFEA_RWFeaGroup.pxx -RWStepFEA_RWFeaLinearElasticity.cxx -RWStepFEA_RWFeaLinearElasticity.pxx -RWStepFEA_RWFeaMassDensity.cxx -RWStepFEA_RWFeaMassDensity.pxx -RWStepFEA_RWFeaMaterialPropertyRepresentation.cxx -RWStepFEA_RWFeaMaterialPropertyRepresentation.pxx -RWStepFEA_RWFeaMaterialPropertyRepresentationItem.cxx -RWStepFEA_RWFeaMaterialPropertyRepresentationItem.pxx -RWStepFEA_RWFeaModel.cxx -RWStepFEA_RWFeaModel.pxx -RWStepFEA_RWFeaModel3d.cxx -RWStepFEA_RWFeaModel3d.pxx -RWStepFEA_RWFeaModelDefinition.cxx -RWStepFEA_RWFeaModelDefinition.pxx -RWStepFEA_RWFeaMoistureAbsorption.cxx -RWStepFEA_RWFeaMoistureAbsorption.pxx -RWStepFEA_RWFeaParametricPoint.cxx -RWStepFEA_RWFeaParametricPoint.pxx -RWStepFEA_RWFeaRepresentationItem.cxx -RWStepFEA_RWFeaRepresentationItem.pxx -RWStepFEA_RWFeaSecantCoefficientOfLinearThermalExpansion.cxx -RWStepFEA_RWFeaSecantCoefficientOfLinearThermalExpansion.pxx -RWStepFEA_RWFeaShellBendingStiffness.cxx -RWStepFEA_RWFeaShellBendingStiffness.pxx -RWStepFEA_RWFeaShellMembraneBendingCouplingStiffness.cxx -RWStepFEA_RWFeaShellMembraneBendingCouplingStiffness.pxx -RWStepFEA_RWFeaShellMembraneStiffness.cxx -RWStepFEA_RWFeaShellMembraneStiffness.pxx -RWStepFEA_RWFeaShellShearStiffness.cxx -RWStepFEA_RWFeaShellShearStiffness.pxx -RWStepFEA_RWFeaSurfaceSectionGeometricRelationship.cxx -RWStepFEA_RWFeaSurfaceSectionGeometricRelationship.pxx -RWStepFEA_RWFeaTangentialCoefficientOfLinearThermalExpansion.cxx -RWStepFEA_RWFeaTangentialCoefficientOfLinearThermalExpansion.pxx -RWStepFEA_RWFreedomAndCoefficient.cxx -RWStepFEA_RWFreedomAndCoefficient.pxx -RWStepFEA_RWFreedomsList.cxx -RWStepFEA_RWFreedomsList.pxx -RWStepFEA_RWGeometricNode.cxx -RWStepFEA_RWGeometricNode.pxx -RWStepFEA_RWNode.cxx -RWStepFEA_RWNode.pxx -RWStepFEA_RWNodeDefinition.cxx -RWStepFEA_RWNodeDefinition.pxx -RWStepFEA_RWNodeGroup.cxx -RWStepFEA_RWNodeGroup.pxx -RWStepFEA_RWNodeRepresentation.cxx -RWStepFEA_RWNodeRepresentation.pxx -RWStepFEA_RWNodeSet.cxx -RWStepFEA_RWNodeSet.pxx -RWStepFEA_RWNodeWithSolutionCoordinateSystem.cxx -RWStepFEA_RWNodeWithSolutionCoordinateSystem.pxx -RWStepFEA_RWNodeWithVector.cxx -RWStepFEA_RWNodeWithVector.pxx -RWStepFEA_RWParametricCurve3dElementCoordinateDirection.cxx -RWStepFEA_RWParametricCurve3dElementCoordinateDirection.pxx -RWStepFEA_RWParametricCurve3dElementCoordinateSystem.cxx -RWStepFEA_RWParametricCurve3dElementCoordinateSystem.pxx -RWStepFEA_RWParametricSurface3dElementCoordinateSystem.cxx -RWStepFEA_RWParametricSurface3dElementCoordinateSystem.pxx -RWStepFEA_RWSurface3dElementRepresentation.cxx -RWStepFEA_RWSurface3dElementRepresentation.pxx -RWStepFEA_RWVolume3dElementRepresentation.cxx -RWStepFEA_RWVolume3dElementRepresentation.pxx diff --git a/src/RWStepGeom/FILES b/src/RWStepGeom/FILES deleted file mode 100755 index 47a8571335..0000000000 --- a/src/RWStepGeom/FILES +++ /dev/null @@ -1,166 +0,0 @@ -RWStepGeom_RWAxis1Placement.cxx -RWStepGeom_RWAxis1Placement.pxx -RWStepGeom_RWAxis2Placement2d.cxx -RWStepGeom_RWAxis2Placement2d.pxx -RWStepGeom_RWAxis2Placement3d.cxx -RWStepGeom_RWAxis2Placement3d.pxx -RWStepGeom_RWBezierCurve.cxx -RWStepGeom_RWBezierCurve.pxx -RWStepGeom_RWBezierCurveAndRationalBSplineCurve.cxx -RWStepGeom_RWBezierCurveAndRationalBSplineCurve.pxx -RWStepGeom_RWBezierSurface.cxx -RWStepGeom_RWBezierSurface.pxx -RWStepGeom_RWBezierSurfaceAndRationalBSplineSurface.cxx -RWStepGeom_RWBezierSurfaceAndRationalBSplineSurface.pxx -RWStepGeom_RWBoundaryCurve.cxx -RWStepGeom_RWBoundaryCurve.pxx -RWStepGeom_RWBoundedCurve.cxx -RWStepGeom_RWBoundedCurve.pxx -RWStepGeom_RWBoundedSurface.cxx -RWStepGeom_RWBoundedSurface.pxx -RWStepGeom_RWBSplineCurve.cxx -RWStepGeom_RWBSplineCurve.pxx -RWStepGeom_RWBSplineCurveWithKnots.cxx -RWStepGeom_RWBSplineCurveWithKnots.pxx -RWStepGeom_RWBSplineCurveWithKnotsAndRationalBSplineCurve.cxx -RWStepGeom_RWBSplineCurveWithKnotsAndRationalBSplineCurve.pxx -RWStepGeom_RWBSplineSurface.cxx -RWStepGeom_RWBSplineSurface.pxx -RWStepGeom_RWBSplineSurfaceWithKnots.cxx -RWStepGeom_RWBSplineSurfaceWithKnots.pxx -RWStepGeom_RWBSplineSurfaceWithKnotsAndRationalBSplineSurface.cxx -RWStepGeom_RWBSplineSurfaceWithKnotsAndRationalBSplineSurface.pxx -RWStepGeom_RWCartesianPoint.cxx -RWStepGeom_RWCartesianPoint.pxx -RWStepGeom_RWCartesianTransformationOperator.cxx -RWStepGeom_RWCartesianTransformationOperator.pxx -RWStepGeom_RWCartesianTransformationOperator3d.cxx -RWStepGeom_RWCartesianTransformationOperator3d.pxx -RWStepGeom_RWCircle.cxx -RWStepGeom_RWCircle.pxx -RWStepGeom_RWCompositeCurve.cxx -RWStepGeom_RWCompositeCurve.pxx -RWStepGeom_RWCompositeCurveOnSurface.cxx -RWStepGeom_RWCompositeCurveOnSurface.pxx -RWStepGeom_RWCompositeCurveSegment.cxx -RWStepGeom_RWCompositeCurveSegment.pxx -RWStepGeom_RWConic.cxx -RWStepGeom_RWConic.pxx -RWStepGeom_RWConicalSurface.cxx -RWStepGeom_RWConicalSurface.pxx -RWStepGeom_RWCurve.cxx -RWStepGeom_RWCurve.pxx -RWStepGeom_RWCurveBoundedSurface.cxx -RWStepGeom_RWCurveBoundedSurface.pxx -RWStepGeom_RWCurveReplica.cxx -RWStepGeom_RWCurveReplica.pxx -RWStepGeom_RWCylindricalSurface.cxx -RWStepGeom_RWCylindricalSurface.pxx -RWStepGeom_RWDegeneratePcurve.cxx -RWStepGeom_RWDegeneratePcurve.pxx -RWStepGeom_RWDegenerateToroidalSurface.cxx -RWStepGeom_RWDegenerateToroidalSurface.pxx -RWStepGeom_RWDirection.cxx -RWStepGeom_RWDirection.pxx -RWStepGeom_RWElementarySurface.cxx -RWStepGeom_RWElementarySurface.pxx -RWStepGeom_RWEllipse.cxx -RWStepGeom_RWEllipse.pxx -RWStepGeom_RWEvaluatedDegeneratePcurve.cxx -RWStepGeom_RWEvaluatedDegeneratePcurve.pxx -RWStepGeom_RWGeometricRepresentationContext.cxx -RWStepGeom_RWGeometricRepresentationContext.pxx -RWStepGeom_RWGeometricRepresentationContextAndGlobalUnitAssignedContext.cxx -RWStepGeom_RWGeometricRepresentationContextAndGlobalUnitAssignedContext.pxx -RWStepGeom_RWGeometricRepresentationContextAndParametricRepresentationContext.cxx -RWStepGeom_RWGeometricRepresentationContextAndParametricRepresentationContext.pxx -RWStepGeom_RWGeometricRepresentationItem.cxx -RWStepGeom_RWGeometricRepresentationItem.pxx -RWStepGeom_RWGeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.cxx -RWStepGeom_RWGeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.pxx -RWStepGeom_RWHyperbola.cxx -RWStepGeom_RWHyperbola.pxx -RWStepGeom_RWIntersectionCurve.cxx -RWStepGeom_RWIntersectionCurve.pxx -RWStepGeom_RWLine.cxx -RWStepGeom_RWLine.pxx -RWStepGeom_RWOffsetCurve3d.cxx -RWStepGeom_RWOffsetCurve3d.pxx -RWStepGeom_RWOffsetSurface.cxx -RWStepGeom_RWOffsetSurface.pxx -RWStepGeom_RWOrientedSurface.cxx -RWStepGeom_RWOrientedSurface.pxx -RWStepGeom_RWOuterBoundaryCurve.cxx -RWStepGeom_RWOuterBoundaryCurve.pxx -RWStepGeom_RWParabola.cxx -RWStepGeom_RWParabola.pxx -RWStepGeom_RWPcurve.cxx -RWStepGeom_RWPcurve.pxx -RWStepGeom_RWPlacement.cxx -RWStepGeom_RWPlacement.pxx -RWStepGeom_RWPlane.cxx -RWStepGeom_RWPlane.pxx -RWStepGeom_RWPoint.cxx -RWStepGeom_RWPoint.pxx -RWStepGeom_RWPointOnCurve.cxx -RWStepGeom_RWPointOnCurve.pxx -RWStepGeom_RWPointOnSurface.cxx -RWStepGeom_RWPointOnSurface.pxx -RWStepGeom_RWPointReplica.cxx -RWStepGeom_RWPointReplica.pxx -RWStepGeom_RWPolyline.cxx -RWStepGeom_RWPolyline.pxx -RWStepGeom_RWQuasiUniformCurve.cxx -RWStepGeom_RWQuasiUniformCurve.pxx -RWStepGeom_RWQuasiUniformCurveAndRationalBSplineCurve.cxx -RWStepGeom_RWQuasiUniformCurveAndRationalBSplineCurve.pxx -RWStepGeom_RWQuasiUniformSurface.cxx -RWStepGeom_RWQuasiUniformSurface.pxx -RWStepGeom_RWQuasiUniformSurfaceAndRationalBSplineSurface.cxx -RWStepGeom_RWQuasiUniformSurfaceAndRationalBSplineSurface.pxx -RWStepGeom_RWRationalBSplineCurve.cxx -RWStepGeom_RWRationalBSplineCurve.pxx -RWStepGeom_RWRationalBSplineSurface.cxx -RWStepGeom_RWRationalBSplineSurface.pxx -RWStepGeom_RWRectangularCompositeSurface.cxx -RWStepGeom_RWRectangularCompositeSurface.pxx -RWStepGeom_RWRectangularTrimmedSurface.cxx -RWStepGeom_RWRectangularTrimmedSurface.pxx -RWStepGeom_RWReparametrisedCompositeCurveSegment.cxx -RWStepGeom_RWReparametrisedCompositeCurveSegment.pxx -RWStepGeom_RWSeamCurve.cxx -RWStepGeom_RWSeamCurve.pxx -RWStepGeom_RWSphericalSurface.cxx -RWStepGeom_RWSphericalSurface.pxx -RWStepGeom_RWSuParameters.cxx -RWStepGeom_RWSuParameters.pxx -RWStepGeom_RWSurface.cxx -RWStepGeom_RWSurface.pxx -RWStepGeom_RWSurfaceCurve.cxx -RWStepGeom_RWSurfaceCurve.pxx -RWStepGeom_RWSurfaceCurveAndBoundedCurve.cxx -RWStepGeom_RWSurfaceCurveAndBoundedCurve.pxx -RWStepGeom_RWSurfaceOfLinearExtrusion.cxx -RWStepGeom_RWSurfaceOfLinearExtrusion.pxx -RWStepGeom_RWSurfaceOfRevolution.cxx -RWStepGeom_RWSurfaceOfRevolution.pxx -RWStepGeom_RWSurfacePatch.cxx -RWStepGeom_RWSurfacePatch.pxx -RWStepGeom_RWSurfaceReplica.cxx -RWStepGeom_RWSurfaceReplica.pxx -RWStepGeom_RWSweptSurface.cxx -RWStepGeom_RWSweptSurface.pxx -RWStepGeom_RWToroidalSurface.cxx -RWStepGeom_RWToroidalSurface.pxx -RWStepGeom_RWTrimmedCurve.cxx -RWStepGeom_RWTrimmedCurve.pxx -RWStepGeom_RWUniformCurve.cxx -RWStepGeom_RWUniformCurve.pxx -RWStepGeom_RWUniformCurveAndRationalBSplineCurve.cxx -RWStepGeom_RWUniformCurveAndRationalBSplineCurve.pxx -RWStepGeom_RWUniformSurface.cxx -RWStepGeom_RWUniformSurface.pxx -RWStepGeom_RWUniformSurfaceAndRationalBSplineSurface.cxx -RWStepGeom_RWUniformSurfaceAndRationalBSplineSurface.pxx -RWStepGeom_RWVector.cxx -RWStepGeom_RWVector.pxx diff --git a/src/RWStepKinematics/FILES b/src/RWStepKinematics/FILES deleted file mode 100644 index b75bd4a9db..0000000000 --- a/src/RWStepKinematics/FILES +++ /dev/null @@ -1,148 +0,0 @@ -RWStepKinematics_RWActuatedKinematicPair.cxx -RWStepKinematics_RWActuatedKinematicPair.pxx -RWStepKinematics_RWContextDependentKinematicLinkRepresentation.cxx -RWStepKinematics_RWContextDependentKinematicLinkRepresentation.pxx -RWStepKinematics_RWCylindricalPair.cxx -RWStepKinematics_RWCylindricalPair.pxx -RWStepKinematics_RWCylindricalPairValue.cxx -RWStepKinematics_RWCylindricalPairValue.pxx -RWStepKinematics_RWCylindricalPairWithRange.cxx -RWStepKinematics_RWCylindricalPairWithRange.pxx -RWStepKinematics_RWFullyConstrainedPair.cxx -RWStepKinematics_RWFullyConstrainedPair.pxx -RWStepKinematics_RWGearPair.cxx -RWStepKinematics_RWGearPair.pxx -RWStepKinematics_RWGearPairValue.cxx -RWStepKinematics_RWGearPairValue.pxx -RWStepKinematics_RWGearPairWithRange.cxx -RWStepKinematics_RWGearPairWithRange.pxx -RWStepKinematics_RWHomokineticPair.cxx -RWStepKinematics_RWHomokineticPair.pxx -RWStepKinematics_RWActuatedKinPairAndOrderKinPair.cxx -RWStepKinematics_RWActuatedKinPairAndOrderKinPair.pxx -RWStepKinematics_RWKinematicJoint.cxx -RWStepKinematics_RWKinematicJoint.pxx -RWStepKinematics_RWKinematicLink.cxx -RWStepKinematics_RWKinematicLink.pxx -RWStepKinematics_RWKinematicLinkRepresentationAssociation.cxx -RWStepKinematics_RWKinematicLinkRepresentationAssociation.pxx -RWStepKinematics_RWKinematicPropertyMechanismRepresentation.cxx -RWStepKinematics_RWKinematicPropertyMechanismRepresentation.pxx -RWStepKinematics_RWKinematicTopologyStructure.cxx -RWStepKinematics_RWKinematicTopologyStructure.pxx -RWStepKinematics_RWLinearFlexibleAndPinionPair.cxx -RWStepKinematics_RWLinearFlexibleAndPinionPair.pxx -RWStepKinematics_RWLinearFlexibleAndPlanarCurvePair.cxx -RWStepKinematics_RWLinearFlexibleAndPlanarCurvePair.pxx -RWStepKinematics_RWLinearFlexibleLinkRepresentation.cxx -RWStepKinematics_RWLinearFlexibleLinkRepresentation.pxx -RWStepKinematics_RWLowOrderKinematicPair.cxx -RWStepKinematics_RWLowOrderKinematicPair.pxx -RWStepKinematics_RWLowOrderKinematicPairValue.cxx -RWStepKinematics_RWLowOrderKinematicPairValue.pxx -RWStepKinematics_RWLowOrderKinematicPairWithRange.cxx -RWStepKinematics_RWLowOrderKinematicPairWithRange.pxx -RWStepKinematics_RWMechanismRepresentation.cxx -RWStepKinematics_RWMechanismRepresentation.pxx -RWStepKinematics_RWMechanismStateRepresentation.cxx -RWStepKinematics_RWMechanismStateRepresentation.pxx -RWStepKinematics_RWOrientedJoint.cxx -RWStepKinematics_RWOrientedJoint.pxx -RWStepKinematics_RWPairRepresentationRelationship.cxx -RWStepKinematics_RWPairRepresentationRelationship.pxx -RWStepKinematics_RWPlanarCurvePair.cxx -RWStepKinematics_RWPlanarCurvePair.pxx -RWStepKinematics_RWPlanarCurvePairRange.cxx -RWStepKinematics_RWPlanarCurvePairRange.pxx -RWStepKinematics_RWPlanarPair.cxx -RWStepKinematics_RWPlanarPair.pxx -RWStepKinematics_RWPlanarPairValue.cxx -RWStepKinematics_RWPlanarPairValue.pxx -RWStepKinematics_RWPlanarPairWithRange.cxx -RWStepKinematics_RWPlanarPairWithRange.pxx -RWStepKinematics_RWPointOnPlanarCurvePair.cxx -RWStepKinematics_RWPointOnPlanarCurvePair.pxx -RWStepKinematics_RWPointOnPlanarCurvePairValue.cxx -RWStepKinematics_RWPointOnPlanarCurvePairValue.pxx -RWStepKinematics_RWPointOnPlanarCurvePairWithRange.cxx -RWStepKinematics_RWPointOnPlanarCurvePairWithRange.pxx -RWStepKinematics_RWPointOnSurfacePair.cxx -RWStepKinematics_RWPointOnSurfacePair.pxx -RWStepKinematics_RWPointOnSurfacePairValue.cxx -RWStepKinematics_RWPointOnSurfacePairValue.pxx -RWStepKinematics_RWPointOnSurfacePairWithRange.cxx -RWStepKinematics_RWPointOnSurfacePairWithRange.pxx -RWStepKinematics_RWPrismaticPair.cxx -RWStepKinematics_RWPrismaticPair.pxx -RWStepKinematics_RWPrismaticPairValue.cxx -RWStepKinematics_RWPrismaticPairValue.pxx -RWStepKinematics_RWPrismaticPairWithRange.cxx -RWStepKinematics_RWPrismaticPairWithRange.pxx -RWStepKinematics_RWProductDefinitionKinematics.cxx -RWStepKinematics_RWProductDefinitionKinematics.pxx -RWStepKinematics_RWProductDefinitionRelationshipKinematics.cxx -RWStepKinematics_RWProductDefinitionRelationshipKinematics.pxx -RWStepKinematics_RWRackAndPinionPair.cxx -RWStepKinematics_RWRackAndPinionPair.pxx -RWStepKinematics_RWRackAndPinionPairValue.cxx -RWStepKinematics_RWRackAndPinionPairValue.pxx -RWStepKinematics_RWRackAndPinionPairWithRange.cxx -RWStepKinematics_RWRackAndPinionPairWithRange.pxx -RWStepKinematics_RWRevolutePair.cxx -RWStepKinematics_RWRevolutePair.pxx -RWStepKinematics_RWRevolutePairValue.cxx -RWStepKinematics_RWRevolutePairValue.pxx -RWStepKinematics_RWRevolutePairWithRange.cxx -RWStepKinematics_RWRevolutePairWithRange.pxx -RWStepKinematics_RWRigidLinkRepresentation.cxx -RWStepKinematics_RWRigidLinkRepresentation.pxx -RWStepKinematics_RWRollingCurvePair.cxx -RWStepKinematics_RWRollingCurvePair.pxx -RWStepKinematics_RWRollingCurvePairValue.cxx -RWStepKinematics_RWRollingCurvePairValue.pxx -RWStepKinematics_RWRollingSurfacePair.cxx -RWStepKinematics_RWRollingSurfacePair.pxx -RWStepKinematics_RWRollingSurfacePairValue.cxx -RWStepKinematics_RWRollingSurfacePairValue.pxx -RWStepKinematics_RWRotationAboutDirection.cxx -RWStepKinematics_RWRotationAboutDirection.pxx -RWStepKinematics_RWScrewPair.cxx -RWStepKinematics_RWScrewPair.pxx -RWStepKinematics_RWScrewPairValue.cxx -RWStepKinematics_RWScrewPairValue.pxx -RWStepKinematics_RWScrewPairWithRange.cxx -RWStepKinematics_RWScrewPairWithRange.pxx -RWStepKinematics_RWSlidingCurvePair.cxx -RWStepKinematics_RWSlidingCurvePair.pxx -RWStepKinematics_RWSlidingCurvePairValue.cxx -RWStepKinematics_RWSlidingCurvePairValue.pxx -RWStepKinematics_RWSlidingSurfacePair.cxx -RWStepKinematics_RWSlidingSurfacePair.pxx -RWStepKinematics_RWSlidingSurfacePairValue.cxx -RWStepKinematics_RWSlidingSurfacePairValue.pxx -RWStepKinematics_RWSphericalPair.cxx -RWStepKinematics_RWSphericalPair.pxx -RWStepKinematics_RWSphericalPairValue.cxx -RWStepKinematics_RWSphericalPairValue.pxx -RWStepKinematics_RWSphericalPairWithPin.cxx -RWStepKinematics_RWSphericalPairWithPin.pxx -RWStepKinematics_RWSphericalPairWithPinAndRange.cxx -RWStepKinematics_RWSphericalPairWithPinAndRange.pxx -RWStepKinematics_RWSphericalPairWithRange.cxx -RWStepKinematics_RWSphericalPairWithRange.pxx -RWStepKinematics_RWSurfacePairWithRange.cxx -RWStepKinematics_RWSurfacePairWithRange.pxx -RWStepKinematics_RWKinematicTopologyDirectedStructure.cxx -RWStepKinematics_RWKinematicTopologyDirectedStructure.pxx -RWStepKinematics_RWKinematicTopologyNetworkStructure.cxx -RWStepKinematics_RWKinematicTopologyNetworkStructure.pxx -RWStepKinematics_RWUnconstrainedPair.cxx -RWStepKinematics_RWUnconstrainedPair.pxx -RWStepKinematics_RWUnconstrainedPairValue.cxx -RWStepKinematics_RWUnconstrainedPairValue.pxx -RWStepKinematics_RWUniversalPair.cxx -RWStepKinematics_RWUniversalPair.pxx -RWStepKinematics_RWUniversalPairValue.cxx -RWStepKinematics_RWUniversalPairValue.pxx -RWStepKinematics_RWUniversalPairWithRange.cxx -RWStepKinematics_RWUniversalPairWithRange.pxx \ No newline at end of file diff --git a/src/RWStepRepr/FILES b/src/RWStepRepr/FILES deleted file mode 100644 index 2bfc87d5c9..0000000000 --- a/src/RWStepRepr/FILES +++ /dev/null @@ -1,140 +0,0 @@ -RWStepRepr_RWAllAroundShapeAspect.cxx -RWStepRepr_RWAllAroundShapeAspect.pxx -RWStepRepr_RWApex.cxx -RWStepRepr_RWApex.pxx -RWStepRepr_RWAssemblyComponentUsage.cxx -RWStepRepr_RWAssemblyComponentUsage.pxx -RWStepRepr_RWAssemblyComponentUsageSubstitute.cxx -RWStepRepr_RWAssemblyComponentUsageSubstitute.pxx -RWStepRepr_RWBetweenShapeAspect.cxx -RWStepRepr_RWBetweenShapeAspect.pxx -RWStepRepr_RWBooleanRepresentationItem.cxx -RWStepRepr_RWBooleanRepresentationItem.pxx -RWStepRepr_RWCentreOfSymmetry.cxx -RWStepRepr_RWCentreOfSymmetry.pxx -RWStepRepr_RWCharacterizedRepresentation.cxx -RWStepRepr_RWCharacterizedRepresentation.pxx -RWStepRepr_RWCompGroupShAspAndCompShAspAndDatumFeatAndShAsp.cxx -RWStepRepr_RWCompGroupShAspAndCompShAspAndDatumFeatAndShAsp.pxx -RWStepRepr_RWCompositeGroupShapeAspect.cxx -RWStepRepr_RWCompositeGroupShapeAspect.pxx -RWStepRepr_RWCompositeShapeAspect.cxx -RWStepRepr_RWCompositeShapeAspect.pxx -RWStepRepr_RWCompoundRepresentationItem.cxx -RWStepRepr_RWCompoundRepresentationItem.pxx -RWStepRepr_RWCompShAspAndDatumFeatAndShAsp.cxx -RWStepRepr_RWCompShAspAndDatumFeatAndShAsp.pxx -RWStepRepr_RWConfigurationDesign.cxx -RWStepRepr_RWConfigurationDesign.pxx -RWStepRepr_RWConfigurationEffectivity.cxx -RWStepRepr_RWConfigurationEffectivity.pxx -RWStepRepr_RWConfigurationItem.cxx -RWStepRepr_RWConfigurationItem.pxx -RWStepRepr_RWConstructiveGeometryRepresentation.cxx -RWStepRepr_RWConstructiveGeometryRepresentation.pxx -RWStepRepr_RWConstructiveGeometryRepresentationRelationship.cxx -RWStepRepr_RWConstructiveGeometryRepresentationRelationship.pxx -RWStepRepr_RWContinuosShapeAspect.cxx -RWStepRepr_RWContinuosShapeAspect.pxx -RWStepRepr_RWDataEnvironment.cxx -RWStepRepr_RWDataEnvironment.pxx -RWStepRepr_RWDefinitionalRepresentation.cxx -RWStepRepr_RWDefinitionalRepresentation.pxx -RWStepRepr_RWDerivedShapeAspect.cxx -RWStepRepr_RWDerivedShapeAspect.pxx -RWStepRepr_RWDescriptiveRepresentationItem.cxx -RWStepRepr_RWDescriptiveRepresentationItem.pxx -RWStepRepr_RWExtension.cxx -RWStepRepr_RWExtension.pxx -RWStepRepr_RWFeatureForDatumTargetRelationship.cxx -RWStepRepr_RWFeatureForDatumTargetRelationship.pxx -RWStepRepr_RWFunctionallyDefinedTransformation.cxx -RWStepRepr_RWFunctionallyDefinedTransformation.pxx -RWStepRepr_RWGeometricAlignment.cxx -RWStepRepr_RWGeometricAlignment.pxx -RWStepRepr_RWGlobalUncertaintyAssignedContext.cxx -RWStepRepr_RWGlobalUncertaintyAssignedContext.pxx -RWStepRepr_RWGlobalUnitAssignedContext.cxx -RWStepRepr_RWGlobalUnitAssignedContext.pxx -RWStepRepr_RWIntegerRepresentationItem.cxx -RWStepRepr_RWIntegerRepresentationItem.pxx -RWStepRepr_RWItemDefinedTransformation.cxx -RWStepRepr_RWItemDefinedTransformation.pxx -RWStepRepr_RWMakeFromUsageOption.cxx -RWStepRepr_RWMakeFromUsageOption.pxx -RWStepRepr_RWMappedItem.cxx -RWStepRepr_RWMappedItem.pxx -RWStepRepr_RWMaterialDesignation.cxx -RWStepRepr_RWMaterialDesignation.pxx -RWStepRepr_RWMaterialProperty.cxx -RWStepRepr_RWMaterialProperty.pxx -RWStepRepr_RWMaterialPropertyRepresentation.cxx -RWStepRepr_RWMaterialPropertyRepresentation.pxx -RWStepRepr_RWMeasureRepresentationItem.cxx -RWStepRepr_RWMeasureRepresentationItem.pxx -RWStepRepr_RWMechanicalDesignAndDraughtingRelationship.cxx -RWStepRepr_RWMechanicalDesignAndDraughtingRelationship.pxx -RWStepRepr_RWParallelOffset.cxx -RWStepRepr_RWParallelOffset.pxx -RWStepRepr_RWParametricRepresentationContext.cxx -RWStepRepr_RWParametricRepresentationContext.pxx -RWStepRepr_RWPerpendicularTo.cxx -RWStepRepr_RWPerpendicularTo.pxx -RWStepRepr_RWProductConcept.cxx -RWStepRepr_RWProductConcept.pxx -RWStepRepr_RWProductDefinitionShape.cxx -RWStepRepr_RWProductDefinitionShape.pxx -RWStepRepr_RWPropertyDefinition.cxx -RWStepRepr_RWPropertyDefinition.pxx -RWStepRepr_RWPropertyDefinitionRelationship.cxx -RWStepRepr_RWPropertyDefinitionRelationship.pxx -RWStepRepr_RWPropertyDefinitionRepresentation.cxx -RWStepRepr_RWPropertyDefinitionRepresentation.pxx -RWStepRepr_RWQuantifiedAssemblyComponentUsage.cxx -RWStepRepr_RWQuantifiedAssemblyComponentUsage.pxx -RWStepRepr_RWRealRepresentationItem.cxx -RWStepRepr_RWRealRepresentationItem.pxx -RWStepRepr_RWRepresentation.cxx -RWStepRepr_RWRepresentation.pxx -RWStepRepr_RWRepresentationContext.cxx -RWStepRepr_RWRepresentationContext.pxx -RWStepRepr_RWRepresentationContextReference.cxx -RWStepRepr_RWRepresentationContextReference.pxx -RWStepRepr_RWRepresentationItem.cxx -RWStepRepr_RWRepresentationItem.pxx -RWStepRepr_RWRepresentationMap.cxx -RWStepRepr_RWRepresentationMap.pxx -RWStepRepr_RWRepresentationReference.cxx -RWStepRepr_RWRepresentationReference.pxx -RWStepRepr_RWRepresentationRelationship.cxx -RWStepRepr_RWRepresentationRelationship.pxx -RWStepRepr_RWRepresentationRelationshipWithTransformation.cxx -RWStepRepr_RWRepresentationRelationshipWithTransformation.pxx -RWStepRepr_RWReprItemAndLengthMeasureWithUnit.cxx -RWStepRepr_RWReprItemAndLengthMeasureWithUnit.pxx -RWStepRepr_RWReprItemAndLengthMeasureWithUnitAndQRI.cxx -RWStepRepr_RWReprItemAndLengthMeasureWithUnitAndQRI.pxx -RWStepRepr_RWReprItemAndPlaneAngleMeasureWithUnit.cxx -RWStepRepr_RWReprItemAndPlaneAngleMeasureWithUnit.pxx -RWStepRepr_RWReprItemAndPlaneAngleMeasureWithUnitAndQRI.cxx -RWStepRepr_RWReprItemAndPlaneAngleMeasureWithUnitAndQRI.pxx -RWStepRepr_RWShapeAspect.cxx -RWStepRepr_RWShapeAspect.pxx -RWStepRepr_RWShapeAspectDerivingRelationship.cxx -RWStepRepr_RWShapeAspectDerivingRelationship.pxx -RWStepRepr_RWShapeAspectRelationship.cxx -RWStepRepr_RWShapeAspectRelationship.pxx -RWStepRepr_RWShapeAspectTransition.cxx -RWStepRepr_RWShapeAspectTransition.pxx -RWStepRepr_RWShapeRepresentationRelationshipWithTransformation.cxx -RWStepRepr_RWShapeRepresentationRelationshipWithTransformation.pxx -RWStepRepr_RWSpecifiedHigherUsageOccurrence.cxx -RWStepRepr_RWSpecifiedHigherUsageOccurrence.pxx -RWStepRepr_RWStructuralResponseProperty.cxx -RWStepRepr_RWStructuralResponseProperty.pxx -RWStepRepr_RWStructuralResponsePropertyDefinitionRepresentation.cxx -RWStepRepr_RWStructuralResponsePropertyDefinitionRepresentation.pxx -RWStepRepr_RWTangent.cxx -RWStepRepr_RWTangent.pxx -RWStepRepr_RWValueRepresentationItem.cxx -RWStepRepr_RWValueRepresentationItem.pxx \ No newline at end of file diff --git a/src/RWStepShape/FILES b/src/RWStepShape/FILES deleted file mode 100755 index 50ac547a54..0000000000 --- a/src/RWStepShape/FILES +++ /dev/null @@ -1,182 +0,0 @@ -RWStepShape_RWAdvancedBrepShapeRepresentation.cxx -RWStepShape_RWAdvancedBrepShapeRepresentation.pxx -RWStepShape_RWAdvancedFace.cxx -RWStepShape_RWAdvancedFace.pxx -RWStepShape_RWAngularLocation.cxx -RWStepShape_RWAngularLocation.pxx -RWStepShape_RWAngularSize.cxx -RWStepShape_RWAngularSize.pxx -RWStepShape_RWBlock.cxx -RWStepShape_RWBlock.pxx -RWStepShape_RWBooleanResult.cxx -RWStepShape_RWBooleanResult.pxx -RWStepShape_RWBoxDomain.cxx -RWStepShape_RWBoxDomain.pxx -RWStepShape_RWBoxedHalfSpace.cxx -RWStepShape_RWBoxedHalfSpace.pxx -RWStepShape_RWBrepWithVoids.cxx -RWStepShape_RWBrepWithVoids.pxx -RWStepShape_RWClosedShell.cxx -RWStepShape_RWClosedShell.pxx -RWStepShape_RWCompoundShapeRepresentation.cxx -RWStepShape_RWCompoundShapeRepresentation.pxx -RWStepShape_RWConnectedEdgeSet.cxx -RWStepShape_RWConnectedEdgeSet.pxx -RWStepShape_RWConnectedFaceSet.cxx -RWStepShape_RWConnectedFaceSet.pxx -RWStepShape_RWConnectedFaceShapeRepresentation.cxx -RWStepShape_RWConnectedFaceShapeRepresentation.pxx -RWStepShape_RWConnectedFaceSubSet.cxx -RWStepShape_RWConnectedFaceSubSet.pxx -RWStepShape_RWContextDependentShapeRepresentation.cxx -RWStepShape_RWContextDependentShapeRepresentation.pxx -RWStepShape_RWCsgShapeRepresentation.cxx -RWStepShape_RWCsgShapeRepresentation.pxx -RWStepShape_RWCsgSolid.cxx -RWStepShape_RWCsgSolid.pxx -RWStepShape_RWDefinitionalRepresentationAndShapeRepresentation.cxx -RWStepShape_RWDefinitionalRepresentationAndShapeRepresentation.pxx -RWStepShape_RWDimensionalCharacteristicRepresentation.cxx -RWStepShape_RWDimensionalCharacteristicRepresentation.pxx -RWStepShape_RWDimensionalLocation.cxx -RWStepShape_RWDimensionalLocation.pxx -RWStepShape_RWDimensionalLocationWithPath.cxx -RWStepShape_RWDimensionalLocationWithPath.pxx -RWStepShape_RWDimensionalSize.cxx -RWStepShape_RWDimensionalSize.pxx -RWStepShape_RWDimensionalSizeWithPath.cxx -RWStepShape_RWDimensionalSizeWithPath.pxx -RWStepShape_RWEdge.cxx -RWStepShape_RWEdge.pxx -RWStepShape_RWEdgeBasedWireframeModel.cxx -RWStepShape_RWEdgeBasedWireframeModel.pxx -RWStepShape_RWEdgeBasedWireframeShapeRepresentation.cxx -RWStepShape_RWEdgeBasedWireframeShapeRepresentation.pxx -RWStepShape_RWEdgeCurve.cxx -RWStepShape_RWEdgeCurve.pxx -RWStepShape_RWEdgeLoop.cxx -RWStepShape_RWEdgeLoop.pxx -RWStepShape_RWExtrudedAreaSolid.cxx -RWStepShape_RWExtrudedAreaSolid.pxx -RWStepShape_RWExtrudedFaceSolid.cxx -RWStepShape_RWExtrudedFaceSolid.pxx -RWStepShape_RWFace.cxx -RWStepShape_RWFace.pxx -RWStepShape_RWFaceBasedSurfaceModel.cxx -RWStepShape_RWFaceBasedSurfaceModel.pxx -RWStepShape_RWFaceBound.cxx -RWStepShape_RWFaceBound.pxx -RWStepShape_RWFaceOuterBound.cxx -RWStepShape_RWFaceOuterBound.pxx -RWStepShape_RWFaceSurface.cxx -RWStepShape_RWFaceSurface.pxx -RWStepShape_RWFacetedBrep.cxx -RWStepShape_RWFacetedBrep.pxx -RWStepShape_RWFacetedBrepAndBrepWithVoids.cxx -RWStepShape_RWFacetedBrepAndBrepWithVoids.pxx -RWStepShape_RWFacetedBrepShapeRepresentation.cxx -RWStepShape_RWFacetedBrepShapeRepresentation.pxx -RWStepShape_RWGeometricallyBoundedSurfaceShapeRepresentation.cxx -RWStepShape_RWGeometricallyBoundedSurfaceShapeRepresentation.pxx -RWStepShape_RWGeometricallyBoundedWireframeShapeRepresentation.cxx -RWStepShape_RWGeometricallyBoundedWireframeShapeRepresentation.pxx -RWStepShape_RWGeometricCurveSet.cxx -RWStepShape_RWGeometricCurveSet.pxx -RWStepShape_RWGeometricSet.cxx -RWStepShape_RWGeometricSet.pxx -RWStepShape_RWHalfSpaceSolid.cxx -RWStepShape_RWHalfSpaceSolid.pxx -RWStepShape_RWLimitsAndFits.cxx -RWStepShape_RWLimitsAndFits.pxx -RWStepShape_RWLoop.cxx -RWStepShape_RWLoop.pxx -RWStepShape_RWLoopAndPath.cxx -RWStepShape_RWLoopAndPath.pxx -RWStepShape_RWManifoldSolidBrep.cxx -RWStepShape_RWManifoldSolidBrep.pxx -RWStepShape_RWManifoldSurfaceShapeRepresentation.cxx -RWStepShape_RWManifoldSurfaceShapeRepresentation.pxx -RWStepShape_RWMeasureQualification.cxx -RWStepShape_RWMeasureQualification.pxx -RWStepShape_RWMeasureRepresentationItemAndQualifiedRepresentationItem.cxx -RWStepShape_RWMeasureRepresentationItemAndQualifiedRepresentationItem.pxx -RWStepShape_RWNonManifoldSurfaceShapeRepresentation.cxx -RWStepShape_RWNonManifoldSurfaceShapeRepresentation.pxx -RWStepShape_RWOpenShell.cxx -RWStepShape_RWOpenShell.pxx -RWStepShape_RWOrientedClosedShell.cxx -RWStepShape_RWOrientedClosedShell.pxx -RWStepShape_RWOrientedEdge.cxx -RWStepShape_RWOrientedEdge.pxx -RWStepShape_RWOrientedFace.cxx -RWStepShape_RWOrientedFace.pxx -RWStepShape_RWOrientedOpenShell.cxx -RWStepShape_RWOrientedOpenShell.pxx -RWStepShape_RWOrientedPath.cxx -RWStepShape_RWOrientedPath.pxx -RWStepShape_RWPath.cxx -RWStepShape_RWPath.pxx -RWStepShape_RWPlusMinusTolerance.cxx -RWStepShape_RWPlusMinusTolerance.pxx -RWStepShape_RWPointRepresentation.cxx -RWStepShape_RWPointRepresentation.pxx -RWStepShape_RWPolyLoop.cxx -RWStepShape_RWPolyLoop.pxx -RWStepShape_RWPrecisionQualifier.cxx -RWStepShape_RWPrecisionQualifier.pxx -RWStepShape_RWQualifiedRepresentationItem.cxx -RWStepShape_RWQualifiedRepresentationItem.pxx -RWStepShape_RWRevolvedAreaSolid.cxx -RWStepShape_RWRevolvedAreaSolid.pxx -RWStepShape_RWRevolvedFaceSolid.cxx -RWStepShape_RWRevolvedFaceSolid.pxx -RWStepShape_RWRightAngularWedge.cxx -RWStepShape_RWRightAngularWedge.pxx -RWStepShape_RWRightCircularCone.cxx -RWStepShape_RWRightCircularCone.pxx -RWStepShape_RWRightCircularCylinder.cxx -RWStepShape_RWRightCircularCylinder.pxx -RWStepShape_RWSeamEdge.cxx -RWStepShape_RWSeamEdge.pxx -RWStepShape_RWShapeDefinitionRepresentation.cxx -RWStepShape_RWShapeDefinitionRepresentation.pxx -RWStepShape_RWShapeDimensionRepresentation.cxx -RWStepShape_RWShapeDimensionRepresentation.pxx -RWStepShape_RWShapeRepresentation.cxx -RWStepShape_RWShapeRepresentation.pxx -RWStepShape_RWShapeRepresentationWithParameters.cxx -RWStepShape_RWShapeRepresentationWithParameters.pxx -RWStepShape_RWShellBasedSurfaceModel.cxx -RWStepShape_RWShellBasedSurfaceModel.pxx -RWStepShape_RWSolidModel.cxx -RWStepShape_RWSolidModel.pxx -RWStepShape_RWSolidReplica.cxx -RWStepShape_RWSolidReplica.pxx -RWStepShape_RWSphere.cxx -RWStepShape_RWSphere.pxx -RWStepShape_RWSubedge.cxx -RWStepShape_RWSubedge.pxx -RWStepShape_RWSubface.cxx -RWStepShape_RWSubface.pxx -RWStepShape_RWSweptAreaSolid.cxx -RWStepShape_RWSweptAreaSolid.pxx -RWStepShape_RWSweptFaceSolid.cxx -RWStepShape_RWSweptFaceSolid.pxx -RWStepShape_RWToleranceValue.cxx -RWStepShape_RWToleranceValue.pxx -RWStepShape_RWTopologicalRepresentationItem.cxx -RWStepShape_RWTopologicalRepresentationItem.pxx -RWStepShape_RWTorus.cxx -RWStepShape_RWTorus.pxx -RWStepShape_RWTransitionalShapeRepresentation.cxx -RWStepShape_RWTransitionalShapeRepresentation.pxx -RWStepShape_RWTypeQualifier.cxx -RWStepShape_RWTypeQualifier.pxx -RWStepShape_RWValueFormatTypeQualifier.cxx -RWStepShape_RWValueFormatTypeQualifier.pxx -RWStepShape_RWVertex.cxx -RWStepShape_RWVertex.pxx -RWStepShape_RWVertexLoop.cxx -RWStepShape_RWVertexLoop.pxx -RWStepShape_RWVertexPoint.cxx -RWStepShape_RWVertexPoint.pxx diff --git a/src/RWStepVisual/FILES b/src/RWStepVisual/FILES deleted file mode 100644 index 4dec6de163..0000000000 --- a/src/RWStepVisual/FILES +++ /dev/null @@ -1,194 +0,0 @@ -RWStepVisual_RWAnnotationCurveOccurrence.cxx -RWStepVisual_RWAnnotationCurveOccurrence.pxx -RWStepVisual_RWAnnotationCurveOccurrenceAndGeomReprItem.cxx -RWStepVisual_RWAnnotationCurveOccurrenceAndGeomReprItem.pxx -RWStepVisual_RWAnnotationFillArea.cxx -RWStepVisual_RWAnnotationFillArea.pxx -RWStepVisual_RWAnnotationFillAreaOccurrence.cxx -RWStepVisual_RWAnnotationFillAreaOccurrence.pxx -RWStepVisual_RWAnnotationOccurrence.cxx -RWStepVisual_RWAnnotationOccurrence.pxx -RWStepVisual_RWAnnotationPlane.cxx -RWStepVisual_RWAnnotationPlane.pxx -RWStepVisual_RWAreaInSet.cxx -RWStepVisual_RWAreaInSet.pxx -RWStepVisual_RWBackgroundColour.cxx -RWStepVisual_RWBackgroundColour.pxx -RWStepVisual_RWCameraImage.cxx -RWStepVisual_RWCameraImage.pxx -RWStepVisual_RWCameraModel.cxx -RWStepVisual_RWCameraModel.pxx -RWStepVisual_RWCameraModelD2.cxx -RWStepVisual_RWCameraModelD2.pxx -RWStepVisual_RWCameraModelD3.cxx -RWStepVisual_RWCameraModelD3.pxx -RWStepVisual_RWCameraModelD3MultiClipping.cxx -RWStepVisual_RWCameraModelD3MultiClipping.pxx -RWStepVisual_RWCameraModelD3MultiClippingIntersection.cxx -RWStepVisual_RWCameraModelD3MultiClippingIntersection.pxx -RWStepVisual_RWCameraModelD3MultiClippingUnion.cxx -RWStepVisual_RWCameraModelD3MultiClippingUnion.pxx -RWStepVisual_RWCameraUsage.cxx -RWStepVisual_RWCameraUsage.pxx -RWStepVisual_RWCharacterizedObjAndRepresentationAndDraughtingModel.cxx -RWStepVisual_RWCharacterizedObjAndRepresentationAndDraughtingModel.pxx -RWStepVisual_RWColour.cxx -RWStepVisual_RWColour.pxx -RWStepVisual_RWColourRgb.cxx -RWStepVisual_RWColourRgb.pxx -RWStepVisual_RWColourSpecification.cxx -RWStepVisual_RWColourSpecification.pxx -RWStepVisual_RWCompositeText.cxx -RWStepVisual_RWCompositeText.pxx -RWStepVisual_RWCompositeTextWithExtent.cxx -RWStepVisual_RWCompositeTextWithExtent.pxx -RWStepVisual_RWContextDependentInvisibility.cxx -RWStepVisual_RWContextDependentInvisibility.pxx -RWStepVisual_RWContextDependentOverRidingStyledItem.cxx -RWStepVisual_RWContextDependentOverRidingStyledItem.pxx -RWStepVisual_RWCurveStyle.cxx -RWStepVisual_RWCurveStyle.pxx -RWStepVisual_RWCurveStyleFont.cxx -RWStepVisual_RWCurveStyleFont.pxx -RWStepVisual_RWCurveStyleFontPattern.cxx -RWStepVisual_RWCurveStyleFontPattern.pxx -RWStepVisual_RWDraughtingCallout.cxx -RWStepVisual_RWDraughtingCallout.pxx -RWStepVisual_RWDraughtingModel.cxx -RWStepVisual_RWDraughtingModel.pxx -RWStepVisual_RWDraughtingPreDefinedColour.cxx -RWStepVisual_RWDraughtingPreDefinedColour.pxx -RWStepVisual_RWDraughtingPreDefinedCurveFont.cxx -RWStepVisual_RWDraughtingPreDefinedCurveFont.pxx -RWStepVisual_RWExternallyDefinedCurveFont.cxx -RWStepVisual_RWExternallyDefinedCurveFont.pxx -RWStepVisual_RWFillAreaStyle.cxx -RWStepVisual_RWFillAreaStyle.pxx -RWStepVisual_RWFillAreaStyleColour.cxx -RWStepVisual_RWFillAreaStyleColour.pxx -RWStepVisual_RWInvisibility.cxx -RWStepVisual_RWInvisibility.pxx -RWStepVisual_RWMechanicalDesignGeometricPresentationArea.cxx -RWStepVisual_RWMechanicalDesignGeometricPresentationArea.pxx -RWStepVisual_RWMechanicalDesignGeometricPresentationRepresentation.cxx -RWStepVisual_RWMechanicalDesignGeometricPresentationRepresentation.pxx -RWStepVisual_RWOverRidingStyledItem.cxx -RWStepVisual_RWOverRidingStyledItem.pxx -RWStepVisual_RWPlanarBox.cxx -RWStepVisual_RWPlanarBox.pxx -RWStepVisual_RWPlanarExtent.cxx -RWStepVisual_RWPlanarExtent.pxx -RWStepVisual_RWPointStyle.cxx -RWStepVisual_RWPointStyle.pxx -RWStepVisual_RWPreDefinedColour.cxx -RWStepVisual_RWPreDefinedColour.pxx -RWStepVisual_RWPreDefinedCurveFont.cxx -RWStepVisual_RWPreDefinedCurveFont.pxx -RWStepVisual_RWPreDefinedItem.cxx -RWStepVisual_RWPreDefinedItem.pxx -RWStepVisual_RWPresentationArea.cxx -RWStepVisual_RWPresentationArea.pxx -RWStepVisual_RWPresentationLayerAssignment.cxx -RWStepVisual_RWPresentationLayerAssignment.pxx -RWStepVisual_RWPresentationLayerUsage.cxx -RWStepVisual_RWPresentationLayerUsage.pxx -RWStepVisual_RWPresentationRepresentation.cxx -RWStepVisual_RWPresentationRepresentation.pxx -RWStepVisual_RWPresentationSet.cxx -RWStepVisual_RWPresentationSet.pxx -RWStepVisual_RWPresentationSize.cxx -RWStepVisual_RWPresentationSize.pxx -RWStepVisual_RWPresentationStyleAssignment.cxx -RWStepVisual_RWPresentationStyleAssignment.pxx -RWStepVisual_RWPresentationStyleByContext.cxx -RWStepVisual_RWPresentationStyleByContext.pxx -RWStepVisual_RWPresentationView.cxx -RWStepVisual_RWPresentationView.pxx -RWStepVisual_RWPresentedItemRepresentation.cxx -RWStepVisual_RWPresentedItemRepresentation.pxx -RWStepVisual_RWRepositionedTessellatedGeometricSet.cxx -RWStepVisual_RWRepositionedTessellatedGeometricSet.pxx -RWStepVisual_RWRepositionedTessellatedItem.cxx -RWStepVisual_RWRepositionedTessellatedItem.pxx -RWStepVisual_RWStyledItem.cxx -RWStepVisual_RWStyledItem.pxx -RWStepVisual_RWSurfaceSideStyle.cxx -RWStepVisual_RWSurfaceSideStyle.pxx -RWStepVisual_RWSurfaceStyleBoundary.cxx -RWStepVisual_RWSurfaceStyleBoundary.pxx -RWStepVisual_RWSurfaceStyleControlGrid.cxx -RWStepVisual_RWSurfaceStyleControlGrid.pxx -RWStepVisual_RWSurfaceStyleFillArea.cxx -RWStepVisual_RWSurfaceStyleFillArea.pxx -RWStepVisual_RWSurfaceStyleParameterLine.cxx -RWStepVisual_RWSurfaceStyleParameterLine.pxx -RWStepVisual_RWSurfaceStyleReflectanceAmbient.cxx -RWStepVisual_RWSurfaceStyleReflectanceAmbient.pxx -RWStepVisual_RWSurfaceStyleRendering.cxx -RWStepVisual_RWSurfaceStyleRendering.pxx -RWStepVisual_RWSurfaceStyleRenderingWithProperties.cxx -RWStepVisual_RWSurfaceStyleRenderingWithProperties.pxx -RWStepVisual_RWSurfaceStyleSegmentationCurve.cxx -RWStepVisual_RWSurfaceStyleSegmentationCurve.pxx -RWStepVisual_RWSurfaceStyleSilhouette.cxx -RWStepVisual_RWSurfaceStyleSilhouette.pxx -RWStepVisual_RWSurfaceStyleTransparent.cxx -RWStepVisual_RWSurfaceStyleTransparent.pxx -RWStepVisual_RWSurfaceStyleUsage.cxx -RWStepVisual_RWSurfaceStyleUsage.pxx -RWStepVisual_RWTemplate.cxx -RWStepVisual_RWTemplate.pxx -RWStepVisual_RWTemplateInstance.cxx -RWStepVisual_RWTemplateInstance.pxx -RWStepVisual_RWTextLiteral.cxx -RWStepVisual_RWTextLiteral.pxx -RWStepVisual_RWTextStyle.cxx -RWStepVisual_RWTextStyle.pxx -RWStepVisual_RWTextStyleForDefinedFont.cxx -RWStepVisual_RWTextStyleForDefinedFont.pxx -RWStepVisual_RWTextStyleWithBoxCharacteristics.cxx -RWStepVisual_RWTextStyleWithBoxCharacteristics.pxx -RWStepVisual_RWViewVolume.cxx -RWStepVisual_RWViewVolume.pxx -RWStepVisual_RWTessellatedItem.pxx -RWStepVisual_RWTessellatedItem.cxx -RWStepVisual_RWTessellatedAnnotationOccurrence.pxx -RWStepVisual_RWTessellatedAnnotationOccurrence.cxx -RWStepVisual_RWTessellatedGeometricSet.pxx -RWStepVisual_RWTessellatedGeometricSet.cxx -RWStepVisual_RWCoordinatesList.pxx -RWStepVisual_RWCoordinatesList.cxx -RWStepVisual_RWTessellatedCurveSet.pxx -RWStepVisual_RWTessellatedCurveSet.cxx -RWStepVisual_RWComplexTriangulatedFace.cxx -RWStepVisual_RWComplexTriangulatedFace.pxx -RWStepVisual_RWComplexTriangulatedSurfaceSet.cxx -RWStepVisual_RWComplexTriangulatedSurfaceSet.pxx -RWStepVisual_RWCubicBezierTessellatedEdge.cxx -RWStepVisual_RWCubicBezierTessellatedEdge.pxx -RWStepVisual_RWCubicBezierTriangulatedFace.cxx -RWStepVisual_RWCubicBezierTriangulatedFace.pxx -RWStepVisual_RWTessellatedConnectingEdge.cxx -RWStepVisual_RWTessellatedConnectingEdge.pxx -RWStepVisual_RWTessellatedEdge.cxx -RWStepVisual_RWTessellatedEdge.pxx -RWStepVisual_RWTessellatedPointSet.cxx -RWStepVisual_RWTessellatedPointSet.pxx -RWStepVisual_RWTessellatedShapeRepresentation.cxx -RWStepVisual_RWTessellatedShapeRepresentation.pxx -RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters.cxx -RWStepVisual_RWTessellatedShapeRepresentationWithAccuracyParameters.pxx -RWStepVisual_RWTessellatedShell.cxx -RWStepVisual_RWTessellatedShell.pxx -RWStepVisual_RWTessellatedSolid.cxx -RWStepVisual_RWTessellatedSolid.pxx -RWStepVisual_RWTessellatedStructuredItem.cxx -RWStepVisual_RWTessellatedStructuredItem.pxx -RWStepVisual_RWTessellatedVertex.cxx -RWStepVisual_RWTessellatedVertex.pxx -RWStepVisual_RWTessellatedWire.cxx -RWStepVisual_RWTessellatedWire.pxx -RWStepVisual_RWTriangulatedFace.cxx -RWStepVisual_RWTriangulatedFace.pxx -RWStepVisual_RWTriangulatedSurfaceSet.cxx -RWStepVisual_RWTriangulatedSurfaceSet.pxx diff --git a/src/RWStl/FILES b/src/RWStl/FILES deleted file mode 100644 index 0740d81abd..0000000000 --- a/src/RWStl/FILES +++ /dev/null @@ -1,6 +0,0 @@ -RWStl.cxx -RWStl.hxx -RWStl_Reader.cxx -RWStl_Reader.hxx -RWStl_ConfigurationNode.hxx -RWStl_Provider.hxx diff --git a/src/Resource/FILES b/src/Resource/FILES deleted file mode 100755 index 272c4c5144..0000000000 --- a/src/Resource/FILES +++ /dev/null @@ -1,17 +0,0 @@ -Resource_Big5.pxx -Resource_CodePages.pxx -Resource_ConvertUnicode.c -Resource_ConvertUnicode.hxx -Resource_DataMapOfAsciiStringAsciiString.hxx -Resource_DataMapOfAsciiStringExtendedString.hxx -Resource_FormatType.hxx -Resource_GB2312.pxx -Resource_GBK.pxx -Resource_LexicalCompare.cxx -Resource_LexicalCompare.hxx -Resource_Manager.cxx -Resource_Manager.hxx -Resource_NoSuchResource.hxx -Resource_Shiftjis.pxx -Resource_Unicode.cxx -Resource_Unicode.hxx diff --git a/src/SHMessage/FILES b/src/SHMessage/FILES deleted file mode 100755 index 4133b1e93c..0000000000 --- a/src/SHMessage/FILES +++ /dev/null @@ -1 +0,0 @@ -SHMessage_SHAPE_us.pxx diff --git a/src/STEPCAFControl/FILES b/src/STEPCAFControl/FILES deleted file mode 100644 index 9efc5d0fab..0000000000 --- a/src/STEPCAFControl/FILES +++ /dev/null @@ -1,27 +0,0 @@ -STEPCAFControl_ActorWrite.cxx -STEPCAFControl_ActorWrite.hxx -STEPCAFControl_ConfigurationNode.hxx -STEPCAFControl_Controller.cxx -STEPCAFControl_Controller.hxx -STEPCAFControl_DataMapIteratorOfDataMapOfLabelExternFile.hxx -STEPCAFControl_DataMapIteratorOfDataMapOfLabelShape.hxx -STEPCAFControl_DataMapIteratorOfDataMapOfPDExternFile.hxx -STEPCAFControl_DataMapIteratorOfDataMapOfSDRExternFile.hxx -STEPCAFControl_DataMapIteratorOfDataMapOfShapePD.hxx -STEPCAFControl_DataMapIteratorOfDataMapOfShapeSDR.hxx -STEPCAFControl_DataMapOfLabelExternFile.hxx -STEPCAFControl_DataMapOfLabelShape.hxx -STEPCAFControl_DataMapOfPDExternFile.hxx -STEPCAFControl_DataMapOfSDRExternFile.hxx -STEPCAFControl_DataMapOfShapePD.hxx -STEPCAFControl_DataMapOfShapeSDR.hxx -STEPCAFControl_ExternFile.cxx -STEPCAFControl_ExternFile.hxx -STEPCAFControl_ExternFile.lxx -STEPCAFControl_GDTProperty.hxx -STEPCAFControl_GDTProperty.cxx -STEPCAFControl_Provider.hxx -STEPCAFControl_Reader.cxx -STEPCAFControl_Reader.hxx -STEPCAFControl_Writer.cxx -STEPCAFControl_Writer.hxx diff --git a/src/STEPConstruct/FILES b/src/STEPConstruct/FILES deleted file mode 100755 index 8395ba5ff6..0000000000 --- a/src/STEPConstruct/FILES +++ /dev/null @@ -1,25 +0,0 @@ -STEPConstruct.cxx -STEPConstruct.hxx -STEPConstruct_AP203Context.cxx -STEPConstruct_AP203Context.hxx -STEPConstruct_Assembly.cxx -STEPConstruct_Assembly.hxx -STEPConstruct_ContextTool.cxx -STEPConstruct_ContextTool.hxx -STEPConstruct_DataMapIteratorOfDataMapOfAsciiStringTransient.hxx -STEPConstruct_DataMapIteratorOfDataMapOfPointTransient.hxx -STEPConstruct_DataMapOfAsciiStringTransient.hxx -STEPConstruct_DataMapOfPointTransient.hxx -STEPConstruct_ExternRefs.cxx -STEPConstruct_ExternRefs.hxx -STEPConstruct_Part.cxx -STEPConstruct_Part.hxx -STEPConstruct_Styles.cxx -STEPConstruct_Styles.hxx -STEPConstruct_Tool.cxx -STEPConstruct_Tool.hxx -STEPConstruct_Tool.lxx -STEPConstruct_UnitContext.cxx -STEPConstruct_UnitContext.hxx -STEPConstruct_ValidationProps.cxx -STEPConstruct_ValidationProps.hxx diff --git a/src/STEPControl/FILES b/src/STEPControl/FILES deleted file mode 100644 index 28e343dc60..0000000000 --- a/src/STEPControl/FILES +++ /dev/null @@ -1,11 +0,0 @@ -STEPControl_ActorRead.cxx -STEPControl_ActorRead.hxx -STEPControl_ActorWrite.cxx -STEPControl_ActorWrite.hxx -STEPControl_Controller.cxx -STEPControl_Controller.hxx -STEPControl_Reader.cxx -STEPControl_Reader.hxx -STEPControl_StepModelType.hxx -STEPControl_Writer.cxx -STEPControl_Writer.hxx diff --git a/src/STEPEdit/FILES b/src/STEPEdit/FILES deleted file mode 100644 index 7e99a43fba..0000000000 --- a/src/STEPEdit/FILES +++ /dev/null @@ -1,6 +0,0 @@ -STEPEdit.cxx -STEPEdit.hxx -STEPEdit_EditContext.cxx -STEPEdit_EditContext.hxx -STEPEdit_EditSDR.cxx -STEPEdit_EditSDR.hxx diff --git a/src/STEPSelections/FILES b/src/STEPSelections/FILES deleted file mode 100644 index 358b1a4c24..0000000000 --- a/src/STEPSelections/FILES +++ /dev/null @@ -1,27 +0,0 @@ -STEPSelections_AssemblyComponent.cxx -STEPSelections_AssemblyComponent.hxx -STEPSelections_AssemblyComponent.lxx -STEPSelections_AssemblyExplorer.cxx -STEPSelections_AssemblyExplorer.hxx -STEPSelections_AssemblyExplorer.lxx -STEPSelections_AssemblyLink.cxx -STEPSelections_AssemblyLink.hxx -STEPSelections_AssemblyLink.lxx -STEPSelections_Counter.cxx -STEPSelections_Counter.hxx -STEPSelections_Counter.lxx -STEPSelections_HSequenceOfAssemblyLink.hxx -STEPSelections_SelectAssembly.cxx -STEPSelections_SelectAssembly.hxx -STEPSelections_SelectDerived.cxx -STEPSelections_SelectDerived.hxx -STEPSelections_SelectFaces.cxx -STEPSelections_SelectFaces.hxx -STEPSelections_SelectForTransfer.cxx -STEPSelections_SelectForTransfer.hxx -STEPSelections_SelectGSCurves.cxx -STEPSelections_SelectGSCurves.hxx -STEPSelections_SelectInstances.cxx -STEPSelections_SelectInstances.hxx -STEPSelections_SequenceOfAssemblyComponent.hxx -STEPSelections_SequenceOfAssemblyLink.hxx diff --git a/src/SWDRAW/FILES b/src/SWDRAW/FILES deleted file mode 100644 index d3c4b8ec17..0000000000 --- a/src/SWDRAW/FILES +++ /dev/null @@ -1,18 +0,0 @@ -SWDRAW.cxx -SWDRAW.hxx -SWDRAW_ShapeAnalysis.cxx -SWDRAW_ShapeAnalysis.hxx -SWDRAW_ShapeCustom.cxx -SWDRAW_ShapeCustom.hxx -SWDRAW_ShapeExtend.cxx -SWDRAW_ShapeExtend.hxx -SWDRAW_ShapeFix.cxx -SWDRAW_ShapeFix.hxx -SWDRAW_ShapeProcess.cxx -SWDRAW_ShapeProcess.hxx -SWDRAW_ShapeProcessAPI.cxx -SWDRAW_ShapeProcessAPI.hxx -SWDRAW_ShapeTool.cxx -SWDRAW_ShapeTool.hxx -SWDRAW_ShapeUpgrade.cxx -SWDRAW_ShapeUpgrade.hxx diff --git a/src/Select3D/FILES b/src/Select3D/FILES deleted file mode 100755 index d0c23b19fd..0000000000 --- a/src/Select3D/FILES +++ /dev/null @@ -1,42 +0,0 @@ -Select3D_BndBox3d.hxx -Select3D_BVHBuilder3d.hxx -Select3D_BVHIndexBuffer.hxx -Select3D_EntitySequence.hxx -Select3D_IndexedMapOfEntity.hxx -Select3D_InteriorSensitivePointSet.cxx -Select3D_InteriorSensitivePointSet.hxx -Select3D_Pnt.hxx -Select3D_PointData.hxx -Select3D_SensitiveBox.cxx -Select3D_SensitiveBox.hxx -Select3D_SensitiveCircle.cxx -Select3D_SensitiveCircle.hxx -Select3D_SensitiveCurve.cxx -Select3D_SensitiveCurve.hxx -Select3D_SensitiveCylinder.cxx -Select3D_SensitiveCylinder.hxx -Select3D_SensitiveEntity.cxx -Select3D_SensitiveEntity.hxx -Select3D_SensitiveFace.cxx -Select3D_SensitiveFace.hxx -Select3D_SensitiveGroup.cxx -Select3D_SensitiveGroup.hxx -Select3D_SensitivePoint.cxx -Select3D_SensitivePoint.hxx -Select3D_SensitivePoly.cxx -Select3D_SensitivePoly.hxx -Select3D_SensitivePrimitiveArray.cxx -Select3D_SensitivePrimitiveArray.hxx -Select3D_SensitiveSegment.cxx -Select3D_SensitiveSegment.hxx -Select3D_SensitiveSet.cxx -Select3D_SensitiveSet.hxx -Select3D_SensitiveSphere.cxx -Select3D_SensitiveSphere.hxx -Select3D_SensitiveTriangle.cxx -Select3D_SensitiveTriangle.hxx -Select3D_SensitiveTriangulation.cxx -Select3D_SensitiveTriangulation.hxx -Select3D_SensitiveWire.cxx -Select3D_SensitiveWire.hxx -Select3D_TypeOfSensitivity.hxx diff --git a/src/SelectBasics/FILES b/src/SelectBasics/FILES deleted file mode 100644 index 3d0d42f1a6..0000000000 --- a/src/SelectBasics/FILES +++ /dev/null @@ -1,6 +0,0 @@ -SelectBasics.hxx -SelectBasics_EntityOwner.hxx -SelectBasics_PickResult.hxx -SelectBasics_SelectingVolumeManager.cxx -SelectBasics_SelectingVolumeManager.hxx -SelectBasics_SensitiveEntity.hxx diff --git a/src/SelectMgr/FILES b/src/SelectMgr/FILES deleted file mode 100755 index 887b67f019..0000000000 --- a/src/SelectMgr/FILES +++ /dev/null @@ -1,70 +0,0 @@ -SelectMgr.cxx -SelectMgr.hxx -SelectMgr_AndFilter.cxx -SelectMgr_AndFilter.hxx -SelectMgr_AndOrFilter.cxx -SelectMgr_AndOrFilter.hxx -SelectMgr_AxisIntersector.cxx -SelectMgr_AxisIntersector.hxx -SelectMgr_BaseIntersector.cxx -SelectMgr_BaseIntersector.hxx -SelectMgr_BaseFrustum.cxx -SelectMgr_BaseFrustum.hxx -SelectMgr_BVHThreadPool.cxx -SelectMgr_BVHThreadPool.hxx -SelectMgr_CompositionFilter.cxx -SelectMgr_CompositionFilter.hxx -SelectMgr_EntityOwner.cxx -SelectMgr_EntityOwner.hxx -SelectMgr_Filter.cxx -SelectMgr_Filter.hxx -SelectMgr_FilterType.hxx -SelectMgr_Frustum.hxx -SelectMgr_Frustum.lxx -SelectMgr_FrustumBuilder.cxx -SelectMgr_FrustumBuilder.hxx -SelectMgr_IndexedDataMapOfOwnerCriterion.hxx -SelectMgr_IndexedMapOfOwner.hxx -SelectMgr_ListIteratorOfListOfFilter.hxx -SelectMgr_ListOfFilter.hxx -SelectMgr_OrFilter.cxx -SelectMgr_OrFilter.hxx -SelectMgr_PickingStrategy.hxx -SelectMgr_RectangularFrustum.cxx -SelectMgr_RectangularFrustum.hxx -SelectMgr_SelectableObject.cxx -SelectMgr_SelectableObject.hxx -SelectMgr_SelectableObjectSet.cxx -SelectMgr_SelectableObjectSet.hxx -SelectMgr_SelectingVolumeManager.cxx -SelectMgr_SelectingVolumeManager.hxx -SelectMgr_Selection.cxx -SelectMgr_Selection.hxx -SelectMgr_SelectionImageFiller.cxx -SelectMgr_SelectionImageFiller.hxx -SelectMgr_SelectionManager.cxx -SelectMgr_SelectionManager.hxx -SelectMgr_SelectionType.hxx -SelectMgr_SensitiveEntity.cxx -SelectMgr_SensitiveEntity.hxx -SelectMgr_SensitiveEntitySet.cxx -SelectMgr_SensitiveEntitySet.hxx -SelectMgr_SequenceOfOwner.hxx -SelectMgr_SequenceOfSelection.hxx -SelectMgr_SortCriterion.hxx -SelectMgr_StateOfSelection.hxx -SelectMgr_ToleranceMap.hxx -SelectMgr_ToleranceMap.cxx -SelectMgr_TriangularFrustum.cxx -SelectMgr_TriangularFrustum.hxx -SelectMgr_TriangularFrustumSet.cxx -SelectMgr_TriangularFrustumSet.hxx -SelectMgr_TypeOfBVHUpdate.hxx -SelectMgr_TypeOfDepthTolerance.hxx -SelectMgr_TypeOfUpdate.hxx -SelectMgr_VectorTypes.hxx -SelectMgr_ViewClipRange.cxx -SelectMgr_ViewClipRange.hxx -SelectMgr_ViewerSelector.cxx -SelectMgr_ViewerSelector.hxx -SelectMgr_ViewerSelector3d.hxx diff --git a/src/Shaders/FILES b/src/Shaders/FILES deleted file mode 100644 index fbdb38b7c3..0000000000 --- a/src/Shaders/FILES +++ /dev/null @@ -1,25 +0,0 @@ -Shaders_Declarations_glsl.pxx -Shaders_DeclarationsImpl_glsl.pxx -Shaders_LightShadow_glsl.pxx -Shaders_Display_fs.pxx -Shaders_PBRCookTorrance_glsl.pxx -Shaders_PBRDirectionalLight_glsl.pxx -Shaders_PBRDistribution_glsl.pxx -Shaders_PBREnvBaking_fs.pxx -Shaders_PBREnvBaking_vs.pxx -Shaders_PBRFresnel_glsl.pxx -Shaders_PBRGeometry_glsl.pxx -Shaders_PBRIllumination_glsl.pxx -Shaders_PBRPointLight_glsl.pxx -Shaders_PBRSpotLight_glsl.pxx -Shaders_PhongDirectionalLight_glsl.pxx -Shaders_PhongPointLight_glsl.pxx -Shaders_PhongSpotLight_glsl.pxx -Shaders_PointLightAttenuation_glsl.pxx -Shaders_RaytraceBase_fs.pxx -Shaders_RaytraceRender_fs.pxx -Shaders_PathtraceBase_fs.pxx -Shaders_RaytraceBase_vs.pxx -Shaders_RaytraceSmooth_fs.pxx -Shaders_TangentSpaceNormal_glsl.pxx -Shaders_SkydomBackground_fs.pxx diff --git a/src/ShapeAlgo/FILES b/src/ShapeAlgo/FILES deleted file mode 100644 index 0c61b8148c..0000000000 --- a/src/ShapeAlgo/FILES +++ /dev/null @@ -1,7 +0,0 @@ -ShapeAlgo.cxx -ShapeAlgo.hxx -ShapeAlgo_AlgoContainer.cxx -ShapeAlgo_AlgoContainer.hxx -ShapeAlgo_AlgoContainer.lxx -ShapeAlgo_ToolContainer.cxx -ShapeAlgo_ToolContainer.hxx diff --git a/src/ShapeAnalysis/FILES b/src/ShapeAnalysis/FILES deleted file mode 100755 index 1b4ea4c918..0000000000 --- a/src/ShapeAnalysis/FILES +++ /dev/null @@ -1,48 +0,0 @@ -ShapeAnalysis.cxx -ShapeAnalysis.hxx -ShapeAnalysis_BoxBndTree.cxx -ShapeAnalysis_BoxBndTree.hxx -ShapeAnalysis_CheckSmallFace.cxx -ShapeAnalysis_CheckSmallFace.hxx -ShapeAnalysis_CheckSmallFace.lxx -ShapeAnalysis_Curve.cxx -ShapeAnalysis_Curve.hxx -ShapeAnalysis_DataMapIteratorOfDataMapOfShapeListOfReal.hxx -ShapeAnalysis_DataMapOfShapeListOfReal.hxx -ShapeAnalysis_Edge.cxx -ShapeAnalysis_Edge.hxx -ShapeAnalysis_FreeBoundData.cxx -ShapeAnalysis_FreeBoundData.hxx -ShapeAnalysis_FreeBoundData.lxx -ShapeAnalysis_FreeBounds.cxx -ShapeAnalysis_FreeBounds.hxx -ShapeAnalysis_FreeBounds.lxx -ShapeAnalysis_FreeBoundsProperties.cxx -ShapeAnalysis_FreeBoundsProperties.hxx -ShapeAnalysis_FreeBoundsProperties.lxx -ShapeAnalysis_Geom.cxx -ShapeAnalysis_Geom.hxx -ShapeAnalysis_HSequenceOfFreeBounds.hxx -ShapeAnalysis_SequenceOfFreeBounds.hxx -ShapeAnalysis_ShapeContents.cxx -ShapeAnalysis_ShapeContents.hxx -ShapeAnalysis_ShapeTolerance.cxx -ShapeAnalysis_ShapeTolerance.hxx -ShapeAnalysis_Shell.cxx -ShapeAnalysis_Shell.hxx -ShapeAnalysis_Surface.cxx -ShapeAnalysis_Surface.hxx -ShapeAnalysis_Surface.lxx -ShapeAnalysis_TransferParameters.cxx -ShapeAnalysis_TransferParameters.hxx -ShapeAnalysis_TransferParametersProj.cxx -ShapeAnalysis_TransferParametersProj.hxx -ShapeAnalysis_Wire.cxx -ShapeAnalysis_Wire.hxx -ShapeAnalysis_Wire.lxx -ShapeAnalysis_WireOrder.cxx -ShapeAnalysis_WireOrder.hxx -ShapeAnalysis_WireVertex.cxx -ShapeAnalysis_WireVertex.hxx -ShapeAnalysis_CanonicalRecognition.cxx -ShapeAnalysis_CanonicalRecognition.hxx diff --git a/src/ShapeBuild/FILES b/src/ShapeBuild/FILES deleted file mode 100644 index 3212ec6861..0000000000 --- a/src/ShapeBuild/FILES +++ /dev/null @@ -1,8 +0,0 @@ -ShapeBuild.cxx -ShapeBuild.hxx -ShapeBuild_Edge.cxx -ShapeBuild_Edge.hxx -ShapeBuild_ReShape.cxx -ShapeBuild_ReShape.hxx -ShapeBuild_Vertex.cxx -ShapeBuild_Vertex.hxx diff --git a/src/ShapeConstruct/FILES b/src/ShapeConstruct/FILES deleted file mode 100644 index bd6aa79765..0000000000 --- a/src/ShapeConstruct/FILES +++ /dev/null @@ -1,8 +0,0 @@ -ShapeConstruct.cxx -ShapeConstruct.hxx -ShapeConstruct_Curve.cxx -ShapeConstruct_Curve.hxx -ShapeConstruct_MakeTriangulation.cxx -ShapeConstruct_MakeTriangulation.hxx -ShapeConstruct_ProjectCurveOnSurface.cxx -ShapeConstruct_ProjectCurveOnSurface.hxx diff --git a/src/ShapeCustom/FILES b/src/ShapeCustom/FILES deleted file mode 100644 index 755bdfaa5e..0000000000 --- a/src/ShapeCustom/FILES +++ /dev/null @@ -1,27 +0,0 @@ -ShapeCustom.cxx -ShapeCustom.hxx -ShapeCustom_BSplineRestriction.cxx -ShapeCustom_BSplineRestriction.hxx -ShapeCustom_BSplineRestriction.lxx -ShapeCustom_ConvertToBSpline.cxx -ShapeCustom_ConvertToBSpline.hxx -ShapeCustom_ConvertToRevolution.cxx -ShapeCustom_ConvertToRevolution.hxx -ShapeCustom_Curve.cxx -ShapeCustom_Curve.hxx -ShapeCustom_Curve2d.cxx -ShapeCustom_Curve2d.hxx -ShapeCustom_DirectModification.cxx -ShapeCustom_DirectModification.hxx -ShapeCustom_Modification.cxx -ShapeCustom_Modification.hxx -ShapeCustom_RestrictionParameters.cxx -ShapeCustom_RestrictionParameters.hxx -ShapeCustom_RestrictionParameters.lxx -ShapeCustom_Surface.cxx -ShapeCustom_Surface.hxx -ShapeCustom_Surface.lxx -ShapeCustom_SweptToElementary.cxx -ShapeCustom_SweptToElementary.hxx -ShapeCustom_TrsfModification.cxx -ShapeCustom_TrsfModification.hxx diff --git a/src/ShapeExtend/FILES b/src/ShapeExtend/FILES deleted file mode 100644 index 5f98d76f57..0000000000 --- a/src/ShapeExtend/FILES +++ /dev/null @@ -1,22 +0,0 @@ -ShapeExtend.cxx -ShapeExtend.hxx -ShapeExtend_BasicMsgRegistrator.cxx -ShapeExtend_BasicMsgRegistrator.hxx -ShapeExtend_ComplexCurve.cxx -ShapeExtend_ComplexCurve.hxx -ShapeExtend_ComplexCurve.lxx -ShapeExtend_CompositeSurface.cxx -ShapeExtend_CompositeSurface.hxx -ShapeExtend_DataMapIteratorOfDataMapOfShapeListOfMsg.hxx -ShapeExtend_DataMapIteratorOfDataMapOfTransientListOfMsg.hxx -ShapeExtend_DataMapOfShapeListOfMsg.hxx -ShapeExtend_DataMapOfTransientListOfMsg.hxx -ShapeExtend_Explorer.cxx -ShapeExtend_Explorer.hxx -ShapeExtend_MsgRegistrator.cxx -ShapeExtend_MsgRegistrator.hxx -ShapeExtend_MsgRegistrator.lxx -ShapeExtend_Parametrisation.hxx -ShapeExtend_Status.hxx -ShapeExtend_WireData.cxx -ShapeExtend_WireData.hxx diff --git a/src/ShapeFix/FILES b/src/ShapeFix/FILES deleted file mode 100755 index 09f64a69bb..0000000000 --- a/src/ShapeFix/FILES +++ /dev/null @@ -1,56 +0,0 @@ -ShapeFix.cxx -ShapeFix.hxx -ShapeFix_ComposeShell.cxx -ShapeFix_ComposeShell.hxx -ShapeFix_DataMapIteratorOfDataMapOfShapeBox2d.hxx -ShapeFix_DataMapOfShapeBox2d.hxx -ShapeFix_Edge.cxx -ShapeFix_Edge.hxx -ShapeFix_EdgeConnect.cxx -ShapeFix_EdgeConnect.hxx -ShapeFix_EdgeProjAux.cxx -ShapeFix_EdgeProjAux.hxx -ShapeFix_Face.cxx -ShapeFix_Face.hxx -ShapeFix_Face.lxx -ShapeFix_FaceConnect.cxx -ShapeFix_FaceConnect.hxx -ShapeFix_FixSmallFace.cxx -ShapeFix_FixSmallFace.hxx -ShapeFix_FixSmallSolid.cxx -ShapeFix_FixSmallSolid.hxx -ShapeFix_FreeBounds.cxx -ShapeFix_FreeBounds.hxx -ShapeFix_FreeBounds.lxx -ShapeFix_IntersectionTool.cxx -ShapeFix_IntersectionTool.hxx -ShapeFix_IntersectionTool.lxx -ShapeFix_Root.cxx -ShapeFix_Root.hxx -ShapeFix_Root.lxx -ShapeFix_SequenceOfWireSegment.hxx -ShapeFix_Shape.cxx -ShapeFix_Shape.hxx -ShapeFix_Shape.lxx -ShapeFix_ShapeTolerance.cxx -ShapeFix_ShapeTolerance.hxx -ShapeFix_Shell.cxx -ShapeFix_Shell.hxx -ShapeFix_Shell.lxx -ShapeFix_Solid.cxx -ShapeFix_Solid.hxx -ShapeFix_SplitCommonVertex.cxx -ShapeFix_SplitCommonVertex.hxx -ShapeFix_SplitTool.cxx -ShapeFix_SplitTool.hxx -ShapeFix_Wire.cxx -ShapeFix_Wire.hxx -ShapeFix_Wire.lxx -ShapeFix_Wire_1.cxx -ShapeFix_Wireframe.cxx -ShapeFix_Wireframe.hxx -ShapeFix_Wireframe.lxx -ShapeFix_WireSegment.cxx -ShapeFix_WireSegment.hxx -ShapeFix_WireVertex.cxx -ShapeFix_WireVertex.hxx diff --git a/src/ShapePersistent/FILES b/src/ShapePersistent/FILES deleted file mode 100644 index 6b8c97eb39..0000000000 --- a/src/ShapePersistent/FILES +++ /dev/null @@ -1,23 +0,0 @@ -ShapePersistent.cxx -ShapePersistent.hxx -ShapePersistent_BRep.cxx -ShapePersistent_BRep.hxx -ShapePersistent_Geom.cxx -ShapePersistent_Geom.hxx -ShapePersistent_Geom_Curve.cxx -ShapePersistent_Geom_Curve.hxx -ShapePersistent_Geom_Surface.cxx -ShapePersistent_Geom_Surface.hxx -ShapePersistent_Geom2d.hxx -ShapePersistent_Geom2d.cxx -ShapePersistent_Geom2d_Curve.cxx -ShapePersistent_Geom2d_Curve.hxx -ShapePersistent_HArray1.hxx -ShapePersistent_HArray2.hxx -ShapePersistent_HSequence.cxx -ShapePersistent_HSequence.hxx -ShapePersistent_Poly.cxx -ShapePersistent_Poly.hxx -ShapePersistent_TopoDS.cxx -ShapePersistent_TopoDS.hxx -ShapePersistent_TriangleMode.hxx diff --git a/src/ShapeProcess/FILES b/src/ShapeProcess/FILES deleted file mode 100755 index 129e7ea70b..0000000000 --- a/src/ShapeProcess/FILES +++ /dev/null @@ -1,13 +0,0 @@ -ShapeProcess.cxx -ShapeProcess.hxx -ShapeProcess_Context.cxx -ShapeProcess_Context.hxx -ShapeProcess_Operator.cxx -ShapeProcess_Operator.hxx -ShapeProcess_OperFunc.hxx -ShapeProcess_OperLibrary.cxx -ShapeProcess_OperLibrary.hxx -ShapeProcess_ShapeContext.cxx -ShapeProcess_ShapeContext.hxx -ShapeProcess_UOperator.cxx -ShapeProcess_UOperator.hxx diff --git a/src/ShapeProcessAPI/FILES b/src/ShapeProcessAPI/FILES deleted file mode 100644 index f0474e6c36..0000000000 --- a/src/ShapeProcessAPI/FILES +++ /dev/null @@ -1,2 +0,0 @@ -ShapeProcessAPI_ApplySequence.cxx -ShapeProcessAPI_ApplySequence.hxx diff --git a/src/ShapeUpgrade/FILES b/src/ShapeUpgrade/FILES deleted file mode 100644 index 74b07ba1cc..0000000000 --- a/src/ShapeUpgrade/FILES +++ /dev/null @@ -1,76 +0,0 @@ -ShapeUpgrade.cxx -ShapeUpgrade.hxx -ShapeUpgrade_ClosedEdgeDivide.cxx -ShapeUpgrade_ClosedEdgeDivide.hxx -ShapeUpgrade_ClosedFaceDivide.cxx -ShapeUpgrade_ClosedFaceDivide.hxx -ShapeUpgrade_ConvertCurve2dToBezier.cxx -ShapeUpgrade_ConvertCurve2dToBezier.hxx -ShapeUpgrade_ConvertCurve3dToBezier.cxx -ShapeUpgrade_ConvertCurve3dToBezier.hxx -ShapeUpgrade_ConvertCurve3dToBezier.lxx -ShapeUpgrade_ConvertSurfaceToBezierBasis.cxx -ShapeUpgrade_ConvertSurfaceToBezierBasis.hxx -ShapeUpgrade_ConvertSurfaceToBezierBasis.lxx -ShapeUpgrade_EdgeDivide.cxx -ShapeUpgrade_EdgeDivide.hxx -ShapeUpgrade_EdgeDivide.lxx -ShapeUpgrade_FaceDivide.cxx -ShapeUpgrade_FaceDivide.hxx -ShapeUpgrade_FaceDivideArea.cxx -ShapeUpgrade_FaceDivideArea.hxx -ShapeUpgrade_FaceDivideArea.lxx -ShapeUpgrade_FixSmallBezierCurves.cxx -ShapeUpgrade_FixSmallBezierCurves.hxx -ShapeUpgrade_FixSmallCurves.cxx -ShapeUpgrade_FixSmallCurves.hxx -ShapeUpgrade_RemoveInternalWires.cxx -ShapeUpgrade_RemoveInternalWires.hxx -ShapeUpgrade_RemoveInternalWires.lxx -ShapeUpgrade_RemoveLocations.cxx -ShapeUpgrade_RemoveLocations.hxx -ShapeUpgrade_RemoveLocations.lxx -ShapeUpgrade_ShapeConvertToBezier.cxx -ShapeUpgrade_ShapeConvertToBezier.hxx -ShapeUpgrade_ShapeConvertToBezier.lxx -ShapeUpgrade_ShapeDivide.cxx -ShapeUpgrade_ShapeDivide.hxx -ShapeUpgrade_ShapeDivideAngle.cxx -ShapeUpgrade_ShapeDivideAngle.hxx -ShapeUpgrade_ShapeDivideArea.cxx -ShapeUpgrade_ShapeDivideArea.hxx -ShapeUpgrade_ShapeDivideArea.lxx -ShapeUpgrade_ShapeDivideClosed.cxx -ShapeUpgrade_ShapeDivideClosed.hxx -ShapeUpgrade_ShapeDivideClosedEdges.cxx -ShapeUpgrade_ShapeDivideClosedEdges.hxx -ShapeUpgrade_ShapeDivideContinuity.cxx -ShapeUpgrade_ShapeDivideContinuity.hxx -ShapeUpgrade_ShellSewing.cxx -ShapeUpgrade_ShellSewing.hxx -ShapeUpgrade_SplitCurve.cxx -ShapeUpgrade_SplitCurve.hxx -ShapeUpgrade_SplitCurve2d.cxx -ShapeUpgrade_SplitCurve2d.hxx -ShapeUpgrade_SplitCurve2dContinuity.cxx -ShapeUpgrade_SplitCurve2dContinuity.hxx -ShapeUpgrade_SplitCurve3d.cxx -ShapeUpgrade_SplitCurve3d.hxx -ShapeUpgrade_SplitCurve3dContinuity.cxx -ShapeUpgrade_SplitCurve3dContinuity.hxx -ShapeUpgrade_SplitSurface.cxx -ShapeUpgrade_SplitSurface.hxx -ShapeUpgrade_SplitSurfaceAngle.cxx -ShapeUpgrade_SplitSurfaceAngle.hxx -ShapeUpgrade_SplitSurfaceArea.cxx -ShapeUpgrade_SplitSurfaceArea.hxx -ShapeUpgrade_SplitSurfaceArea.lxx -ShapeUpgrade_SplitSurfaceContinuity.cxx -ShapeUpgrade_SplitSurfaceContinuity.hxx -ShapeUpgrade_Tool.cxx -ShapeUpgrade_Tool.hxx -ShapeUpgrade_Tool.lxx -ShapeUpgrade_UnifySameDomain.cxx -ShapeUpgrade_UnifySameDomain.hxx -ShapeUpgrade_WireDivide.cxx -ShapeUpgrade_WireDivide.hxx diff --git a/src/Standard/FILES b/src/Standard/FILES deleted file mode 100755 index c5d5af44cb..0000000000 --- a/src/Standard/FILES +++ /dev/null @@ -1,99 +0,0 @@ -Standard.cxx -Standard.hxx -Standard_AbortiveTransaction.hxx -Standard_ArrayStreamBuffer.hxx -Standard_ArrayStreamBuffer.cxx -Standard_Assert.hxx -Standard_Atomic.hxx -Standard_Boolean.hxx -Standard_Byte.hxx -Standard_Character.hxx -Standard_CLocaleSentry.cxx -Standard_CLocaleSentry.hxx -Standard_Condition.cxx -Standard_Condition.hxx -Standard_ConstructionError.hxx -Standard_CString.cxx -Standard_CString.hxx -Standard_CStringHasher.hxx -Standard_DefineAlloc.hxx -Standard_DefineException.hxx -Standard_DefineHandle.hxx -Standard_DimensionError.hxx -Standard_DimensionMismatch.hxx -Standard_DivideByZero.hxx -Standard_DomainError.hxx -Standard_Dump.cxx -Standard_Dump.hxx -Standard_ErrorHandler.cxx -Standard_ErrorHandler.hxx -Standard_ExtCharacter.hxx -Standard_Failure.cxx -Standard_Failure.hxx -Standard_WarningDisableFunctionCast.hxx -Standard_GUID.cxx -Standard_GUID.hxx -Standard_Handle.hxx -Standard_HandlerStatus.hxx -Standard_HashUtils.hxx -Standard_HashUtils.lxx -Standard_ImmutableObject.hxx -Standard_Integer.hxx -Standard_IStream.hxx -Standard_JmpBuf.hxx -Standard_LicenseError.hxx -Standard_LicenseNotFound.hxx -Standard_Macro.hxx -Standard_MemoryUtils.hxx -Standard_MMgrOpt.cxx -Standard_MMgrOpt.hxx -Standard_MMgrRoot.cxx -Standard_MMgrRoot.hxx -Standard_MultiplyDefined.hxx -Standard_Mutex.cxx -Standard_Mutex.hxx -Standard_NegativeValue.hxx -Standard_NoMoreObject.hxx -Standard_NoSuchObject.hxx -Standard_NotImplemented.hxx -Standard_NullObject.hxx -Standard_NullValue.hxx -Standard_NumericError.hxx -Standard_OStream.hxx -Standard_OutOfMemory.cxx -Standard_OutOfMemory.hxx -Standard_OutOfRange.hxx -Standard_Overflow.hxx -Standard_PByte.hxx -Standard_PCharacter.hxx -Standard_PErrorHandler.hxx -Standard_Persistent.cxx -Standard_Persistent.hxx -Standard_PExtCharacter.hxx -Standard_PrimitiveTypes.hxx -Standard_ProgramError.hxx -Standard_RangeError.hxx -Standard_ReadBuffer.hxx -Standard_ReadLineBuffer.hxx -Standard_Real.cxx -Standard_Real.hxx -Standard_ShortReal.hxx -Standard_SStream.hxx -Standard_StackTrace.cxx -Standard_Std.hxx -Standard_Stream.hxx -Standard_Strtod.cxx -Standard_ThreadId.hxx -Standard_Time.hxx -Standard_Transient.cxx -Standard_Transient.hxx -Standard_Type.cxx -Standard_Type.hxx -Standard_TypeDef.hxx -Standard_TypeMismatch.hxx -Standard_Underflow.hxx -Standard_UUID.hxx -Standard_VersionInfo.cxx -Standard_VersionInfo.hxx -Standard_WarningsDisable.hxx -Standard_WarningsRestore.hxx diff --git a/src/StdDrivers/FILES b/src/StdDrivers/FILES deleted file mode 100644 index 0526d273d0..0000000000 --- a/src/StdDrivers/FILES +++ /dev/null @@ -1,4 +0,0 @@ -StdDrivers.cxx -StdDrivers.hxx -StdDrivers_DocumentRetrievalDriver.cxx -StdDrivers_DocumentRetrievalDriver.hxx diff --git a/src/StdFail/FILES b/src/StdFail/FILES deleted file mode 100644 index e5ef2c9b8d..0000000000 --- a/src/StdFail/FILES +++ /dev/null @@ -1,5 +0,0 @@ -StdFail_InfiniteSolutions.hxx -StdFail_NotDone.hxx -StdFail_Undefined.hxx -StdFail_UndefinedDerivative.hxx -StdFail_UndefinedValue.hxx diff --git a/src/StdLDrivers/FILES b/src/StdLDrivers/FILES deleted file mode 100644 index 8d1600fdab..0000000000 --- a/src/StdLDrivers/FILES +++ /dev/null @@ -1,4 +0,0 @@ -StdLDrivers.cxx -StdLDrivers.hxx -StdLDrivers_DocumentRetrievalDriver.cxx -StdLDrivers_DocumentRetrievalDriver.hxx diff --git a/src/StdLPersistent/FILES b/src/StdLPersistent/FILES deleted file mode 100644 index bd1fed42bf..0000000000 --- a/src/StdLPersistent/FILES +++ /dev/null @@ -1,27 +0,0 @@ -StdLPersistent.cxx -StdLPersistent.hxx -StdLPersistent_Collection.cxx -StdLPersistent_Collection.hxx -StdLPersistent_Data.cxx -StdLPersistent_Data.hxx -StdLPersistent_Dependency.cxx -StdLPersistent_Dependency.hxx -StdLPersistent_Document.cxx -StdLPersistent_Document.hxx -StdLPersistent_Function.hxx -StdLPersistent_HArray1.cxx -StdLPersistent_HArray1.hxx -StdLPersistent_HArray2.cxx -StdLPersistent_HArray2.hxx -StdLPersistent_HString.cxx -StdLPersistent_HString.hxx -StdLPersistent_NamedData.cxx -StdLPersistent_NamedData.hxx -StdLPersistent_Real.hxx -StdLPersistent_TreeNode.cxx -StdLPersistent_TreeNode.hxx -StdLPersistent_Value.cxx -StdLPersistent_Value.hxx -StdLPersistent_Variable.hxx -StdLPersistent_Void.hxx -StdLPersistent_XLink.hxx diff --git a/src/StdObjMgt/FILES b/src/StdObjMgt/FILES deleted file mode 100644 index 17269aac01..0000000000 --- a/src/StdObjMgt/FILES +++ /dev/null @@ -1,10 +0,0 @@ -StdObjMgt_Attribute.hxx -StdObjMgt_MapOfInstantiators.hxx -StdObjMgt_Persistent.cxx -StdObjMgt_Persistent.hxx -StdObjMgt_ReadData.cxx -StdObjMgt_ReadData.hxx -StdObjMgt_WriteData.hxx -StdObjMgt_WriteData.cxx -StdObjMgt_SharedObject.hxx -StdObjMgt_TransientPersistentMap.hxx diff --git a/src/StdObject/FILES b/src/StdObject/FILES deleted file mode 100644 index c68a35776e..0000000000 --- a/src/StdObject/FILES +++ /dev/null @@ -1,9 +0,0 @@ -StdObject_gp_Axes.hxx -StdObject_gp_Curves.hxx -StdObject_gp_Surfaces.hxx -StdObject_gp_Trsfs.hxx -StdObject_gp_Vectors.hxx -StdObject_Location.cxx -StdObject_Location.hxx -StdObject_Shape.cxx -StdObject_Shape.hxx diff --git a/src/StdPersistent/FILES b/src/StdPersistent/FILES deleted file mode 100644 index 454fcaf6f2..0000000000 --- a/src/StdPersistent/FILES +++ /dev/null @@ -1,16 +0,0 @@ -StdPersistent.cxx -StdPersistent.hxx -StdPersistent_DataXtd.cxx -StdPersistent_DataXtd.hxx -StdPersistent_DataXtd_Constraint.cxx -StdPersistent_DataXtd_Constraint.hxx -StdPersistent_DataXtd_PatternStd.cxx -StdPersistent_DataXtd_PatternStd.hxx -StdPersistent_HArray1.hxx -StdPersistent_Naming.cxx -StdPersistent_Naming.hxx -StdPersistent_PPrsStd.cxx -StdPersistent_PPrsStd.hxx -StdPersistent_TopLoc.cxx -StdPersistent_TopLoc.hxx -StdPersistent_TopoDS.hxx diff --git a/src/StdPrs/FILES b/src/StdPrs/FILES deleted file mode 100644 index eda18e5be3..0000000000 --- a/src/StdPrs/FILES +++ /dev/null @@ -1,52 +0,0 @@ -StdPrs_BRepFont.cxx -StdPrs_BRepFont.hxx -StdPrs_BRepTextBuilder.cxx -StdPrs_BRepTextBuilder.hxx -StdPrs_BndBox.hxx -StdPrs_Curve.cxx -StdPrs_Curve.hxx -StdPrs_DeflectionCurve.cxx -StdPrs_DeflectionCurve.hxx -StdPrs_HLRPolyShape.cxx -StdPrs_HLRPolyShape.hxx -StdPrs_HLRShape.cxx -StdPrs_HLRShape.hxx -StdPrs_HLRShapeI.cxx -StdPrs_HLRShapeI.hxx -StdPrs_HLRToolShape.cxx -StdPrs_HLRToolShape.hxx -StdPrs_Isolines.cxx -StdPrs_Isolines.hxx -StdPrs_Plane.cxx -StdPrs_Plane.hxx -StdPrs_Point.hxx -StdPrs_PoleCurve.cxx -StdPrs_PoleCurve.hxx -StdPrs_ShadedShape.cxx -StdPrs_ShadedShape.hxx -StdPrs_ShadedSurface.cxx -StdPrs_ShadedSurface.hxx -StdPrs_ShapeTool.cxx -StdPrs_ShapeTool.hxx -StdPrs_ToolPoint.cxx -StdPrs_ToolPoint.hxx -StdPrs_ToolRFace.cxx -StdPrs_ToolRFace.hxx -StdPrs_ToolTriangulatedShape.cxx -StdPrs_ToolTriangulatedShape.hxx -StdPrs_ToolVertex.cxx -StdPrs_ToolVertex.hxx -StdPrs_Vertex.hxx -StdPrs_Volume.hxx -StdPrs_WFDeflectionRestrictedFace.cxx -StdPrs_WFDeflectionRestrictedFace.hxx -StdPrs_WFDeflectionSurface.cxx -StdPrs_WFDeflectionSurface.hxx -StdPrs_WFPoleSurface.cxx -StdPrs_WFPoleSurface.hxx -StdPrs_WFRestrictedFace.cxx -StdPrs_WFRestrictedFace.hxx -StdPrs_WFShape.cxx -StdPrs_WFShape.hxx -StdPrs_WFSurface.cxx -StdPrs_WFSurface.hxx diff --git a/src/StdSelect/FILES b/src/StdSelect/FILES deleted file mode 100644 index 0cfc6f10e5..0000000000 --- a/src/StdSelect/FILES +++ /dev/null @@ -1,18 +0,0 @@ -StdSelect.cxx -StdSelect.hxx -StdSelect_BRepOwner.cxx -StdSelect_BRepOwner.hxx -StdSelect_BRepSelectionTool.cxx -StdSelect_BRepSelectionTool.hxx -StdSelect_EdgeFilter.cxx -StdSelect_EdgeFilter.hxx -StdSelect_FaceFilter.cxx -StdSelect_FaceFilter.hxx -StdSelect_Shape.cxx -StdSelect_Shape.hxx -StdSelect_ShapeTypeFilter.cxx -StdSelect_ShapeTypeFilter.hxx -StdSelect_TypeOfEdge.hxx -StdSelect_TypeOfFace.hxx -StdSelect_TypeOfSelectionImage.hxx -StdSelect_ViewerSelector3d.hxx diff --git a/src/StdStorage/FILES b/src/StdStorage/FILES deleted file mode 100644 index 22c6b6358a..0000000000 --- a/src/StdStorage/FILES +++ /dev/null @@ -1,18 +0,0 @@ -StdStorage.cxx -StdStorage.hxx -StdStorage_Data.cxx -StdStorage_Data.hxx -StdStorage_HeaderData.cxx -StdStorage_HeaderData.hxx -StdStorage_Root.cxx -StdStorage_Root.hxx -StdStorage_RootData.cxx -StdStorage_RootData.hxx -StdStorage_HSequenceOfRoots.hxx -StdStorage_SequenceOfRoots.hxx -StdStorage_MapOfRoots.hxx -StdStorage_TypeData.cxx -StdStorage_TypeData.hxx -StdStorage_MapOfTypes.hxx -StdStorage_BacketOfPersistent.cxx -StdStorage_BacketOfPersistent.hxx \ No newline at end of file diff --git a/src/StepAP203/FILES b/src/StepAP203/FILES deleted file mode 100644 index ce3b3514a0..0000000000 --- a/src/StepAP203/FILES +++ /dev/null @@ -1,62 +0,0 @@ -StepAP203_ApprovedItem.cxx -StepAP203_ApprovedItem.hxx -StepAP203_Array1OfApprovedItem.hxx -StepAP203_Array1OfCertifiedItem.hxx -StepAP203_Array1OfChangeRequestItem.hxx -StepAP203_Array1OfClassifiedItem.hxx -StepAP203_Array1OfContractedItem.hxx -StepAP203_Array1OfDateTimeItem.hxx -StepAP203_Array1OfPersonOrganizationItem.hxx -StepAP203_Array1OfSpecifiedItem.hxx -StepAP203_Array1OfStartRequestItem.hxx -StepAP203_Array1OfWorkItem.hxx -StepAP203_CcDesignApproval.cxx -StepAP203_CcDesignApproval.hxx -StepAP203_CcDesignCertification.cxx -StepAP203_CcDesignCertification.hxx -StepAP203_CcDesignContract.cxx -StepAP203_CcDesignContract.hxx -StepAP203_CcDesignDateAndTimeAssignment.cxx -StepAP203_CcDesignDateAndTimeAssignment.hxx -StepAP203_CcDesignPersonAndOrganizationAssignment.cxx -StepAP203_CcDesignPersonAndOrganizationAssignment.hxx -StepAP203_CcDesignSecurityClassification.cxx -StepAP203_CcDesignSecurityClassification.hxx -StepAP203_CcDesignSpecificationReference.cxx -StepAP203_CcDesignSpecificationReference.hxx -StepAP203_CertifiedItem.cxx -StepAP203_CertifiedItem.hxx -StepAP203_Change.cxx -StepAP203_Change.hxx -StepAP203_ChangeRequest.cxx -StepAP203_ChangeRequest.hxx -StepAP203_ChangeRequestItem.cxx -StepAP203_ChangeRequestItem.hxx -StepAP203_ClassifiedItem.cxx -StepAP203_ClassifiedItem.hxx -StepAP203_ContractedItem.cxx -StepAP203_ContractedItem.hxx -StepAP203_DateTimeItem.cxx -StepAP203_DateTimeItem.hxx -StepAP203_HArray1OfApprovedItem.hxx -StepAP203_HArray1OfCertifiedItem.hxx -StepAP203_HArray1OfChangeRequestItem.hxx -StepAP203_HArray1OfClassifiedItem.hxx -StepAP203_HArray1OfContractedItem.hxx -StepAP203_HArray1OfDateTimeItem.hxx -StepAP203_HArray1OfPersonOrganizationItem.hxx -StepAP203_HArray1OfSpecifiedItem.hxx -StepAP203_HArray1OfStartRequestItem.hxx -StepAP203_HArray1OfWorkItem.hxx -StepAP203_PersonOrganizationItem.cxx -StepAP203_PersonOrganizationItem.hxx -StepAP203_SpecifiedItem.cxx -StepAP203_SpecifiedItem.hxx -StepAP203_StartRequest.cxx -StepAP203_StartRequest.hxx -StepAP203_StartRequestItem.cxx -StepAP203_StartRequestItem.hxx -StepAP203_StartWork.cxx -StepAP203_StartWork.hxx -StepAP203_WorkItem.cxx -StepAP203_WorkItem.hxx diff --git a/src/StepAP209/FILES b/src/StepAP209/FILES deleted file mode 100644 index a2c62517d7..0000000000 --- a/src/StepAP209/FILES +++ /dev/null @@ -1,2 +0,0 @@ -StepAP209_Construct.cxx -StepAP209_Construct.hxx diff --git a/src/StepAP214/FILES b/src/StepAP214/FILES deleted file mode 100755 index 5f43745447..0000000000 --- a/src/StepAP214/FILES +++ /dev/null @@ -1,126 +0,0 @@ -StepAP214.cxx -StepAP214.hxx -StepAP214_AppliedApprovalAssignment.cxx -StepAP214_AppliedApprovalAssignment.hxx -StepAP214_AppliedDateAndTimeAssignment.cxx -StepAP214_AppliedDateAndTimeAssignment.hxx -StepAP214_AppliedDateAssignment.cxx -StepAP214_AppliedDateAssignment.hxx -StepAP214_AppliedDocumentReference.cxx -StepAP214_AppliedDocumentReference.hxx -StepAP214_AppliedExternalIdentificationAssignment.cxx -StepAP214_AppliedExternalIdentificationAssignment.hxx -StepAP214_AppliedGroupAssignment.cxx -StepAP214_AppliedGroupAssignment.hxx -StepAP214_AppliedOrganizationAssignment.cxx -StepAP214_AppliedOrganizationAssignment.hxx -StepAP214_AppliedPersonAndOrganizationAssignment.cxx -StepAP214_AppliedPersonAndOrganizationAssignment.hxx -StepAP214_AppliedPresentedItem.cxx -StepAP214_AppliedPresentedItem.hxx -StepAP214_AppliedSecurityClassificationAssignment.cxx -StepAP214_AppliedSecurityClassificationAssignment.hxx -StepAP214_ApprovalItem.cxx -StepAP214_ApprovalItem.hxx -StepAP214_Array1OfApprovalItem.hxx -StepAP214_Array1OfAutoDesignDateAndPersonItem.hxx -StepAP214_Array1OfAutoDesignDateAndTimeItem.hxx -StepAP214_Array1OfAutoDesignDatedItem.hxx -StepAP214_Array1OfAutoDesignGeneralOrgItem.hxx -StepAP214_Array1OfAutoDesignGroupedItem.hxx -StepAP214_Array1OfAutoDesignPresentedItemSelect.hxx -StepAP214_Array1OfAutoDesignReferencingItem.hxx -StepAP214_Array1OfDateAndTimeItem.hxx -StepAP214_Array1OfDateItem.hxx -StepAP214_Array1OfDocumentReferenceItem.hxx -StepAP214_Array1OfExternalIdentificationItem.hxx -StepAP214_Array1OfGroupItem.hxx -StepAP214_Array1OfOrganizationItem.hxx -StepAP214_Array1OfPersonAndOrganizationItem.hxx -StepAP214_Array1OfPresentedItemSelect.hxx -StepAP214_Array1OfSecurityClassificationItem.hxx -StepAP214_AutoDesignActualDateAndTimeAssignment.cxx -StepAP214_AutoDesignActualDateAndTimeAssignment.hxx -StepAP214_AutoDesignActualDateAssignment.cxx -StepAP214_AutoDesignActualDateAssignment.hxx -StepAP214_AutoDesignApprovalAssignment.cxx -StepAP214_AutoDesignApprovalAssignment.hxx -StepAP214_AutoDesignDateAndPersonAssignment.cxx -StepAP214_AutoDesignDateAndPersonAssignment.hxx -StepAP214_AutoDesignDateAndPersonItem.cxx -StepAP214_AutoDesignDateAndPersonItem.hxx -StepAP214_AutoDesignDateAndTimeItem.cxx -StepAP214_AutoDesignDateAndTimeItem.hxx -StepAP214_AutoDesignDatedItem.cxx -StepAP214_AutoDesignDatedItem.hxx -StepAP214_AutoDesignDocumentReference.cxx -StepAP214_AutoDesignDocumentReference.hxx -StepAP214_AutoDesignGeneralOrgItem.cxx -StepAP214_AutoDesignGeneralOrgItem.hxx -StepAP214_AutoDesignGroupAssignment.cxx -StepAP214_AutoDesignGroupAssignment.hxx -StepAP214_AutoDesignGroupedItem.cxx -StepAP214_AutoDesignGroupedItem.hxx -StepAP214_AutoDesignNominalDateAndTimeAssignment.cxx -StepAP214_AutoDesignNominalDateAndTimeAssignment.hxx -StepAP214_AutoDesignNominalDateAssignment.cxx -StepAP214_AutoDesignNominalDateAssignment.hxx -StepAP214_AutoDesignOrganizationAssignment.cxx -StepAP214_AutoDesignOrganizationAssignment.hxx -StepAP214_AutoDesignOrganizationItem.cxx -StepAP214_AutoDesignOrganizationItem.hxx -StepAP214_AutoDesignPersonAndOrganizationAssignment.cxx -StepAP214_AutoDesignPersonAndOrganizationAssignment.hxx -StepAP214_AutoDesignPresentedItem.cxx -StepAP214_AutoDesignPresentedItem.hxx -StepAP214_AutoDesignPresentedItemSelect.cxx -StepAP214_AutoDesignPresentedItemSelect.hxx -StepAP214_AutoDesignReferencingItem.cxx -StepAP214_AutoDesignReferencingItem.hxx -StepAP214_AutoDesignSecurityClassificationAssignment.cxx -StepAP214_AutoDesignSecurityClassificationAssignment.hxx -StepAP214_Class.cxx -StepAP214_Class.hxx -StepAP214_DateAndTimeItem.cxx -StepAP214_DateAndTimeItem.hxx -StepAP214_DateItem.cxx -StepAP214_DateItem.hxx -StepAP214_DocumentReferenceItem.cxx -StepAP214_DocumentReferenceItem.hxx -StepAP214_ExternalIdentificationItem.cxx -StepAP214_ExternalIdentificationItem.hxx -StepAP214_ExternallyDefinedClass.cxx -StepAP214_ExternallyDefinedClass.hxx -StepAP214_ExternallyDefinedGeneralProperty.cxx -StepAP214_ExternallyDefinedGeneralProperty.hxx -StepAP214_GroupItem.cxx -StepAP214_GroupItem.hxx -StepAP214_HArray1OfApprovalItem.hxx -StepAP214_HArray1OfAutoDesignDateAndPersonItem.hxx -StepAP214_HArray1OfAutoDesignDateAndTimeItem.hxx -StepAP214_HArray1OfAutoDesignDatedItem.hxx -StepAP214_HArray1OfAutoDesignGeneralOrgItem.hxx -StepAP214_HArray1OfAutoDesignGroupedItem.hxx -StepAP214_HArray1OfAutoDesignPresentedItemSelect.hxx -StepAP214_HArray1OfAutoDesignReferencingItem.hxx -StepAP214_HArray1OfDateAndTimeItem.hxx -StepAP214_HArray1OfDateItem.hxx -StepAP214_HArray1OfDocumentReferenceItem.hxx -StepAP214_HArray1OfExternalIdentificationItem.hxx -StepAP214_HArray1OfGroupItem.hxx -StepAP214_HArray1OfOrganizationItem.hxx -StepAP214_HArray1OfPersonAndOrganizationItem.hxx -StepAP214_HArray1OfPresentedItemSelect.hxx -StepAP214_HArray1OfSecurityClassificationItem.hxx -StepAP214_OrganizationItem.cxx -StepAP214_OrganizationItem.hxx -StepAP214_PersonAndOrganizationItem.cxx -StepAP214_PersonAndOrganizationItem.hxx -StepAP214_PresentedItemSelect.cxx -StepAP214_PresentedItemSelect.hxx -StepAP214_Protocol.cxx -StepAP214_Protocol.hxx -StepAP214_RepItemGroup.cxx -StepAP214_RepItemGroup.hxx -StepAP214_SecurityClassificationItem.cxx -StepAP214_SecurityClassificationItem.hxx diff --git a/src/StepAP242/FILES b/src/StepAP242/FILES deleted file mode 100644 index 9a10cbbc30..0000000000 --- a/src/StepAP242/FILES +++ /dev/null @@ -1,12 +0,0 @@ -StepAP242_DraughtingModelItemAssociation.cxx -StepAP242_DraughtingModelItemAssociation.hxx -StepAP242_GeometricItemSpecificUsage.cxx -StepAP242_GeometricItemSpecificUsage.hxx -StepAP242_IdAttribute.cxx -StepAP242_IdAttribute.hxx -StepAP242_IdAttributeSelect.cxx -StepAP242_IdAttributeSelect.hxx -StepAP242_ItemIdentifiedRepresentationUsage.cxx -StepAP242_ItemIdentifiedRepresentationUsage.hxx -StepAP242_ItemIdentifiedRepresentationUsageDefinition.cxx -StepAP242_ItemIdentifiedRepresentationUsageDefinition.hxx diff --git a/src/StepBasic/FILES b/src/StepBasic/FILES deleted file mode 100644 index 1857cbbed1..0000000000 --- a/src/StepBasic/FILES +++ /dev/null @@ -1,312 +0,0 @@ -StepBasic_Action.cxx -StepBasic_Action.hxx -StepBasic_ActionAssignment.cxx -StepBasic_ActionAssignment.hxx -StepBasic_ActionMethod.cxx -StepBasic_ActionMethod.hxx -StepBasic_ActionRequestAssignment.cxx -StepBasic_ActionRequestAssignment.hxx -StepBasic_ActionRequestSolution.cxx -StepBasic_ActionRequestSolution.hxx -StepBasic_Address.cxx -StepBasic_Address.hxx -StepBasic_AheadOrBehind.hxx -StepBasic_ApplicationContext.cxx -StepBasic_ApplicationContext.hxx -StepBasic_ApplicationContextElement.cxx -StepBasic_ApplicationContextElement.hxx -StepBasic_ApplicationProtocolDefinition.cxx -StepBasic_ApplicationProtocolDefinition.hxx -StepBasic_Approval.cxx -StepBasic_Approval.hxx -StepBasic_ApprovalAssignment.cxx -StepBasic_ApprovalAssignment.hxx -StepBasic_ApprovalDateTime.cxx -StepBasic_ApprovalDateTime.hxx -StepBasic_ApprovalPersonOrganization.cxx -StepBasic_ApprovalPersonOrganization.hxx -StepBasic_ApprovalRelationship.cxx -StepBasic_ApprovalRelationship.hxx -StepBasic_ApprovalRole.cxx -StepBasic_ApprovalRole.hxx -StepBasic_ApprovalStatus.cxx -StepBasic_ApprovalStatus.hxx -StepBasic_AreaUnit.cxx -StepBasic_AreaUnit.hxx -StepBasic_Array1OfApproval.hxx -StepBasic_Array1OfDerivedUnitElement.hxx -StepBasic_Array1OfDocument.hxx -StepBasic_Array1OfNamedUnit.hxx -StepBasic_Array1OfOrganization.hxx -StepBasic_Array1OfPerson.hxx -StepBasic_Array1OfProduct.hxx -StepBasic_Array1OfProductContext.hxx -StepBasic_Array1OfProductDefinition.hxx -StepBasic_Array1OfUncertaintyMeasureWithUnit.hxx -StepBasic_CalendarDate.cxx -StepBasic_CalendarDate.hxx -StepBasic_Certification.cxx -StepBasic_Certification.hxx -StepBasic_CertificationAssignment.cxx -StepBasic_CertificationAssignment.hxx -StepBasic_CertificationType.cxx -StepBasic_CertificationType.hxx -StepBasic_CharacterizedObject.cxx -StepBasic_CharacterizedObject.hxx -StepBasic_Contract.cxx -StepBasic_Contract.hxx -StepBasic_ContractAssignment.cxx -StepBasic_ContractAssignment.hxx -StepBasic_ContractType.cxx -StepBasic_ContractType.hxx -StepBasic_ConversionBasedUnit.cxx -StepBasic_ConversionBasedUnit.hxx -StepBasic_ConversionBasedUnitAndAreaUnit.cxx -StepBasic_ConversionBasedUnitAndAreaUnit.hxx -StepBasic_ConversionBasedUnitAndLengthUnit.cxx -StepBasic_ConversionBasedUnitAndLengthUnit.hxx -StepBasic_ConversionBasedUnitAndMassUnit.cxx -StepBasic_ConversionBasedUnitAndMassUnit.hxx -StepBasic_ConversionBasedUnitAndPlaneAngleUnit.cxx -StepBasic_ConversionBasedUnitAndPlaneAngleUnit.hxx -StepBasic_ConversionBasedUnitAndRatioUnit.cxx -StepBasic_ConversionBasedUnitAndRatioUnit.hxx -StepBasic_ConversionBasedUnitAndSolidAngleUnit.cxx -StepBasic_ConversionBasedUnitAndSolidAngleUnit.hxx -StepBasic_ConversionBasedUnitAndTimeUnit.cxx -StepBasic_ConversionBasedUnitAndTimeUnit.hxx -StepBasic_ConversionBasedUnitAndVolumeUnit.cxx -StepBasic_ConversionBasedUnitAndVolumeUnit.hxx -StepBasic_CoordinatedUniversalTimeOffset.cxx -StepBasic_CoordinatedUniversalTimeOffset.hxx -StepBasic_Date.cxx -StepBasic_Date.hxx -StepBasic_DateAndTime.cxx -StepBasic_DateAndTime.hxx -StepBasic_DateAndTimeAssignment.cxx -StepBasic_DateAndTimeAssignment.hxx -StepBasic_DateAssignment.cxx -StepBasic_DateAssignment.hxx -StepBasic_DateRole.cxx -StepBasic_DateRole.hxx -StepBasic_DateTimeRole.cxx -StepBasic_DateTimeRole.hxx -StepBasic_DateTimeSelect.cxx -StepBasic_DateTimeSelect.hxx -StepBasic_DerivedUnit.cxx -StepBasic_DerivedUnit.hxx -StepBasic_DerivedUnitElement.cxx -StepBasic_DerivedUnitElement.hxx -StepBasic_DesignContext.cxx -StepBasic_DesignContext.hxx -StepBasic_DigitalDocument.cxx -StepBasic_DigitalDocument.hxx -StepBasic_DimensionalExponents.cxx -StepBasic_DimensionalExponents.hxx -StepBasic_Document.cxx -StepBasic_Document.hxx -StepBasic_DocumentFile.cxx -StepBasic_DocumentFile.hxx -StepBasic_DocumentProductAssociation.cxx -StepBasic_DocumentProductAssociation.hxx -StepBasic_DocumentProductEquivalence.cxx -StepBasic_DocumentProductEquivalence.hxx -StepBasic_DocumentReference.cxx -StepBasic_DocumentReference.hxx -StepBasic_DocumentRelationship.cxx -StepBasic_DocumentRelationship.hxx -StepBasic_DocumentRepresentationType.cxx -StepBasic_DocumentRepresentationType.hxx -StepBasic_DocumentType.cxx -StepBasic_DocumentType.hxx -StepBasic_DocumentUsageConstraint.cxx -StepBasic_DocumentUsageConstraint.hxx -StepBasic_Effectivity.cxx -StepBasic_Effectivity.hxx -StepBasic_EffectivityAssignment.cxx -StepBasic_EffectivityAssignment.hxx -StepBasic_EulerAngles.cxx -StepBasic_EulerAngles.hxx -StepBasic_ExternalIdentificationAssignment.cxx -StepBasic_ExternalIdentificationAssignment.hxx -StepBasic_ExternallyDefinedItem.cxx -StepBasic_ExternallyDefinedItem.hxx -StepBasic_ExternalSource.cxx -StepBasic_ExternalSource.hxx -StepBasic_GeneralProperty.cxx -StepBasic_GeneralProperty.hxx -StepBasic_GeneralPropertyAssociation.cxx -StepBasic_GeneralPropertyAssociation.hxx -StepBasic_GeneralPropertyRelationship.cxx -StepBasic_GeneralPropertyRelationship.hxx -StepBasic_Group.cxx -StepBasic_Group.hxx -StepBasic_GroupAssignment.cxx -StepBasic_GroupAssignment.hxx -StepBasic_GroupRelationship.cxx -StepBasic_GroupRelationship.hxx -StepBasic_HArray1OfApproval.hxx -StepBasic_HArray1OfDerivedUnitElement.hxx -StepBasic_HArray1OfDocument.hxx -StepBasic_HArray1OfNamedUnit.hxx -StepBasic_HArray1OfOrganization.hxx -StepBasic_HArray1OfPerson.hxx -StepBasic_HArray1OfProduct.hxx -StepBasic_HArray1OfProductContext.hxx -StepBasic_HArray1OfProductDefinition.hxx -StepBasic_HArray1OfUncertaintyMeasureWithUnit.hxx -StepBasic_IdentificationAssignment.cxx -StepBasic_IdentificationAssignment.hxx -StepBasic_IdentificationRole.cxx -StepBasic_IdentificationRole.hxx -StepBasic_LengthMeasureWithUnit.cxx -StepBasic_LengthMeasureWithUnit.hxx -StepBasic_LengthUnit.cxx -StepBasic_LengthUnit.hxx -StepBasic_LocalTime.cxx -StepBasic_LocalTime.hxx -StepBasic_MassMeasureWithUnit.cxx -StepBasic_MassMeasureWithUnit.hxx -StepBasic_MassUnit.cxx -StepBasic_MassUnit.hxx -StepBasic_MeasureValueMember.cxx -StepBasic_MeasureValueMember.hxx -StepBasic_MeasureWithUnit.cxx -StepBasic_MeasureWithUnit.hxx -StepBasic_MechanicalContext.cxx -StepBasic_MechanicalContext.hxx -StepBasic_NameAssignment.cxx -StepBasic_NameAssignment.hxx -StepBasic_NamedUnit.cxx -StepBasic_NamedUnit.hxx -StepBasic_ObjectRole.cxx -StepBasic_ObjectRole.hxx -StepBasic_OrdinalDate.cxx -StepBasic_OrdinalDate.hxx -StepBasic_Organization.cxx -StepBasic_Organization.hxx -StepBasic_OrganizationalAddress.cxx -StepBasic_OrganizationalAddress.hxx -StepBasic_OrganizationAssignment.cxx -StepBasic_OrganizationAssignment.hxx -StepBasic_OrganizationRole.cxx -StepBasic_OrganizationRole.hxx -StepBasic_Person.cxx -StepBasic_Person.hxx -StepBasic_PersonalAddress.cxx -StepBasic_PersonalAddress.hxx -StepBasic_PersonAndOrganization.cxx -StepBasic_PersonAndOrganization.hxx -StepBasic_PersonAndOrganizationAssignment.cxx -StepBasic_PersonAndOrganizationAssignment.hxx -StepBasic_PersonAndOrganizationRole.cxx -StepBasic_PersonAndOrganizationRole.hxx -StepBasic_PersonOrganizationSelect.cxx -StepBasic_PersonOrganizationSelect.hxx -StepBasic_PhysicallyModeledProductDefinition.cxx -StepBasic_PhysicallyModeledProductDefinition.hxx -StepBasic_PlaneAngleMeasureWithUnit.cxx -StepBasic_PlaneAngleMeasureWithUnit.hxx -StepBasic_PlaneAngleUnit.cxx -StepBasic_PlaneAngleUnit.hxx -StepBasic_Product.cxx -StepBasic_Product.hxx -StepBasic_ProductCategory.cxx -StepBasic_ProductCategory.hxx -StepBasic_ProductCategoryRelationship.cxx -StepBasic_ProductCategoryRelationship.hxx -StepBasic_ProductConceptContext.cxx -StepBasic_ProductConceptContext.hxx -StepBasic_ProductContext.cxx -StepBasic_ProductContext.hxx -StepBasic_ProductDefinition.cxx -StepBasic_ProductDefinition.hxx -StepBasic_ProductDefinitionContext.cxx -StepBasic_ProductDefinitionContext.hxx -StepBasic_ProductDefinitionEffectivity.cxx -StepBasic_ProductDefinitionEffectivity.hxx -StepBasic_ProductDefinitionFormation.cxx -StepBasic_ProductDefinitionFormation.hxx -StepBasic_ProductDefinitionFormationRelationship.cxx -StepBasic_ProductDefinitionFormationRelationship.hxx -StepBasic_ProductDefinitionFormationWithSpecifiedSource.cxx -StepBasic_ProductDefinitionFormationWithSpecifiedSource.hxx -StepBasic_ProductDefinitionOrReference.cxx -StepBasic_ProductDefinitionOrReference.hxx -StepBasic_ProductDefinitionReference.cxx -StepBasic_ProductDefinitionReference.hxx -StepBasic_ProductDefinitionReferenceWithLocalRepresentation.cxx -StepBasic_ProductDefinitionReferenceWithLocalRepresentation.hxx -StepBasic_ProductDefinitionRelationship.cxx -StepBasic_ProductDefinitionRelationship.hxx -StepBasic_ProductDefinitionWithAssociatedDocuments.cxx -StepBasic_ProductDefinitionWithAssociatedDocuments.hxx -StepBasic_ProductOrFormationOrDefinition.cxx -StepBasic_ProductOrFormationOrDefinition.hxx -StepBasic_ProductRelatedProductCategory.cxx -StepBasic_ProductRelatedProductCategory.hxx -StepBasic_ProductType.cxx -StepBasic_ProductType.hxx -StepBasic_RatioMeasureWithUnit.cxx -StepBasic_RatioMeasureWithUnit.hxx -StepBasic_RatioUnit.cxx -StepBasic_RatioUnit.hxx -StepBasic_RoleAssociation.cxx -StepBasic_RoleAssociation.hxx -StepBasic_RoleSelect.cxx -StepBasic_RoleSelect.hxx -StepBasic_SecurityClassification.cxx -StepBasic_SecurityClassification.hxx -StepBasic_SecurityClassificationAssignment.cxx -StepBasic_SecurityClassificationAssignment.hxx -StepBasic_SecurityClassificationLevel.cxx -StepBasic_SecurityClassificationLevel.hxx -StepBasic_SiPrefix.hxx -StepBasic_SiUnit.cxx -StepBasic_SiUnit.hxx -StepBasic_SiUnitAndAreaUnit.cxx -StepBasic_SiUnitAndAreaUnit.hxx -StepBasic_SiUnitAndLengthUnit.cxx -StepBasic_SiUnitAndLengthUnit.hxx -StepBasic_SiUnitAndMassUnit.cxx -StepBasic_SiUnitAndMassUnit.hxx -StepBasic_SiUnitAndPlaneAngleUnit.cxx -StepBasic_SiUnitAndPlaneAngleUnit.hxx -StepBasic_SiUnitAndRatioUnit.cxx -StepBasic_SiUnitAndRatioUnit.hxx -StepBasic_SiUnitAndSolidAngleUnit.cxx -StepBasic_SiUnitAndSolidAngleUnit.hxx -StepBasic_SiUnitAndThermodynamicTemperatureUnit.cxx -StepBasic_SiUnitAndThermodynamicTemperatureUnit.hxx -StepBasic_SiUnitAndTimeUnit.cxx -StepBasic_SiUnitAndTimeUnit.hxx -StepBasic_SiUnitAndVolumeUnit.cxx -StepBasic_SiUnitAndVolumeUnit.hxx -StepBasic_SiUnitName.hxx -StepBasic_SizeMember.cxx -StepBasic_SizeMember.hxx -StepBasic_SizeSelect.cxx -StepBasic_SizeSelect.hxx -StepBasic_SolidAngleMeasureWithUnit.cxx -StepBasic_SolidAngleMeasureWithUnit.hxx -StepBasic_SolidAngleUnit.cxx -StepBasic_SolidAngleUnit.hxx -StepBasic_Source.hxx -StepBasic_SourceItem.cxx -StepBasic_SourceItem.hxx -StepBasic_ThermodynamicTemperatureUnit.cxx -StepBasic_ThermodynamicTemperatureUnit.hxx -StepBasic_TimeMeasureWithUnit.cxx -StepBasic_TimeMeasureWithUnit.hxx -StepBasic_TimeUnit.cxx -StepBasic_TimeUnit.hxx -StepBasic_UncertaintyMeasureWithUnit.cxx -StepBasic_UncertaintyMeasureWithUnit.hxx -StepBasic_Unit.cxx -StepBasic_Unit.hxx -StepBasic_VersionedActionRequest.cxx -StepBasic_VersionedActionRequest.hxx -StepBasic_VolumeUnit.cxx -StepBasic_VolumeUnit.hxx -StepBasic_WeekOfYearAndDayDate.cxx -StepBasic_WeekOfYearAndDayDate.hxx diff --git a/src/StepData/FILES b/src/StepData/FILES deleted file mode 100644 index 75ee894be1..0000000000 --- a/src/StepData/FILES +++ /dev/null @@ -1,78 +0,0 @@ -StepData.cxx -StepData.hxx -StepData_Array1OfField.hxx -StepData_ConfParameters.hxx -StepData_DefaultGeneral.cxx -StepData_DefaultGeneral.hxx -StepData_Described.cxx -StepData_Described.hxx -StepData_ECDescr.cxx -StepData_ECDescr.hxx -StepData_EDescr.cxx -StepData_EDescr.hxx -StepData_EnumTool.cxx -StepData_EnumTool.hxx -StepData_ESDescr.cxx -StepData_ESDescr.hxx -StepData_Factors.cxx -StepData_Factors.hxx -StepData_Field.cxx -StepData_Field.hxx -StepData_FieldList.cxx -StepData_FieldList.hxx -StepData_FieldList1.cxx -StepData_FieldList1.hxx -StepData_FieldListD.cxx -StepData_FieldListD.hxx -StepData_FieldListN.cxx -StepData_FieldListN.hxx -StepData_FileProtocol.cxx -StepData_FileProtocol.hxx -StepData_FileRecognizer.hxx -StepData_FileRecognizer_0.cxx -StepData_FreeFormEntity.cxx -StepData_FreeFormEntity.hxx -StepData_GeneralModule.cxx -StepData_GeneralModule.hxx -StepData_GlobalNodeOfWriterLib.hxx -StepData_GlobalNodeOfWriterLib_0.cxx -StepData_HArray1OfField.hxx -StepData_Logical.hxx -StepData_NodeOfWriterLib.hxx -StepData_NodeOfWriterLib_0.cxx -StepData_PDescr.cxx -StepData_PDescr.hxx -StepData_Plex.cxx -StepData_Plex.hxx -StepData_Protocol.cxx -StepData_Protocol.hxx -StepData_ReadWriteModule.cxx -StepData_ReadWriteModule.hxx -StepData_SelectArrReal.cxx -StepData_SelectArrReal.hxx -StepData_SelectInt.cxx -StepData_SelectInt.hxx -StepData_SelectMember.cxx -StepData_SelectMember.hxx -StepData_SelectNamed.cxx -StepData_SelectNamed.hxx -StepData_SelectReal.cxx -StepData_SelectReal.hxx -StepData_SelectType.cxx -StepData_SelectType.hxx -StepData_Simple.cxx -StepData_Simple.hxx -StepData_StepDumper.cxx -StepData_StepDumper.hxx -StepData_StepModel.cxx -StepData_StepModel.hxx -StepData_StepReaderData.cxx -StepData_StepReaderData.hxx -StepData_StepReaderTool.cxx -StepData_StepReaderTool.hxx -StepData_StepWriter.cxx -StepData_StepWriter.hxx -StepData_UndefinedEntity.cxx -StepData_UndefinedEntity.hxx -StepData_WriterLib.hxx -StepData_WriterLib_0.cxx diff --git a/src/StepDimTol/FILES b/src/StepDimTol/FILES deleted file mode 100644 index c0c58d55fb..0000000000 --- a/src/StepDimTol/FILES +++ /dev/null @@ -1,132 +0,0 @@ -StepDimTol_AngularityTolerance.cxx -StepDimTol_AngularityTolerance.hxx -StepDimTol_AreaUnitType.hxx -StepDimTol_Array1OfDatumReference.hxx -StepDimTol_Array1OfDatumReferenceCompartment.hxx -StepDimTol_Array1OfDatumReferenceElement.hxx -StepDimTol_Array1OfDatumReferenceModifier.hxx -StepDimTol_Array1OfDatumSystemOrReference.hxx -StepDimTol_Array1OfGeometricToleranceModifier.hxx -StepDimTol_Array1OfToleranceZoneTarget.hxx -StepDimTol_CircularRunoutTolerance.cxx -StepDimTol_CircularRunoutTolerance.hxx -StepDimTol_CoaxialityTolerance.cxx -StepDimTol_CoaxialityTolerance.hxx -StepDimTol_CommonDatum.cxx -StepDimTol_CommonDatum.hxx -StepDimTol_ConcentricityTolerance.cxx -StepDimTol_ConcentricityTolerance.hxx -StepDimTol_CylindricityTolerance.cxx -StepDimTol_CylindricityTolerance.hxx -StepDimTol_Datum.cxx -StepDimTol_Datum.hxx -StepDimTol_DatumFeature.cxx -StepDimTol_DatumFeature.hxx -StepDimTol_DatumOrCommonDatum.cxx -StepDimTol_DatumOrCommonDatum.hxx -StepDimTol_DatumReference.cxx -StepDimTol_DatumReference.hxx -StepDimTol_DatumReferenceCompartment.cxx -StepDimTol_DatumReferenceCompartment.hxx -StepDimTol_DatumReferenceElement.cxx -StepDimTol_DatumReferenceElement.hxx -StepDimTol_DatumReferenceModifier.cxx -StepDimTol_DatumReferenceModifier.hxx -StepDimTol_DatumReferenceModifierWithValue.cxx -StepDimTol_DatumReferenceModifierWithValue.hxx -StepDimTol_DatumReferenceModifierType.hxx -StepDimTol_DatumSystem.cxx -StepDimTol_DatumSystem.hxx -StepDimTol_DatumSystemOrReference.cxx -StepDimTol_DatumSystemOrReference.hxx -StepDimTol_DatumTarget.cxx -StepDimTol_DatumTarget.hxx -StepDimTol_FlatnessTolerance.cxx -StepDimTol_FlatnessTolerance.hxx -StepDimTol_GeneralDatumReference.cxx -StepDimTol_GeneralDatumReference.hxx -StepDimTol_GeometricTolerance.cxx -StepDimTol_GeometricTolerance.hxx -StepDimTol_GeometricToleranceModifier.hxx -StepDimTol_GeometricToleranceRelationship.cxx -StepDimTol_GeometricToleranceRelationship.hxx -StepDimTol_GeometricToleranceTarget.cxx -StepDimTol_GeometricToleranceTarget.hxx -StepDimTol_GeometricToleranceType.hxx -StepDimTol_GeometricToleranceWithDatumReference.cxx -StepDimTol_GeometricToleranceWithDatumReference.hxx -StepDimTol_GeometricToleranceWithDefinedAreaUnit.cxx -StepDimTol_GeometricToleranceWithDefinedAreaUnit.hxx -StepDimTol_GeometricToleranceWithDefinedUnit.cxx -StepDimTol_GeometricToleranceWithDefinedUnit.hxx -StepDimTol_GeometricToleranceWithMaximumTolerance.cxx -StepDimTol_GeometricToleranceWithMaximumTolerance.hxx -StepDimTol_GeometricToleranceWithModifiers.cxx -StepDimTol_GeometricToleranceWithModifiers.hxx -StepDimTol_GeoTolAndGeoTolWthDatRef.cxx -StepDimTol_GeoTolAndGeoTolWthDatRef.hxx -StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMaxTol.cxx -StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMaxTol.hxx -StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMod.cxx -StepDimTol_GeoTolAndGeoTolWthDatRefAndGeoTolWthMod.hxx -StepDimTol_GeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol.cxx -StepDimTol_GeoTolAndGeoTolWthDatRefAndModGeoTolAndPosTol.hxx -StepDimTol_GeoTolAndGeoTolWthDatRefAndUneqDisGeoTol.cxx -StepDimTol_GeoTolAndGeoTolWthDatRefAndUneqDisGeoTol.hxx -StepDimTol_GeoTolAndGeoTolWthMaxTol.cxx -StepDimTol_GeoTolAndGeoTolWthMaxTol.hxx -StepDimTol_GeoTolAndGeoTolWthMod.cxx -StepDimTol_GeoTolAndGeoTolWthMod.hxx -StepDimTol_HArray1OfDatumReference.hxx -StepDimTol_HArray1OfDatumReferenceCompartment.hxx -StepDimTol_HArray1OfDatumReferenceElement.hxx -StepDimTol_HArray1OfDatumReferenceModifier.hxx -StepDimTol_HArray1OfDatumSystemOrReference.hxx -StepDimTol_HArray1OfGeometricToleranceModifier.hxx -StepDimTol_HArray1OfToleranceZoneTarget.hxx -StepDimTol_LimitCondition.hxx -StepDimTol_LineProfileTolerance.cxx -StepDimTol_LineProfileTolerance.hxx -StepDimTol_ModifiedGeometricTolerance.cxx -StepDimTol_ModifiedGeometricTolerance.hxx -StepDimTol_NonUniformZoneDefinition.cxx -StepDimTol_NonUniformZoneDefinition.hxx -StepDimTol_ParallelismTolerance.cxx -StepDimTol_ParallelismTolerance.hxx -StepDimTol_PerpendicularityTolerance.cxx -StepDimTol_PerpendicularityTolerance.hxx -StepDimTol_PlacedDatumTargetFeature.cxx -StepDimTol_PlacedDatumTargetFeature.hxx -StepDimTol_PositionTolerance.cxx -StepDimTol_PositionTolerance.hxx -StepDimTol_ProjectedZoneDefinition.cxx -StepDimTol_ProjectedZoneDefinition.hxx -StepDimTol_RoundnessTolerance.cxx -StepDimTol_RoundnessTolerance.hxx -StepDimTol_RunoutZoneDefinition.cxx -StepDimTol_RunoutZoneDefinition.hxx -StepDimTol_RunoutZoneOrientation.cxx -StepDimTol_RunoutZoneOrientation.hxx -StepDimTol_ShapeToleranceSelect.cxx -StepDimTol_ShapeToleranceSelect.hxx -StepDimTol_SimpleDatumReferenceModifier.hxx -StepDimTol_SimpleDatumReferenceModifierMember.cxx -StepDimTol_SimpleDatumReferenceModifierMember.hxx -StepDimTol_StraightnessTolerance.cxx -StepDimTol_StraightnessTolerance.hxx -StepDimTol_SurfaceProfileTolerance.cxx -StepDimTol_SurfaceProfileTolerance.hxx -StepDimTol_SymmetryTolerance.cxx -StepDimTol_SymmetryTolerance.hxx -StepDimTol_ToleranceZone.cxx -StepDimTol_ToleranceZone.hxx -StepDimTol_ToleranceZoneDefinition.cxx -StepDimTol_ToleranceZoneDefinition.hxx -StepDimTol_ToleranceZoneForm.cxx -StepDimTol_ToleranceZoneForm.hxx -StepDimTol_ToleranceZoneTarget.cxx -StepDimTol_ToleranceZoneTarget.hxx -StepDimTol_TotalRunoutTolerance.cxx -StepDimTol_TotalRunoutTolerance.hxx -StepDimTol_UnequallyDisposedGeometricTolerance.cxx -StepDimTol_UnequallyDisposedGeometricTolerance.hxx diff --git a/src/StepElement/FILES b/src/StepElement/FILES deleted file mode 100644 index 97620a9555..0000000000 --- a/src/StepElement/FILES +++ /dev/null @@ -1,94 +0,0 @@ -StepElement_AnalysisItemWithinRepresentation.cxx -StepElement_AnalysisItemWithinRepresentation.hxx -StepElement_Array1OfCurveElementEndReleasePacket.hxx -StepElement_Array1OfCurveElementSectionDefinition.hxx -StepElement_Array1OfHSequenceOfCurveElementPurposeMember.hxx -StepElement_Array1OfHSequenceOfSurfaceElementPurposeMember.hxx -StepElement_Array1OfMeasureOrUnspecifiedValue.hxx -StepElement_Array1OfSurfaceSection.hxx -StepElement_Array1OfVolumeElementPurpose.hxx -StepElement_Array1OfVolumeElementPurposeMember.hxx -StepElement_Array2OfCurveElementPurposeMember.hxx -StepElement_Array2OfSurfaceElementPurpose.hxx -StepElement_Array2OfSurfaceElementPurposeMember.hxx -StepElement_Curve3dElementDescriptor.cxx -StepElement_Curve3dElementDescriptor.hxx -StepElement_CurveEdge.hxx -StepElement_CurveElementEndReleasePacket.cxx -StepElement_CurveElementEndReleasePacket.hxx -StepElement_CurveElementFreedom.cxx -StepElement_CurveElementFreedom.hxx -StepElement_CurveElementFreedomMember.cxx -StepElement_CurveElementFreedomMember.hxx -StepElement_CurveElementPurpose.cxx -StepElement_CurveElementPurpose.hxx -StepElement_CurveElementPurposeMember.cxx -StepElement_CurveElementPurposeMember.hxx -StepElement_CurveElementSectionDefinition.cxx -StepElement_CurveElementSectionDefinition.hxx -StepElement_CurveElementSectionDerivedDefinitions.cxx -StepElement_CurveElementSectionDerivedDefinitions.hxx -StepElement_Element2dShape.hxx -StepElement_ElementAspect.cxx -StepElement_ElementAspect.hxx -StepElement_ElementAspectMember.cxx -StepElement_ElementAspectMember.hxx -StepElement_ElementDescriptor.cxx -StepElement_ElementDescriptor.hxx -StepElement_ElementMaterial.cxx -StepElement_ElementMaterial.hxx -StepElement_ElementOrder.hxx -StepElement_ElementVolume.hxx -StepElement_EnumeratedCurveElementFreedom.hxx -StepElement_EnumeratedCurveElementPurpose.hxx -StepElement_EnumeratedSurfaceElementPurpose.hxx -StepElement_EnumeratedVolumeElementPurpose.hxx -StepElement_HArray1OfCurveElementEndReleasePacket.hxx -StepElement_HArray1OfCurveElementSectionDefinition.hxx -StepElement_HArray1OfHSequenceOfCurveElementPurposeMember.hxx -StepElement_HArray1OfHSequenceOfSurfaceElementPurposeMember.hxx -StepElement_HArray1OfMeasureOrUnspecifiedValue.hxx -StepElement_HArray1OfSurfaceSection.hxx -StepElement_HArray1OfVolumeElementPurpose.hxx -StepElement_HArray1OfVolumeElementPurposeMember.hxx -StepElement_HArray2OfCurveElementPurposeMember.hxx -StepElement_HArray2OfSurfaceElementPurpose.hxx -StepElement_HArray2OfSurfaceElementPurposeMember.hxx -StepElement_HSequenceOfCurveElementPurposeMember.hxx -StepElement_HSequenceOfCurveElementSectionDefinition.hxx -StepElement_HSequenceOfElementMaterial.hxx -StepElement_HSequenceOfSurfaceElementPurposeMember.hxx -StepElement_MeasureOrUnspecifiedValue.cxx -StepElement_MeasureOrUnspecifiedValue.hxx -StepElement_MeasureOrUnspecifiedValueMember.cxx -StepElement_MeasureOrUnspecifiedValueMember.hxx -StepElement_SequenceOfCurveElementPurposeMember.hxx -StepElement_SequenceOfCurveElementSectionDefinition.hxx -StepElement_SequenceOfElementMaterial.hxx -StepElement_SequenceOfSurfaceElementPurposeMember.hxx -StepElement_Surface3dElementDescriptor.cxx -StepElement_Surface3dElementDescriptor.hxx -StepElement_SurfaceElementProperty.cxx -StepElement_SurfaceElementProperty.hxx -StepElement_SurfaceElementPurpose.cxx -StepElement_SurfaceElementPurpose.hxx -StepElement_SurfaceElementPurposeMember.cxx -StepElement_SurfaceElementPurposeMember.hxx -StepElement_SurfaceSection.cxx -StepElement_SurfaceSection.hxx -StepElement_SurfaceSectionField.cxx -StepElement_SurfaceSectionField.hxx -StepElement_SurfaceSectionFieldConstant.cxx -StepElement_SurfaceSectionFieldConstant.hxx -StepElement_SurfaceSectionFieldVarying.cxx -StepElement_SurfaceSectionFieldVarying.hxx -StepElement_UniformSurfaceSection.cxx -StepElement_UniformSurfaceSection.hxx -StepElement_UnspecifiedValue.hxx -StepElement_Volume3dElementDescriptor.cxx -StepElement_Volume3dElementDescriptor.hxx -StepElement_Volume3dElementShape.hxx -StepElement_VolumeElementPurpose.cxx -StepElement_VolumeElementPurpose.hxx -StepElement_VolumeElementPurposeMember.cxx -StepElement_VolumeElementPurposeMember.hxx diff --git a/src/StepFEA/FILES b/src/StepFEA/FILES deleted file mode 100644 index a3ea7e9b79..0000000000 --- a/src/StepFEA/FILES +++ /dev/null @@ -1,149 +0,0 @@ -StepFEA_AlignedCurve3dElementCoordinateSystem.cxx -StepFEA_AlignedCurve3dElementCoordinateSystem.hxx -StepFEA_AlignedSurface3dElementCoordinateSystem.cxx -StepFEA_AlignedSurface3dElementCoordinateSystem.hxx -StepFEA_ArbitraryVolume3dElementCoordinateSystem.cxx -StepFEA_ArbitraryVolume3dElementCoordinateSystem.hxx -StepFEA_Array1OfCurveElementEndOffset.hxx -StepFEA_Array1OfCurveElementEndRelease.hxx -StepFEA_Array1OfCurveElementInterval.hxx -StepFEA_Array1OfDegreeOfFreedom.hxx -StepFEA_Array1OfElementRepresentation.hxx -StepFEA_Array1OfNodeRepresentation.hxx -StepFEA_ConstantSurface3dElementCoordinateSystem.cxx -StepFEA_ConstantSurface3dElementCoordinateSystem.hxx -StepFEA_CoordinateSystemType.hxx -StepFEA_Curve3dElementProperty.cxx -StepFEA_Curve3dElementProperty.hxx -StepFEA_Curve3dElementRepresentation.cxx -StepFEA_Curve3dElementRepresentation.hxx -StepFEA_CurveEdge.hxx -StepFEA_CurveElementEndCoordinateSystem.cxx -StepFEA_CurveElementEndCoordinateSystem.hxx -StepFEA_CurveElementEndOffset.cxx -StepFEA_CurveElementEndOffset.hxx -StepFEA_CurveElementEndRelease.cxx -StepFEA_CurveElementEndRelease.hxx -StepFEA_CurveElementInterval.cxx -StepFEA_CurveElementInterval.hxx -StepFEA_CurveElementIntervalConstant.cxx -StepFEA_CurveElementIntervalConstant.hxx -StepFEA_CurveElementIntervalLinearlyVarying.cxx -StepFEA_CurveElementIntervalLinearlyVarying.hxx -StepFEA_CurveElementLocation.cxx -StepFEA_CurveElementLocation.hxx -StepFEA_DegreeOfFreedom.cxx -StepFEA_DegreeOfFreedom.hxx -StepFEA_DegreeOfFreedomMember.cxx -StepFEA_DegreeOfFreedomMember.hxx -StepFEA_DummyNode.cxx -StepFEA_DummyNode.hxx -StepFEA_ElementGeometricRelationship.cxx -StepFEA_ElementGeometricRelationship.hxx -StepFEA_ElementGroup.cxx -StepFEA_ElementGroup.hxx -StepFEA_ElementOrElementGroup.cxx -StepFEA_ElementOrElementGroup.hxx -StepFEA_ElementRepresentation.cxx -StepFEA_ElementRepresentation.hxx -StepFEA_ElementVolume.hxx -StepFEA_EnumeratedDegreeOfFreedom.hxx -StepFEA_FeaAreaDensity.cxx -StepFEA_FeaAreaDensity.hxx -StepFEA_FeaAxis2Placement3d.cxx -StepFEA_FeaAxis2Placement3d.hxx -StepFEA_FeaCurveSectionGeometricRelationship.cxx -StepFEA_FeaCurveSectionGeometricRelationship.hxx -StepFEA_FeaGroup.cxx -StepFEA_FeaGroup.hxx -StepFEA_FeaLinearElasticity.cxx -StepFEA_FeaLinearElasticity.hxx -StepFEA_FeaMassDensity.cxx -StepFEA_FeaMassDensity.hxx -StepFEA_FeaMaterialPropertyRepresentation.cxx -StepFEA_FeaMaterialPropertyRepresentation.hxx -StepFEA_FeaMaterialPropertyRepresentationItem.cxx -StepFEA_FeaMaterialPropertyRepresentationItem.hxx -StepFEA_FeaModel.cxx -StepFEA_FeaModel.hxx -StepFEA_FeaModel3d.cxx -StepFEA_FeaModel3d.hxx -StepFEA_FeaModelDefinition.cxx -StepFEA_FeaModelDefinition.hxx -StepFEA_FeaMoistureAbsorption.cxx -StepFEA_FeaMoistureAbsorption.hxx -StepFEA_FeaParametricPoint.cxx -StepFEA_FeaParametricPoint.hxx -StepFEA_FeaRepresentationItem.cxx -StepFEA_FeaRepresentationItem.hxx -StepFEA_FeaSecantCoefficientOfLinearThermalExpansion.cxx -StepFEA_FeaSecantCoefficientOfLinearThermalExpansion.hxx -StepFEA_FeaShellBendingStiffness.cxx -StepFEA_FeaShellBendingStiffness.hxx -StepFEA_FeaShellMembraneBendingCouplingStiffness.cxx -StepFEA_FeaShellMembraneBendingCouplingStiffness.hxx -StepFEA_FeaShellMembraneStiffness.cxx -StepFEA_FeaShellMembraneStiffness.hxx -StepFEA_FeaShellShearStiffness.cxx -StepFEA_FeaShellShearStiffness.hxx -StepFEA_FeaSurfaceSectionGeometricRelationship.cxx -StepFEA_FeaSurfaceSectionGeometricRelationship.hxx -StepFEA_FeaTangentialCoefficientOfLinearThermalExpansion.cxx -StepFEA_FeaTangentialCoefficientOfLinearThermalExpansion.hxx -StepFEA_FreedomAndCoefficient.cxx -StepFEA_FreedomAndCoefficient.hxx -StepFEA_FreedomsList.cxx -StepFEA_FreedomsList.hxx -StepFEA_GeometricNode.cxx -StepFEA_GeometricNode.hxx -StepFEA_HArray1OfCurveElementEndOffset.hxx -StepFEA_HArray1OfCurveElementEndRelease.hxx -StepFEA_HArray1OfCurveElementInterval.hxx -StepFEA_HArray1OfDegreeOfFreedom.hxx -StepFEA_HArray1OfElementRepresentation.hxx -StepFEA_HArray1OfNodeRepresentation.hxx -StepFEA_HSequenceOfCurve3dElementProperty.hxx -StepFEA_HSequenceOfElementGeometricRelationship.hxx -StepFEA_HSequenceOfElementRepresentation.hxx -StepFEA_HSequenceOfNodeRepresentation.hxx -StepFEA_Node.cxx -StepFEA_Node.hxx -StepFEA_NodeDefinition.cxx -StepFEA_NodeDefinition.hxx -StepFEA_NodeGroup.cxx -StepFEA_NodeGroup.hxx -StepFEA_NodeRepresentation.cxx -StepFEA_NodeRepresentation.hxx -StepFEA_NodeSet.cxx -StepFEA_NodeSet.hxx -StepFEA_NodeWithSolutionCoordinateSystem.cxx -StepFEA_NodeWithSolutionCoordinateSystem.hxx -StepFEA_NodeWithVector.cxx -StepFEA_NodeWithVector.hxx -StepFEA_ParametricCurve3dElementCoordinateDirection.cxx -StepFEA_ParametricCurve3dElementCoordinateDirection.hxx -StepFEA_ParametricCurve3dElementCoordinateSystem.cxx -StepFEA_ParametricCurve3dElementCoordinateSystem.hxx -StepFEA_ParametricSurface3dElementCoordinateSystem.cxx -StepFEA_ParametricSurface3dElementCoordinateSystem.hxx -StepFEA_SequenceOfCurve3dElementProperty.hxx -StepFEA_SequenceOfElementGeometricRelationship.hxx -StepFEA_SequenceOfElementRepresentation.hxx -StepFEA_SequenceOfNodeRepresentation.hxx -StepFEA_Surface3dElementRepresentation.cxx -StepFEA_Surface3dElementRepresentation.hxx -StepFEA_SymmetricTensor22d.cxx -StepFEA_SymmetricTensor22d.hxx -StepFEA_SymmetricTensor23d.cxx -StepFEA_SymmetricTensor23d.hxx -StepFEA_SymmetricTensor23dMember.cxx -StepFEA_SymmetricTensor23dMember.hxx -StepFEA_SymmetricTensor42d.cxx -StepFEA_SymmetricTensor42d.hxx -StepFEA_SymmetricTensor43d.cxx -StepFEA_SymmetricTensor43d.hxx -StepFEA_SymmetricTensor43dMember.cxx -StepFEA_SymmetricTensor43dMember.hxx -StepFEA_UnspecifiedValue.hxx -StepFEA_Volume3dElementRepresentation.cxx -StepFEA_Volume3dElementRepresentation.hxx diff --git a/src/StepFile/FILES b/src/StepFile/FILES deleted file mode 100755 index 5c8fa85a09..0000000000 --- a/src/StepFile/FILES +++ /dev/null @@ -1,9 +0,0 @@ -lex.step.cxx -step.tab.cxx -step.tab.hxx -StepFile_ReadData.cxx -StepFile_ReadData.hxx -StepFile_Read.cxx -StepFile_Read.hxx -step.lex -step.yacc diff --git a/src/StepGeom/FILES b/src/StepGeom/FILES deleted file mode 100644 index 2f6c00435c..0000000000 --- a/src/StepGeom/FILES +++ /dev/null @@ -1,206 +0,0 @@ -StepGeom_Array1OfBoundaryCurve.hxx -StepGeom_Array1OfCartesianPoint.hxx -StepGeom_Array1OfCompositeCurveSegment.hxx -StepGeom_Array1OfCurve.hxx -StepGeom_Array1OfPcurveOrSurface.hxx -StepGeom_Array1OfSurfaceBoundary.hxx -StepGeom_Array1OfTrimmingSelect.hxx -StepGeom_Array2OfCartesianPoint.hxx -StepGeom_Array2OfSurfacePatch.hxx -StepGeom_Axis1Placement.cxx -StepGeom_Axis1Placement.hxx -StepGeom_Axis2Placement.cxx -StepGeom_Axis2Placement.hxx -StepGeom_Axis2Placement2d.cxx -StepGeom_Axis2Placement2d.hxx -StepGeom_Axis2Placement3d.cxx -StepGeom_Axis2Placement3d.hxx -StepGeom_BezierCurve.cxx -StepGeom_BezierCurve.hxx -StepGeom_BezierCurveAndRationalBSplineCurve.cxx -StepGeom_BezierCurveAndRationalBSplineCurve.hxx -StepGeom_BezierSurface.cxx -StepGeom_BezierSurface.hxx -StepGeom_BezierSurfaceAndRationalBSplineSurface.cxx -StepGeom_BezierSurfaceAndRationalBSplineSurface.hxx -StepGeom_BoundaryCurve.cxx -StepGeom_BoundaryCurve.hxx -StepGeom_BoundedCurve.cxx -StepGeom_BoundedCurve.hxx -StepGeom_BoundedSurface.cxx -StepGeom_BoundedSurface.hxx -StepGeom_BSplineCurve.cxx -StepGeom_BSplineCurve.hxx -StepGeom_BSplineCurveForm.hxx -StepGeom_BSplineCurveWithKnots.cxx -StepGeom_BSplineCurveWithKnots.hxx -StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve.cxx -StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve.hxx -StepGeom_BSplineSurface.cxx -StepGeom_BSplineSurface.hxx -StepGeom_BSplineSurfaceForm.hxx -StepGeom_BSplineSurfaceWithKnots.cxx -StepGeom_BSplineSurfaceWithKnots.hxx -StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface.cxx -StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface.hxx -StepGeom_CartesianPoint.cxx -StepGeom_CartesianPoint.hxx -StepGeom_CartesianTransformationOperator.cxx -StepGeom_CartesianTransformationOperator.hxx -StepGeom_CartesianTransformationOperator2d.cxx -StepGeom_CartesianTransformationOperator2d.hxx -StepGeom_CartesianTransformationOperator3d.cxx -StepGeom_CartesianTransformationOperator3d.hxx -StepGeom_Circle.cxx -StepGeom_Circle.hxx -StepGeom_CompositeCurve.cxx -StepGeom_CompositeCurve.hxx -StepGeom_CompositeCurveOnSurface.cxx -StepGeom_CompositeCurveOnSurface.hxx -StepGeom_CompositeCurveSegment.cxx -StepGeom_CompositeCurveSegment.hxx -StepGeom_Conic.cxx -StepGeom_Conic.hxx -StepGeom_ConicalSurface.cxx -StepGeom_ConicalSurface.hxx -StepGeom_Curve.cxx -StepGeom_Curve.hxx -StepGeom_CurveBoundedSurface.cxx -StepGeom_CurveBoundedSurface.hxx -StepGeom_CurveOnSurface.cxx -StepGeom_CurveOnSurface.hxx -StepGeom_CurveReplica.cxx -StepGeom_CurveReplica.hxx -StepGeom_CylindricalSurface.cxx -StepGeom_CylindricalSurface.hxx -StepGeom_DegeneratePcurve.cxx -StepGeom_DegeneratePcurve.hxx -StepGeom_DegenerateToroidalSurface.cxx -StepGeom_DegenerateToroidalSurface.hxx -StepGeom_Direction.cxx -StepGeom_Direction.hxx -StepGeom_ElementarySurface.cxx -StepGeom_ElementarySurface.hxx -StepGeom_Ellipse.cxx -StepGeom_Ellipse.hxx -StepGeom_EvaluatedDegeneratePcurve.cxx -StepGeom_EvaluatedDegeneratePcurve.hxx -StepGeom_GeometricRepresentationContext.cxx -StepGeom_GeometricRepresentationContext.hxx -StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext.cxx -StepGeom_GeometricRepresentationContextAndGlobalUnitAssignedContext.hxx -StepGeom_GeometricRepresentationContextAndParametricRepresentationContext.cxx -StepGeom_GeometricRepresentationContextAndParametricRepresentationContext.hxx -StepGeom_GeometricRepresentationItem.cxx -StepGeom_GeometricRepresentationItem.hxx -StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.cxx -StepGeom_GeomRepContextAndGlobUnitAssCtxAndGlobUncertaintyAssCtx.hxx -StepGeom_HArray1OfBoundaryCurve.hxx -StepGeom_HArray1OfCartesianPoint.hxx -StepGeom_HArray1OfCompositeCurveSegment.hxx -StepGeom_HArray1OfCurve.hxx -StepGeom_HArray1OfPcurveOrSurface.hxx -StepGeom_HArray1OfSurfaceBoundary.hxx -StepGeom_HArray1OfTrimmingSelect.hxx -StepGeom_HArray2OfCartesianPoint.hxx -StepGeom_HArray2OfSurfacePatch.hxx -StepGeom_Hyperbola.cxx -StepGeom_Hyperbola.hxx -StepGeom_IntersectionCurve.cxx -StepGeom_IntersectionCurve.hxx -StepGeom_KnotType.hxx -StepGeom_Line.cxx -StepGeom_Line.hxx -StepGeom_OffsetCurve3d.cxx -StepGeom_OffsetCurve3d.hxx -StepGeom_OffsetSurface.cxx -StepGeom_OffsetSurface.hxx -StepGeom_OrientedSurface.cxx -StepGeom_OrientedSurface.hxx -StepGeom_OuterBoundaryCurve.cxx -StepGeom_OuterBoundaryCurve.hxx -StepGeom_Parabola.cxx -StepGeom_Parabola.hxx -StepGeom_Pcurve.cxx -StepGeom_Pcurve.hxx -StepGeom_PcurveOrSurface.cxx -StepGeom_PcurveOrSurface.hxx -StepGeom_Placement.cxx -StepGeom_Placement.hxx -StepGeom_Plane.cxx -StepGeom_Plane.hxx -StepGeom_Point.cxx -StepGeom_Point.hxx -StepGeom_PointOnCurve.cxx -StepGeom_PointOnCurve.hxx -StepGeom_PointOnSurface.cxx -StepGeom_PointOnSurface.hxx -StepGeom_PointReplica.cxx -StepGeom_PointReplica.hxx -StepGeom_Polyline.cxx -StepGeom_Polyline.hxx -StepGeom_PreferredSurfaceCurveRepresentation.hxx -StepGeom_QuasiUniformCurve.cxx -StepGeom_QuasiUniformCurve.hxx -StepGeom_QuasiUniformCurveAndRationalBSplineCurve.cxx -StepGeom_QuasiUniformCurveAndRationalBSplineCurve.hxx -StepGeom_QuasiUniformSurface.cxx -StepGeom_QuasiUniformSurface.hxx -StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface.cxx -StepGeom_QuasiUniformSurfaceAndRationalBSplineSurface.hxx -StepGeom_RationalBSplineCurve.cxx -StepGeom_RationalBSplineCurve.hxx -StepGeom_RationalBSplineSurface.cxx -StepGeom_RationalBSplineSurface.hxx -StepGeom_RectangularCompositeSurface.cxx -StepGeom_RectangularCompositeSurface.hxx -StepGeom_RectangularTrimmedSurface.cxx -StepGeom_RectangularTrimmedSurface.hxx -StepGeom_ReparametrisedCompositeCurveSegment.cxx -StepGeom_ReparametrisedCompositeCurveSegment.hxx -StepGeom_SeamCurve.cxx -StepGeom_SeamCurve.hxx -StepGeom_SphericalSurface.cxx -StepGeom_SphericalSurface.hxx -StepGeom_SuParameters.cxx -StepGeom_SuParameters.hxx -StepGeom_Surface.cxx -StepGeom_Surface.hxx -StepGeom_SurfaceBoundary.cxx -StepGeom_SurfaceBoundary.hxx -StepGeom_SurfaceCurve.cxx -StepGeom_SurfaceCurve.hxx -StepGeom_SurfaceCurveAndBoundedCurve.cxx -StepGeom_SurfaceCurveAndBoundedCurve.hxx -StepGeom_SurfaceOfLinearExtrusion.cxx -StepGeom_SurfaceOfLinearExtrusion.hxx -StepGeom_SurfaceOfRevolution.cxx -StepGeom_SurfaceOfRevolution.hxx -StepGeom_SurfacePatch.cxx -StepGeom_SurfacePatch.hxx -StepGeom_SurfaceReplica.cxx -StepGeom_SurfaceReplica.hxx -StepGeom_SweptSurface.cxx -StepGeom_SweptSurface.hxx -StepGeom_ToroidalSurface.cxx -StepGeom_ToroidalSurface.hxx -StepGeom_TransitionCode.hxx -StepGeom_TrimmedCurve.cxx -StepGeom_TrimmedCurve.hxx -StepGeom_TrimmingMember.cxx -StepGeom_TrimmingMember.hxx -StepGeom_TrimmingPreference.hxx -StepGeom_TrimmingSelect.cxx -StepGeom_TrimmingSelect.hxx -StepGeom_UniformCurve.cxx -StepGeom_UniformCurve.hxx -StepGeom_UniformCurveAndRationalBSplineCurve.cxx -StepGeom_UniformCurveAndRationalBSplineCurve.hxx -StepGeom_UniformSurface.cxx -StepGeom_UniformSurface.hxx -StepGeom_UniformSurfaceAndRationalBSplineSurface.cxx -StepGeom_UniformSurfaceAndRationalBSplineSurface.hxx -StepGeom_Vector.cxx -StepGeom_Vector.hxx -StepGeom_VectorOrDirection.cxx -StepGeom_VectorOrDirection.hxx diff --git a/src/StepKinematics/FILES b/src/StepKinematics/FILES deleted file mode 100644 index 7e884b996f..0000000000 --- a/src/StepKinematics/FILES +++ /dev/null @@ -1,171 +0,0 @@ -StepKinematics_ActuatedDirection.hxx -StepKinematics_ActuatedKinematicPair.cxx -StepKinematics_ActuatedKinematicPair.hxx -StepKinematics_ContextDependentKinematicLinkRepresentation.cxx -StepKinematics_ContextDependentKinematicLinkRepresentation.hxx -StepKinematics_CylindricalPair.cxx -StepKinematics_CylindricalPair.hxx -StepKinematics_CylindricalPairValue.cxx -StepKinematics_CylindricalPairValue.hxx -StepKinematics_CylindricalPairWithRange.cxx -StepKinematics_CylindricalPairWithRange.hxx -StepKinematics_FullyConstrainedPair.cxx -StepKinematics_FullyConstrainedPair.hxx -StepKinematics_GearPair.cxx -StepKinematics_GearPair.hxx -StepKinematics_GearPairValue.cxx -StepKinematics_GearPairValue.hxx -StepKinematics_GearPairWithRange.cxx -StepKinematics_GearPairWithRange.hxx -StepKinematics_HighOrderKinematicPair.cxx -StepKinematics_HighOrderKinematicPair.hxx -StepKinematics_HomokineticPair.cxx -StepKinematics_HomokineticPair.hxx -StepKinematics_KinematicJoint.cxx -StepKinematics_KinematicJoint.hxx -StepKinematics_KinematicLink.cxx -StepKinematics_KinematicLink.hxx -StepKinematics_KinematicLinkRepresentation.cxx -StepKinematics_KinematicLinkRepresentation.hxx -StepKinematics_KinematicLinkRepresentationAssociation.cxx -StepKinematics_KinematicLinkRepresentationAssociation.hxx -StepKinematics_KinematicPair.cxx -StepKinematics_KinematicPair.hxx -StepKinematics_ActuatedKinPairAndOrderKinPair.cxx -StepKinematics_ActuatedKinPairAndOrderKinPair.hxx -StepKinematics_KinematicPropertyDefinitionRepresentation.cxx -StepKinematics_KinematicPropertyDefinitionRepresentation.hxx -StepKinematics_KinematicPropertyMechanismRepresentation.cxx -StepKinematics_KinematicPropertyMechanismRepresentation.hxx -StepKinematics_KinematicTopologyStructure.cxx -StepKinematics_KinematicTopologyStructure.hxx -StepKinematics_LinearFlexibleAndPinionPair.cxx -StepKinematics_LinearFlexibleAndPinionPair.hxx -StepKinematics_LinearFlexibleAndPlanarCurvePair.cxx -StepKinematics_LinearFlexibleAndPlanarCurvePair.hxx -StepKinematics_LinearFlexibleLinkRepresentation.cxx -StepKinematics_LinearFlexibleLinkRepresentation.hxx -StepKinematics_LowOrderKinematicPair.cxx -StepKinematics_LowOrderKinematicPair.hxx -StepKinematics_LowOrderKinematicPairValue.cxx -StepKinematics_LowOrderKinematicPairValue.hxx -StepKinematics_LowOrderKinematicPairWithMotionCoupling.cxx -StepKinematics_LowOrderKinematicPairWithMotionCoupling.hxx -StepKinematics_LowOrderKinematicPairWithRange.cxx -StepKinematics_LowOrderKinematicPairWithRange.hxx -StepKinematics_MechanismRepresentation.cxx -StepKinematics_MechanismRepresentation.hxx -StepKinematics_MechanismStateRepresentation.cxx -StepKinematics_MechanismStateRepresentation.hxx -StepKinematics_OrientedJoint.cxx -StepKinematics_OrientedJoint.hxx -StepKinematics_PairRepresentationRelationship.cxx -StepKinematics_PairRepresentationRelationship.hxx -StepKinematics_PairValue.cxx -StepKinematics_PairValue.hxx -StepKinematics_PlanarCurvePair.cxx -StepKinematics_PlanarCurvePair.hxx -StepKinematics_PlanarCurvePairRange.cxx -StepKinematics_PlanarCurvePairRange.hxx -StepKinematics_PlanarPair.cxx -StepKinematics_PlanarPair.hxx -StepKinematics_PlanarPairValue.cxx -StepKinematics_PlanarPairValue.hxx -StepKinematics_PlanarPairWithRange.cxx -StepKinematics_PlanarPairWithRange.hxx -StepKinematics_PointOnPlanarCurvePair.cxx -StepKinematics_PointOnPlanarCurvePair.hxx -StepKinematics_PointOnPlanarCurvePairValue.cxx -StepKinematics_PointOnPlanarCurvePairValue.hxx -StepKinematics_PointOnPlanarCurvePairWithRange.cxx -StepKinematics_PointOnPlanarCurvePairWithRange.hxx -StepKinematics_PointOnSurfacePair.cxx -StepKinematics_PointOnSurfacePair.hxx -StepKinematics_PointOnSurfacePairValue.cxx -StepKinematics_PointOnSurfacePairValue.hxx -StepKinematics_PointOnSurfacePairWithRange.cxx -StepKinematics_PointOnSurfacePairWithRange.hxx -StepKinematics_PrismaticPair.cxx -StepKinematics_PrismaticPair.hxx -StepKinematics_PrismaticPairValue.cxx -StepKinematics_PrismaticPairValue.hxx -StepKinematics_PrismaticPairWithRange.cxx -StepKinematics_PrismaticPairWithRange.hxx -StepKinematics_ProductDefinitionKinematics.cxx -StepKinematics_ProductDefinitionKinematics.hxx -StepKinematics_ProductDefinitionRelationshipKinematics.cxx -StepKinematics_ProductDefinitionRelationshipKinematics.hxx -StepKinematics_RackAndPinionPair.cxx -StepKinematics_RackAndPinionPair.hxx -StepKinematics_RackAndPinionPairValue.cxx -StepKinematics_RackAndPinionPairValue.hxx -StepKinematics_RackAndPinionPairWithRange.cxx -StepKinematics_RackAndPinionPairWithRange.hxx -StepKinematics_RevolutePair.cxx -StepKinematics_RevolutePair.hxx -StepKinematics_RevolutePairValue.cxx -StepKinematics_RevolutePairValue.hxx -StepKinematics_RevolutePairWithRange.cxx -StepKinematics_RevolutePairWithRange.hxx -StepKinematics_RigidLinkRepresentation.cxx -StepKinematics_RigidLinkRepresentation.hxx -StepKinematics_RigidPlacement.cxx -StepKinematics_RigidPlacement.hxx -StepKinematics_RollingCurvePair.cxx -StepKinematics_RollingCurvePair.hxx -StepKinematics_RollingCurvePairValue.cxx -StepKinematics_RollingCurvePairValue.hxx -StepKinematics_RollingSurfacePair.cxx -StepKinematics_RollingSurfacePair.hxx -StepKinematics_RollingSurfacePairValue.cxx -StepKinematics_RollingSurfacePairValue.hxx -StepKinematics_RotationAboutDirection.cxx -StepKinematics_RotationAboutDirection.hxx -StepKinematics_ScrewPair.cxx -StepKinematics_ScrewPair.hxx -StepKinematics_ScrewPairValue.cxx -StepKinematics_ScrewPairValue.hxx -StepKinematics_ScrewPairWithRange.cxx -StepKinematics_ScrewPairWithRange.hxx -StepKinematics_SlidingCurvePair.cxx -StepKinematics_SlidingCurvePair.hxx -StepKinematics_SlidingCurvePairValue.cxx -StepKinematics_SlidingCurvePairValue.hxx -StepKinematics_SlidingSurfacePair.cxx -StepKinematics_SlidingSurfacePair.hxx -StepKinematics_SlidingSurfacePairValue.cxx -StepKinematics_SlidingSurfacePairValue.hxx -StepKinematics_SpatialRotation.cxx -StepKinematics_SpatialRotation.hxx -StepKinematics_SphericalPair.cxx -StepKinematics_SphericalPair.hxx -StepKinematics_SphericalPairSelect.cxx -StepKinematics_SphericalPairSelect.hxx -StepKinematics_SphericalPairValue.cxx -StepKinematics_SphericalPairValue.hxx -StepKinematics_SphericalPairWithPin.cxx -StepKinematics_SphericalPairWithPin.hxx -StepKinematics_SphericalPairWithPinAndRange.cxx -StepKinematics_SphericalPairWithPinAndRange.hxx -StepKinematics_SphericalPairWithRange.cxx -StepKinematics_SphericalPairWithRange.hxx -StepKinematics_SurfacePair.cxx -StepKinematics_SurfacePair.hxx -StepKinematics_SurfacePairWithRange.cxx -StepKinematics_SurfacePairWithRange.hxx -StepKinematics_KinematicTopologyDirectedStructure.cxx -StepKinematics_KinematicTopologyDirectedStructure.hxx -StepKinematics_KinematicTopologyNetworkStructure.cxx -StepKinematics_KinematicTopologyNetworkStructure.hxx -StepKinematics_KinematicTopologyRepresentationSelect.cxx -StepKinematics_KinematicTopologyRepresentationSelect.hxx -StepKinematics_UnconstrainedPair.cxx -StepKinematics_UnconstrainedPair.hxx -StepKinematics_UnconstrainedPairValue.cxx -StepKinematics_UnconstrainedPairValue.hxx -StepKinematics_UniversalPair.cxx -StepKinematics_UniversalPair.hxx -StepKinematics_UniversalPairValue.cxx -StepKinematics_UniversalPairValue.hxx -StepKinematics_UniversalPairWithRange.cxx -StepKinematics_UniversalPairWithRange.hxx \ No newline at end of file diff --git a/src/StepRepr/FILES b/src/StepRepr/FILES deleted file mode 100644 index b218b21a58..0000000000 --- a/src/StepRepr/FILES +++ /dev/null @@ -1,182 +0,0 @@ -StepRepr_AllAroundShapeAspect.cxx -StepRepr_AllAroundShapeAspect.hxx -StepRepr_Apex.cxx -StepRepr_Apex.hxx -StepRepr_Array1OfMaterialPropertyRepresentation.hxx -StepRepr_Array1OfPropertyDefinitionRepresentation.hxx -StepRepr_Array1OfRepresentationItem.hxx -StepRepr_Array1OfShapeAspect.hxx -StepRepr_AssemblyComponentUsage.cxx -StepRepr_AssemblyComponentUsage.hxx -StepRepr_AssemblyComponentUsageSubstitute.cxx -StepRepr_AssemblyComponentUsageSubstitute.hxx -StepRepr_BetweenShapeAspect.cxx -StepRepr_BetweenShapeAspect.hxx -StepRepr_BooleanRepresentationItem.cxx -StepRepr_BooleanRepresentationItem.hxx -StepRepr_CentreOfSymmetry.cxx -StepRepr_CentreOfSymmetry.hxx -StepRepr_CharacterizedDefinition.cxx -StepRepr_CharacterizedDefinition.hxx -StepRepr_CharacterizedRepresentation.cxx -StepRepr_CharacterizedRepresentation.hxx -StepRepr_CompGroupShAspAndCompShAspAndDatumFeatAndShAsp.cxx -StepRepr_CompGroupShAspAndCompShAspAndDatumFeatAndShAsp.hxx -StepRepr_CompositeGroupShapeAspect.cxx -StepRepr_CompositeGroupShapeAspect.hxx -StepRepr_CompositeShapeAspect.cxx -StepRepr_CompositeShapeAspect.hxx -StepRepr_CompoundRepresentationItem.cxx -StepRepr_CompoundRepresentationItem.hxx -StepRepr_CompShAspAndDatumFeatAndShAsp.cxx -StepRepr_CompShAspAndDatumFeatAndShAsp.hxx -StepRepr_ConfigurationDesign.cxx -StepRepr_ConfigurationDesign.hxx -StepRepr_ConfigurationDesignItem.cxx -StepRepr_ConfigurationDesignItem.hxx -StepRepr_ConfigurationEffectivity.cxx -StepRepr_ConfigurationEffectivity.hxx -StepRepr_ConfigurationItem.cxx -StepRepr_ConfigurationItem.hxx -StepRepr_ConstructiveGeometryRepresentation.cxx -StepRepr_ConstructiveGeometryRepresentation.hxx -StepRepr_ConstructiveGeometryRepresentationRelationship.cxx -StepRepr_ConstructiveGeometryRepresentationRelationship.hxx -StepRepr_ContinuosShapeAspect.cxx -StepRepr_ContinuosShapeAspect.hxx -StepRepr_DataEnvironment.cxx -StepRepr_DataEnvironment.hxx -StepRepr_DefinitionalRepresentation.cxx -StepRepr_DefinitionalRepresentation.hxx -StepRepr_DerivedShapeAspect.cxx -StepRepr_DerivedShapeAspect.hxx -StepRepr_DescriptiveRepresentationItem.cxx -StepRepr_DescriptiveRepresentationItem.hxx -StepRepr_Extension.cxx -StepRepr_Extension.hxx -StepRepr_ExternallyDefinedRepresentation.cxx -StepRepr_ExternallyDefinedRepresentation.hxx -StepRepr_FeatureForDatumTargetRelationship.cxx -StepRepr_FeatureForDatumTargetRelationship.hxx -StepRepr_FunctionallyDefinedTransformation.cxx -StepRepr_FunctionallyDefinedTransformation.hxx -StepRepr_GeometricAlignment.cxx -StepRepr_GeometricAlignment.hxx -StepRepr_GlobalUncertaintyAssignedContext.cxx -StepRepr_GlobalUncertaintyAssignedContext.hxx -StepRepr_GlobalUnitAssignedContext.cxx -StepRepr_GlobalUnitAssignedContext.hxx -StepRepr_HArray1OfMaterialPropertyRepresentation.hxx -StepRepr_HArray1OfPropertyDefinitionRepresentation.hxx -StepRepr_HArray1OfRepresentationItem.hxx -StepRepr_HArray1OfShapeAspect.hxx -StepRepr_HSequenceOfMaterialPropertyRepresentation.hxx -StepRepr_HSequenceOfRepresentationItem.hxx -StepRepr_IntegerRepresentationItem.cxx -StepRepr_IntegerRepresentationItem.hxx -StepRepr_ItemDefinedTransformation.cxx -StepRepr_ItemDefinedTransformation.hxx -StepRepr_MakeFromUsageOption.cxx -StepRepr_MakeFromUsageOption.hxx -StepRepr_MappedItem.cxx -StepRepr_MappedItem.hxx -StepRepr_MaterialDesignation.cxx -StepRepr_MaterialDesignation.hxx -StepRepr_MaterialProperty.cxx -StepRepr_MaterialProperty.hxx -StepRepr_MaterialPropertyRepresentation.cxx -StepRepr_MaterialPropertyRepresentation.hxx -StepRepr_MeasureRepresentationItem.cxx -StepRepr_MeasureRepresentationItem.hxx -StepRepr_MechanicalDesignAndDraughtingRelationship.cxx -StepRepr_MechanicalDesignAndDraughtingRelationship.hxx -StepRepr_NextAssemblyUsageOccurrence.cxx -StepRepr_NextAssemblyUsageOccurrence.hxx -StepRepr_ParallelOffset.cxx -StepRepr_ParallelOffset.hxx -StepRepr_ParametricRepresentationContext.cxx -StepRepr_ParametricRepresentationContext.hxx -StepRepr_PerpendicularTo.cxx -StepRepr_PerpendicularTo.hxx -StepRepr_ProductConcept.cxx -StepRepr_ProductConcept.hxx -StepRepr_ProductDefinitionShape.cxx -StepRepr_ProductDefinitionShape.hxx -StepRepr_ProductDefinitionUsage.cxx -StepRepr_ProductDefinitionUsage.hxx -StepRepr_PromissoryUsageOccurrence.cxx -StepRepr_PromissoryUsageOccurrence.hxx -StepRepr_PropertyDefinition.cxx -StepRepr_PropertyDefinition.hxx -StepRepr_PropertyDefinitionRelationship.cxx -StepRepr_PropertyDefinitionRelationship.hxx -StepRepr_PropertyDefinitionRepresentation.cxx -StepRepr_PropertyDefinitionRepresentation.hxx -StepRepr_QuantifiedAssemblyComponentUsage.cxx -StepRepr_QuantifiedAssemblyComponentUsage.hxx -StepRepr_RealRepresentationItem.cxx -StepRepr_RealRepresentationItem.hxx -StepRepr_Representation.cxx -StepRepr_Representation.hxx -StepRepr_RepresentationContext.cxx -StepRepr_RepresentationContext.hxx -StepRepr_RepresentationContextReference.cxx -StepRepr_RepresentationContextReference.hxx -StepRepr_RepresentationItem.cxx -StepRepr_RepresentationItem.hxx -StepRepr_RepresentationMap.cxx -StepRepr_RepresentationMap.hxx -StepRepr_RepresentationOrRepresentationReference.cxx -StepRepr_RepresentationOrRepresentationReference.hxx -StepRepr_RepresentationReference.cxx -StepRepr_RepresentationReference.hxx -StepRepr_RepresentationRelationship.cxx -StepRepr_RepresentationRelationship.hxx -StepRepr_RepresentationRelationshipWithTransformation.cxx -StepRepr_RepresentationRelationshipWithTransformation.hxx -StepRepr_RepresentedDefinition.cxx -StepRepr_RepresentedDefinition.hxx -StepRepr_ReprItemAndLengthMeasureWithUnit.cxx -StepRepr_ReprItemAndLengthMeasureWithUnit.hxx -StepRepr_ReprItemAndLengthMeasureWithUnitAndQRI.cxx -StepRepr_ReprItemAndLengthMeasureWithUnitAndQRI.hxx -StepRepr_ReprItemAndMeasureWithUnit.cxx -StepRepr_ReprItemAndMeasureWithUnit.hxx -StepRepr_ReprItemAndMeasureWithUnitAndQRI.cxx -StepRepr_ReprItemAndMeasureWithUnitAndQRI.hxx -StepRepr_ReprItemAndPlaneAngleMeasureWithUnit.cxx -StepRepr_ReprItemAndPlaneAngleMeasureWithUnit.hxx -StepRepr_ReprItemAndPlaneAngleMeasureWithUnitAndQRI.cxx -StepRepr_ReprItemAndPlaneAngleMeasureWithUnitAndQRI.hxx -StepRepr_SequenceOfMaterialPropertyRepresentation.hxx -StepRepr_SequenceOfRepresentationItem.hxx -StepRepr_ShapeAspect.cxx -StepRepr_ShapeAspect.hxx -StepRepr_ShapeAspectDerivingRelationship.cxx -StepRepr_ShapeAspectDerivingRelationship.hxx -StepRepr_ShapeAspectRelationship.cxx -StepRepr_ShapeAspectRelationship.hxx -StepRepr_ShapeAspectTransition.cxx -StepRepr_ShapeAspectTransition.hxx -StepRepr_ShapeDefinition.cxx -StepRepr_ShapeDefinition.hxx -StepRepr_ShapeRepresentationRelationship.cxx -StepRepr_ShapeRepresentationRelationship.hxx -StepRepr_ShapeRepresentationRelationshipWithTransformation.cxx -StepRepr_ShapeRepresentationRelationshipWithTransformation.hxx -StepRepr_SpecifiedHigherUsageOccurrence.cxx -StepRepr_SpecifiedHigherUsageOccurrence.hxx -StepRepr_StructuralResponseProperty.cxx -StepRepr_StructuralResponseProperty.hxx -StepRepr_StructuralResponsePropertyDefinitionRepresentation.cxx -StepRepr_StructuralResponsePropertyDefinitionRepresentation.hxx -StepRepr_SuppliedPartRelationship.cxx -StepRepr_SuppliedPartRelationship.hxx -StepRepr_Tangent.cxx -StepRepr_Tangent.hxx -StepRepr_Transformation.cxx -StepRepr_Transformation.hxx -StepRepr_ValueRange.cxx -StepRepr_ValueRange.hxx -StepRepr_ValueRepresentationItem.cxx -StepRepr_ValueRepresentationItem.hxx diff --git a/src/StepSelect/FILES b/src/StepSelect/FILES deleted file mode 100644 index aaba0653cc..0000000000 --- a/src/StepSelect/FILES +++ /dev/null @@ -1,12 +0,0 @@ -StepSelect_Activator.cxx -StepSelect_Activator.hxx -StepSelect_FileModifier.hxx -StepSelect_FileModifier_0.cxx -StepSelect_FloatFormat.cxx -StepSelect_FloatFormat.hxx -StepSelect_ModelModifier.hxx -StepSelect_ModelModifier_0.cxx -StepSelect_StepType.cxx -StepSelect_StepType.hxx -StepSelect_WorkLibrary.cxx -StepSelect_WorkLibrary.hxx diff --git a/src/StepShape/FILES b/src/StepShape/FILES deleted file mode 100644 index cbf59967d9..0000000000 --- a/src/StepShape/FILES +++ /dev/null @@ -1,230 +0,0 @@ -StepShape_AdvancedBrepShapeRepresentation.cxx -StepShape_AdvancedBrepShapeRepresentation.hxx -StepShape_AdvancedFace.cxx -StepShape_AdvancedFace.hxx -StepShape_AngleRelator.hxx -StepShape_AngularLocation.cxx -StepShape_AngularLocation.hxx -StepShape_AngularSize.cxx -StepShape_AngularSize.hxx -StepShape_Array1OfConnectedEdgeSet.hxx -StepShape_Array1OfConnectedFaceSet.hxx -StepShape_Array1OfEdge.hxx -StepShape_Array1OfFace.hxx -StepShape_Array1OfFaceBound.hxx -StepShape_Array1OfGeometricSetSelect.hxx -StepShape_Array1OfOrientedClosedShell.hxx -StepShape_Array1OfOrientedEdge.hxx -StepShape_Array1OfShapeDimensionRepresentationItem.hxx -StepShape_Array1OfShell.hxx -StepShape_Array1OfValueQualifier.hxx -StepShape_Block.cxx -StepShape_Block.hxx -StepShape_BooleanOperand.cxx -StepShape_BooleanOperand.hxx -StepShape_BooleanOperator.hxx -StepShape_BooleanResult.cxx -StepShape_BooleanResult.hxx -StepShape_BoxDomain.cxx -StepShape_BoxDomain.hxx -StepShape_BoxedHalfSpace.cxx -StepShape_BoxedHalfSpace.hxx -StepShape_BrepWithVoids.cxx -StepShape_BrepWithVoids.hxx -StepShape_ClosedShell.cxx -StepShape_ClosedShell.hxx -StepShape_CompoundShapeRepresentation.cxx -StepShape_CompoundShapeRepresentation.hxx -StepShape_ConnectedEdgeSet.cxx -StepShape_ConnectedEdgeSet.hxx -StepShape_ConnectedFaceSet.cxx -StepShape_ConnectedFaceSet.hxx -StepShape_ConnectedFaceShapeRepresentation.cxx -StepShape_ConnectedFaceShapeRepresentation.hxx -StepShape_ConnectedFaceSubSet.cxx -StepShape_ConnectedFaceSubSet.hxx -StepShape_ContextDependentShapeRepresentation.cxx -StepShape_ContextDependentShapeRepresentation.hxx -StepShape_CsgPrimitive.cxx -StepShape_CsgPrimitive.hxx -StepShape_CsgSelect.cxx -StepShape_CsgSelect.hxx -StepShape_CsgShapeRepresentation.cxx -StepShape_CsgShapeRepresentation.hxx -StepShape_CsgSolid.cxx -StepShape_CsgSolid.hxx -StepShape_DefinitionalRepresentationAndShapeRepresentation.cxx -StepShape_DefinitionalRepresentationAndShapeRepresentation.hxx -StepShape_DimensionalCharacteristic.cxx -StepShape_DimensionalCharacteristic.hxx -StepShape_DimensionalCharacteristicRepresentation.cxx -StepShape_DimensionalCharacteristicRepresentation.hxx -StepShape_DimensionalLocation.cxx -StepShape_DimensionalLocation.hxx -StepShape_DimensionalLocationWithPath.cxx -StepShape_DimensionalLocationWithPath.hxx -StepShape_DimensionalSize.cxx -StepShape_DimensionalSize.hxx -StepShape_DimensionalSizeWithPath.cxx -StepShape_DimensionalSizeWithPath.hxx -StepShape_DirectedDimensionalLocation.cxx -StepShape_DirectedDimensionalLocation.hxx -StepShape_Edge.cxx -StepShape_Edge.hxx -StepShape_EdgeBasedWireframeModel.cxx -StepShape_EdgeBasedWireframeModel.hxx -StepShape_EdgeBasedWireframeShapeRepresentation.cxx -StepShape_EdgeBasedWireframeShapeRepresentation.hxx -StepShape_EdgeCurve.cxx -StepShape_EdgeCurve.hxx -StepShape_EdgeLoop.cxx -StepShape_EdgeLoop.hxx -StepShape_ExtrudedAreaSolid.cxx -StepShape_ExtrudedAreaSolid.hxx -StepShape_ExtrudedFaceSolid.cxx -StepShape_ExtrudedFaceSolid.hxx -StepShape_Face.cxx -StepShape_Face.hxx -StepShape_FaceBasedSurfaceModel.cxx -StepShape_FaceBasedSurfaceModel.hxx -StepShape_FaceBound.cxx -StepShape_FaceBound.hxx -StepShape_FaceOuterBound.cxx -StepShape_FaceOuterBound.hxx -StepShape_FaceSurface.cxx -StepShape_FaceSurface.hxx -StepShape_FacetedBrep.cxx -StepShape_FacetedBrep.hxx -StepShape_FacetedBrepAndBrepWithVoids.cxx -StepShape_FacetedBrepAndBrepWithVoids.hxx -StepShape_FacetedBrepShapeRepresentation.cxx -StepShape_FacetedBrepShapeRepresentation.hxx -StepShape_GeometricallyBoundedSurfaceShapeRepresentation.cxx -StepShape_GeometricallyBoundedSurfaceShapeRepresentation.hxx -StepShape_GeometricallyBoundedWireframeShapeRepresentation.cxx -StepShape_GeometricallyBoundedWireframeShapeRepresentation.hxx -StepShape_GeometricCurveSet.cxx -StepShape_GeometricCurveSet.hxx -StepShape_GeometricSet.cxx -StepShape_GeometricSet.hxx -StepShape_GeometricSetSelect.cxx -StepShape_GeometricSetSelect.hxx -StepShape_HalfSpaceSolid.cxx -StepShape_HalfSpaceSolid.hxx -StepShape_HArray1OfConnectedEdgeSet.hxx -StepShape_HArray1OfConnectedFaceSet.hxx -StepShape_HArray1OfEdge.hxx -StepShape_HArray1OfFace.hxx -StepShape_HArray1OfFaceBound.hxx -StepShape_HArray1OfGeometricSetSelect.hxx -StepShape_HArray1OfOrientedClosedShell.hxx -StepShape_HArray1OfOrientedEdge.hxx -StepShape_HArray1OfShapeDimensionRepresentationItem.hxx -StepShape_HArray1OfShell.hxx -StepShape_HArray1OfValueQualifier.hxx -StepShape_LimitsAndFits.cxx -StepShape_LimitsAndFits.hxx -StepShape_Loop.cxx -StepShape_Loop.hxx -StepShape_LoopAndPath.cxx -StepShape_LoopAndPath.hxx -StepShape_ManifoldSolidBrep.cxx -StepShape_ManifoldSolidBrep.hxx -StepShape_ManifoldSurfaceShapeRepresentation.cxx -StepShape_ManifoldSurfaceShapeRepresentation.hxx -StepShape_MeasureQualification.cxx -StepShape_MeasureQualification.hxx -StepShape_MeasureRepresentationItemAndQualifiedRepresentationItem.cxx -StepShape_MeasureRepresentationItemAndQualifiedRepresentationItem.hxx -StepShape_NonManifoldSurfaceShapeRepresentation.cxx -StepShape_NonManifoldSurfaceShapeRepresentation.hxx -StepShape_OpenShell.cxx -StepShape_OpenShell.hxx -StepShape_OrientedClosedShell.cxx -StepShape_OrientedClosedShell.hxx -StepShape_OrientedEdge.cxx -StepShape_OrientedEdge.hxx -StepShape_OrientedFace.cxx -StepShape_OrientedFace.hxx -StepShape_OrientedOpenShell.cxx -StepShape_OrientedOpenShell.hxx -StepShape_OrientedPath.cxx -StepShape_OrientedPath.hxx -StepShape_Path.cxx -StepShape_Path.hxx -StepShape_PlusMinusTolerance.cxx -StepShape_PlusMinusTolerance.hxx -StepShape_PointRepresentation.cxx -StepShape_PointRepresentation.hxx -StepShape_PolyLoop.cxx -StepShape_PolyLoop.hxx -StepShape_PrecisionQualifier.cxx -StepShape_PrecisionQualifier.hxx -StepShape_QualifiedRepresentationItem.cxx -StepShape_QualifiedRepresentationItem.hxx -StepShape_ReversibleTopologyItem.cxx -StepShape_ReversibleTopologyItem.hxx -StepShape_RevolvedAreaSolid.cxx -StepShape_RevolvedAreaSolid.hxx -StepShape_RevolvedFaceSolid.cxx -StepShape_RevolvedFaceSolid.hxx -StepShape_RightAngularWedge.cxx -StepShape_RightAngularWedge.hxx -StepShape_RightCircularCone.cxx -StepShape_RightCircularCone.hxx -StepShape_RightCircularCylinder.cxx -StepShape_RightCircularCylinder.hxx -StepShape_SeamEdge.cxx -StepShape_SeamEdge.hxx -StepShape_ShapeDefinitionRepresentation.cxx -StepShape_ShapeDefinitionRepresentation.hxx -StepShape_ShapeDimensionRepresentation.cxx -StepShape_ShapeDimensionRepresentation.hxx -StepShape_ShapeDimensionRepresentationItem.cxx -StepShape_ShapeDimensionRepresentationItem.hxx -StepShape_ShapeRepresentation.cxx -StepShape_ShapeRepresentation.hxx -StepShape_ShapeRepresentationWithParameters.cxx -StepShape_ShapeRepresentationWithParameters.hxx -StepShape_Shell.cxx -StepShape_Shell.hxx -StepShape_ShellBasedSurfaceModel.cxx -StepShape_ShellBasedSurfaceModel.hxx -StepShape_SolidModel.cxx -StepShape_SolidModel.hxx -StepShape_SolidReplica.cxx -StepShape_SolidReplica.hxx -StepShape_Sphere.cxx -StepShape_Sphere.hxx -StepShape_Subedge.cxx -StepShape_Subedge.hxx -StepShape_Subface.cxx -StepShape_Subface.hxx -StepShape_SurfaceModel.cxx -StepShape_SurfaceModel.hxx -StepShape_SweptAreaSolid.cxx -StepShape_SweptAreaSolid.hxx -StepShape_SweptFaceSolid.cxx -StepShape_SweptFaceSolid.hxx -StepShape_ToleranceMethodDefinition.cxx -StepShape_ToleranceMethodDefinition.hxx -StepShape_ToleranceValue.cxx -StepShape_ToleranceValue.hxx -StepShape_TopologicalRepresentationItem.cxx -StepShape_TopologicalRepresentationItem.hxx -StepShape_Torus.cxx -StepShape_Torus.hxx -StepShape_TransitionalShapeRepresentation.cxx -StepShape_TransitionalShapeRepresentation.hxx -StepShape_TypeQualifier.cxx -StepShape_TypeQualifier.hxx -StepShape_ValueFormatTypeQualifier.cxx -StepShape_ValueFormatTypeQualifier.hxx -StepShape_ValueQualifier.cxx -StepShape_ValueQualifier.hxx -StepShape_Vertex.cxx -StepShape_Vertex.hxx -StepShape_VertexLoop.cxx -StepShape_VertexLoop.hxx -StepShape_VertexPoint.cxx -StepShape_VertexPoint.hxx diff --git a/src/StepToGeom/FILES b/src/StepToGeom/FILES deleted file mode 100755 index 8ca04539e2..0000000000 --- a/src/StepToGeom/FILES +++ /dev/null @@ -1,2 +0,0 @@ -StepToGeom.cxx -StepToGeom.hxx diff --git a/src/StepToTopoDS/FILES b/src/StepToTopoDS/FILES deleted file mode 100644 index 5d6ef2b87e..0000000000 --- a/src/StepToTopoDS/FILES +++ /dev/null @@ -1,58 +0,0 @@ -StepToTopoDS.cxx -StepToTopoDS.hxx -StepToTopoDS_Builder.cxx -StepToTopoDS_Builder.hxx -StepToTopoDS_BuilderError.hxx -StepToTopoDS_DataMapIteratorOfDataMapOfRI.hxx -StepToTopoDS_DataMapIteratorOfDataMapOfRINames.hxx -StepToTopoDS_DataMapIteratorOfDataMapOfTRI.hxx -StepToTopoDS_DataMapIteratorOfPointEdgeMap.hxx -StepToTopoDS_DataMapIteratorOfPointVertexMap.hxx -StepToTopoDS_DataMapOfRI.hxx -StepToTopoDS_DataMapOfRINames.hxx -StepToTopoDS_DataMapOfTRI.hxx -StepToTopoDS_GeometricTool.cxx -StepToTopoDS_GeometricTool.hxx -StepToTopoDS_GeometricToolError.hxx -StepToTopoDS_MakeTransformed.cxx -StepToTopoDS_MakeTransformed.hxx -StepToTopoDS_NMTool.cxx -StepToTopoDS_NMTool.hxx -StepToTopoDS_PointEdgeMap.hxx -StepToTopoDS_PointPair.cxx -StepToTopoDS_PointPair.hxx -StepToTopoDS_PointVertexMap.hxx -StepToTopoDS_Root.cxx -StepToTopoDS_Root.hxx -StepToTopoDS_Root.lxx -StepToTopoDS_Tool.cxx -StepToTopoDS_Tool.hxx -StepToTopoDS_TranslateCompositeCurve.cxx -StepToTopoDS_TranslateCompositeCurve.hxx -StepToTopoDS_TranslateCompositeCurve.lxx -StepToTopoDS_TranslateCurveBoundedSurface.cxx -StepToTopoDS_TranslateCurveBoundedSurface.hxx -StepToTopoDS_TranslateEdge.cxx -StepToTopoDS_TranslateEdge.hxx -StepToTopoDS_TranslateEdgeError.hxx -StepToTopoDS_TranslateEdgeLoop.cxx -StepToTopoDS_TranslateEdgeLoop.hxx -StepToTopoDS_TranslateEdgeLoopError.hxx -StepToTopoDS_TranslateFace.cxx -StepToTopoDS_TranslateFace.hxx -StepToTopoDS_TranslateFaceError.hxx -StepToTopoDS_TranslatePolyLoop.cxx -StepToTopoDS_TranslatePolyLoop.hxx -StepToTopoDS_TranslatePolyLoopError.hxx -StepToTopoDS_TranslateShell.cxx -StepToTopoDS_TranslateShell.hxx -StepToTopoDS_TranslateShellError.hxx -StepToTopoDS_TranslateSolid.cxx -StepToTopoDS_TranslateSolid.hxx -StepToTopoDS_TranslateSolidError.hxx -StepToTopoDS_TranslateVertex.cxx -StepToTopoDS_TranslateVertex.hxx -StepToTopoDS_TranslateVertexError.hxx -StepToTopoDS_TranslateVertexLoop.cxx -StepToTopoDS_TranslateVertexLoop.hxx -StepToTopoDS_TranslateVertexLoopError.hxx diff --git a/src/StepVisual/FILES b/src/StepVisual/FILES deleted file mode 100644 index b51fd1456d..0000000000 --- a/src/StepVisual/FILES +++ /dev/null @@ -1,312 +0,0 @@ -StepVisual_AnnotationCurveOccurrence.cxx -StepVisual_AnnotationCurveOccurrence.hxx -StepVisual_AnnotationCurveOccurrenceAndGeomReprItem.cxx -StepVisual_AnnotationCurveOccurrenceAndGeomReprItem.hxx -StepVisual_AnnotationFillArea.cxx -StepVisual_AnnotationFillArea.hxx -StepVisual_AnnotationFillAreaOccurrence.cxx -StepVisual_AnnotationFillAreaOccurrence.hxx -StepVisual_AnnotationOccurrence.cxx -StepVisual_AnnotationOccurrence.hxx -StepVisual_AnnotationPlane.cxx -StepVisual_AnnotationPlane.hxx -StepVisual_AnnotationPlaneElement.cxx -StepVisual_AnnotationPlaneElement.hxx -StepVisual_AnnotationText.cxx -StepVisual_AnnotationText.hxx -StepVisual_AnnotationTextOccurrence.cxx -StepVisual_AnnotationTextOccurrence.hxx -StepVisual_AreaInSet.cxx -StepVisual_AreaInSet.hxx -StepVisual_AreaOrView.cxx -StepVisual_AreaOrView.hxx -StepVisual_Array1OfAnnotationPlaneElement.hxx -StepVisual_Array1OfBoxCharacteristicSelect.hxx -StepVisual_Array1OfCameraModelD3MultiClippingInterectionSelect.hxx -StepVisual_Array1OfCameraModelD3MultiClippingUnionSelect.hxx -StepVisual_Array1OfCurveStyleFontPattern.hxx -StepVisual_Array1OfDirectionCountSelect.hxx -StepVisual_Array1OfDraughtingCalloutElement.hxx -StepVisual_Array1OfFillStyleSelect.hxx -StepVisual_Array1OfInvisibleItem.hxx -StepVisual_Array1OfLayeredItem.hxx -StepVisual_Array1OfPresentationStyleAssignment.hxx -StepVisual_Array1OfPresentationStyleSelect.hxx -StepVisual_Array1OfRenderingPropertiesSelect.hxx -StepVisual_Array1OfStyleContextSelect.hxx -StepVisual_Array1OfSurfaceStyleElementSelect.hxx -StepVisual_Array1OfTextOrCharacter.hxx -StepVisual_BackgroundColour.cxx -StepVisual_BackgroundColour.hxx -StepVisual_BoxCharacteristicSelect.cxx -StepVisual_BoxCharacteristicSelect.hxx -StepVisual_CameraImage.cxx -StepVisual_CameraImage.hxx -StepVisual_CameraImage2dWithScale.cxx -StepVisual_CameraImage2dWithScale.hxx -StepVisual_CameraImage3dWithScale.cxx -StepVisual_CameraImage3dWithScale.hxx -StepVisual_CameraModel.cxx -StepVisual_CameraModel.hxx -StepVisual_CameraModelD2.cxx -StepVisual_CameraModelD2.hxx -StepVisual_CameraModelD3.cxx -StepVisual_CameraModelD3.hxx -StepVisual_CameraModelD3MultiClipping.cxx -StepVisual_CameraModelD3MultiClipping.hxx -StepVisual_CameraModelD3MultiClippingInterectionSelect.cxx -StepVisual_CameraModelD3MultiClippingInterectionSelect.hxx -StepVisual_CameraModelD3MultiClippingIntersection.cxx -StepVisual_CameraModelD3MultiClippingIntersection.hxx -StepVisual_CameraModelD3MultiClippingUnion.cxx -StepVisual_CameraModelD3MultiClippingUnion.hxx -StepVisual_CameraModelD3MultiClippingUnionSelect.cxx -StepVisual_CameraModelD3MultiClippingUnionSelect.hxx -StepVisual_CameraUsage.cxx -StepVisual_CameraUsage.hxx -StepVisual_CentralOrParallel.hxx -StepVisual_CharacterizedObjAndRepresentationAndDraughtingModel.cxx -StepVisual_CharacterizedObjAndRepresentationAndDraughtingModel.hxx -StepVisual_Colour.cxx -StepVisual_Colour.hxx -StepVisual_ColourRgb.cxx -StepVisual_ColourRgb.hxx -StepVisual_ColourSpecification.cxx -StepVisual_ColourSpecification.hxx -StepVisual_CompositeText.cxx -StepVisual_CompositeText.hxx -StepVisual_CompositeTextWithExtent.cxx -StepVisual_CompositeTextWithExtent.hxx -StepVisual_ContextDependentInvisibility.cxx -StepVisual_ContextDependentInvisibility.hxx -StepVisual_ContextDependentOverRidingStyledItem.cxx -StepVisual_ContextDependentOverRidingStyledItem.hxx -StepVisual_CurveStyle.cxx -StepVisual_CurveStyle.hxx -StepVisual_CurveStyleFont.cxx -StepVisual_CurveStyleFont.hxx -StepVisual_CurveStyleFontPattern.cxx -StepVisual_CurveStyleFontPattern.hxx -StepVisual_CurveStyleFontSelect.cxx -StepVisual_CurveStyleFontSelect.hxx -StepVisual_DirectionCountSelect.cxx -StepVisual_DirectionCountSelect.hxx -StepVisual_DraughtingAnnotationOccurrence.cxx -StepVisual_DraughtingAnnotationOccurrence.hxx -StepVisual_DraughtingCallout.cxx -StepVisual_DraughtingCallout.hxx -StepVisual_DraughtingCalloutElement.cxx -StepVisual_DraughtingCalloutElement.hxx -StepVisual_DraughtingModel.cxx -StepVisual_DraughtingModel.hxx -StepVisual_DraughtingPreDefinedColour.cxx -StepVisual_DraughtingPreDefinedColour.hxx -StepVisual_DraughtingPreDefinedCurveFont.cxx -StepVisual_DraughtingPreDefinedCurveFont.hxx -StepVisual_ExternallyDefinedCurveFont.cxx -StepVisual_ExternallyDefinedCurveFont.hxx -StepVisual_ExternallyDefinedTextFont.cxx -StepVisual_ExternallyDefinedTextFont.hxx -StepVisual_FillAreaStyle.cxx -StepVisual_FillAreaStyle.hxx -StepVisual_FillAreaStyleColour.cxx -StepVisual_FillAreaStyleColour.hxx -StepVisual_FillStyleSelect.cxx -StepVisual_FillStyleSelect.hxx -StepVisual_FontSelect.cxx -StepVisual_FontSelect.hxx -StepVisual_HArray1OfAnnotationPlaneElement.hxx -StepVisual_HArray1OfBoxCharacteristicSelect.hxx -StepVisual_HArray1OfCameraModelD3MultiClippingInterectionSelect.hxx -StepVisual_HArray1OfCameraModelD3MultiClippingUnionSelect.hxx -StepVisual_HArray1OfCurveStyleFontPattern.hxx -StepVisual_HArray1OfDirectionCountSelect.hxx -StepVisual_HArray1OfDraughtingCalloutElement.hxx -StepVisual_HArray1OfFillStyleSelect.hxx -StepVisual_HArray1OfInvisibleItem.hxx -StepVisual_HArray1OfLayeredItem.hxx -StepVisual_HArray1OfPresentationStyleAssignment.hxx -StepVisual_HArray1OfPresentationStyleSelect.hxx -StepVisual_HArray1OfRenderingPropertiesSelect.hxx -StepVisual_HArray1OfStyleContextSelect.hxx -StepVisual_HArray1OfSurfaceStyleElementSelect.hxx -StepVisual_HArray1OfTextOrCharacter.hxx -StepVisual_Invisibility.cxx -StepVisual_Invisibility.hxx -StepVisual_InvisibilityContext.cxx -StepVisual_InvisibilityContext.hxx -StepVisual_InvisibleItem.cxx -StepVisual_InvisibleItem.hxx -StepVisual_LayeredItem.cxx -StepVisual_LayeredItem.hxx -StepVisual_MarkerMember.cxx -StepVisual_MarkerMember.hxx -StepVisual_MarkerSelect.cxx -StepVisual_MarkerSelect.hxx -StepVisual_MarkerType.hxx -StepVisual_MechanicalDesignGeometricPresentationArea.cxx -StepVisual_MechanicalDesignGeometricPresentationArea.hxx -StepVisual_MechanicalDesignGeometricPresentationRepresentation.cxx -StepVisual_MechanicalDesignGeometricPresentationRepresentation.hxx -StepVisual_NullStyle.hxx -StepVisual_NullStyleMember.cxx -StepVisual_NullStyleMember.hxx -StepVisual_OverRidingStyledItem.cxx -StepVisual_OverRidingStyledItem.hxx -StepVisual_PlanarBox.cxx -StepVisual_PlanarBox.hxx -StepVisual_PlanarExtent.cxx -StepVisual_PlanarExtent.hxx -StepVisual_PointStyle.cxx -StepVisual_PointStyle.hxx -StepVisual_PreDefinedColour.cxx -StepVisual_PreDefinedColour.hxx -StepVisual_PreDefinedCurveFont.cxx -StepVisual_PreDefinedCurveFont.hxx -StepVisual_PreDefinedItem.cxx -StepVisual_PreDefinedItem.hxx -StepVisual_PreDefinedTextFont.cxx -StepVisual_PreDefinedTextFont.hxx -StepVisual_PresentationArea.cxx -StepVisual_PresentationArea.hxx -StepVisual_PresentationLayerAssignment.cxx -StepVisual_PresentationLayerAssignment.hxx -StepVisual_PresentationLayerUsage.cxx -StepVisual_PresentationLayerUsage.hxx -StepVisual_PresentationRepresentation.cxx -StepVisual_PresentationRepresentation.hxx -StepVisual_PresentationRepresentationSelect.cxx -StepVisual_PresentationRepresentationSelect.hxx -StepVisual_PresentationSet.cxx -StepVisual_PresentationSet.hxx -StepVisual_PresentationSize.cxx -StepVisual_PresentationSize.hxx -StepVisual_PresentationSizeAssignmentSelect.cxx -StepVisual_PresentationSizeAssignmentSelect.hxx -StepVisual_PresentationStyleAssignment.cxx -StepVisual_PresentationStyleAssignment.hxx -StepVisual_PresentationStyleByContext.cxx -StepVisual_PresentationStyleByContext.hxx -StepVisual_PresentationStyleSelect.cxx -StepVisual_PresentationStyleSelect.hxx -StepVisual_PresentationView.cxx -StepVisual_PresentationView.hxx -StepVisual_PresentedItem.cxx -StepVisual_PresentedItem.hxx -StepVisual_PresentedItemRepresentation.cxx -StepVisual_PresentedItemRepresentation.hxx -StepVisual_RenderingPropertiesSelect.cxx -StepVisual_RenderingPropertiesSelect.hxx -StepVisual_RepositionedTessellatedGeometricSet.hxx -StepVisual_RepositionedTessellatedGeometricSet.cxx -StepVisual_RepositionedTessellatedItem.hxx -StepVisual_RepositionedTessellatedItem.cxx -StepVisual_ShadingSurfaceMethod.hxx -StepVisual_StyleContextSelect.cxx -StepVisual_StyleContextSelect.hxx -StepVisual_StyledItem.cxx -StepVisual_StyledItem.hxx -StepVisual_StyledItemTarget.cxx -StepVisual_StyledItemTarget.hxx -StepVisual_SurfaceSide.hxx -StepVisual_SurfaceSideStyle.cxx -StepVisual_SurfaceSideStyle.hxx -StepVisual_SurfaceStyleBoundary.cxx -StepVisual_SurfaceStyleBoundary.hxx -StepVisual_SurfaceStyleControlGrid.cxx -StepVisual_SurfaceStyleControlGrid.hxx -StepVisual_SurfaceStyleElementSelect.cxx -StepVisual_SurfaceStyleElementSelect.hxx -StepVisual_SurfaceStyleFillArea.cxx -StepVisual_SurfaceStyleFillArea.hxx -StepVisual_SurfaceStyleParameterLine.cxx -StepVisual_SurfaceStyleParameterLine.hxx -StepVisual_SurfaceStyleReflectanceAmbient.cxx -StepVisual_SurfaceStyleReflectanceAmbient.hxx -StepVisual_SurfaceStyleRendering.cxx -StepVisual_SurfaceStyleRendering.hxx -StepVisual_SurfaceStyleRenderingWithProperties.cxx -StepVisual_SurfaceStyleRenderingWithProperties.hxx -StepVisual_SurfaceStyleSegmentationCurve.cxx -StepVisual_SurfaceStyleSegmentationCurve.hxx -StepVisual_SurfaceStyleSilhouette.cxx -StepVisual_SurfaceStyleSilhouette.hxx -StepVisual_SurfaceStyleTransparent.cxx -StepVisual_SurfaceStyleTransparent.hxx -StepVisual_SurfaceStyleUsage.cxx -StepVisual_SurfaceStyleUsage.hxx -StepVisual_Template.cxx -StepVisual_Template.hxx -StepVisual_TemplateInstance.cxx -StepVisual_TemplateInstance.hxx -StepVisual_TextLiteral.cxx -StepVisual_TextLiteral.hxx -StepVisual_TextOrCharacter.cxx -StepVisual_TextOrCharacter.hxx -StepVisual_TextPath.hxx -StepVisual_TextStyle.cxx -StepVisual_TextStyle.hxx -StepVisual_TextStyleForDefinedFont.cxx -StepVisual_TextStyleForDefinedFont.hxx -StepVisual_TextStyleWithBoxCharacteristics.cxx -StepVisual_TextStyleWithBoxCharacteristics.hxx -StepVisual_ViewVolume.cxx -StepVisual_ViewVolume.hxx -StepVisual_TessellatedAnnotationOccurrence.hxx -StepVisual_TessellatedAnnotationOccurrence.cxx -StepVisual_TessellatedItem.hxx -StepVisual_TessellatedItem.cxx -StepVisual_TessellatedGeometricSet.hxx -StepVisual_TessellatedGeometricSet.cxx -StepVisual_TessellatedCurveSet.hxx -StepVisual_TessellatedCurveSet.cxx -StepVisual_CoordinatesList.hxx -StepVisual_CoordinatesList.cxx -StepVisual_Array1OfTessellatedEdgeOrVertex.hxx -StepVisual_Array1OfTessellatedStructuredItem.hxx -StepVisual_ComplexTriangulatedFace.cxx -StepVisual_ComplexTriangulatedFace.hxx -StepVisual_ComplexTriangulatedSurfaceSet.cxx -StepVisual_ComplexTriangulatedSurfaceSet.hxx -StepVisual_CubicBezierTessellatedEdge.cxx -StepVisual_CubicBezierTessellatedEdge.hxx -StepVisual_CubicBezierTriangulatedFace.cxx -StepVisual_CubicBezierTriangulatedFace.hxx -StepVisual_EdgeOrCurve.cxx -StepVisual_EdgeOrCurve.hxx -StepVisual_FaceOrSurface.cxx -StepVisual_FaceOrSurface.hxx -StepVisual_HArray1OfTessellatedEdgeOrVertex.hxx -StepVisual_HArray1OfTessellatedStructuredItem.hxx -StepVisual_PathOrCompositeCurve.cxx -StepVisual_PathOrCompositeCurve.hxx -StepVisual_TessellatedConnectingEdge.cxx -StepVisual_TessellatedConnectingEdge.hxx -StepVisual_TessellatedEdge.cxx -StepVisual_TessellatedEdge.hxx -StepVisual_TessellatedEdgeOrVertex.cxx -StepVisual_TessellatedEdgeOrVertex.hxx -StepVisual_TessellatedFace.cxx -StepVisual_TessellatedFace.hxx -StepVisual_TessellatedPointSet.cxx -StepVisual_TessellatedPointSet.hxx -StepVisual_TessellatedShapeRepresentation.cxx -StepVisual_TessellatedShapeRepresentation.hxx -StepVisual_TessellatedShapeRepresentationWithAccuracyParameters.cxx -StepVisual_TessellatedShapeRepresentationWithAccuracyParameters.hxx -StepVisual_TessellatedShell.cxx -StepVisual_TessellatedShell.hxx -StepVisual_TessellatedSolid.cxx -StepVisual_TessellatedSolid.hxx -StepVisual_TessellatedStructuredItem.cxx -StepVisual_TessellatedStructuredItem.hxx -StepVisual_TessellatedSurfaceSet.cxx -StepVisual_TessellatedSurfaceSet.hxx -StepVisual_TessellatedVertex.cxx -StepVisual_TessellatedVertex.hxx -StepVisual_TessellatedWire.cxx -StepVisual_TessellatedWire.hxx -StepVisual_TriangulatedFace.cxx -StepVisual_TriangulatedFace.hxx -StepVisual_TriangulatedSurfaceSet.cxx -StepVisual_TriangulatedSurfaceSet.hxx diff --git a/src/StlAPI/FILES b/src/StlAPI/FILES deleted file mode 100644 index 4762d58710..0000000000 --- a/src/StlAPI/FILES +++ /dev/null @@ -1,6 +0,0 @@ -StlAPI.cxx -StlAPI.hxx -StlAPI_Reader.cxx -StlAPI_Reader.hxx -StlAPI_Writer.cxx -StlAPI_Writer.hxx diff --git a/src/Storage/FILES b/src/Storage/FILES deleted file mode 100755 index 1ebf1036e4..0000000000 --- a/src/Storage/FILES +++ /dev/null @@ -1,50 +0,0 @@ -Storage.cxx -Storage.hxx -Storage_ArrayOfCallBack.hxx -Storage_ArrayOfSchema.hxx -Storage_BaseDriver.cxx -Storage_BaseDriver.hxx -Storage_BucketOfPersistent.hxx -Storage_CallBack.cxx -Storage_CallBack.hxx -Storage_Data.cxx -Storage_Data.hxx -Storage_DataMapIteratorOfMapOfCallBack.hxx -Storage_DataMapIteratorOfMapOfPers.hxx -Storage_DefaultCallBack.cxx -Storage_DefaultCallBack.hxx -Storage_Error.hxx -Storage_HArrayOfCallBack.hxx -Storage_HArrayOfSchema.hxx -Storage_HeaderData.cxx -Storage_HeaderData.hxx -Storage_HPArray.hxx -Storage_HSeqOfRoot.hxx -Storage_InternalData.cxx -Storage_InternalData.hxx -Storage_Macros.hxx -Storage_MapOfCallBack.hxx -Storage_MapOfPers.hxx -Storage_OpenMode.hxx -Storage_PArray.hxx -Storage_Position.hxx -Storage_PType.hxx -Storage_Root.cxx -Storage_Root.hxx -Storage_RootData.cxx -Storage_RootData.hxx -Storage_Schema.cxx -Storage_Schema.hxx -Storage_SeqOfRoot.hxx -Storage_SolveMode.hxx -Storage_StreamExtCharParityError.hxx -Storage_StreamFormatError.hxx -Storage_StreamModeError.hxx -Storage_StreamReadError.hxx -Storage_StreamTypeMismatchError.hxx -Storage_StreamUnknownTypeError.hxx -Storage_StreamWriteError.hxx -Storage_TypeData.cxx -Storage_TypeData.hxx -Storage_TypedCallBack.cxx -Storage_TypedCallBack.hxx diff --git a/src/Sweep/FILES b/src/Sweep/FILES deleted file mode 100644 index c11a4de4fd..0000000000 --- a/src/Sweep/FILES +++ /dev/null @@ -1,8 +0,0 @@ -Sweep_NumShape.cxx -Sweep_NumShape.hxx -Sweep_NumShape.lxx -Sweep_NumShapeIterator.cxx -Sweep_NumShapeIterator.hxx -Sweep_NumShapeIterator.lxx -Sweep_NumShapeTool.cxx -Sweep_NumShapeTool.hxx diff --git a/src/TColGeom/FILES b/src/TColGeom/FILES deleted file mode 100644 index 907ab3cced..0000000000 --- a/src/TColGeom/FILES +++ /dev/null @@ -1,16 +0,0 @@ -TColGeom_Array1OfBezierCurve.hxx -TColGeom_Array1OfBSplineCurve.hxx -TColGeom_Array1OfCurve.hxx -TColGeom_Array1OfSurface.hxx -TColGeom_Array2OfBezierSurface.hxx -TColGeom_Array2OfSurface.hxx -TColGeom_HArray1OfBezierCurve.hxx -TColGeom_HArray1OfBSplineCurve.hxx -TColGeom_HArray1OfCurve.hxx -TColGeom_HArray1OfSurface.hxx -TColGeom_HArray2OfSurface.hxx -TColGeom_HSequenceOfBoundedCurve.hxx -TColGeom_HSequenceOfCurve.hxx -TColGeom_SequenceOfBoundedCurve.hxx -TColGeom_SequenceOfCurve.hxx -TColGeom_SequenceOfSurface.hxx diff --git a/src/TColGeom2d/FILES b/src/TColGeom2d/FILES deleted file mode 100644 index 7bfe3b774b..0000000000 --- a/src/TColGeom2d/FILES +++ /dev/null @@ -1,11 +0,0 @@ -TColGeom2d_Array1OfBezierCurve.hxx -TColGeom2d_Array1OfBSplineCurve.hxx -TColGeom2d_Array1OfCurve.hxx -TColGeom2d_HArray1OfBezierCurve.hxx -TColGeom2d_HArray1OfBSplineCurve.hxx -TColGeom2d_HArray1OfCurve.hxx -TColGeom2d_HSequenceOfBoundedCurve.hxx -TColGeom2d_HSequenceOfCurve.hxx -TColGeom2d_SequenceOfBoundedCurve.hxx -TColGeom2d_SequenceOfCurve.hxx -TColGeom2d_SequenceOfGeometry.hxx diff --git a/src/TColStd/FILES b/src/TColStd/FILES deleted file mode 100755 index 97e9f8355c..0000000000 --- a/src/TColStd/FILES +++ /dev/null @@ -1,85 +0,0 @@ -TColStd_Array1OfAsciiString.hxx -TColStd_Array1OfBoolean.hxx -TColStd_Array1OfByte.hxx -TColStd_Array1OfCharacter.hxx -TColStd_Array1OfExtendedString.hxx -TColStd_Array1OfInteger.hxx -TColStd_Array1OfListOfInteger.hxx -TColStd_Array1OfReal.hxx -TColStd_Array1OfTransient.hxx -TColStd_Array2OfBoolean.hxx -TColStd_Array2OfCharacter.hxx -TColStd_Array2OfInteger.hxx -TColStd_Array2OfReal.hxx -TColStd_Array2OfTransient.hxx -TColStd_DataMapIteratorOfDataMapOfAsciiStringInteger.hxx -TColStd_DataMapIteratorOfDataMapOfIntegerInteger.hxx -TColStd_DataMapIteratorOfDataMapOfIntegerListOfInteger.hxx -TColStd_DataMapIteratorOfDataMapOfIntegerReal.hxx -TColStd_DataMapIteratorOfDataMapOfIntegerTransient.hxx -TColStd_DataMapIteratorOfDataMapOfStringInteger.hxx -TColStd_DataMapIteratorOfDataMapOfTransientTransient.hxx -TColStd_DataMapOfAsciiStringInteger.hxx -TColStd_DataMapOfIntegerInteger.hxx -TColStd_DataMapOfIntegerListOfInteger.hxx -TColStd_DataMapOfIntegerReal.hxx -TColStd_DataMapOfIntegerTransient.hxx -TColStd_DataMapOfStringInteger.hxx -TColStd_DataMapOfTransientTransient.hxx -TColStd_HArray1OfAsciiString.hxx -TColStd_HArray1OfBoolean.hxx -TColStd_HArray1OfByte.hxx -TColStd_HArray1OfCharacter.hxx -TColStd_HArray1OfExtendedString.hxx -TColStd_HArray1OfInteger.hxx -TColStd_HArray1OfListOfInteger.hxx -TColStd_HArray1OfReal.hxx -TColStd_HArray1OfTransient.hxx -TColStd_HArray2OfBoolean.hxx -TColStd_HArray2OfCharacter.hxx -TColStd_HArray2OfInteger.hxx -TColStd_HArray2OfReal.hxx -TColStd_HArray2OfTransient.hxx -TColStd_HPackedMapOfInteger.cxx -TColStd_HPackedMapOfInteger.hxx -TColStd_HPackedMapOfInteger.lxx -TColStd_HSequenceOfAsciiString.hxx -TColStd_HSequenceOfExtendedString.hxx -TColStd_HSequenceOfHAsciiString.hxx -TColStd_HSequenceOfHExtendedString.hxx -TColStd_HSequenceOfInteger.hxx -TColStd_HSequenceOfReal.hxx -TColStd_HSequenceOfTransient.hxx -TColStd_IndexedDataMapOfStringString.hxx -TColStd_IndexedDataMapOfTransientTransient.hxx -TColStd_IndexedMapOfInteger.hxx -TColStd_IndexedMapOfReal.hxx -TColStd_IndexedMapOfTransient.hxx -TColStd_ListIteratorOfListOfAsciiString.hxx -TColStd_ListIteratorOfListOfInteger.hxx -TColStd_ListIteratorOfListOfReal.hxx -TColStd_ListIteratorOfListOfTransient.hxx -TColStd_ListOfAsciiString.hxx -TColStd_ListOfInteger.hxx -TColStd_ListOfReal.hxx -TColStd_ListOfTransient.hxx -TColStd_MapIteratorOfMapOfAsciiString.hxx -TColStd_MapIteratorOfMapOfInteger.hxx -TColStd_MapIteratorOfMapOfReal.hxx -TColStd_MapIteratorOfMapOfTransient.hxx -TColStd_MapIteratorOfPackedMapOfInteger.hxx -TColStd_MapOfAsciiString.hxx -TColStd_MapOfInteger.hxx -TColStd_MapOfReal.hxx -TColStd_MapOfTransient.hxx -TColStd_PackedMapOfInteger.cxx -TColStd_PackedMapOfInteger.hxx -TColStd_SequenceOfAddress.hxx -TColStd_SequenceOfAsciiString.hxx -TColStd_SequenceOfBoolean.hxx -TColStd_SequenceOfExtendedString.hxx -TColStd_SequenceOfHAsciiString.hxx -TColStd_SequenceOfHExtendedString.hxx -TColStd_SequenceOfInteger.hxx -TColStd_SequenceOfReal.hxx -TColStd_SequenceOfTransient.hxx diff --git a/src/TColgp/FILES b/src/TColgp/FILES deleted file mode 100644 index 6957b54236..0000000000 --- a/src/TColgp/FILES +++ /dev/null @@ -1,58 +0,0 @@ -TColgp_Array1OfCirc2d.hxx -TColgp_Array1OfDir.hxx -TColgp_Array1OfDir2d.hxx -TColgp_Array1OfLin2d.hxx -TColgp_Array1OfPnt.hxx -TColgp_Array1OfPnt2d.hxx -TColgp_Array1OfVec.hxx -TColgp_Array1OfVec2d.hxx -TColgp_Array1OfXY.hxx -TColgp_Array1OfXYZ.hxx -TColgp_Array2OfCirc2d.hxx -TColgp_Array2OfDir.hxx -TColgp_Array2OfDir2d.hxx -TColgp_Array2OfLin2d.hxx -TColgp_Array2OfPnt.hxx -TColgp_Array2OfPnt2d.hxx -TColgp_Array2OfVec.hxx -TColgp_Array2OfVec2d.hxx -TColgp_Array2OfXY.hxx -TColgp_Array2OfXYZ.hxx -TColgp_HArray1OfCirc2d.hxx -TColgp_HArray1OfDir.hxx -TColgp_HArray1OfDir2d.hxx -TColgp_HArray1OfLin2d.hxx -TColgp_HArray1OfPnt.hxx -TColgp_HArray1OfPnt2d.hxx -TColgp_HArray1OfVec.hxx -TColgp_HArray1OfVec2d.hxx -TColgp_HArray1OfXY.hxx -TColgp_HArray1OfXYZ.hxx -TColgp_HArray2OfCirc2d.hxx -TColgp_HArray2OfDir.hxx -TColgp_HArray2OfDir2d.hxx -TColgp_HArray2OfLin2d.hxx -TColgp_HArray2OfPnt.hxx -TColgp_HArray2OfPnt2d.hxx -TColgp_HArray2OfVec.hxx -TColgp_HArray2OfVec2d.hxx -TColgp_HArray2OfXY.hxx -TColgp_HArray2OfXYZ.hxx -TColgp_HSequenceOfDir.hxx -TColgp_HSequenceOfDir2d.hxx -TColgp_HSequenceOfPnt.hxx -TColgp_HSequenceOfPnt2d.hxx -TColgp_HSequenceOfVec.hxx -TColgp_HSequenceOfVec2d.hxx -TColgp_HSequenceOfXY.hxx -TColgp_HSequenceOfXYZ.hxx -TColgp_SequenceOfArray1OfPnt2d.hxx -TColgp_SequenceOfAx1.hxx -TColgp_SequenceOfDir.hxx -TColgp_SequenceOfDir2d.hxx -TColgp_SequenceOfPnt.hxx -TColgp_SequenceOfPnt2d.hxx -TColgp_SequenceOfVec.hxx -TColgp_SequenceOfVec2d.hxx -TColgp_SequenceOfXY.hxx -TColgp_SequenceOfXYZ.hxx diff --git a/src/TCollection/FILES b/src/TCollection/FILES deleted file mode 100755 index e25280fb4f..0000000000 --- a/src/TCollection/FILES +++ /dev/null @@ -1,11 +0,0 @@ -TCollection.hxx -TCollection_AsciiString.cxx -TCollection_AsciiString.hxx -TCollection_AsciiString.lxx -TCollection_ExtendedString.cxx -TCollection_ExtendedString.hxx -TCollection_HAsciiString.cxx -TCollection_HAsciiString.hxx -TCollection_HAsciiString.lxx -TCollection_HExtendedString.cxx -TCollection_HExtendedString.hxx diff --git a/src/TDF/FILES b/src/TDF/FILES deleted file mode 100755 index 61744e3479..0000000000 --- a/src/TDF/FILES +++ /dev/null @@ -1,107 +0,0 @@ -TDF.cxx -TDF.hxx -TDF_Attribute.cxx -TDF_Attribute.hxx -TDF_Attribute.lxx -TDF_AttributeArray1.hxx -TDF_AttributeDataMap.hxx -TDF_AttributeDelta.cxx -TDF_AttributeDelta.hxx -TDF_AttributeDeltaList.hxx -TDF_AttributeDoubleMap.hxx -TDF_AttributeIndexedMap.hxx -TDF_AttributeIterator.cxx -TDF_AttributeIterator.hxx -TDF_AttributeList.hxx -TDF_AttributeMap.hxx -TDF_AttributeSequence.hxx -TDF_ChildIDIterator.cxx -TDF_ChildIDIterator.hxx -TDF_ChildIDIterator.lxx -TDF_ChildIterator.cxx -TDF_ChildIterator.hxx -TDF_ChildIterator.lxx -TDF_ClosureMode.cxx -TDF_ClosureMode.hxx -TDF_ClosureMode.lxx -TDF_ClosureTool.cxx -TDF_ClosureTool.hxx -TDF_ComparisonTool.cxx -TDF_ComparisonTool.hxx -TDF_CopyLabel.cxx -TDF_CopyLabel.hxx -TDF_CopyLabel.lxx -TDF_CopyTool.cxx -TDF_CopyTool.hxx -TDF_Data.cxx -TDF_Data.hxx -TDF_Data.lxx -TDF_DataMapIteratorOfAttributeDataMap.hxx -TDF_DataMapIteratorOfLabelDataMap.hxx -TDF_DataMapIteratorOfLabelIntegerMap.hxx -TDF_DataSet.cxx -TDF_DataSet.hxx -TDF_DataSet.lxx -TDF_DefaultDeltaOnModification.cxx -TDF_DefaultDeltaOnModification.hxx -TDF_DefaultDeltaOnRemoval.cxx -TDF_DefaultDeltaOnRemoval.hxx -TDF_Delta.cxx -TDF_Delta.hxx -TDF_Delta.lxx -TDF_DeltaList.hxx -TDF_DeltaOnAddition.cxx -TDF_DeltaOnAddition.hxx -TDF_DeltaOnForget.cxx -TDF_DeltaOnForget.hxx -TDF_DeltaOnModification.cxx -TDF_DeltaOnModification.hxx -TDF_DeltaOnRemoval.cxx -TDF_DeltaOnRemoval.hxx -TDF_DeltaOnResume.cxx -TDF_DeltaOnResume.hxx -TDF_DerivedAttribute.cxx -TDF_DerivedAttribute.hxx -TDF_DoubleMapIteratorOfAttributeDoubleMap.hxx -TDF_DoubleMapIteratorOfGUIDProgIDMap.hxx -TDF_DoubleMapIteratorOfLabelDoubleMap.hxx -TDF_GUIDProgIDMap.hxx -TDF_HAllocator.hxx -TDF_HAttributeArray1.hxx -TDF_IDFilter.cxx -TDF_IDFilter.hxx -TDF_IDFilter.lxx -TDF_IDList.hxx -TDF_IDMap.hxx -TDF_Label.cxx -TDF_Label.hxx -TDF_Label.lxx -TDF_LabelDataMap.hxx -TDF_LabelDoubleMap.hxx -TDF_LabelIndexedMap.hxx -TDF_LabelIntegerMap.hxx -TDF_LabelList.hxx -TDF_LabelMap.hxx -TDF_LabelNode.cxx -TDF_LabelNode.hxx -TDF_LabelNodePtr.hxx -TDF_LabelSequence.hxx -TDF_ListIteratorOfAttributeDeltaList.hxx -TDF_ListIteratorOfAttributeList.hxx -TDF_ListIteratorOfDeltaList.hxx -TDF_ListIteratorOfIDList.hxx -TDF_ListIteratorOfLabelList.hxx -TDF_MapIteratorOfAttributeMap.hxx -TDF_MapIteratorOfIDMap.hxx -TDF_MapIteratorOfLabelMap.hxx -TDF_Reference.cxx -TDF_Reference.hxx -TDF_RelocationTable.cxx -TDF_RelocationTable.hxx -TDF_TagSource.cxx -TDF_TagSource.hxx -TDF_Tool.cxx -TDF_Tool.hxx -TDF_Transaction.cxx -TDF_Transaction.hxx -TDF_Transaction.lxx diff --git a/src/TDataStd/FILES b/src/TDataStd/FILES deleted file mode 100644 index 9e00969dee..0000000000 --- a/src/TDataStd/FILES +++ /dev/null @@ -1,103 +0,0 @@ -TDataStd.cxx -TDataStd.hxx -TDataStd_AsciiString.cxx -TDataStd_AsciiString.hxx -TDataStd_BooleanArray.cxx -TDataStd_BooleanArray.hxx -TDataStd_BooleanList.cxx -TDataStd_BooleanList.hxx -TDataStd_ByteArray.cxx -TDataStd_ByteArray.hxx -TDataStd_ChildNodeIterator.cxx -TDataStd_ChildNodeIterator.hxx -TDataStd_Comment.cxx -TDataStd_Comment.hxx -TDataStd_Current.cxx -TDataStd_Current.hxx -TDataStd_GenericEmpty.cxx -TDataStd_GenericEmpty.hxx -TDataStd_GenericExtString.cxx -TDataStd_GenericExtString.hxx -TDataStd_DataMapIteratorOfDataMapOfStringByte.hxx -TDataStd_DataMapIteratorOfDataMapOfStringHArray1OfInteger.hxx -TDataStd_DataMapIteratorOfDataMapOfStringHArray1OfReal.hxx -TDataStd_DataMapIteratorOfDataMapOfStringReal.hxx -TDataStd_DataMapIteratorOfDataMapOfStringString.hxx -TDataStd_DataMapOfStringByte.hxx -TDataStd_DataMapOfStringHArray1OfInteger.hxx -TDataStd_DataMapOfStringHArray1OfReal.hxx -TDataStd_DataMapOfStringReal.hxx -TDataStd_DataMapOfStringString.hxx -TDataStd_DeltaOnModificationOfByteArray.cxx -TDataStd_DeltaOnModificationOfByteArray.hxx -TDataStd_DeltaOnModificationOfExtStringArray.cxx -TDataStd_DeltaOnModificationOfExtStringArray.hxx -TDataStd_DeltaOnModificationOfIntArray.cxx -TDataStd_DeltaOnModificationOfIntArray.hxx -TDataStd_DeltaOnModificationOfIntPackedMap.cxx -TDataStd_DeltaOnModificationOfIntPackedMap.hxx -TDataStd_DeltaOnModificationOfRealArray.cxx -TDataStd_DeltaOnModificationOfRealArray.hxx -TDataStd_Directory.cxx -TDataStd_Directory.hxx -TDataStd_Expression.cxx -TDataStd_Expression.hxx -TDataStd_ExtStringArray.cxx -TDataStd_ExtStringArray.hxx -TDataStd_ExtStringList.cxx -TDataStd_ExtStringList.hxx -TDataStd_HDataMapOfStringByte.cxx -TDataStd_HDataMapOfStringByte.hxx -TDataStd_HDataMapOfStringHArray1OfInteger.cxx -TDataStd_HDataMapOfStringHArray1OfInteger.hxx -TDataStd_HDataMapOfStringHArray1OfReal.cxx -TDataStd_HDataMapOfStringHArray1OfReal.hxx -TDataStd_HDataMapOfStringInteger.cxx -TDataStd_HDataMapOfStringInteger.hxx -TDataStd_HDataMapOfStringReal.cxx -TDataStd_HDataMapOfStringReal.hxx -TDataStd_HDataMapOfStringString.cxx -TDataStd_HDataMapOfStringString.hxx -TDataStd_HLabelArray1.hxx -TDataStd_Integer.cxx -TDataStd_Integer.hxx -TDataStd_IntegerArray.cxx -TDataStd_IntegerArray.hxx -TDataStd_IntegerList.cxx -TDataStd_IntegerList.hxx -TDataStd_IntPackedMap.cxx -TDataStd_IntPackedMap.hxx -TDataStd_LabelArray1.hxx -TDataStd_ListIteratorOfListOfByte.hxx -TDataStd_ListIteratorOfListOfExtendedString.hxx -TDataStd_ListOfByte.hxx -TDataStd_ListOfExtendedString.hxx -TDataStd_Name.cxx -TDataStd_Name.hxx -TDataStd_NamedData.cxx -TDataStd_NamedData.hxx -TDataStd_NoteBook.cxx -TDataStd_NoteBook.hxx -TDataStd_PtrTreeNode.hxx -TDataStd_Real.cxx -TDataStd_Real.hxx -TDataStd_RealArray.cxx -TDataStd_RealArray.hxx -TDataStd_RealEnum.hxx -TDataStd_RealList.cxx -TDataStd_RealList.hxx -TDataStd_ReferenceArray.cxx -TDataStd_ReferenceArray.hxx -TDataStd_ReferenceList.cxx -TDataStd_ReferenceList.hxx -TDataStd_Relation.cxx -TDataStd_Relation.hxx -TDataStd_Tick.cxx -TDataStd_Tick.hxx -TDataStd_TreeNode.cxx -TDataStd_TreeNode.hxx -TDataStd_TreeNode.lxx -TDataStd_UAttribute.cxx -TDataStd_UAttribute.hxx -TDataStd_Variable.cxx -TDataStd_Variable.hxx diff --git a/src/TDataXtd/FILES b/src/TDataXtd/FILES deleted file mode 100644 index 28cddb10ed..0000000000 --- a/src/TDataXtd/FILES +++ /dev/null @@ -1,31 +0,0 @@ -TDataXtd.cxx -TDataXtd.hxx -TDataXtd_Array1OfTrsf.hxx -TDataXtd_Axis.cxx -TDataXtd_Axis.hxx -TDataXtd_Constraint.cxx -TDataXtd_Constraint.hxx -TDataXtd_ConstraintEnum.hxx -TDataXtd_Geometry.cxx -TDataXtd_Geometry.hxx -TDataXtd_GeometryEnum.hxx -TDataXtd_HArray1OfTrsf.hxx -TDataXtd_Pattern.cxx -TDataXtd_Pattern.hxx -TDataXtd_PatternStd.cxx -TDataXtd_PatternStd.hxx -TDataXtd_PatternStd.lxx -TDataXtd_Placement.cxx -TDataXtd_Placement.hxx -TDataXtd_Plane.cxx -TDataXtd_Plane.hxx -TDataXtd_Point.cxx -TDataXtd_Point.hxx -TDataXtd_Position.cxx -TDataXtd_Position.hxx -TDataXtd_Presentation.hxx -TDataXtd_Presentation.cxx -TDataXtd_Shape.cxx -TDataXtd_Shape.hxx -TDataXtd_Triangulation.cxx -TDataXtd_Triangulation.hxx diff --git a/src/TDocStd/FILES b/src/TDocStd/FILES deleted file mode 100644 index 6741dbf672..0000000000 --- a/src/TDocStd/FILES +++ /dev/null @@ -1,40 +0,0 @@ -TDocStd.cxx -TDocStd.hxx -TDocStd_Application.cxx -TDocStd_Application.hxx -TDocStd_ApplicationDelta.cxx -TDocStd_ApplicationDelta.hxx -TDocStd_ApplicationDelta.lxx -TDocStd_CompoundDelta.cxx -TDocStd_CompoundDelta.hxx -TDocStd_Context.cxx -TDocStd_Context.hxx -TDocStd_DataMapIteratorOfLabelIDMapDataMap.hxx -TDocStd_Document.cxx -TDocStd_Document.hxx -TDocStd_Document.lxx -TDocStd_LabelIDMapDataMap.hxx -TDocStd_Modified.cxx -TDocStd_Modified.hxx -TDocStd_MultiTransactionManager.cxx -TDocStd_MultiTransactionManager.hxx -TDocStd_MultiTransactionManager.lxx -TDocStd_Owner.cxx -TDocStd_Owner.hxx -TDocStd_PathParser.cxx -TDocStd_PathParser.hxx -TDocStd_SequenceOfApplicationDelta.hxx -TDocStd_SequenceOfDocument.hxx -TDocStd_XLink.cxx -TDocStd_XLink.hxx -TDocStd_XLink.lxx -TDocStd_XLinkIterator.cxx -TDocStd_XLinkIterator.hxx -TDocStd_XLinkIterator.lxx -TDocStd_XLinkPtr.hxx -TDocStd_XLinkRoot.cxx -TDocStd_XLinkRoot.hxx -TDocStd_XLinkRoot.lxx -TDocStd_XLinkTool.cxx -TDocStd_XLinkTool.hxx -TDocStd_FormatVersion.hxx diff --git a/src/TFunction/FILES b/src/TFunction/FILES deleted file mode 100644 index 34d3867f94..0000000000 --- a/src/TFunction/FILES +++ /dev/null @@ -1,27 +0,0 @@ -TFunction_Array1OfDataMapOfGUIDDriver.hxx -TFunction_DataMapIteratorOfDataMapOfGUIDDriver.hxx -TFunction_DataMapIteratorOfDataMapOfLabelListOfLabel.hxx -TFunction_DataMapOfGUIDDriver.hxx -TFunction_DataMapOfLabelListOfLabel.hxx -TFunction_DoubleMapIteratorOfDoubleMapOfIntegerLabel.hxx -TFunction_DoubleMapOfIntegerLabel.hxx -TFunction_Driver.cxx -TFunction_Driver.hxx -TFunction_Driver.lxx -TFunction_DriverTable.cxx -TFunction_DriverTable.hxx -TFunction_ExecutionStatus.hxx -TFunction_Function.cxx -TFunction_Function.hxx -TFunction_GraphNode.cxx -TFunction_GraphNode.hxx -TFunction_HArray1OfDataMapOfGUIDDriver.hxx -TFunction_IFunction.cxx -TFunction_IFunction.hxx -TFunction_Iterator.cxx -TFunction_Iterator.hxx -TFunction_Logbook.cxx -TFunction_Logbook.hxx -TFunction_Logbook.lxx -TFunction_Scope.cxx -TFunction_Scope.hxx diff --git a/src/TKBO/EXTERNLIB b/src/TKBO/EXTERNLIB deleted file mode 100755 index ebbaf90b08..0000000000 --- a/src/TKBO/EXTERNLIB +++ /dev/null @@ -1,11 +0,0 @@ -TKBRep -TKTopAlgo -TKMath -TKernel -TKG2d -TKG3d -TKGeomAlgo -TKGeomBase -TKPrim -TKShHealing -CSF_TBB \ No newline at end of file diff --git a/src/TKBO/FILES b/src/TKBO/FILES deleted file mode 100755 index ee6f7057f7..0000000000 --- a/src/TKBO/FILES +++ /dev/null @@ -1 +0,0 @@ -EXTERNLIB diff --git a/src/TKBO/PACKAGES b/src/TKBO/PACKAGES deleted file mode 100755 index b9e3fcc9a7..0000000000 --- a/src/TKBO/PACKAGES +++ /dev/null @@ -1,5 +0,0 @@ -IntTools -BRepAlgoAPI -BOPDS -BOPAlgo -BOPTools diff --git a/src/TKBRep/EXTERNLIB b/src/TKBRep/EXTERNLIB deleted file mode 100755 index 5d982912a8..0000000000 --- a/src/TKBRep/EXTERNLIB +++ /dev/null @@ -1,5 +0,0 @@ -TKMath -TKernel -TKG2d -TKG3d -TKGeomBase diff --git a/src/TKBRep/FILES b/src/TKBRep/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKBRep/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKBRep/PACKAGES b/src/TKBRep/PACKAGES deleted file mode 100755 index b4183b3307..0000000000 --- a/src/TKBRep/PACKAGES +++ /dev/null @@ -1,8 +0,0 @@ -TopoDS -TopExp -TopTools -BRep -BRepLProp -BRepAdaptor -BRepTools -BinTools diff --git a/src/TKBin/EXTERNLIB b/src/TKBin/EXTERNLIB deleted file mode 100755 index 5f24c3518f..0000000000 --- a/src/TKBin/EXTERNLIB +++ /dev/null @@ -1,9 +0,0 @@ -TKBRep -TKMath -TKernel -TKG2d -TKG3d -TKCAF -TKCDF -TKLCAF -TKBinL diff --git a/src/TKBin/FILES b/src/TKBin/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKBin/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKBin/PACKAGES b/src/TKBin/PACKAGES deleted file mode 100755 index fcd751ccb1..0000000000 --- a/src/TKBin/PACKAGES +++ /dev/null @@ -1,3 +0,0 @@ -BinDrivers -BinMDataXtd -BinMNaming diff --git a/src/TKBinL/EXTERNLIB b/src/TKBinL/EXTERNLIB deleted file mode 100644 index b39644fd46..0000000000 --- a/src/TKBinL/EXTERNLIB +++ /dev/null @@ -1,3 +0,0 @@ -TKCDF -TKernel -TKLCAF diff --git a/src/TKBinL/FILES b/src/TKBinL/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKBinL/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKBinL/PACKAGES b/src/TKBinL/PACKAGES deleted file mode 100755 index d73e07a463..0000000000 --- a/src/TKBinL/PACKAGES +++ /dev/null @@ -1,6 +0,0 @@ -BinMDF -BinMDataStd -BinMFunction -BinMDocStd -BinObjMgt -BinLDrivers diff --git a/src/TKBinTObj/EXTERNLIB b/src/TKBinTObj/EXTERNLIB deleted file mode 100755 index 692dbb9e95..0000000000 --- a/src/TKBinTObj/EXTERNLIB +++ /dev/null @@ -1,6 +0,0 @@ -TKCDF -TKernel -TKTObj -TKMath -TKLCAF -TKBinL diff --git a/src/TKBinTObj/FILES b/src/TKBinTObj/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKBinTObj/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKBinTObj/PACKAGES b/src/TKBinTObj/PACKAGES deleted file mode 100755 index f79e2769af..0000000000 --- a/src/TKBinTObj/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -BinTObjDrivers diff --git a/src/TKBinXCAF/EXTERNLIB b/src/TKBinXCAF/EXTERNLIB deleted file mode 100755 index 53eaf11055..0000000000 --- a/src/TKBinXCAF/EXTERNLIB +++ /dev/null @@ -1,12 +0,0 @@ -TKBRep -TKXCAF -TKMath -TKService -TKernel -TKBinL -TKG2d -TKCAF -TKCDF -TKG3d -TKLCAF -TKBin diff --git a/src/TKBinXCAF/FILES b/src/TKBinXCAF/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKBinXCAF/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKBinXCAF/PACKAGES b/src/TKBinXCAF/PACKAGES deleted file mode 100755 index ea00647fd7..0000000000 --- a/src/TKBinXCAF/PACKAGES +++ /dev/null @@ -1,2 +0,0 @@ -BinXCAFDrivers -BinMXCAFDoc diff --git a/src/TKBool/EXTERNLIB b/src/TKBool/EXTERNLIB deleted file mode 100755 index fd338fee36..0000000000 --- a/src/TKBool/EXTERNLIB +++ /dev/null @@ -1,11 +0,0 @@ -TKBRep -TKTopAlgo -TKMath -TKernel -TKPrim -TKG2d -TKG3d -TKShHealing -TKGeomBase -TKGeomAlgo -TKBO diff --git a/src/TKBool/FILES b/src/TKBool/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKBool/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKBool/PACKAGES b/src/TKBool/PACKAGES deleted file mode 100755 index ee5cc58414..0000000000 --- a/src/TKBool/PACKAGES +++ /dev/null @@ -1,7 +0,0 @@ -TopOpeBRep -TopOpeBRepDS -TopOpeBRepBuild -TopOpeBRepTool -BRepAlgo -BRepFill -BRepProj diff --git a/src/TKCAF/EXTERNLIB b/src/TKCAF/EXTERNLIB deleted file mode 100755 index 1265220edb..0000000000 --- a/src/TKCAF/EXTERNLIB +++ /dev/null @@ -1,10 +0,0 @@ -TKernel -TKGeomBase -TKBRep -TKTopAlgo -TKMath -TKG2d -TKG3d -TKCDF -TKLCAF -TKBO diff --git a/src/TKCAF/FILES b/src/TKCAF/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKCAF/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKCAF/PACKAGES b/src/TKCAF/PACKAGES deleted file mode 100755 index 6c5156383f..0000000000 --- a/src/TKCAF/PACKAGES +++ /dev/null @@ -1,3 +0,0 @@ -TDataXtd -TNaming -AppStd diff --git a/src/TKCDF/EXTERNLIB b/src/TKCDF/EXTERNLIB deleted file mode 100755 index 58c24f0d95..0000000000 --- a/src/TKCDF/EXTERNLIB +++ /dev/null @@ -1 +0,0 @@ -TKernel diff --git a/src/TKCDF/FILES b/src/TKCDF/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKCDF/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKCDF/PACKAGES b/src/TKCDF/PACKAGES deleted file mode 100755 index c111ddd744..0000000000 --- a/src/TKCDF/PACKAGES +++ /dev/null @@ -1,5 +0,0 @@ -CDM -PCDM -CDF -UTL -LDOM diff --git a/src/TKD3DHost/EXTERNLIB b/src/TKD3DHost/EXTERNLIB deleted file mode 100644 index 4208b02798..0000000000 --- a/src/TKD3DHost/EXTERNLIB +++ /dev/null @@ -1,10 +0,0 @@ -TKernel -TKService -TKMath -TKV3d -TKOpenGl -CSF_XwLibs -CSF_OpenGlLibs -CSF_user32 -CSF_gdi32 -CSF_d3d9 diff --git a/src/TKD3DHost/FILES b/src/TKD3DHost/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKD3DHost/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKD3DHost/PACKAGES b/src/TKD3DHost/PACKAGES deleted file mode 100644 index a45b8c7df7..0000000000 --- a/src/TKD3DHost/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -D3DHost diff --git a/src/TKD3DHostTest/EXTERNLIB b/src/TKD3DHostTest/EXTERNLIB deleted file mode 100644 index ba25691e47..0000000000 --- a/src/TKD3DHostTest/EXTERNLIB +++ /dev/null @@ -1,5 +0,0 @@ -TKernel -TKMath -TKDraw -TKD3DHost -TKService diff --git a/src/TKD3DHostTest/FILES b/src/TKD3DHostTest/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKD3DHostTest/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKD3DHostTest/PACKAGES b/src/TKD3DHostTest/PACKAGES deleted file mode 100644 index 9cb5cc1696..0000000000 --- a/src/TKD3DHostTest/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -D3DHostTest diff --git a/src/TKDCAF/EXTERNLIB b/src/TKDCAF/EXTERNLIB deleted file mode 100755 index db619c60f0..0000000000 --- a/src/TKDCAF/EXTERNLIB +++ /dev/null @@ -1,26 +0,0 @@ -TKGeomBase -TKBRep -TKGeomAlgo -TKernel -TKMath -TKG2d -TKG3d -TKDraw -TKCDF -TKV3d -TKService -TKLCAF -TKFillet -TKTopAlgo -TKPrim -TKBool -TKBO -TKCAF -TKVCAF -TKViewerTest -TKStd -TKStdL -TKBin -TKBinL -TKXml -TKXmlL diff --git a/src/TKDCAF/FILES b/src/TKDCAF/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKDCAF/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKDCAF/PACKAGES b/src/TKDCAF/PACKAGES deleted file mode 100755 index c0ecfda9e6..0000000000 --- a/src/TKDCAF/PACKAGES +++ /dev/null @@ -1,6 +0,0 @@ -DDF -DDocStd -DNaming -DDataStd -DPrsStd -DrawDim diff --git a/src/TKDE/EXTERNLIB b/src/TKDE/EXTERNLIB deleted file mode 100644 index 6d39d0d7ef..0000000000 --- a/src/TKDE/EXTERNLIB +++ /dev/null @@ -1,3 +0,0 @@ -TKernel -TKMath -TKBRep diff --git a/src/TKDE/FILES b/src/TKDE/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKDE/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKDE/PACKAGES b/src/TKDE/PACKAGES deleted file mode 100644 index e5d15ddaef..0000000000 --- a/src/TKDE/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -DE diff --git a/src/TKDECascade/EXTERNLIB b/src/TKDECascade/EXTERNLIB deleted file mode 100644 index 6abe782fc5..0000000000 --- a/src/TKDECascade/EXTERNLIB +++ /dev/null @@ -1,17 +0,0 @@ -TKBin -TKBinL -TKBinTObj -TKBinXCAF -TKBRep -TKStd -TKXml -TKXmlL -TKXmlTObj -TKXmlXCAF -TKDE -TKernel -TKMath -TKLCAF -TKXCAF -TKStdL -TKCDF diff --git a/src/TKDECascade/FILES b/src/TKDECascade/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKDECascade/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKDECascade/PACKAGES b/src/TKDECascade/PACKAGES deleted file mode 100644 index 3d12a682bd..0000000000 --- a/src/TKDECascade/PACKAGES +++ /dev/null @@ -1,4 +0,0 @@ -DEBRepCascade -DEXCAFCascade -DEBREP -DEXCAF diff --git a/src/TKDEGLTF/EXTERNLIB b/src/TKDEGLTF/EXTERNLIB deleted file mode 100644 index 0f9a0d8aae..0000000000 --- a/src/TKDEGLTF/EXTERNLIB +++ /dev/null @@ -1,13 +0,0 @@ -TKernel -TKMath -TKMesh -TKXCAF -TKLCAF -TKV3d -TKBRep -TKG3d -TKDE -TKService -TKRWMesh -CSF_RapidJSON -CSF_Draco diff --git a/src/TKDEGLTF/FILES b/src/TKDEGLTF/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKDEGLTF/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKDEGLTF/PACKAGES b/src/TKDEGLTF/PACKAGES deleted file mode 100644 index 2c3e8742ae..0000000000 --- a/src/TKDEGLTF/PACKAGES +++ /dev/null @@ -1,2 +0,0 @@ -RWGltf -DEGLTF \ No newline at end of file diff --git a/src/TKDEIGES/EXTERNLIB b/src/TKDEIGES/EXTERNLIB deleted file mode 100644 index 1a7b0ccf05..0000000000 --- a/src/TKDEIGES/EXTERNLIB +++ /dev/null @@ -1,16 +0,0 @@ -TKBRep -TKDE -TKernel -TKMath -TKTopAlgo -TKShHealing -TKXSBase -TKGeomBase -TKGeomAlgo -TKBool -TKPrim -TKCDF -TKLCAF -TKG2d -TKG3d -TKXCAF diff --git a/src/TKDEIGES/FILES b/src/TKDEIGES/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKDEIGES/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKDEIGES/PACKAGES b/src/TKDEIGES/PACKAGES deleted file mode 100644 index 4f065759c1..0000000000 --- a/src/TKDEIGES/PACKAGES +++ /dev/null @@ -1,20 +0,0 @@ -IGESCAFControl -IGESData -IGESFile -IGESBasic -IGESGraph -IGESGeom -IGESDimen -IGESDraw -IGESSolid -IGESDefs -IGESAppli -IGESConvGeom -IGESSelect -IGESToBRep -GeomToIGES -Geom2dToIGES -BRepToIGES -BRepToIGESBRep -IGESControl -DEIGES diff --git a/src/TKDEOBJ/EXTERNLIB b/src/TKDEOBJ/EXTERNLIB deleted file mode 100644 index 4145bc8c70..0000000000 --- a/src/TKDEOBJ/EXTERNLIB +++ /dev/null @@ -1,12 +0,0 @@ -TKernel -TKMath -TKMesh -TKXCAF -TKLCAF -TKV3d -TKBRep -TKG3d -TKDE -TKService -TKRWMesh -CSF_RapidJSON diff --git a/src/TKDEOBJ/FILES b/src/TKDEOBJ/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKDEOBJ/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKDEOBJ/PACKAGES b/src/TKDEOBJ/PACKAGES deleted file mode 100644 index b1713f695d..0000000000 --- a/src/TKDEOBJ/PACKAGES +++ /dev/null @@ -1,2 +0,0 @@ -RWObj -DEOBJ diff --git a/src/TKDEPLY/EXTERNLIB b/src/TKDEPLY/EXTERNLIB deleted file mode 100644 index 4145bc8c70..0000000000 --- a/src/TKDEPLY/EXTERNLIB +++ /dev/null @@ -1,12 +0,0 @@ -TKernel -TKMath -TKMesh -TKXCAF -TKLCAF -TKV3d -TKBRep -TKG3d -TKDE -TKService -TKRWMesh -CSF_RapidJSON diff --git a/src/TKDEPLY/FILES b/src/TKDEPLY/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKDEPLY/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKDEPLY/PACKAGES b/src/TKDEPLY/PACKAGES deleted file mode 100644 index f1fd46f5a5..0000000000 --- a/src/TKDEPLY/PACKAGES +++ /dev/null @@ -1,2 +0,0 @@ -RWPly -DEPLY diff --git a/src/TKDESTEP/EXTERNLIB b/src/TKDESTEP/EXTERNLIB deleted file mode 100644 index 9b86ab5bb3..0000000000 --- a/src/TKDESTEP/EXTERNLIB +++ /dev/null @@ -1,23 +0,0 @@ -TKDE -TKBRep -TKernel -TKMath -TKXSBase -TKTopAlgo -TKG2d -TKCAF -TKCDF -TKLCAF -TKG3d -TKXCAF -TKShHealing -TKernel -TKBRep -TKMath -TKG2d -TKShHealing -TKTopAlgo -TKG3d -TKGeomBase -TKGeomAlgo -TKXSBase diff --git a/src/TKDESTEP/FILES b/src/TKDESTEP/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKDESTEP/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKDESTEP/PACKAGES b/src/TKDESTEP/PACKAGES deleted file mode 100644 index 90b6790235..0000000000 --- a/src/TKDESTEP/PACKAGES +++ /dev/null @@ -1,41 +0,0 @@ -STEPCAFControl -StepAP214 -RWStepAP214 -StepAP203 -RWStepAP203 -STEPConstruct -STEPEdit -GeomToStep -StepToGeom -StepToTopoDS -TopoDSToStep -STEPControl -STEPSelections -StepAP209 -RWStepAP242 -StepAP242 -StepElement -StepFEA -RWStepElement -RWStepFEA -StepVisual -RWStepVisual -StepDimTol -RWStepDimTol -StepKinematics -RWStepKinematics -StepBasic -RWStepBasic -StepRepr -RWStepRepr -StepGeom -RWStepGeom -StepShape -RWStepShape -StepSelect -StepData -StepFile -RWHeaderSection -APIHeaderSection -HeaderSection -DESTEP diff --git a/src/TKDESTL/EXTERNLIB b/src/TKDESTL/EXTERNLIB deleted file mode 100644 index 74fdab3de7..0000000000 --- a/src/TKDESTL/EXTERNLIB +++ /dev/null @@ -1,9 +0,0 @@ -TKDE -TKernel -TKMath -TKBRep -TKG2d -TKG3d -TKTopAlgo -TKLCAF -TKXCAF diff --git a/src/TKDESTL/FILES b/src/TKDESTL/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKDESTL/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKDESTL/PACKAGES b/src/TKDESTL/PACKAGES deleted file mode 100644 index 3d2139b203..0000000000 --- a/src/TKDESTL/PACKAGES +++ /dev/null @@ -1,3 +0,0 @@ -StlAPI -RWStl -DESTL diff --git a/src/TKDEVRML/EXTERNLIB b/src/TKDEVRML/EXTERNLIB deleted file mode 100644 index 22fb272243..0000000000 --- a/src/TKDEVRML/EXTERNLIB +++ /dev/null @@ -1,18 +0,0 @@ -TKBRep -TKDE -TKTopAlgo -TKMath -TKGeomBase -TKernel -TKPrim -TKG2d -TKG3d -TKMesh -TKHLR -TKRWMesh -TKService -TKGeomAlgo -TKV3d -TKLCAF -TKXCAF -TKXSBase diff --git a/src/TKDEVRML/FILES b/src/TKDEVRML/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKDEVRML/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKDEVRML/PACKAGES b/src/TKDEVRML/PACKAGES deleted file mode 100644 index a2bdcb7bfd..0000000000 --- a/src/TKDEVRML/PACKAGES +++ /dev/null @@ -1,5 +0,0 @@ -VrmlConverter -VrmlAPI -Vrml -VrmlData -DEVRML diff --git a/src/TKDraw/EXTERNLIB b/src/TKDraw/EXTERNLIB deleted file mode 100755 index 7ca5eec4e5..0000000000 --- a/src/TKDraw/EXTERNLIB +++ /dev/null @@ -1,24 +0,0 @@ -TKernel -TKG2d -TKGeomBase -TKG3d -TKMath -TKBRep -TKGeomAlgo -TKShHealing -TKMesh -TKService -TKHLR -TKTopAlgo -CSF_TclLibs -CSF_TclTkLibs -CSF_XwLibs -CSF_gdi32 -CSF_advapi32 -CSF_user32 -CSF_shell32 -CSF_TBB -CSF_objc -CSF_Appkit -CSF_IOKit -CSF_ThreadLibs diff --git a/src/TKDraw/FILES b/src/TKDraw/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKDraw/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKDraw/PACKAGES b/src/TKDraw/PACKAGES deleted file mode 100755 index 1600bddebd..0000000000 --- a/src/TKDraw/PACKAGES +++ /dev/null @@ -1,3 +0,0 @@ -Draw -DBRep -DrawTrSurf diff --git a/src/TKExpress/EXTERNLIB b/src/TKExpress/EXTERNLIB deleted file mode 100644 index 58c24f0d95..0000000000 --- a/src/TKExpress/EXTERNLIB +++ /dev/null @@ -1 +0,0 @@ -TKernel diff --git a/src/TKExpress/FILES b/src/TKExpress/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKExpress/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKExpress/PACKAGES b/src/TKExpress/PACKAGES deleted file mode 100644 index da70d60dce..0000000000 --- a/src/TKExpress/PACKAGES +++ /dev/null @@ -1,2 +0,0 @@ -Expr -ExprIntrp diff --git a/src/TKFeat/EXTERNLIB b/src/TKFeat/EXTERNLIB deleted file mode 100755 index da9e470fc5..0000000000 --- a/src/TKFeat/EXTERNLIB +++ /dev/null @@ -1,12 +0,0 @@ -TKBRep -TKTopAlgo -TKGeomAlgo -TKMath -TKernel -TKGeomBase -TKPrim -TKG2d -TKBO -TKG3d -TKBool -TKShHealing diff --git a/src/TKFeat/FILES b/src/TKFeat/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKFeat/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKFeat/PACKAGES b/src/TKFeat/PACKAGES deleted file mode 100755 index 0c8930dfa9..0000000000 --- a/src/TKFeat/PACKAGES +++ /dev/null @@ -1,2 +0,0 @@ -LocOpe -BRepFeat diff --git a/src/TKFillet/EXTERNLIB b/src/TKFillet/EXTERNLIB deleted file mode 100755 index 453e304464..0000000000 --- a/src/TKFillet/EXTERNLIB +++ /dev/null @@ -1,11 +0,0 @@ -TKBRep -TKernel -TKMath -TKGeomBase -TKGeomAlgo -TKG2d -TKTopAlgo -TKG3d -TKBool -TKShHealing -TKBO diff --git a/src/TKFillet/FILES b/src/TKFillet/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKFillet/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKFillet/PACKAGES b/src/TKFillet/PACKAGES deleted file mode 100755 index be9a8d9f9e..0000000000 --- a/src/TKFillet/PACKAGES +++ /dev/null @@ -1,9 +0,0 @@ -ChFiDS -ChFi2d -ChFi3d -ChFiKPart -Blend -BRepBlend -BlendFunc -BRepFilletAPI -FilletSurf diff --git a/src/TKG2d/EXTERNLIB b/src/TKG2d/EXTERNLIB deleted file mode 100755 index 1a12b23444..0000000000 --- a/src/TKG2d/EXTERNLIB +++ /dev/null @@ -1,2 +0,0 @@ -TKernel -TKMath diff --git a/src/TKG2d/FILES b/src/TKG2d/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKG2d/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKG2d/PACKAGES b/src/TKG2d/PACKAGES deleted file mode 100755 index cf0da1ee75..0000000000 --- a/src/TKG2d/PACKAGES +++ /dev/null @@ -1,7 +0,0 @@ -Geom2d -LProp -TColGeom2d -Adaptor2d -Geom2dLProp -Geom2dAdaptor -Geom2dEvaluator diff --git a/src/TKG3d/EXTERNLIB b/src/TKG3d/EXTERNLIB deleted file mode 100755 index f828e0046e..0000000000 --- a/src/TKG3d/EXTERNLIB +++ /dev/null @@ -1,3 +0,0 @@ -TKMath -TKernel -TKG2d diff --git a/src/TKG3d/FILES b/src/TKG3d/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKG3d/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKG3d/PACKAGES b/src/TKG3d/PACKAGES deleted file mode 100755 index 51f6ba3278..0000000000 --- a/src/TKG3d/PACKAGES +++ /dev/null @@ -1,10 +0,0 @@ -Geom -TColGeom -GeomAdaptor -AdvApprox -GeomLProp -Adaptor3d -LProp3d -TopAbs -GeomEvaluator -GProp diff --git a/src/TKGeomAlgo/EXTERNLIB b/src/TKGeomAlgo/EXTERNLIB deleted file mode 100755 index ca0ecb9dab..0000000000 --- a/src/TKGeomAlgo/EXTERNLIB +++ /dev/null @@ -1,6 +0,0 @@ -TKernel -TKMath -TKG3d -TKG2d -TKGeomBase -TKBRep diff --git a/src/TKGeomAlgo/FILES b/src/TKGeomAlgo/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKGeomAlgo/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKGeomAlgo/PACKAGES b/src/TKGeomAlgo/PACKAGES deleted file mode 100755 index 37fda2a0a6..0000000000 --- a/src/TKGeomAlgo/PACKAGES +++ /dev/null @@ -1,33 +0,0 @@ -Hatch -GeomInt -IntStart -IntWalk -IntImp -IntCurveSurface -IntSurf -IntPatch -Geom2dInt -IntImpParGen -IntRes2d -IntCurve -TopTrans -Intf -ApproxInt -GccAna -GccEnt -GccInt -HatchGen -Geom2dHatch -Law -AppBlend -Plate -GeomPlate -LocalAnalysis -GeomAPI -GeomFill -Geom2dAPI -Geom2dGcc -FairCurve -NLPlate -IntPolyh -TopClass diff --git a/src/TKGeomBase/EXTERNLIB b/src/TKGeomBase/EXTERNLIB deleted file mode 100755 index 1db0297077..0000000000 --- a/src/TKGeomBase/EXTERNLIB +++ /dev/null @@ -1,5 +0,0 @@ -TKernel -TKMath -TKG2d -TKG3d -CSF_TBB diff --git a/src/TKGeomBase/FILES b/src/TKGeomBase/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKGeomBase/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKGeomBase/PACKAGES b/src/TKGeomBase/PACKAGES deleted file mode 100755 index 15f92f394b..0000000000 --- a/src/TKGeomBase/PACKAGES +++ /dev/null @@ -1,22 +0,0 @@ -ProjLib -GeomProjLib -GCPnts -CPnts -Approx -AppParCurves -FEmTool -AppCont -Extrema -IntAna -IntAna2d -GeomConvert -AdvApp2Var -GeomLib -Geom2dConvert -Hermit -BndLib -AppDef -GeomTools -GC -GCE2d -gce diff --git a/src/TKHLR/EXTERNLIB b/src/TKHLR/EXTERNLIB deleted file mode 100755 index 6a88cac43d..0000000000 --- a/src/TKHLR/EXTERNLIB +++ /dev/null @@ -1,8 +0,0 @@ -TKBRep -TKernel -TKMath -TKGeomBase -TKG2d -TKG3d -TKGeomAlgo -TKTopAlgo diff --git a/src/TKHLR/FILES b/src/TKHLR/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKHLR/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKHLR/PACKAGES b/src/TKHLR/PACKAGES deleted file mode 100755 index f5b5d69f97..0000000000 --- a/src/TKHLR/PACKAGES +++ /dev/null @@ -1,8 +0,0 @@ -HLRTopoBRep -HLRBRep -HLRAlgo -HLRAppli -Intrv -TopBas -TopCnx -Contap diff --git a/src/TKIVtk/EXTERNLIB b/src/TKIVtk/EXTERNLIB deleted file mode 100644 index b8a4b25007..0000000000 --- a/src/TKIVtk/EXTERNLIB +++ /dev/null @@ -1,19 +0,0 @@ -CSF_VTK -TKernel -TKBRep -TKG2d -TKG3d -TKGeomAlgo -TKGeomBase -TKMath -TKMesh -TKService -TKTopAlgo -TKV3d -vtkCommonCore -vtkRenderingCore -vtkRenderingOpenGL -vtkRenderingFreeType -vtkRenderingFreeTypeOpenGL -vtkFiltersGeneral -vtkInteractionStyle diff --git a/src/TKIVtk/FILES b/src/TKIVtk/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKIVtk/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKIVtk/PACKAGES b/src/TKIVtk/PACKAGES deleted file mode 100644 index 4e05b75981..0000000000 --- a/src/TKIVtk/PACKAGES +++ /dev/null @@ -1,4 +0,0 @@ -IVtk -IVtkOCC -IVtkVTK -IVtkTools \ No newline at end of file diff --git a/src/TKIVtkDraw/EXTERNLIB b/src/TKIVtkDraw/EXTERNLIB deleted file mode 100644 index d9f63df45d..0000000000 --- a/src/TKIVtkDraw/EXTERNLIB +++ /dev/null @@ -1,23 +0,0 @@ -CSF_VTK -CSF_TclLibs -CSF_XwLibs -CSF_user32 -TKernel -TKBRep -TKDraw -TKG2d -TKG3d -TKGeomAlgo -TKGeomBase -TKMath -TKMesh -TKService -TKTopAlgo -TKV3d -TKOpenGl -TKIVtk -vtkIOImage -vtkImagingCore -vtkInteractionStyle -vtkRenderingOpenGL -vtkRenderingFreeTypeOpenGL diff --git a/src/TKIVtkDraw/FILES b/src/TKIVtkDraw/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKIVtkDraw/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKIVtkDraw/PACKAGES b/src/TKIVtkDraw/PACKAGES deleted file mode 100644 index 66e2f7294f..0000000000 --- a/src/TKIVtkDraw/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -IVtkDraw \ No newline at end of file diff --git a/src/TKLCAF/EXTERNLIB b/src/TKLCAF/EXTERNLIB deleted file mode 100644 index 590b3c0512..0000000000 --- a/src/TKLCAF/EXTERNLIB +++ /dev/null @@ -1,2 +0,0 @@ -TKCDF -TKernel diff --git a/src/TKLCAF/FILES b/src/TKLCAF/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKLCAF/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKLCAF/PACKAGES b/src/TKLCAF/PACKAGES deleted file mode 100755 index 900cc0f041..0000000000 --- a/src/TKLCAF/PACKAGES +++ /dev/null @@ -1,5 +0,0 @@ -TDF -TDataStd -TFunction -TDocStd -AppStdL diff --git a/src/TKMath/EXTERNLIB b/src/TKMath/EXTERNLIB deleted file mode 100755 index 799bf4ad2c..0000000000 --- a/src/TKMath/EXTERNLIB +++ /dev/null @@ -1,2 +0,0 @@ -TKernel -CSF_TBB \ No newline at end of file diff --git a/src/TKMath/FILES b/src/TKMath/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKMath/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKMath/PACKAGES b/src/TKMath/PACKAGES deleted file mode 100755 index 87ab2ac244..0000000000 --- a/src/TKMath/PACKAGES +++ /dev/null @@ -1,15 +0,0 @@ -math -ElCLib -ElSLib -BSplCLib -BSplSLib -PLib -GeomAbs -Poly -CSLib -Convert -Bnd -BVH -gp -TColgp -TopLoc diff --git a/src/TKMesh/EXTERNLIB b/src/TKMesh/EXTERNLIB deleted file mode 100755 index c428c62550..0000000000 --- a/src/TKMesh/EXTERNLIB +++ /dev/null @@ -1,8 +0,0 @@ -TKernel -TKMath -TKBRep -TKTopAlgo -TKShHealing -TKGeomBase -TKG3d -TKG2d diff --git a/src/TKMesh/FILES b/src/TKMesh/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKMesh/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKMesh/PACKAGES b/src/TKMesh/PACKAGES deleted file mode 100755 index d5379def2f..0000000000 --- a/src/TKMesh/PACKAGES +++ /dev/null @@ -1,4 +0,0 @@ -IMeshData -IMeshTools -BRepMeshData -BRepMesh diff --git a/src/TKMeshVS/EXTERNLIB b/src/TKMeshVS/EXTERNLIB deleted file mode 100644 index c9eebc5d24..0000000000 --- a/src/TKMeshVS/EXTERNLIB +++ /dev/null @@ -1,6 +0,0 @@ -TKV3d -TKMath -TKService -TKernel -TKG3d -TKG2d diff --git a/src/TKMeshVS/FILES b/src/TKMeshVS/FILES deleted file mode 100644 index ee6f7057f7..0000000000 --- a/src/TKMeshVS/FILES +++ /dev/null @@ -1 +0,0 @@ -EXTERNLIB diff --git a/src/TKMeshVS/PACKAGES b/src/TKMeshVS/PACKAGES deleted file mode 100755 index 3defdea371..0000000000 --- a/src/TKMeshVS/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -MeshVS diff --git a/src/TKOffset/EXTERNLIB b/src/TKOffset/EXTERNLIB deleted file mode 100755 index 31a93d13cd..0000000000 --- a/src/TKOffset/EXTERNLIB +++ /dev/null @@ -1,13 +0,0 @@ -TKFillet -TKBRep -TKTopAlgo -TKMath -TKernel -TKGeomBase -TKG2d -TKG3d -TKGeomAlgo -TKShHealing -TKBO -TKPrim -TKBool diff --git a/src/TKOffset/FILES b/src/TKOffset/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKOffset/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKOffset/PACKAGES b/src/TKOffset/PACKAGES deleted file mode 100755 index ab26cbff29..0000000000 --- a/src/TKOffset/PACKAGES +++ /dev/null @@ -1,4 +0,0 @@ -BRepOffsetAPI -Draft -BRepOffset -BiTgte diff --git a/src/TKOpenGl/EXTERNLIB b/src/TKOpenGl/EXTERNLIB deleted file mode 100755 index 5e298d1ea5..0000000000 --- a/src/TKOpenGl/EXTERNLIB +++ /dev/null @@ -1,11 +0,0 @@ -TKernel -TKService -TKMath -CSF_TBB -CSF_OpenGlLibs -CSF_user32 -CSF_gdi32 -CSF_XwLibs -CSF_Appkit -CSF_IOKit -CSF_objc diff --git a/src/TKOpenGl/FILES b/src/TKOpenGl/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKOpenGl/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKOpenGl/PACKAGES b/src/TKOpenGl/PACKAGES deleted file mode 100755 index e74d337489..0000000000 --- a/src/TKOpenGl/PACKAGES +++ /dev/null @@ -1,2 +0,0 @@ -OpenGl -Textures diff --git a/src/TKOpenGlTest/EXTERNLIB b/src/TKOpenGlTest/EXTERNLIB deleted file mode 100644 index 9781d8119f..0000000000 --- a/src/TKOpenGlTest/EXTERNLIB +++ /dev/null @@ -1,8 +0,0 @@ -TKernel -TKMath -TKDraw -TKOpenGl -TKService -TKV3d -TKViewerTest -CSF_OpenGlLibs diff --git a/src/TKOpenGlTest/FILES b/src/TKOpenGlTest/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKOpenGlTest/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKOpenGlTest/PACKAGES b/src/TKOpenGlTest/PACKAGES deleted file mode 100644 index 4df696d9e3..0000000000 --- a/src/TKOpenGlTest/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -OpenGlTest diff --git a/src/TKOpenGles/EXTERNLIB b/src/TKOpenGles/EXTERNLIB deleted file mode 100644 index 431d1dbeb4..0000000000 --- a/src/TKOpenGles/EXTERNLIB +++ /dev/null @@ -1,12 +0,0 @@ -TKernel -TKService -TKMath -CSF_TBB -CSF_FREETYPE -CSF_OpenGlesLibs -CSF_user32 -CSF_gdi32 -CSF_XwLibs -CSF_Appkit -CSF_IOKit -CSF_objc diff --git a/src/TKOpenGles/FILES b/src/TKOpenGles/FILES deleted file mode 100644 index b635bba4eb..0000000000 --- a/src/TKOpenGles/FILES +++ /dev/null @@ -1,3 +0,0 @@ -DEFINES -EXTERNLIB -PACKAGES diff --git a/src/TKOpenGles/PACKAGES b/src/TKOpenGles/PACKAGES deleted file mode 100644 index ba040129b2..0000000000 --- a/src/TKOpenGles/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -OpenGl diff --git a/src/TKOpenGlesTest/EXTERNLIB b/src/TKOpenGlesTest/EXTERNLIB deleted file mode 100644 index 875d0a6066..0000000000 --- a/src/TKOpenGlesTest/EXTERNLIB +++ /dev/null @@ -1,8 +0,0 @@ -TKernel -TKMath -TKDraw -TKOpenGles -TKService -TKV3d -TKViewerTest -CSF_OpenGlesLibs diff --git a/src/TKOpenGlesTest/FILES b/src/TKOpenGlesTest/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKOpenGlesTest/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKOpenGlesTest/PACKAGES b/src/TKOpenGlesTest/PACKAGES deleted file mode 100644 index 4df696d9e3..0000000000 --- a/src/TKOpenGlesTest/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -OpenGlTest diff --git a/src/TKPrim/EXTERNLIB b/src/TKPrim/EXTERNLIB deleted file mode 100755 index 00cb46613f..0000000000 --- a/src/TKPrim/EXTERNLIB +++ /dev/null @@ -1,7 +0,0 @@ -TKBRep -TKernel -TKMath -TKG2d -TKGeomBase -TKG3d -TKTopAlgo diff --git a/src/TKPrim/FILES b/src/TKPrim/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKPrim/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKPrim/PACKAGES b/src/TKPrim/PACKAGES deleted file mode 100755 index fe00c4cabb..0000000000 --- a/src/TKPrim/PACKAGES +++ /dev/null @@ -1,5 +0,0 @@ -BRepPrim -BRepSweep -Sweep -BRepPreviewAPI -BRepPrimAPI diff --git a/src/TKQADraw/EXTERNLIB b/src/TKQADraw/EXTERNLIB deleted file mode 100755 index a0883662c9..0000000000 --- a/src/TKQADraw/EXTERNLIB +++ /dev/null @@ -1,45 +0,0 @@ -TKBRep -TKMath -TKernel -TKService -TKG2d -TKDraw -TKV3d -TKGeomBase -TKG3d -TKViewerTest -TKCDF -TKDCAF -TKLCAF -TKFillet -TKTopAlgo -TKHLR -TKBool -TKGeomAlgo -TKPrim -TKBO -TKShHealing -TKOffset -TKFeat -TKCAF -TKVCAF -TKDEIGES -TKXSBase -TKMesh -TKXCAF -TKBinXCAF -TKDESTEP -TKXSDRAW -TKDESTL -TKXml -TKTObj -TKXmlL -TKBin -TKBinL -TKStd -TKStdL -TKExpress -CSF_gdi32 -CSF_advapi32 -CSF_user32 -CSF_TBB diff --git a/src/TKQADraw/FILES b/src/TKQADraw/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKQADraw/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKQADraw/PACKAGES b/src/TKQADraw/PACKAGES deleted file mode 100755 index c18d1ea793..0000000000 --- a/src/TKQADraw/PACKAGES +++ /dev/null @@ -1,4 +0,0 @@ -QABugs -QADNaming -QADraw -QANCollection \ No newline at end of file diff --git a/src/TKRWMesh/EXTERNLIB b/src/TKRWMesh/EXTERNLIB deleted file mode 100644 index 25c3c63800..0000000000 --- a/src/TKRWMesh/EXTERNLIB +++ /dev/null @@ -1,12 +0,0 @@ -TKernel -TKMath -TKMesh -TKXCAF -TKLCAF -TKV3d -TKBRep -TKG3d -TKDE -TKService -CSF_RapidJSON -CSF_Draco diff --git a/src/TKRWMesh/FILES b/src/TKRWMesh/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKRWMesh/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKRWMesh/PACKAGES b/src/TKRWMesh/PACKAGES deleted file mode 100644 index 9330e3e37b..0000000000 --- a/src/TKRWMesh/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -RWMesh diff --git a/src/TKService/EXTERNLIB b/src/TKService/EXTERNLIB deleted file mode 100755 index 765caf7f93..0000000000 --- a/src/TKService/EXTERNLIB +++ /dev/null @@ -1,18 +0,0 @@ -TKernel -TKMath -CSF_user32 -CSF_advapi32 -CSF_OpenVR -CSF_advapi32 -CSF_user32 -CSF_XwLibs -CSF_dpsLibs -CSF_XmuLibs -CSF_fontconfig -CSF_objc -CSF_Appkit -CSF_IOKit -CSF_FreeImagePlus -CSF_FREETYPE -CSF_FFmpeg -CSF_winmm diff --git a/src/TKService/FILES b/src/TKService/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKService/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKService/PACKAGES b/src/TKService/PACKAGES deleted file mode 100755 index 71e4542927..0000000000 --- a/src/TKService/PACKAGES +++ /dev/null @@ -1,10 +0,0 @@ -Aspect -Graphic3d -Xw -Image -Media -Wasm -WNT -Cocoa -Font -Shaders diff --git a/src/TKShHealing/EXTERNLIB b/src/TKShHealing/EXTERNLIB deleted file mode 100755 index a3cf98871b..0000000000 --- a/src/TKShHealing/EXTERNLIB +++ /dev/null @@ -1,9 +0,0 @@ -TKBRep -TKernel -TKMath -TKG2d -TKTopAlgo -TKG3d -TKGeomBase -TKGeomAlgo -CSF_wsock32 diff --git a/src/TKShHealing/FILES b/src/TKShHealing/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKShHealing/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKShHealing/PACKAGES b/src/TKShHealing/PACKAGES deleted file mode 100755 index db1adf8833..0000000000 --- a/src/TKShHealing/PACKAGES +++ /dev/null @@ -1,11 +0,0 @@ -ShapeBuild -ShapeExtend -ShapeConstruct -ShapeCustom -ShapeAnalysis -ShapeFix -ShapeUpgrade -ShapeAlgo -ShapeProcess -ShapeProcessAPI -SHMessage diff --git a/src/TKStd/EXTERNLIB b/src/TKStd/EXTERNLIB deleted file mode 100644 index 605da78e45..0000000000 --- a/src/TKStd/EXTERNLIB +++ /dev/null @@ -1,9 +0,0 @@ -TKernel -TKCDF -TKCAF -TKLCAF -TKBRep -TKMath -TKG2d -TKG3d -TKStdL diff --git a/src/TKStd/FILES b/src/TKStd/FILES deleted file mode 100644 index c999897bf1..0000000000 --- a/src/TKStd/FILES +++ /dev/null @@ -1,2 +0,0 @@ -PACKAGES -EXTERNLIB diff --git a/src/TKStd/PACKAGES b/src/TKStd/PACKAGES deleted file mode 100644 index 3ed85f7d5d..0000000000 --- a/src/TKStd/PACKAGES +++ /dev/null @@ -1,5 +0,0 @@ -StdDrivers -StdObject -StdPersistent -StdStorage -ShapePersistent diff --git a/src/TKStdL/EXTERNLIB b/src/TKStdL/EXTERNLIB deleted file mode 100644 index cd1b434a34..0000000000 --- a/src/TKStdL/EXTERNLIB +++ /dev/null @@ -1,3 +0,0 @@ -TKernel -TKCDF -TKLCAF diff --git a/src/TKStdL/FILES b/src/TKStdL/FILES deleted file mode 100644 index c999897bf1..0000000000 --- a/src/TKStdL/FILES +++ /dev/null @@ -1,2 +0,0 @@ -PACKAGES -EXTERNLIB diff --git a/src/TKStdL/PACKAGES b/src/TKStdL/PACKAGES deleted file mode 100644 index 893f13689c..0000000000 --- a/src/TKStdL/PACKAGES +++ /dev/null @@ -1,3 +0,0 @@ -StdLDrivers -StdLPersistent -StdObjMgt diff --git a/src/TKTObj/EXTERNLIB b/src/TKTObj/EXTERNLIB deleted file mode 100755 index 1f4bc90e06..0000000000 --- a/src/TKTObj/EXTERNLIB +++ /dev/null @@ -1,4 +0,0 @@ -TKCDF -TKernel -TKMath -TKLCAF diff --git a/src/TKTObj/FILES b/src/TKTObj/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKTObj/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKTObj/PACKAGES b/src/TKTObj/PACKAGES deleted file mode 100755 index 838502e888..0000000000 --- a/src/TKTObj/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -TObj diff --git a/src/TKTObjDRAW/EXTERNLIB b/src/TKTObjDRAW/EXTERNLIB deleted file mode 100755 index 0ca6745859..0000000000 --- a/src/TKTObjDRAW/EXTERNLIB +++ /dev/null @@ -1,9 +0,0 @@ -TKernel -TKCDF -TKLCAF -TKTObj -TKMath -TKDraw -TKDCAF -TKBinTObj -TKXmlTObj diff --git a/src/TKTObjDRAW/FILES b/src/TKTObjDRAW/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKTObjDRAW/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKTObjDRAW/PACKAGES b/src/TKTObjDRAW/PACKAGES deleted file mode 100755 index 9879cef25e..0000000000 --- a/src/TKTObjDRAW/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -TObjDRAW diff --git a/src/TKTopAlgo/EXTERNLIB b/src/TKTopAlgo/EXTERNLIB deleted file mode 100755 index 238075ad2b..0000000000 --- a/src/TKTopAlgo/EXTERNLIB +++ /dev/null @@ -1,8 +0,0 @@ -TKMath -TKernel -TKG2d -TKG3d -TKGeomBase -TKBRep -TKGeomAlgo -CSF_TBB diff --git a/src/TKTopAlgo/FILES b/src/TKTopAlgo/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKTopAlgo/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKTopAlgo/PACKAGES b/src/TKTopAlgo/PACKAGES deleted file mode 100755 index 2f6d02a0eb..0000000000 --- a/src/TKTopAlgo/PACKAGES +++ /dev/null @@ -1,16 +0,0 @@ -IntCurvesFace -MAT -MAT2d -Bisector -BRepMAT2d -BRepCheck -BRepBndLib -BRepExtrema -BRepClass -BRepClass3d -BRepLib -BRepGProp -BRepIntCurveSurface -BRepTopAdaptor -BRepBuilderAPI -BRepApprox diff --git a/src/TKTopTest/EXTERNLIB b/src/TKTopTest/EXTERNLIB deleted file mode 100644 index 7edc95ffb4..0000000000 --- a/src/TKTopTest/EXTERNLIB +++ /dev/null @@ -1,20 +0,0 @@ -TKBRep -TKGeomAlgo -TKTopAlgo -TKernel -TKMath -TKBO -TKG2d -TKG3d -TKDraw -TKHLR -TKGeomBase -TKMesh -TKService -TKV3d -TKFillet -TKPrim -TKBool -TKOffset -TKFeat -TKShHealing diff --git a/src/TKTopTest/FILES b/src/TKTopTest/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKTopTest/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKTopTest/PACKAGES b/src/TKTopTest/PACKAGES deleted file mode 100755 index 90d24dd3c7..0000000000 --- a/src/TKTopTest/PACKAGES +++ /dev/null @@ -1,8 +0,0 @@ -BRepTest -GeometryTest -HLRTest -MeshTest -GeomliteTest -DrawFairCurve -BOPTest -SWDRAW diff --git a/src/TKV3d/EXTERNLIB b/src/TKV3d/EXTERNLIB deleted file mode 100755 index b69c57cf51..0000000000 --- a/src/TKV3d/EXTERNLIB +++ /dev/null @@ -1,16 +0,0 @@ -TKBRep -TKMath -TKernel -TKService -TKShHealing -TKTopAlgo -TKG2d -TKG3d -TKGeomBase -TKMesh -TKGeomAlgo -TKHLR -CSF_user32 -CSF_gdi32 -CSF_FREETYPE -CSF_TBB diff --git a/src/TKV3d/FILES b/src/TKV3d/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKV3d/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKV3d/PACKAGES b/src/TKV3d/PACKAGES deleted file mode 100755 index 904ab32610..0000000000 --- a/src/TKV3d/PACKAGES +++ /dev/null @@ -1,11 +0,0 @@ -V3d -Select3D -Prs3d -StdPrs -SelectBasics -SelectMgr -PrsMgr -AIS -StdSelect -DsgPrs -PrsDim diff --git a/src/TKVCAF/EXTERNLIB b/src/TKVCAF/EXTERNLIB deleted file mode 100644 index 593952685b..0000000000 --- a/src/TKVCAF/EXTERNLIB +++ /dev/null @@ -1,13 +0,0 @@ -TKernel -TKGeomBase -TKBRep -TKTopAlgo -TKMath -TKService -TKG2d -TKG3d -TKCDF -TKLCAF -TKBO -TKCAF -TKV3d diff --git a/src/TKVCAF/FILES b/src/TKVCAF/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKVCAF/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKVCAF/PACKAGES b/src/TKVCAF/PACKAGES deleted file mode 100644 index 7acb218afa..0000000000 --- a/src/TKVCAF/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -TPrsStd diff --git a/src/TKViewerTest/EXTERNLIB b/src/TKViewerTest/EXTERNLIB deleted file mode 100755 index 56c9446045..0000000000 --- a/src/TKViewerTest/EXTERNLIB +++ /dev/null @@ -1,27 +0,0 @@ -TKGeomBase -TKFillet -TKBRep -TKTopAlgo -TKHLR -TKernel -TKMath -TKService -TKShHealing -TKBool -TKPrim -TKGeomAlgo -TKG2d -TKTopTest -TKG3d -TKOffset -TKMesh -TKV3d -TKDraw -CSF_TclLibs -CSF_XwLibs -CSF_user32 -CSF_gdi32 -CSF_objc -CSF_Appkit -CSF_IOKit -CSF_FREETYPE diff --git a/src/TKViewerTest/FILES b/src/TKViewerTest/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKViewerTest/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKViewerTest/PACKAGES b/src/TKViewerTest/PACKAGES deleted file mode 100755 index 6d361bb0ee..0000000000 --- a/src/TKViewerTest/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -ViewerTest diff --git a/src/TKXCAF/EXTERNLIB b/src/TKXCAF/EXTERNLIB deleted file mode 100755 index b23eb5c108..0000000000 --- a/src/TKXCAF/EXTERNLIB +++ /dev/null @@ -1,12 +0,0 @@ -TKBRep -TKernel -TKMath -TKService -TKG2d -TKTopAlgo -TKV3d -TKCDF -TKLCAF -TKG3d -TKCAF -TKVCAF diff --git a/src/TKXCAF/FILES b/src/TKXCAF/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKXCAF/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKXCAF/PACKAGES b/src/TKXCAF/PACKAGES deleted file mode 100755 index 740c0b62d1..0000000000 --- a/src/TKXCAF/PACKAGES +++ /dev/null @@ -1,6 +0,0 @@ -XCAFApp -XCAFDimTolObjects -XCAFNoteObjects -XCAFDoc -XCAFPrs -XCAFView diff --git a/src/TKXDEDRAW/EXTERNLIB b/src/TKXDEDRAW/EXTERNLIB deleted file mode 100755 index 40fafb07a6..0000000000 --- a/src/TKXDEDRAW/EXTERNLIB +++ /dev/null @@ -1,32 +0,0 @@ -TKDE -TKCDF -TKBRep -TKXCAF -TKernel -TKV3d -TKMath -TKService -TKXSBase -TKG2d -TKCAF -TKVCAF -TKDraw -TKTopAlgo -TKLCAF -TKG3d -TKRWMesh -TKDEOBJ -TKDEGLTF -TKDEPLY -TKDESTL -TKMesh -TKXSDRAW -TKDECascade -TKDEIGES -TKDESTEP -TKDCAF -TKViewerTest -TKBinXCAF -TKXmlXCAF -TKDEVRML - diff --git a/src/TKXDEDRAW/FILES b/src/TKXDEDRAW/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKXDEDRAW/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKXDEDRAW/PACKAGES b/src/TKXDEDRAW/PACKAGES deleted file mode 100755 index 4423bad268..0000000000 --- a/src/TKXDEDRAW/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -XDEDRAW diff --git a/src/TKXMesh/EXTERNLIB b/src/TKXMesh/EXTERNLIB deleted file mode 100644 index c7ed54b08b..0000000000 --- a/src/TKXMesh/EXTERNLIB +++ /dev/null @@ -1,6 +0,0 @@ -TKBRep -TKMath -TKernel -TKG2d -TKG3d -TKMesh diff --git a/src/TKXMesh/FILES b/src/TKXMesh/FILES deleted file mode 100644 index ee6f7057f7..0000000000 --- a/src/TKXMesh/FILES +++ /dev/null @@ -1 +0,0 @@ -EXTERNLIB diff --git a/src/TKXMesh/PACKAGES b/src/TKXMesh/PACKAGES deleted file mode 100755 index c6803ea99e..0000000000 --- a/src/TKXMesh/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -XBRepMesh diff --git a/src/TKXSBase/EXTERNLIB b/src/TKXSBase/EXTERNLIB deleted file mode 100755 index 69976d2ca0..0000000000 --- a/src/TKXSBase/EXTERNLIB +++ /dev/null @@ -1,8 +0,0 @@ -TKBRep -TKernel -TKMath -TKG2d -TKG3d -TKTopAlgo -TKGeomBase -TKShHealing diff --git a/src/TKXSBase/FILES b/src/TKXSBase/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKXSBase/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKXSBase/PACKAGES b/src/TKXSBase/PACKAGES deleted file mode 100755 index 29d77c70cd..0000000000 --- a/src/TKXSBase/PACKAGES +++ /dev/null @@ -1,10 +0,0 @@ -Interface -Transfer -IFGraph -IFSelect -TransferBRep -XSControl -XSAlgo -LibCtl -MoniTool -XSMessage diff --git a/src/TKXSDRAW/EXTERNLIB b/src/TKXSDRAW/EXTERNLIB deleted file mode 100755 index 8b32e63548..0000000000 --- a/src/TKXSDRAW/EXTERNLIB +++ /dev/null @@ -1,18 +0,0 @@ -TKBRep -TKV3d -TKMath -TKernel -TKService -TKXSBase -TKMeshVS -TKG3d -TKViewerTest -TKG2d -TKTopAlgo -TKGeomBase -TKGeomAlgo -TKMesh -TKDraw -TKLCAF -TKDCAF -TKXCAF diff --git a/src/TKXSDRAW/FILES b/src/TKXSDRAW/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKXSDRAW/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKXSDRAW/PACKAGES b/src/TKXSDRAW/PACKAGES deleted file mode 100755 index c06294d598..0000000000 --- a/src/TKXSDRAW/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -XSDRAW diff --git a/src/TKXSDRAWDE/EXTERNLIB b/src/TKXSDRAWDE/EXTERNLIB deleted file mode 100644 index 41bc48726b..0000000000 --- a/src/TKXSDRAWDE/EXTERNLIB +++ /dev/null @@ -1,23 +0,0 @@ -TKBRep -TKV3d -TKMath -TKernel -TKService -TKXSBase -TKMeshVS -TKG3d -TKViewerTest -TKG2d -TKTopAlgo -TKGeomBase -TKGeomAlgo -TKMesh -TKDraw -TKLCAF -TKDCAF -TKXCAF -TKRWMesh -TKXSBase -TKDECascade -TKDE -TKXSDRAW diff --git a/src/TKXSDRAWDE/FILES b/src/TKXSDRAWDE/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKXSDRAWDE/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKXSDRAWDE/PACKAGES b/src/TKXSDRAWDE/PACKAGES deleted file mode 100644 index e7bb61be33..0000000000 --- a/src/TKXSDRAWDE/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -XSDRAWDE diff --git a/src/TKXSDRAWGLTF/EXTERNLIB b/src/TKXSDRAWGLTF/EXTERNLIB deleted file mode 100644 index 35dfecf97c..0000000000 --- a/src/TKXSDRAWGLTF/EXTERNLIB +++ /dev/null @@ -1,21 +0,0 @@ -TKBRep -TKV3d -TKMath -TKernel -TKService -TKXSBase -TKMeshVS -TKG3d -TKViewerTest -TKG2d -TKTopAlgo -TKGeomBase -TKGeomAlgo -TKMesh -TKDraw -TKLCAF -TKDCAF -TKXCAF -TKRWMesh -TKDEGLTF -TKXSDRAW diff --git a/src/TKXSDRAWGLTF/FILES b/src/TKXSDRAWGLTF/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKXSDRAWGLTF/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKXSDRAWGLTF/PACKAGES b/src/TKXSDRAWGLTF/PACKAGES deleted file mode 100644 index 2d0b09ae11..0000000000 --- a/src/TKXSDRAWGLTF/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -XSDRAWGLTF diff --git a/src/TKXSDRAWIGES/EXTERNLIB b/src/TKXSDRAWIGES/EXTERNLIB deleted file mode 100644 index 2051a8f40f..0000000000 --- a/src/TKXSDRAWIGES/EXTERNLIB +++ /dev/null @@ -1,21 +0,0 @@ -TKBRep -TKV3d -TKMath -TKernel -TKService -TKXSBase -TKMeshVS -TKG3d -TKViewerTest -TKG2d -TKTopAlgo -TKGeomBase -TKGeomAlgo -TKMesh -TKDraw -TKLCAF -TKDCAF -TKXCAF -TKXSBase -TKDEIGES -TKXSDRAW diff --git a/src/TKXSDRAWIGES/FILES b/src/TKXSDRAWIGES/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKXSDRAWIGES/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKXSDRAWIGES/PACKAGES b/src/TKXSDRAWIGES/PACKAGES deleted file mode 100644 index bf6073a6f6..0000000000 --- a/src/TKXSDRAWIGES/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -XSDRAWIGES diff --git a/src/TKXSDRAWOBJ/EXTERNLIB b/src/TKXSDRAWOBJ/EXTERNLIB deleted file mode 100644 index af99e484fc..0000000000 --- a/src/TKXSDRAWOBJ/EXTERNLIB +++ /dev/null @@ -1,21 +0,0 @@ -TKBRep -TKV3d -TKMath -TKernel -TKService -TKXSBase -TKMeshVS -TKG3d -TKViewerTest -TKG2d -TKTopAlgo -TKGeomBase -TKGeomAlgo -TKMesh -TKDraw -TKLCAF -TKDCAF -TKXCAF -TKRWMesh -TKDEOBJ -TKXSDRAW diff --git a/src/TKXSDRAWOBJ/FILES b/src/TKXSDRAWOBJ/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKXSDRAWOBJ/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKXSDRAWOBJ/PACKAGES b/src/TKXSDRAWOBJ/PACKAGES deleted file mode 100644 index 2f48af3a9f..0000000000 --- a/src/TKXSDRAWOBJ/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -XSDRAWOBJ diff --git a/src/TKXSDRAWPLY/EXTERNLIB b/src/TKXSDRAWPLY/EXTERNLIB deleted file mode 100644 index 7f5611cb36..0000000000 --- a/src/TKXSDRAWPLY/EXTERNLIB +++ /dev/null @@ -1,21 +0,0 @@ -TKBRep -TKV3d -TKMath -TKernel -TKService -TKXSBase -TKMeshVS -TKG3d -TKViewerTest -TKG2d -TKTopAlgo -TKGeomBase -TKGeomAlgo -TKMesh -TKDraw -TKLCAF -TKDCAF -TKXCAF -TKRWMesh -TKDEPLY -TKXSDRAW diff --git a/src/TKXSDRAWPLY/FILES b/src/TKXSDRAWPLY/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKXSDRAWPLY/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKXSDRAWPLY/PACKAGES b/src/TKXSDRAWPLY/PACKAGES deleted file mode 100644 index e62ce608cf..0000000000 --- a/src/TKXSDRAWPLY/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -XSDRAWPLY diff --git a/src/TKXSDRAWSTEP/EXTERNLIB b/src/TKXSDRAWSTEP/EXTERNLIB deleted file mode 100644 index 5cc664ff6c..0000000000 --- a/src/TKXSDRAWSTEP/EXTERNLIB +++ /dev/null @@ -1,22 +0,0 @@ -TKBRep -TKV3d -TKMath -TKernel -TKService -TKXSBase -TKMeshVS -TKG3d -TKViewerTest -TKG2d -TKTopAlgo -TKGeomBase -TKGeomAlgo -TKMesh -TKDraw -TKLCAF -TKDCAF -TKXCAF -TKRWMesh -TKXSBase -TKDESTEP -TKXSDRAW diff --git a/src/TKXSDRAWSTEP/FILES b/src/TKXSDRAWSTEP/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKXSDRAWSTEP/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKXSDRAWSTEP/PACKAGES b/src/TKXSDRAWSTEP/PACKAGES deleted file mode 100644 index 33b99297d1..0000000000 --- a/src/TKXSDRAWSTEP/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -XSDRAWSTEP diff --git a/src/TKXSDRAWSTL/EXTERNLIB b/src/TKXSDRAWSTL/EXTERNLIB deleted file mode 100644 index 45138ed058..0000000000 --- a/src/TKXSDRAWSTL/EXTERNLIB +++ /dev/null @@ -1,21 +0,0 @@ -TKBRep -TKV3d -TKMath -TKernel -TKService -TKXSBase -TKMeshVS -TKG3d -TKViewerTest -TKG2d -TKTopAlgo -TKGeomBase -TKGeomAlgo -TKMesh -TKDraw -TKLCAF -TKDCAF -TKXCAF -TKRWMesh -TKDESTL -TKXSDRAW diff --git a/src/TKXSDRAWSTL/FILES b/src/TKXSDRAWSTL/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKXSDRAWSTL/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKXSDRAWSTL/PACKAGES b/src/TKXSDRAWSTL/PACKAGES deleted file mode 100644 index c6c1f752ee..0000000000 --- a/src/TKXSDRAWSTL/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -XSDRAWSTL diff --git a/src/TKXSDRAWVRML/EXTERNLIB b/src/TKXSDRAWVRML/EXTERNLIB deleted file mode 100644 index 81bcd9f89d..0000000000 --- a/src/TKXSDRAWVRML/EXTERNLIB +++ /dev/null @@ -1,21 +0,0 @@ -TKBRep -TKV3d -TKMath -TKernel -TKService -TKXSBase -TKMeshVS -TKG3d -TKViewerTest -TKG2d -TKTopAlgo -TKGeomBase -TKGeomAlgo -TKMesh -TKDraw -TKLCAF -TKDCAF -TKXCAF -TKRWMesh -TKDEVRML -TKXSDRAW diff --git a/src/TKXSDRAWVRML/FILES b/src/TKXSDRAWVRML/FILES deleted file mode 100644 index ca4f0e567b..0000000000 --- a/src/TKXSDRAWVRML/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKXSDRAWVRML/PACKAGES b/src/TKXSDRAWVRML/PACKAGES deleted file mode 100644 index d0fc037807..0000000000 --- a/src/TKXSDRAWVRML/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -XSDRAWVRML diff --git a/src/TKXml/EXTERNLIB b/src/TKXml/EXTERNLIB deleted file mode 100755 index 02c5575dc4..0000000000 --- a/src/TKXml/EXTERNLIB +++ /dev/null @@ -1,10 +0,0 @@ -TKCDF -TKernel -TKMath -TKBRep -TKG2d -TKGeomBase -TKG3d -TKLCAF -TKCAF -TKXmlL diff --git a/src/TKXml/FILES b/src/TKXml/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKXml/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKXml/PACKAGES b/src/TKXml/PACKAGES deleted file mode 100755 index be38b360a3..0000000000 --- a/src/TKXml/PACKAGES +++ /dev/null @@ -1,3 +0,0 @@ -XmlDrivers -XmlMDataXtd -XmlMNaming diff --git a/src/TKXmlL/EXTERNLIB b/src/TKXmlL/EXTERNLIB deleted file mode 100755 index 1f4bc90e06..0000000000 --- a/src/TKXmlL/EXTERNLIB +++ /dev/null @@ -1,4 +0,0 @@ -TKCDF -TKernel -TKMath -TKLCAF diff --git a/src/TKXmlL/FILES b/src/TKXmlL/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKXmlL/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKXmlL/PACKAGES b/src/TKXmlL/PACKAGES deleted file mode 100755 index 0ce872bb3d..0000000000 --- a/src/TKXmlL/PACKAGES +++ /dev/null @@ -1,6 +0,0 @@ -XmlLDrivers -XmlMDF -XmlMDataStd -XmlMDocStd -XmlMFunction -XmlObjMgt diff --git a/src/TKXmlTObj/EXTERNLIB b/src/TKXmlTObj/EXTERNLIB deleted file mode 100755 index b78e605b1c..0000000000 --- a/src/TKXmlTObj/EXTERNLIB +++ /dev/null @@ -1,6 +0,0 @@ -TKCDF -TKernel -TKTObj -TKMath -TKLCAF -TKXmlL diff --git a/src/TKXmlTObj/FILES b/src/TKXmlTObj/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKXmlTObj/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKXmlTObj/PACKAGES b/src/TKXmlTObj/PACKAGES deleted file mode 100755 index 1a3fb4d27b..0000000000 --- a/src/TKXmlTObj/PACKAGES +++ /dev/null @@ -1 +0,0 @@ -XmlTObjDrivers diff --git a/src/TKXmlXCAF/EXTERNLIB b/src/TKXmlXCAF/EXTERNLIB deleted file mode 100755 index b1c7c70d17..0000000000 --- a/src/TKXmlXCAF/EXTERNLIB +++ /dev/null @@ -1,13 +0,0 @@ -TKXmlL -TKBRep -TKCDF -TKMath -TKernel -TKService -TKG2d -TKGeomBase -TKCAF -TKG3d -TKLCAF -TKXCAF -TKXml diff --git a/src/TKXmlXCAF/FILES b/src/TKXmlXCAF/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKXmlXCAF/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKXmlXCAF/PACKAGES b/src/TKXmlXCAF/PACKAGES deleted file mode 100755 index 98034fa255..0000000000 --- a/src/TKXmlXCAF/PACKAGES +++ /dev/null @@ -1,2 +0,0 @@ -XmlXCAFDrivers -XmlMXCAFDoc diff --git a/src/TKernel/EXTERNLIB b/src/TKernel/EXTERNLIB deleted file mode 100755 index 1c9d77f47f..0000000000 --- a/src/TKernel/EXTERNLIB +++ /dev/null @@ -1,10 +0,0 @@ -CSF_ThreadLibs -CSF_advapi32 -CSF_gdi32 -CSF_user32 -CSF_TBB -CSF_dl -CSF_wsock32 -CSF_psapi -CSF_androidlog -CSF_MMGR diff --git a/src/TKernel/FILES b/src/TKernel/FILES deleted file mode 100755 index ca4f0e567b..0000000000 --- a/src/TKernel/FILES +++ /dev/null @@ -1,2 +0,0 @@ -EXTERNLIB -PACKAGES diff --git a/src/TKernel/PACKAGES b/src/TKernel/PACKAGES deleted file mode 100755 index dc1345f45a..0000000000 --- a/src/TKernel/PACKAGES +++ /dev/null @@ -1,18 +0,0 @@ -FSD -OSD -Plugin -Quantity -Resource -Standard -StdFail -Storage -TColStd -TCollection -TShort -Units -UnitsAPI -UnitsMethods -NCollection -Message -FlexLexer -Precision diff --git a/src/TNaming/FILES b/src/TNaming/FILES deleted file mode 100644 index f81ec9c88c..0000000000 --- a/src/TNaming/FILES +++ /dev/null @@ -1,68 +0,0 @@ -TNaming.cxx -TNaming.hxx -TNaming_Builder.hxx -TNaming_CopyShape.cxx -TNaming_CopyShape.hxx -TNaming_DataMapIteratorOfDataMapOfShapePtrRefShape.hxx -TNaming_DataMapIteratorOfDataMapOfShapeShapesSet.hxx -TNaming_DataMapOfShapePtrRefShape.hxx -TNaming_DataMapOfShapeShapesSet.hxx -TNaming_DeltaOnModification.cxx -TNaming_DeltaOnModification.hxx -TNaming_DeltaOnRemoval.cxx -TNaming_DeltaOnRemoval.hxx -TNaming_Evolution.hxx -TNaming_Identifier.cxx -TNaming_Identifier.hxx -TNaming_Iterator.hxx -TNaming_Iterator.lxx -TNaming_IteratorOnShapesSet.hxx -TNaming_IteratorOnShapesSet.lxx -TNaming_ListIteratorOfListOfIndexedDataMapOfShapeListOfShape.hxx -TNaming_ListIteratorOfListOfMapOfShape.hxx -TNaming_ListIteratorOfListOfNamedShape.hxx -TNaming_ListOfIndexedDataMapOfShapeListOfShape.hxx -TNaming_ListOfMapOfShape.hxx -TNaming_ListOfNamedShape.hxx -TNaming_Localizer.cxx -TNaming_Localizer.hxx -TNaming_MapIteratorOfMapOfNamedShape.hxx -TNaming_MapOfNamedShape.hxx -TNaming_Name.cxx -TNaming_Name.hxx -TNaming_NamedShape.cxx -TNaming_NamedShape.hxx -TNaming_NamedShape.lxx -TNaming_NameType.hxx -TNaming_Naming.cxx -TNaming_Naming.hxx -TNaming_NamingTool.cxx -TNaming_NamingTool.hxx -TNaming_NCollections.hxx -TNaming_NewShapeIterator.hxx -TNaming_NewShapeIterator.lxx -TNaming_OldShapeIterator.hxx -TNaming_OldShapeIterator.lxx -TNaming_PtrAttribute.hxx -TNaming_PtrNode.hxx -TNaming_PtrRefShape.hxx -TNaming_RefShape.hxx -TNaming_RefShape.lxx -TNaming_SameShapeIterator.hxx -TNaming_SameShapeIterator.lxx -TNaming_Scope.cxx -TNaming_Scope.hxx -TNaming_Selector.cxx -TNaming_Selector.hxx -TNaming_ShapesSet.cxx -TNaming_ShapesSet.hxx -TNaming_ShapesSet.lxx -TNaming_Tool.cxx -TNaming_Tool.hxx -TNaming_TranslateTool.cxx -TNaming_TranslateTool.hxx -TNaming_Translator.cxx -TNaming_Translator.hxx -TNaming_UsedShapes.cxx -TNaming_UsedShapes.hxx -TNaming_UsedShapes.lxx diff --git a/src/TObj/FILES b/src/TObj/FILES deleted file mode 100755 index fa2c25ee38..0000000000 --- a/src/TObj/FILES +++ /dev/null @@ -1,45 +0,0 @@ -TObj_Application.cxx -TObj_Application.hxx -TObj_Assistant.cxx -TObj_Assistant.hxx -TObj_CheckModel.cxx -TObj_CheckModel.hxx -TObj_Container.hxx -TObj_DeletingMode.hxx -TObj_HiddenPartition.cxx -TObj_HiddenPartition.hxx -TObj_LabelIterator.cxx -TObj_LabelIterator.hxx -TObj_Model.cxx -TObj_Model.hxx -TObj_ModelIterator.cxx -TObj_ModelIterator.hxx -TObj_Object.cxx -TObj_Object.hxx -TObj_ObjectIterator.cxx -TObj_ObjectIterator.hxx -TObj_OcafObjectIterator.cxx -TObj_OcafObjectIterator.hxx -TObj_Partition.cxx -TObj_Partition.hxx -TObj_Persistence.cxx -TObj_Persistence.hxx -TObj_ReferenceIterator.cxx -TObj_ReferenceIterator.hxx -TObj_SequenceIterator.cxx -TObj_SequenceIterator.hxx -TObj_SequenceOfIterator.hxx -TObj_SequenceOfObject.hxx -TObj_TIntSparseArray.cxx -TObj_TIntSparseArray.hxx -TObj_TModel.cxx -TObj_TModel.hxx -TObj_TNameContainer.cxx -TObj_TNameContainer.hxx -TObj_TObject.cxx -TObj_TObject.hxx -TObj_TReference.cxx -TObj_TReference.hxx -TObj_TXYZ.cxx -TObj_TXYZ.hxx -TObj_TObj_msg.pxx diff --git a/src/TObjDRAW/FILES b/src/TObjDRAW/FILES deleted file mode 100644 index bbc37cf587..0000000000 --- a/src/TObjDRAW/FILES +++ /dev/null @@ -1,2 +0,0 @@ -TObjDRAW.cxx -TObjDRAW.hxx diff --git a/src/TPrsStd/FILES b/src/TPrsStd/FILES deleted file mode 100755 index 03d27d8481..0000000000 --- a/src/TPrsStd/FILES +++ /dev/null @@ -1,25 +0,0 @@ -GUID.txt -TPrsStd_AISPresentation.cxx -TPrsStd_AISPresentation.hxx -TPrsStd_AISViewer.cxx -TPrsStd_AISViewer.hxx -TPrsStd_AxisDriver.cxx -TPrsStd_AxisDriver.hxx -TPrsStd_ConstraintDriver.cxx -TPrsStd_ConstraintDriver.hxx -TPrsStd_ConstraintTools.cxx -TPrsStd_ConstraintTools.hxx -TPrsStd_DataMapIteratorOfDataMapOfGUIDDriver.hxx -TPrsStd_DataMapOfGUIDDriver.hxx -TPrsStd_Driver.cxx -TPrsStd_Driver.hxx -TPrsStd_DriverTable.cxx -TPrsStd_DriverTable.hxx -TPrsStd_GeometryDriver.cxx -TPrsStd_GeometryDriver.hxx -TPrsStd_NamedShapeDriver.cxx -TPrsStd_NamedShapeDriver.hxx -TPrsStd_PlaneDriver.cxx -TPrsStd_PlaneDriver.hxx -TPrsStd_PointDriver.cxx -TPrsStd_PointDriver.hxx diff --git a/src/TShort/FILES b/src/TShort/FILES deleted file mode 100644 index 042df39488..0000000000 --- a/src/TShort/FILES +++ /dev/null @@ -1,6 +0,0 @@ -TShort_Array1OfShortReal.hxx -TShort_Array2OfShortReal.hxx -TShort_HArray1OfShortReal.hxx -TShort_HArray2OfShortReal.hxx -TShort_HSequenceOfShortReal.hxx -TShort_SequenceOfShortReal.hxx diff --git a/src/Textures/FILES b/src/Textures/FILES deleted file mode 100755 index 138c70c21c..0000000000 --- a/src/Textures/FILES +++ /dev/null @@ -1 +0,0 @@ -Textures_EnvLUT.pxx diff --git a/src/TopAbs/FILES b/src/TopAbs/FILES deleted file mode 100644 index 4e9c29733b..0000000000 --- a/src/TopAbs/FILES +++ /dev/null @@ -1,5 +0,0 @@ -TopAbs.cxx -TopAbs.hxx -TopAbs_Orientation.hxx -TopAbs_ShapeEnum.hxx -TopAbs_State.hxx diff --git a/src/TopBas/FILES b/src/TopBas/FILES deleted file mode 100644 index 8a1f985654..0000000000 --- a/src/TopBas/FILES +++ /dev/null @@ -1,6 +0,0 @@ -TopBas_Interference.gxx -TopBas_Interference.lxx -TopBas_ListIteratorOfListOfTestInterference.hxx -TopBas_ListOfTestInterference.hxx -TopBas_TestInterference.hxx -TopBas_TestInterference_0.cxx diff --git a/src/TopClass/FILES b/src/TopClass/FILES deleted file mode 100755 index 1ae7ba6dd1..0000000000 --- a/src/TopClass/FILES +++ /dev/null @@ -1,4 +0,0 @@ -TopClass_Classifier2d.gxx -TopClass_Classifier2d.lxx -TopClass_FaceClassifier.gxx -TopClass_FaceClassifier.lxx diff --git a/src/TopCnx/FILES b/src/TopCnx/FILES deleted file mode 100644 index ee17fbed34..0000000000 --- a/src/TopCnx/FILES +++ /dev/null @@ -1,2 +0,0 @@ -TopCnx_EdgeFaceTransition.cxx -TopCnx_EdgeFaceTransition.hxx diff --git a/src/TopExp/FILES b/src/TopExp/FILES deleted file mode 100644 index cace9690df..0000000000 --- a/src/TopExp/FILES +++ /dev/null @@ -1,5 +0,0 @@ -TopExp.cxx -TopExp.hxx -TopExp_Explorer.cxx -TopExp_Explorer.hxx -TopExp_Stack.hxx diff --git a/src/TopLoc/FILES b/src/TopLoc/FILES deleted file mode 100644 index 3df6b5b0af..0000000000 --- a/src/TopLoc/FILES +++ /dev/null @@ -1,15 +0,0 @@ -TopLoc_Datum3D.cxx -TopLoc_Datum3D.hxx -TopLoc_IndexedMapOfLocation.hxx -TopLoc_ItemLocation.cxx -TopLoc_ItemLocation.hxx -TopLoc_Location.cxx -TopLoc_Location.hxx -TopLoc_Location.lxx -TopLoc_MapIteratorOfMapOfLocation.hxx -TopLoc_MapOfLocation.hxx -TopLoc_SListNodeOfItemLocation.cxx -TopLoc_SListNodeOfItemLocation.hxx -TopLoc_SListNodeOfItemLocation.lxx -TopLoc_SListOfItemLocation.cxx -TopLoc_SListOfItemLocation.hxx diff --git a/src/TopOpeBRep/FILES b/src/TopOpeBRep/FILES deleted file mode 100755 index bc74ca7523..0000000000 --- a/src/TopOpeBRep/FILES +++ /dev/null @@ -1,92 +0,0 @@ -FILES -TopOpeBRep.cxx -TopOpeBRep.hxx -TopOpeBRep_Array1OfLineInter.hxx -TopOpeBRep_Array1OfVPointInter.hxx -TopOpeBRep_Bipoint.cxx -TopOpeBRep_Bipoint.hxx -TopOpeBRep_DataMapIteratorOfDataMapOfTopolTool.hxx -TopOpeBRep_DataMapOfTopolTool.hxx -TopOpeBRep_define.hxx -TopOpeBRep_DRAW.hxx -TopOpeBRep_DSFiller.cxx -TopOpeBRep_DSFiller.hxx -TopOpeBRep_EdgesFiller.cxx -TopOpeBRep_EdgesFiller.hxx -TopOpeBRep_EdgesIntersector.cxx -TopOpeBRep_EdgesIntersector.hxx -TopOpeBRep_EdgesIntersector_1.cxx -TopOpeBRep_FaceEdgeFiller.cxx -TopOpeBRep_FaceEdgeFiller.hxx -TopOpeBRep_FaceEdgeFiller_DEB.cxx -TopOpeBRep_FaceEdgeIntersector.cxx -TopOpeBRep_FaceEdgeIntersector.hxx -TopOpeBRep_FacesFiller.cxx -TopOpeBRep_FacesFiller.hxx -TopOpeBRep_FacesFiller_1.cxx -TopOpeBRep_FacesIntersector.cxx -TopOpeBRep_FacesIntersector.hxx -TopOpeBRep_FFDumper.cxx -TopOpeBRep_FFDumper.hxx -TopOpeBRep_FFTransitionTool.cxx -TopOpeBRep_FFTransitionTool.hxx -TopOpeBRep_GeomTool.cxx -TopOpeBRep_GeomTool.hxx -TopOpeBRep_HArray1OfLineInter.hxx -TopOpeBRep_HArray1OfVPointInter.hxx -TopOpeBRep_Hctxee2d.cxx -TopOpeBRep_Hctxee2d.hxx -TopOpeBRep_Hctxff2d.cxx -TopOpeBRep_Hctxff2d.hxx -TopOpeBRep_kpart.cxx -TopOpeBRep_LineInter.cxx -TopOpeBRep_LineInter.hxx -TopOpeBRep_LineInter.lxx -TopOpeBRep_ListIteratorOfListOfBipoint.hxx -TopOpeBRep_ListOfBipoint.hxx -TopOpeBRep_mergePDS.cxx -TopOpeBRep_P2Dstatus.hxx -TopOpeBRep_PEdgesIntersector.hxx -TopOpeBRep_PFacesFiller.hxx -TopOpeBRep_PFacesIntersector.hxx -TopOpeBRep_PIntRes2d_IntersectionPoint.hxx -TopOpeBRep_PLineInter.hxx -TopOpeBRep_Point2d.cxx -TopOpeBRep_Point2d.hxx -TopOpeBRep_Point2d.lxx -TopOpeBRep_PointClassifier.cxx -TopOpeBRep_PointClassifier.hxx -TopOpeBRep_PointGeomTool.cxx -TopOpeBRep_PointGeomTool.hxx -TopOpeBRep_PPntOn2S.hxx -TopOpeBRep_ProcessGR.cxx -TopOpeBRep_ProcessSectionEdges.cxx -TopOpeBRep_PThePointOfIntersection.hxx -TopOpeBRep_SequenceOfPoint2d.hxx -TopOpeBRep_ShapeIntersector.cxx -TopOpeBRep_ShapeIntersector.hxx -TopOpeBRep_ShapeIntersector2d.cxx -TopOpeBRep_ShapeIntersector2d.hxx -TopOpeBRep_ShapeScanner.cxx -TopOpeBRep_ShapeScanner.hxx -TopOpeBRep_sort.cxx -TopOpeBRep_trace.cxx -TopOpeBRep_traceALWL.cxx -TopOpeBRep_traceBOOPNINT.cxx -TopOpeBRep_traceSIFF.cxx -TopOpeBRep_traceSIFF.hxx -TopOpeBRep_TypeLineCurve.hxx -TopOpeBRep_VPointInter.cxx -TopOpeBRep_VPointInter.hxx -TopOpeBRep_VPointInter.lxx -TopOpeBRep_VPointInterClassifier.cxx -TopOpeBRep_VPointInterClassifier.hxx -TopOpeBRep_VPointInterIterator.cxx -TopOpeBRep_VPointInterIterator.hxx -TopOpeBRep_vpr.cxx -TopOpeBRep_vprclo.cxx -TopOpeBRep_vprdeg.cxx -TopOpeBRep_WPointInter.cxx -TopOpeBRep_WPointInter.hxx -TopOpeBRep_WPointInterIterator.cxx -TopOpeBRep_WPointInterIterator.hxx diff --git a/src/TopOpeBRepBuild/FILES b/src/TopOpeBRepBuild/FILES deleted file mode 100755 index 69e12e5e52..0000000000 --- a/src/TopOpeBRepBuild/FILES +++ /dev/null @@ -1,123 +0,0 @@ -TopOpeBRepBuild_Area1dBuilder.cxx -TopOpeBRepBuild_Area1dBuilder.hxx -TopOpeBRepBuild_Area2dBuilder.cxx -TopOpeBRepBuild_Area2dBuilder.hxx -TopOpeBRepBuild_Area3dBuilder.cxx -TopOpeBRepBuild_Area3dBuilder.hxx -TopOpeBRepBuild_AreaBuilder.cxx -TopOpeBRepBuild_AreaBuilder.hxx -TopOpeBRepBuild_BlockBuilder.cxx -TopOpeBRepBuild_BlockBuilder.hxx -TopOpeBRepBuild_BlockIterator.cxx -TopOpeBRepBuild_BlockIterator.hxx -TopOpeBRepBuild_BlockIterator.lxx -TopOpeBRepBuild_BuildEdges.cxx -TopOpeBRepBuild_Builder.cxx -TopOpeBRepBuild_Builder.hxx -TopOpeBRepBuild_Builder1.cxx -TopOpeBRepBuild_Builder1.hxx -TopOpeBRepBuild_Builder1_1.cxx -TopOpeBRepBuild_Builder1_2.cxx -TopOpeBRepBuild_BuilderON.cxx -TopOpeBRepBuild_BuilderON.hxx -TopOpeBRepBuild_BuilderON2d.cxx -TopOpeBRepBuild_BuildFaces.cxx -TopOpeBRepBuild_BuildVertices.cxx -TopOpeBRepBuild_CompositeClassifier.cxx -TopOpeBRepBuild_CompositeClassifier.hxx -TopOpeBRepBuild_CorrectFace2d.cxx -TopOpeBRepBuild_CorrectFace2d.hxx -TopOpeBRepBuild_DataMapIteratorOfDataMapOfShapeListOfShapeListOfShape.hxx -TopOpeBRepBuild_DataMapOfShapeListOfShapeListOfShape.hxx -TopOpeBRepBuild_define.hxx -TopOpeBRepBuild_EdgeBuilder.cxx -TopOpeBRepBuild_EdgeBuilder.hxx -TopOpeBRepBuild_End.cxx -TopOpeBRepBuild_FaceAreaBuilder.cxx -TopOpeBRepBuild_FaceAreaBuilder.hxx -TopOpeBRepBuild_FaceBuilder.cxx -TopOpeBRepBuild_FaceBuilder.hxx -TopOpeBRepBuild_fctwes.cxx -TopOpeBRepBuild_ffsfs.cxx -TopOpeBRepBuild_ffwesk.cxx -TopOpeBRepBuild_FREGU.cxx -TopOpeBRepBuild_FuseFace.cxx -TopOpeBRepBuild_FuseFace.hxx -TopOpeBRepBuild_FuseFace.lxx -TopOpeBRepBuild_GIter.cxx -TopOpeBRepBuild_GIter.hxx -TopOpeBRepBuild_Grid.cxx -TopOpeBRepBuild_Griddump.cxx -TopOpeBRepBuild_GridEE.cxx -TopOpeBRepBuild_GridFF.cxx -TopOpeBRepBuild_GridSS.cxx -TopOpeBRepBuild_GTool.cxx -TopOpeBRepBuild_GTool.hxx -TopOpeBRepBuild_GTopo.cxx -TopOpeBRepBuild_GTopo.hxx -TopOpeBRepBuild_HBuilder.cxx -TopOpeBRepBuild_HBuilder.hxx -TopOpeBRepBuild_IndexedDataMapOfShapeVertexInfo.hxx -TopOpeBRepBuild_keep.cxx -TopOpeBRepBuild_KPart.cxx -TopOpeBRepBuild_kpkole.cxx -TopOpeBRepBuild_kpresu.hxx -TopOpeBRepBuild_ListIteratorOfListOfListOfLoop.hxx -TopOpeBRepBuild_ListIteratorOfListOfLoop.hxx -TopOpeBRepBuild_ListIteratorOfListOfPave.hxx -TopOpeBRepBuild_ListIteratorOfListOfShapeListOfShape.hxx -TopOpeBRepBuild_ListOfListOfLoop.hxx -TopOpeBRepBuild_ListOfLoop.hxx -TopOpeBRepBuild_ListOfPave.hxx -TopOpeBRepBuild_ListOfShapeListOfShape.hxx -TopOpeBRepBuild_Loop.cxx -TopOpeBRepBuild_Loop.hxx -TopOpeBRepBuild_LoopClassifier.cxx -TopOpeBRepBuild_LoopClassifier.hxx -TopOpeBRepBuild_LoopEnum.hxx -TopOpeBRepBuild_LoopSet.cxx -TopOpeBRepBuild_LoopSet.hxx -TopOpeBRepBuild_makeedges.cxx -TopOpeBRepBuild_makefaces.cxx -TopOpeBRepBuild_makesolids.cxx -TopOpeBRepBuild_Merge.cxx -TopOpeBRepBuild_on.cxx -TopOpeBRepBuild_Pave.cxx -TopOpeBRepBuild_Pave.hxx -TopOpeBRepBuild_PaveClassifier.cxx -TopOpeBRepBuild_PaveClassifier.hxx -TopOpeBRepBuild_PaveSet.cxx -TopOpeBRepBuild_PaveSet.hxx -TopOpeBRepBuild_PBuilder.hxx -TopOpeBRepBuild_PGTopo.hxx -TopOpeBRepBuild_PWireEdgeSet.hxx -TopOpeBRepBuild_Section.cxx -TopOpeBRepBuild_ShapeListOfShape.cxx -TopOpeBRepBuild_ShapeListOfShape.hxx -TopOpeBRepBuild_ShapeSet.cxx -TopOpeBRepBuild_ShapeSet.hxx -TopOpeBRepBuild_ShellFaceClassifier.cxx -TopOpeBRepBuild_ShellFaceClassifier.hxx -TopOpeBRepBuild_ShellFaceSet.cxx -TopOpeBRepBuild_ShellFaceSet.hxx -TopOpeBRepBuild_ShellToSolid.cxx -TopOpeBRepBuild_ShellToSolid.hxx -TopOpeBRepBuild_SolidAreaBuilder.cxx -TopOpeBRepBuild_SolidAreaBuilder.hxx -TopOpeBRepBuild_SolidBuilder.cxx -TopOpeBRepBuild_SolidBuilder.hxx -TopOpeBRepBuild_SREGU.cxx -TopOpeBRepBuild_Tools.cxx -TopOpeBRepBuild_Tools.hxx -TopOpeBRepBuild_Tools2d.cxx -TopOpeBRepBuild_Tools2d.hxx -TopOpeBRepBuild_Tools_1.cxx -TopOpeBRepBuild_trace.cxx -TopOpeBRepBuild_VertexInfo.cxx -TopOpeBRepBuild_VertexInfo.hxx -TopOpeBRepBuild_WireEdgeClassifier.cxx -TopOpeBRepBuild_WireEdgeClassifier.hxx -TopOpeBRepBuild_WireEdgeSet.cxx -TopOpeBRepBuild_WireEdgeSet.hxx -TopOpeBRepBuild_WireToFace.cxx -TopOpeBRepBuild_WireToFace.hxx diff --git a/src/TopOpeBRepDS/FILES b/src/TopOpeBRepDS/FILES deleted file mode 100755 index c06fa500ac..0000000000 --- a/src/TopOpeBRepDS/FILES +++ /dev/null @@ -1,147 +0,0 @@ -TopOpeBRepDS.cxx -TopOpeBRepDS.hxx -TopOpeBRepDS_Array1OfDataMapOfIntegerListOfInterference.hxx -TopOpeBRepDS_Association.cxx -TopOpeBRepDS_Association.hxx -TopOpeBRepDS_BuildTool.cxx -TopOpeBRepDS_BuildTool.hxx -TopOpeBRepDS_Check.cxx -TopOpeBRepDS_Check.hxx -TopOpeBRepDS_CheckStatus.hxx -TopOpeBRepDS_Config.hxx -TopOpeBRepDS_connex.cxx -TopOpeBRepDS_connex.hxx -TopOpeBRepDS_Curve.cxx -TopOpeBRepDS_Curve.hxx -TopOpeBRepDS_CurveData.cxx -TopOpeBRepDS_CurveData.hxx -TopOpeBRepDS_CurveExplorer.cxx -TopOpeBRepDS_CurveExplorer.hxx -TopOpeBRepDS_CurveIterator.cxx -TopOpeBRepDS_CurveIterator.hxx -TopOpeBRepDS_CurvePointInterference.cxx -TopOpeBRepDS_CurvePointInterference.hxx -TopOpeBRepDS_DataMapIteratorOfDataMapOfCheckStatus.hxx -TopOpeBRepDS_DataMapIteratorOfDataMapOfIntegerListOfInterference.hxx -TopOpeBRepDS_DataMapIteratorOfDataMapOfInterferenceListOfInterference.hxx -TopOpeBRepDS_DataMapIteratorOfDataMapOfInterferenceShape.hxx -TopOpeBRepDS_DataMapIteratorOfDataMapOfShapeListOfShapeOn1State.hxx -TopOpeBRepDS_DataMapIteratorOfDataMapOfShapeState.hxx -TopOpeBRepDS_DataMapIteratorOfMapOfCurve.hxx -TopOpeBRepDS_DataMapIteratorOfMapOfIntegerShapeData.hxx -TopOpeBRepDS_DataMapIteratorOfMapOfPoint.hxx -TopOpeBRepDS_DataMapIteratorOfMapOfSurface.hxx -TopOpeBRepDS_DataMapIteratorOfShapeSurface.hxx -TopOpeBRepDS_DataMapOfCheckStatus.hxx -TopOpeBRepDS_DataMapOfIntegerListOfInterference.hxx -TopOpeBRepDS_DataMapOfInterferenceListOfInterference.hxx -TopOpeBRepDS_DataMapOfInterferenceShape.hxx -TopOpeBRepDS_DataMapOfShapeListOfShapeOn1State.hxx -TopOpeBRepDS_DataMapOfShapeState.hxx -TopOpeBRepDS_DataStructure.cxx -TopOpeBRepDS_DataStructure.hxx -TopOpeBRepDS_define.hxx -TopOpeBRepDS_DoubleMapIteratorOfDoubleMapOfIntegerShape.hxx -TopOpeBRepDS_DoubleMapOfIntegerShape.hxx -TopOpeBRepDS_DRAW.cxx -TopOpeBRepDS_DRAW.hxx -TopOpeBRepDS_Dumper.cxx -TopOpeBRepDS_Dumper.hxx -TopOpeBRepDS_Edge3dInterferenceTool.cxx -TopOpeBRepDS_Edge3dInterferenceTool.hxx -TopOpeBRepDS_EdgeInterferenceTool.cxx -TopOpeBRepDS_EdgeInterferenceTool.hxx -TopOpeBRepDS_EdgeVertexInterference.cxx -TopOpeBRepDS_EdgeVertexInterference.hxx -TopOpeBRepDS_EIR.cxx -TopOpeBRepDS_EIR.hxx -TopOpeBRepDS_Explorer.cxx -TopOpeBRepDS_Explorer.hxx -TopOpeBRepDS_EXPORT.cxx -TopOpeBRepDS_EXPORT.hxx -TopOpeBRepDS_FaceEdgeInterference.cxx -TopOpeBRepDS_FaceEdgeInterference.hxx -TopOpeBRepDS_FaceInterferenceTool.cxx -TopOpeBRepDS_FaceInterferenceTool.hxx -TopOpeBRepDS_Filter.cxx -TopOpeBRepDS_Filter.hxx -TopOpeBRepDS_FilterCurveInterferences.cxx -TopOpeBRepDS_FilterEdgeInterferences.cxx -TopOpeBRepDS_FilterFaceInterferences.cxx -TopOpeBRepDS_FIR.cxx -TopOpeBRepDS_FIR.hxx -TopOpeBRepDS_funk.cxx -TopOpeBRepDS_GapFiller.cxx -TopOpeBRepDS_GapFiller.hxx -TopOpeBRepDS_GapTool.cxx -TopOpeBRepDS_GapTool.hxx -TopOpeBRepDS_GeometryData.cxx -TopOpeBRepDS_GeometryData.hxx -TopOpeBRepDS_HArray1OfDataMapOfIntegerListOfInterference.hxx -TopOpeBRepDS_HDataStructure.cxx -TopOpeBRepDS_HDataStructure.hxx -TopOpeBRepDS_IndexedDataMapOfShapeWithState.hxx -TopOpeBRepDS_IndexedDataMapOfVertexPoint.hxx -TopOpeBRepDS_Interference.cxx -TopOpeBRepDS_Interference.hxx -TopOpeBRepDS_InterferenceIterator.cxx -TopOpeBRepDS_InterferenceIterator.hxx -TopOpeBRepDS_InterferenceTool.cxx -TopOpeBRepDS_InterferenceTool.hxx -TopOpeBRepDS_Kind.hxx -TopOpeBRepDS_ListIteratorOfListOfInterference.hxx -TopOpeBRepDS_ListOfInterference.hxx -TopOpeBRepDS_ListOfShapeOn1State.cxx -TopOpeBRepDS_ListOfShapeOn1State.hxx -TopOpeBRepDS_MapOfCurve.hxx -TopOpeBRepDS_MapOfIntegerShapeData.hxx -TopOpeBRepDS_MapOfPoint.hxx -TopOpeBRepDS_MapOfShapeData.hxx -TopOpeBRepDS_MapOfSurface.hxx -TopOpeBRepDS_Marker.cxx -TopOpeBRepDS_Marker.hxx -TopOpeBRepDS_PDataStructure.hxx -TopOpeBRepDS_Point.cxx -TopOpeBRepDS_Point.hxx -TopOpeBRepDS_PointData.cxx -TopOpeBRepDS_PointData.hxx -TopOpeBRepDS_PointExplorer.cxx -TopOpeBRepDS_PointExplorer.hxx -TopOpeBRepDS_PointIterator.cxx -TopOpeBRepDS_PointIterator.hxx -TopOpeBRepDS_ProcessEdgeInterferences.cxx -TopOpeBRepDS_ProcessFaceInterferences.cxx -TopOpeBRepDS_ProcessInterferencesTool.cxx -TopOpeBRepDS_ProcessInterferencesTool.hxx -TopOpeBRepDS_redu.cxx -TopOpeBRepDS_Reducer.cxx -TopOpeBRepDS_Reducer.hxx -TopOpeBRepDS_repvg.cxx -TopOpeBRepDS_repvg.hxx -TopOpeBRepDS_samdom.cxx -TopOpeBRepDS_samdom.hxx -TopOpeBRepDS_ShapeData.cxx -TopOpeBRepDS_ShapeData.hxx -TopOpeBRepDS_ShapeShapeInterference.cxx -TopOpeBRepDS_ShapeShapeInterference.hxx -TopOpeBRepDS_ShapeSurface.hxx -TopOpeBRepDS_ShapeWithState.cxx -TopOpeBRepDS_ShapeWithState.hxx -TopOpeBRepDS_SolidSurfaceInterference.cxx -TopOpeBRepDS_SolidSurfaceInterference.hxx -TopOpeBRepDS_Surface.cxx -TopOpeBRepDS_Surface.hxx -TopOpeBRepDS_SurfaceCurveInterference.cxx -TopOpeBRepDS_SurfaceCurveInterference.hxx -TopOpeBRepDS_SurfaceData.cxx -TopOpeBRepDS_SurfaceData.hxx -TopOpeBRepDS_SurfaceExplorer.cxx -TopOpeBRepDS_SurfaceExplorer.hxx -TopOpeBRepDS_SurfaceIterator.cxx -TopOpeBRepDS_SurfaceIterator.hxx -TopOpeBRepDS_TKI.cxx -TopOpeBRepDS_TKI.hxx -TopOpeBRepDS_TOOL.cxx -TopOpeBRepDS_TOOL.hxx -TopOpeBRepDS_Transition.cxx -TopOpeBRepDS_Transition.hxx diff --git a/src/TopOpeBRepTool/FILES b/src/TopOpeBRepTool/FILES deleted file mode 100755 index 6f102b120c..0000000000 --- a/src/TopOpeBRepTool/FILES +++ /dev/null @@ -1,90 +0,0 @@ -FILES -TopOpeBRepTool.cxx -TopOpeBRepTool.hxx -TopOpeBRepTool_2d.cxx -TopOpeBRepTool_2d.hxx -TopOpeBRepTool_AncestorsTool.cxx -TopOpeBRepTool_AncestorsTool.hxx -TopOpeBRepTool_box.cxx -TopOpeBRepTool_box.hxx -TopOpeBRepTool_BoxSort.cxx -TopOpeBRepTool_BoxSort.hxx -TopOpeBRepTool_C2DF.cxx -TopOpeBRepTool_C2DF.hxx -TopOpeBRepTool_CLASSI.cxx -TopOpeBRepTool_CLASSI.hxx -TopOpeBRepTool_connexity.cxx -TopOpeBRepTool_connexity.hxx -TopOpeBRepTool_CORRISO.cxx -TopOpeBRepTool_CORRISO.hxx -TopOpeBRepTool_CurveTool.cxx -TopOpeBRepTool_CurveTool.hxx -TopOpeBRepTool_DataMapIteratorOfDataMapOfOrientedShapeC2DF.hxx -TopOpeBRepTool_DataMapIteratorOfDataMapOfShapeface.hxx -TopOpeBRepTool_DataMapIteratorOfDataMapOfShapeListOfC2DF.hxx -TopOpeBRepTool_DataMapOfOrientedShapeC2DF.hxx -TopOpeBRepTool_DataMapOfShapeface.hxx -TopOpeBRepTool_DataMapOfShapeListOfC2DF.hxx -TopOpeBRepTool_define.hxx -TopOpeBRepTool_defineG.hxx -TopOpeBRepTool_DRAW.cxx -TopOpeBRepTool_DRAW.hxx -TopOpeBRepTool_EXPORT.hxx -TopOpeBRepTool_face.cxx -TopOpeBRepTool_face.hxx -TopOpeBRepTool_faulty.cxx -TopOpeBRepTool_FuseEdges.cxx -TopOpeBRepTool_FuseEdges.hxx -TopOpeBRepTool_GEOMETRY.cxx -TopOpeBRepTool_GEOMETRY.hxx -TopOpeBRepTool_GeomTool.cxx -TopOpeBRepTool_GeomTool.hxx -TopOpeBRepTool_HBoxTool.cxx -TopOpeBRepTool_HBoxTool.hxx -TopOpeBRepTool_IndexedDataMapOfShapeBox.hxx -TopOpeBRepTool_IndexedDataMapOfShapeBox2d.hxx -TopOpeBRepTool_IndexedDataMapOfShapeconnexity.hxx -TopOpeBRepTool_IndexedDataMapOfSolidClassifier.hxx -TopOpeBRepTool_KRO.hxx -TopOpeBRepTool_ListIteratorOfListOfC2DF.hxx -TopOpeBRepTool_ListOfC2DF.hxx -TopOpeBRepTool_makeTransition.cxx -TopOpeBRepTool_makeTransition.hxx -TopOpeBRepTool_matter.cxx -TopOpeBRepTool_mkTondgE.cxx -TopOpeBRepTool_mkTondgE.hxx -TopOpeBRepTool_OutCurveType.hxx -TopOpeBRepTool_Plos.hxx -TopOpeBRepTool_PROJECT.cxx -TopOpeBRepTool_PROJECT.hxx -TopOpeBRepTool_PShapeClassifier.hxx -TopOpeBRepTool_PSoClassif.hxx -TopOpeBRepTool_PURGE.cxx -TopOpeBRepTool_PURGE.hxx -TopOpeBRepTool_PurgeInternalEdges.cxx -TopOpeBRepTool_PurgeInternalEdges.hxx -TopOpeBRepTool_RegularizeS.cxx -TopOpeBRepTool_RegularizeW.cxx -TopOpeBRepTool_REGUS.cxx -TopOpeBRepTool_REGUS.hxx -TopOpeBRepTool_REGUW.cxx -TopOpeBRepTool_REGUW.hxx -TopOpeBRepTool_SC.cxx -TopOpeBRepTool_SC.hxx -TopOpeBRepTool_ShapeClassifier.cxx -TopOpeBRepTool_ShapeClassifier.hxx -TopOpeBRepTool_ShapeExplorer.hxx -TopOpeBRepTool_ShapeTool.cxx -TopOpeBRepTool_ShapeTool.hxx -TopOpeBRepTool_SolidClassifier.cxx -TopOpeBRepTool_SolidClassifier.hxx -TopOpeBRepTool_STATE.cxx -TopOpeBRepTool_STATE.hxx -TopOpeBRepTool_tol.cxx -TopOpeBRepTool_tol.hxx -TopOpeBRepTool_TOOL.cxx -TopOpeBRepTool_TOOL.hxx -TopOpeBRepTool_TOPOLOGY.cxx -TopOpeBRepTool_TOPOLOGY.hxx -TopOpeBRepTool_trace.cxx -TopOpeBRepTool_traceSTATE.cxx diff --git a/src/TopTools/FILES b/src/TopTools/FILES deleted file mode 100644 index cc01db47cc..0000000000 --- a/src/TopTools/FILES +++ /dev/null @@ -1,53 +0,0 @@ -TopTools.cxx -TopTools.hxx -TopTools_Array1OfListOfShape.hxx -TopTools_Array1OfShape.hxx -TopTools_Array2OfShape.hxx -TopTools_DataMapIteratorOfDataMapOfIntegerListOfShape.hxx -TopTools_DataMapIteratorOfDataMapOfIntegerShape.hxx -TopTools_DataMapIteratorOfDataMapOfOrientedShapeInteger.hxx -TopTools_DataMapIteratorOfDataMapOfOrientedShapeShape.hxx -TopTools_DataMapIteratorOfDataMapOfShapeInteger.hxx -TopTools_DataMapIteratorOfDataMapOfShapeListOfInteger.hxx -TopTools_DataMapIteratorOfDataMapOfShapeListOfShape.hxx -TopTools_DataMapIteratorOfDataMapOfShapeReal.hxx -TopTools_DataMapIteratorOfDataMapOfShapeSequenceOfShape.hxx -TopTools_DataMapIteratorOfDataMapOfShapeShape.hxx -TopTools_DataMapOfIntegerListOfShape.hxx -TopTools_DataMapOfIntegerShape.hxx -TopTools_DataMapOfOrientedShapeInteger.hxx -TopTools_DataMapOfOrientedShapeShape.hxx -TopTools_DataMapOfShapeBox.hxx -TopTools_DataMapOfShapeInteger.hxx -TopTools_DataMapOfShapeListOfInteger.hxx -TopTools_DataMapOfShapeListOfShape.hxx -TopTools_DataMapOfShapeReal.hxx -TopTools_DataMapOfShapeSequenceOfShape.hxx -TopTools_DataMapOfShapeShape.hxx -TopTools_FormatVersion.hxx -TopTools_HArray1OfListOfShape.hxx -TopTools_HArray1OfShape.hxx -TopTools_HArray2OfShape.hxx -TopTools_HSequenceOfShape.hxx -TopTools_IndexedDataMapOfShapeAddress.hxx -TopTools_IndexedDataMapOfShapeListOfShape.hxx -TopTools_IndexedDataMapOfShapeReal.hxx -TopTools_IndexedDataMapOfShapeShape.hxx -TopTools_IndexedMapOfOrientedShape.hxx -TopTools_IndexedMapOfShape.hxx -TopTools_ListIteratorOfListOfShape.hxx -TopTools_ListOfListOfShape.hxx -TopTools_ListOfShape.hxx -TopTools_LocationSet.cxx -TopTools_LocationSet.hxx -TopTools_LocationSetPtr.hxx -TopTools_MapIteratorOfMapOfOrientedShape.hxx -TopTools_MapIteratorOfMapOfShape.hxx -TopTools_MapOfOrientedShape.hxx -TopTools_MapOfShape.hxx -TopTools_MutexForShapeProvider.cxx -TopTools_MutexForShapeProvider.hxx -TopTools_SequenceOfShape.hxx -TopTools_ShapeMapHasher.hxx -TopTools_ShapeSet.cxx -TopTools_ShapeSet.hxx diff --git a/src/TopTrans/FILES b/src/TopTrans/FILES deleted file mode 100644 index 0ee0c4e84d..0000000000 --- a/src/TopTrans/FILES +++ /dev/null @@ -1,5 +0,0 @@ -TopTrans_Array2OfOrientation.hxx -TopTrans_CurveTransition.cxx -TopTrans_CurveTransition.hxx -TopTrans_SurfaceTransition.cxx -TopTrans_SurfaceTransition.hxx diff --git a/src/TopoDS/FILES b/src/TopoDS/FILES deleted file mode 100644 index 792c01637c..0000000000 --- a/src/TopoDS/FILES +++ /dev/null @@ -1,46 +0,0 @@ -TopoDS.hxx -TopoDS_AlertAttribute.hxx -TopoDS_AlertAttribute.cxx -TopoDS_Builder.cxx -TopoDS_Builder.hxx -TopoDS_Builder.lxx -TopoDS_Compound.hxx -TopoDS_CompSolid.hxx -TopoDS_Edge.hxx -TopoDS_Face.hxx -TopoDS_FrozenShape.hxx -TopoDS_HShape.cxx -TopoDS_HShape.hxx -TopoDS_HShape.lxx -TopoDS_Iterator.cxx -TopoDS_Iterator.hxx -TopoDS_ListIteratorOfListOfShape.hxx -TopoDS_ListOfShape.hxx -TopoDS_LockedShape.hxx -TopoDS_Shape.cxx -TopoDS_Shape.hxx -TopoDS_Shell.hxx -TopoDS_Solid.hxx -TopoDS_TCompound.cxx -TopoDS_TCompound.hxx -TopoDS_TCompSolid.cxx -TopoDS_TCompSolid.hxx -TopoDS_TEdge.cxx -TopoDS_TEdge.hxx -TopoDS_TFace.cxx -TopoDS_TFace.hxx -TopoDS_TShape.cxx -TopoDS_TShape.hxx -TopoDS_TShell.cxx -TopoDS_TShell.hxx -TopoDS_TSolid.cxx -TopoDS_TSolid.hxx -TopoDS_TVertex.cxx -TopoDS_TVertex.hxx -TopoDS_TWire.cxx -TopoDS_TWire.hxx -TopoDS_UnCompatibleShapes.hxx -TopoDS_Vertex.hxx -TopoDS_Wire.hxx -TopoDS_AlertWithShape.cxx -TopoDS_AlertWithShape.hxx diff --git a/src/TopoDSToStep/FILES b/src/TopoDSToStep/FILES deleted file mode 100644 index 584d3704c2..0000000000 --- a/src/TopoDSToStep/FILES +++ /dev/null @@ -1,40 +0,0 @@ -TopoDSToStep.cxx -TopoDSToStep.hxx -TopoDSToStep_Builder.cxx -TopoDSToStep_Builder.hxx -TopoDSToStep_BuilderError.hxx -TopoDSToStep_FacetedError.hxx -TopoDSToStep_FacetedTool.cxx -TopoDSToStep_FacetedTool.hxx -TopoDSToStep_MakeBrepWithVoids.cxx -TopoDSToStep_MakeBrepWithVoids.hxx -TopoDSToStep_MakeEdgeError.hxx -TopoDSToStep_MakeFaceError.hxx -TopoDSToStep_MakeFacetedBrep.cxx -TopoDSToStep_MakeFacetedBrep.hxx -TopoDSToStep_MakeFacetedBrepAndBrepWithVoids.cxx -TopoDSToStep_MakeFacetedBrepAndBrepWithVoids.hxx -TopoDSToStep_MakeGeometricCurveSet.cxx -TopoDSToStep_MakeGeometricCurveSet.hxx -TopoDSToStep_MakeManifoldSolidBrep.cxx -TopoDSToStep_MakeManifoldSolidBrep.hxx -TopoDSToStep_MakeShellBasedSurfaceModel.cxx -TopoDSToStep_MakeShellBasedSurfaceModel.hxx -TopoDSToStep_MakeStepEdge.cxx -TopoDSToStep_MakeStepEdge.hxx -TopoDSToStep_MakeStepFace.cxx -TopoDSToStep_MakeStepFace.hxx -TopoDSToStep_MakeStepVertex.cxx -TopoDSToStep_MakeStepVertex.hxx -TopoDSToStep_MakeStepWire.cxx -TopoDSToStep_MakeStepWire.hxx -TopoDSToStep_MakeVertexError.hxx -TopoDSToStep_MakeWireError.hxx -TopoDSToStep_Root.cxx -TopoDSToStep_Root.hxx -TopoDSToStep_Tool.cxx -TopoDSToStep_Tool.hxx -TopoDSToStep_WireframeBuilder.cxx -TopoDSToStep_WireframeBuilder.hxx -TopoDSToStep_MakeTessellatedItem.cxx -TopoDSToStep_MakeTessellatedItem.hxx \ No newline at end of file diff --git a/src/Transfer/FILES b/src/Transfer/FILES deleted file mode 100644 index 8f8f66a948..0000000000 --- a/src/Transfer/FILES +++ /dev/null @@ -1,68 +0,0 @@ -Transfer_ActorDispatch.cxx -Transfer_ActorDispatch.hxx -Transfer_ActorOfFinderProcess.cxx -Transfer_ActorOfFinderProcess.hxx -Transfer_ActorOfProcessForFinder.hxx -Transfer_ActorOfProcessForFinder_0.cxx -Transfer_ActorOfProcessForTransient.hxx -Transfer_ActorOfProcessForTransient_0.cxx -Transfer_ActorOfTransientProcess.cxx -Transfer_ActorOfTransientProcess.hxx -Transfer_Binder.cxx -Transfer_Binder.hxx -Transfer_BinderOfTransientInteger.cxx -Transfer_BinderOfTransientInteger.hxx -Transfer_DataInfo.cxx -Transfer_DataInfo.hxx -Transfer_DispatchControl.cxx -Transfer_DispatchControl.hxx -Transfer_Finder.cxx -Transfer_Finder.hxx -Transfer_FinderProcess.cxx -Transfer_FinderProcess.hxx -Transfer_FindHasher.hxx -Transfer_HSequenceOfBinder.hxx -Transfer_HSequenceOfFinder.hxx -Transfer_IteratorOfProcessForFinder.hxx -Transfer_IteratorOfProcessForFinder_0.cxx -Transfer_IteratorOfProcessForTransient.hxx -Transfer_IteratorOfProcessForTransient_0.cxx -Transfer_MapContainer.cxx -Transfer_MapContainer.hxx -Transfer_MultipleBinder.cxx -Transfer_MultipleBinder.hxx -Transfer_ProcessForFinder.hxx -Transfer_ProcessForFinder_0.cxx -Transfer_ProcessForTransient.hxx -Transfer_ProcessForTransient_0.cxx -Transfer_ResultFromModel.cxx -Transfer_ResultFromModel.hxx -Transfer_ResultFromTransient.cxx -Transfer_ResultFromTransient.hxx -Transfer_SequenceOfBinder.hxx -Transfer_SequenceOfFinder.hxx -Transfer_SimpleBinderOfTransient.cxx -Transfer_SimpleBinderOfTransient.hxx -Transfer_StatusExec.hxx -Transfer_StatusResult.hxx -Transfer_TransferDeadLoop.hxx -Transfer_TransferDispatch.cxx -Transfer_TransferDispatch.hxx -Transfer_TransferFailure.hxx -Transfer_TransferInput.cxx -Transfer_TransferInput.hxx -Transfer_TransferIterator.cxx -Transfer_TransferIterator.hxx -Transfer_TransferMapOfProcessForFinder.hxx -Transfer_TransferMapOfProcessForTransient.hxx -Transfer_TransferOutput.cxx -Transfer_TransferOutput.hxx -Transfer_TransientListBinder.cxx -Transfer_TransientListBinder.hxx -Transfer_TransientMapper.hxx -Transfer_TransientMapper_0.cxx -Transfer_TransientProcess.cxx -Transfer_TransientProcess.hxx -Transfer_UndefMode.hxx -Transfer_VoidBinder.cxx -Transfer_VoidBinder.hxx diff --git a/src/TransferBRep/FILES b/src/TransferBRep/FILES deleted file mode 100644 index 9a470b5a4f..0000000000 --- a/src/TransferBRep/FILES +++ /dev/null @@ -1,19 +0,0 @@ -TransferBRep.cxx -TransferBRep.hxx -TransferBRep_BinderOfShape.cxx -TransferBRep_BinderOfShape.hxx -TransferBRep_HSequenceOfTransferResultInfo.hxx -TransferBRep_Reader.cxx -TransferBRep_Reader.hxx -TransferBRep_SequenceOfTransferResultInfo.hxx -TransferBRep_ShapeBinder.cxx -TransferBRep_ShapeBinder.hxx -TransferBRep_ShapeInfo.cxx -TransferBRep_ShapeInfo.hxx -TransferBRep_ShapeListBinder.cxx -TransferBRep_ShapeListBinder.hxx -TransferBRep_ShapeMapper.hxx -TransferBRep_ShapeMapper_0.cxx -TransferBRep_TransferResultInfo.cxx -TransferBRep_TransferResultInfo.hxx -TransferBRep_TransferResultInfo.lxx diff --git a/src/UTL/FILES b/src/UTL/FILES deleted file mode 100644 index 5c450eb29a..0000000000 --- a/src/UTL/FILES +++ /dev/null @@ -1,2 +0,0 @@ -UTL.cxx -UTL.hxx diff --git a/src/Units/FILES b/src/Units/FILES deleted file mode 100755 index 4562e3d54a..0000000000 --- a/src/Units/FILES +++ /dev/null @@ -1,49 +0,0 @@ -Units.cxx -Units.hxx -Units_Dimensions.cxx -Units_Dimensions.hxx -Units_Dimensions.lxx -Units_Explorer.cxx -Units_Explorer.hxx -Units_Lexicon.cxx -Units_Lexicon.hxx -Units_Lexicon.lxx -Units_MathSentence.cxx -Units_MathSentence.hxx -Units_Measurement.cxx -Units_Measurement.hxx -Units_NoSuchType.hxx -Units_NoSuchUnit.hxx -Units_Operators.hxx -Units_QtsSequence.hxx -Units_QuantitiesSequence.hxx -Units_Quantity.cxx -Units_Quantity.hxx -Units_Quantity.lxx -Units_Sentence.cxx -Units_Sentence.hxx -Units_Sentence.lxx -Units_ShiftedToken.cxx -Units_ShiftedToken.hxx -Units_ShiftedUnit.cxx -Units_ShiftedUnit.hxx -Units_TksSequence.hxx -Units_Token.cxx -Units_Token.hxx -Units_Token.lxx -Units_TokensSequence.hxx -Units_Unit.cxx -Units_Unit.hxx -Units_Unit.lxx -Units_UnitsDictionary.cxx -Units_UnitsDictionary.hxx -Units_UnitsDictionary.lxx -Units_UnitSentence.cxx -Units_UnitSentence.hxx -Units_UnitsLexicon.cxx -Units_UnitsLexicon.hxx -Units_UnitsLexicon.lxx -Units_UnitsSequence.hxx -Units_UnitsSystem.cxx -Units_UnitsSystem.hxx -Units_UtsSequence.hxx diff --git a/src/UnitsAPI/FILES b/src/UnitsAPI/FILES deleted file mode 100755 index 14d32dd40f..0000000000 --- a/src/UnitsAPI/FILES +++ /dev/null @@ -1,4 +0,0 @@ -UnitsAPI.cxx -UnitsAPI.hxx -UnitsAPI_SystemUnits.hxx -UnitsAPI_Units_dat.pxx diff --git a/src/UnitsMethods/FILES b/src/UnitsMethods/FILES deleted file mode 100644 index 73d353de6a..0000000000 --- a/src/UnitsMethods/FILES +++ /dev/null @@ -1,3 +0,0 @@ -UnitsMethods.cxx -UnitsMethods.hxx -UnitsMethods_LengthUnit.hxx diff --git a/src/V3d/FILES b/src/V3d/FILES deleted file mode 100755 index 3c3d59a4e9..0000000000 --- a/src/V3d/FILES +++ /dev/null @@ -1,39 +0,0 @@ -V3d.cxx -V3d.hxx -V3d_AmbientLight.cxx -V3d_AmbientLight.hxx -V3d_BadValue.hxx -V3d_CircularGrid.cxx -V3d_CircularGrid.hxx -V3d_DirectionalLight.cxx -V3d_DirectionalLight.hxx -V3d_ImageDumpOptions.hxx -V3d_Light.hxx -V3d_ListOfLight.hxx -V3d_ListOfView.hxx -V3d_Plane.cxx -V3d_Plane.hxx -V3d_PositionalLight.cxx -V3d_PositionalLight.hxx -V3d_PositionLight.cxx -V3d_PositionLight.hxx -V3d_RectangularGrid.cxx -V3d_RectangularGrid.hxx -V3d_SpotLight.cxx -V3d_SpotLight.hxx -V3d_StereoDumpOptions.hxx -V3d_Trihedron.cxx -V3d_Trihedron.hxx -V3d_TypeOfAxe.hxx -V3d_TypeOfBackfacingModel.hxx -V3d_TypeOfLight.hxx -V3d_TypeOfOrientation.hxx -V3d_TypeOfShadingModel.hxx -V3d_TypeOfView.hxx -V3d_TypeOfVisualization.hxx -V3d_UnMapped.hxx -V3d_View.cxx -V3d_View.hxx -V3d_Viewer.cxx -V3d_Viewer.hxx -V3d_ViewerPointer.hxx diff --git a/src/ViewerTest/FILES b/src/ViewerTest/FILES deleted file mode 100755 index 0e03d748b7..0000000000 --- a/src/ViewerTest/FILES +++ /dev/null @@ -1,20 +0,0 @@ -ViewerTest.cxx -ViewerTest.hxx -ViewerTest_AutoUpdater.cxx -ViewerTest_AutoUpdater.hxx -ViewerTest_CmdParser.cxx -ViewerTest_CmdParser.hxx -ViewerTest_ContinuousRedrawer.cxx -ViewerTest_ContinuousRedrawer.hxx -ViewerTest_DoubleMapIteratorOfDoubleMapOfInteractiveAndName.hxx -ViewerTest_DoubleMapOfInteractiveAndName.hxx -ViewerTest_EventManager.cxx -ViewerTest_EventManager.hxx -ViewerTest_FilletCommands.cxx -ViewerTest_ObjectCommands.cxx -ViewerTest_OpenGlCommands.cxx -ViewerTest_RelationCommands.cxx -ViewerTest_ViewerCommands.cxx -ViewerTest_ViewerCommands_1.mm -ViewerTest_V3dView.cxx -ViewerTest_V3dView.hxx diff --git a/src/TKD3DHost/CMakeLists.txt b/src/Visualization/TKD3DHost/CMakeLists.txt similarity index 100% rename from src/TKD3DHost/CMakeLists.txt rename to src/Visualization/TKD3DHost/CMakeLists.txt diff --git a/src/D3DHost/D3DHost_FrameBuffer.cxx b/src/Visualization/TKD3DHost/D3DHost/D3DHost_FrameBuffer.cxx similarity index 100% rename from src/D3DHost/D3DHost_FrameBuffer.cxx rename to src/Visualization/TKD3DHost/D3DHost/D3DHost_FrameBuffer.cxx diff --git a/src/D3DHost/D3DHost_FrameBuffer.hxx b/src/Visualization/TKD3DHost/D3DHost/D3DHost_FrameBuffer.hxx similarity index 100% rename from src/D3DHost/D3DHost_FrameBuffer.hxx rename to src/Visualization/TKD3DHost/D3DHost/D3DHost_FrameBuffer.hxx diff --git a/src/D3DHost/D3DHost_GraphicDriver.cxx b/src/Visualization/TKD3DHost/D3DHost/D3DHost_GraphicDriver.cxx similarity index 100% rename from src/D3DHost/D3DHost_GraphicDriver.cxx rename to src/Visualization/TKD3DHost/D3DHost/D3DHost_GraphicDriver.cxx diff --git a/src/D3DHost/D3DHost_GraphicDriver.hxx b/src/Visualization/TKD3DHost/D3DHost/D3DHost_GraphicDriver.hxx similarity index 100% rename from src/D3DHost/D3DHost_GraphicDriver.hxx rename to src/Visualization/TKD3DHost/D3DHost/D3DHost_GraphicDriver.hxx diff --git a/src/D3DHost/D3DHost_GraphicDriverFactory.cxx b/src/Visualization/TKD3DHost/D3DHost/D3DHost_GraphicDriverFactory.cxx similarity index 100% rename from src/D3DHost/D3DHost_GraphicDriverFactory.cxx rename to src/Visualization/TKD3DHost/D3DHost/D3DHost_GraphicDriverFactory.cxx diff --git a/src/D3DHost/D3DHost_GraphicDriverFactory.hxx b/src/Visualization/TKD3DHost/D3DHost/D3DHost_GraphicDriverFactory.hxx similarity index 100% rename from src/D3DHost/D3DHost_GraphicDriverFactory.hxx rename to src/Visualization/TKD3DHost/D3DHost/D3DHost_GraphicDriverFactory.hxx diff --git a/src/D3DHost/D3DHost_View.cxx b/src/Visualization/TKD3DHost/D3DHost/D3DHost_View.cxx similarity index 100% rename from src/D3DHost/D3DHost_View.cxx rename to src/Visualization/TKD3DHost/D3DHost/D3DHost_View.cxx diff --git a/src/D3DHost/D3DHost_View.hxx b/src/Visualization/TKD3DHost/D3DHost/D3DHost_View.hxx similarity index 100% rename from src/D3DHost/D3DHost_View.hxx rename to src/Visualization/TKD3DHost/D3DHost/D3DHost_View.hxx diff --git a/src/Visualization/TKD3DHost/D3DHost/FILES.cmake b/src/Visualization/TKD3DHost/D3DHost/FILES.cmake new file mode 100644 index 0000000000..5339c6bf23 --- /dev/null +++ b/src/Visualization/TKD3DHost/D3DHost/FILES.cmake @@ -0,0 +1,13 @@ +# Source files for D3DHost package +set(OCCT_D3DHost_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_D3DHost_FILES + D3DHost_GraphicDriver.hxx + D3DHost_GraphicDriver.cxx + D3DHost_GraphicDriverFactory.hxx + D3DHost_GraphicDriverFactory.cxx + D3DHost_FrameBuffer.hxx + D3DHost_FrameBuffer.cxx + D3DHost_View.hxx + D3DHost_View.cxx +) diff --git a/src/Visualization/TKD3DHost/EXTERNLIB.cmake b/src/Visualization/TKD3DHost/EXTERNLIB.cmake new file mode 100644 index 0000000000..c91794d6fc --- /dev/null +++ b/src/Visualization/TKD3DHost/EXTERNLIB.cmake @@ -0,0 +1,13 @@ +# External dependencies for TKD3DHost +set(OCCT_TKD3DHost_EXTERNAL_LIBS + TKernel + TKService + TKMath + TKV3d + TKOpenGl + CSF_XwLibs + CSF_OpenGlLibs + CSF_user32 + CSF_gdi32 + CSF_d3d9 +) diff --git a/src/Visualization/TKD3DHost/FILES.cmake b/src/Visualization/TKD3DHost/FILES.cmake new file mode 100644 index 0000000000..8d1bc756a0 --- /dev/null +++ b/src/Visualization/TKD3DHost/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKD3DHost +set(OCCT_TKD3DHost_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKD3DHost_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/Visualization/TKD3DHost/PACKAGES.cmake b/src/Visualization/TKD3DHost/PACKAGES.cmake new file mode 100644 index 0000000000..f2da5ef65a --- /dev/null +++ b/src/Visualization/TKD3DHost/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKD3DHost toolkit +set(OCCT_TKD3DHost_LIST_OF_PACKAGES + D3DHost +) diff --git a/src/TKIVtk/CMakeLists.txt b/src/Visualization/TKIVtk/CMakeLists.txt similarity index 100% rename from src/TKIVtk/CMakeLists.txt rename to src/Visualization/TKIVtk/CMakeLists.txt diff --git a/src/Visualization/TKIVtk/EXTERNLIB.cmake b/src/Visualization/TKIVtk/EXTERNLIB.cmake new file mode 100644 index 0000000000..7ee047f603 --- /dev/null +++ b/src/Visualization/TKIVtk/EXTERNLIB.cmake @@ -0,0 +1,22 @@ +# External dependencies for TKIVtk +set(OCCT_TKIVtk_EXTERNAL_LIBS + CSF_VTK + TKernel + TKBRep + TKG2d + TKG3d + TKGeomAlgo + TKGeomBase + TKMath + TKMesh + TKService + TKTopAlgo + TKV3d + vtkCommonCore + vtkRenderingCore + vtkRenderingOpenGL + vtkRenderingFreeType + vtkRenderingFreeTypeOpenGL + vtkFiltersGeneral + vtkInteractionStyle +) diff --git a/src/Visualization/TKIVtk/FILES.cmake b/src/Visualization/TKIVtk/FILES.cmake new file mode 100644 index 0000000000..731582b22f --- /dev/null +++ b/src/Visualization/TKIVtk/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKIVtk +set(OCCT_TKIVtk_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKIVtk_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/Visualization/TKIVtk/IVtk/FILES.cmake b/src/Visualization/TKIVtk/IVtk/FILES.cmake new file mode 100644 index 0000000000..73fd3b0990 --- /dev/null +++ b/src/Visualization/TKIVtk/IVtk/FILES.cmake @@ -0,0 +1,18 @@ +# Source files for IVtk package +set(OCCT_IVtk_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IVtk_FILES + IVtk_Interface.cxx + IVtk_Interface.hxx + IVtk_IShape.cxx + IVtk_IShape.hxx + IVtk_IShapeData.cxx + IVtk_IShapeData.hxx + IVtk_IShapeMesher.cxx + IVtk_IShapeMesher.hxx + IVtk_IShapePickerAlgo.cxx + IVtk_IShapePickerAlgo.hxx + IVtk_IView.cxx + IVtk_IView.hxx + IVtk_Types.hxx +) diff --git a/src/IVtk/IVtk_IShape.cxx b/src/Visualization/TKIVtk/IVtk/IVtk_IShape.cxx similarity index 100% rename from src/IVtk/IVtk_IShape.cxx rename to src/Visualization/TKIVtk/IVtk/IVtk_IShape.cxx diff --git a/src/IVtk/IVtk_IShape.hxx b/src/Visualization/TKIVtk/IVtk/IVtk_IShape.hxx similarity index 100% rename from src/IVtk/IVtk_IShape.hxx rename to src/Visualization/TKIVtk/IVtk/IVtk_IShape.hxx diff --git a/src/IVtk/IVtk_IShapeData.cxx b/src/Visualization/TKIVtk/IVtk/IVtk_IShapeData.cxx similarity index 100% rename from src/IVtk/IVtk_IShapeData.cxx rename to src/Visualization/TKIVtk/IVtk/IVtk_IShapeData.cxx diff --git a/src/IVtk/IVtk_IShapeData.hxx b/src/Visualization/TKIVtk/IVtk/IVtk_IShapeData.hxx similarity index 100% rename from src/IVtk/IVtk_IShapeData.hxx rename to src/Visualization/TKIVtk/IVtk/IVtk_IShapeData.hxx diff --git a/src/IVtk/IVtk_IShapeMesher.cxx b/src/Visualization/TKIVtk/IVtk/IVtk_IShapeMesher.cxx similarity index 100% rename from src/IVtk/IVtk_IShapeMesher.cxx rename to src/Visualization/TKIVtk/IVtk/IVtk_IShapeMesher.cxx diff --git a/src/IVtk/IVtk_IShapeMesher.hxx b/src/Visualization/TKIVtk/IVtk/IVtk_IShapeMesher.hxx similarity index 100% rename from src/IVtk/IVtk_IShapeMesher.hxx rename to src/Visualization/TKIVtk/IVtk/IVtk_IShapeMesher.hxx diff --git a/src/IVtk/IVtk_IShapePickerAlgo.cxx b/src/Visualization/TKIVtk/IVtk/IVtk_IShapePickerAlgo.cxx similarity index 100% rename from src/IVtk/IVtk_IShapePickerAlgo.cxx rename to src/Visualization/TKIVtk/IVtk/IVtk_IShapePickerAlgo.cxx diff --git a/src/IVtk/IVtk_IShapePickerAlgo.hxx b/src/Visualization/TKIVtk/IVtk/IVtk_IShapePickerAlgo.hxx similarity index 100% rename from src/IVtk/IVtk_IShapePickerAlgo.hxx rename to src/Visualization/TKIVtk/IVtk/IVtk_IShapePickerAlgo.hxx diff --git a/src/IVtk/IVtk_IView.cxx b/src/Visualization/TKIVtk/IVtk/IVtk_IView.cxx similarity index 100% rename from src/IVtk/IVtk_IView.cxx rename to src/Visualization/TKIVtk/IVtk/IVtk_IView.cxx diff --git a/src/IVtk/IVtk_IView.hxx b/src/Visualization/TKIVtk/IVtk/IVtk_IView.hxx similarity index 100% rename from src/IVtk/IVtk_IView.hxx rename to src/Visualization/TKIVtk/IVtk/IVtk_IView.hxx diff --git a/src/IVtk/IVtk_Interface.cxx b/src/Visualization/TKIVtk/IVtk/IVtk_Interface.cxx similarity index 100% rename from src/IVtk/IVtk_Interface.cxx rename to src/Visualization/TKIVtk/IVtk/IVtk_Interface.cxx diff --git a/src/IVtk/IVtk_Interface.hxx b/src/Visualization/TKIVtk/IVtk/IVtk_Interface.hxx similarity index 100% rename from src/IVtk/IVtk_Interface.hxx rename to src/Visualization/TKIVtk/IVtk/IVtk_Interface.hxx diff --git a/src/IVtk/IVtk_Types.hxx b/src/Visualization/TKIVtk/IVtk/IVtk_Types.hxx similarity index 100% rename from src/IVtk/IVtk_Types.hxx rename to src/Visualization/TKIVtk/IVtk/IVtk_Types.hxx diff --git a/src/Visualization/TKIVtk/IVtkOCC/FILES.cmake b/src/Visualization/TKIVtk/IVtkOCC/FILES.cmake new file mode 100644 index 0000000000..32b00d76ec --- /dev/null +++ b/src/Visualization/TKIVtk/IVtkOCC/FILES.cmake @@ -0,0 +1,15 @@ +# Source files for IVtkOCC package +set(OCCT_IVtkOCC_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IVtkOCC_FILES + IVtkOCC_SelectableObject.cxx + IVtkOCC_SelectableObject.hxx + IVtkOCC_Shape.cxx + IVtkOCC_Shape.hxx + IVtkOCC_ShapeMesher.cxx + IVtkOCC_ShapeMesher.hxx + IVtkOCC_ShapePickerAlgo.cxx + IVtkOCC_ShapePickerAlgo.hxx + IVtkOCC_ViewerSelector.cxx + IVtkOCC_ViewerSelector.hxx +) diff --git a/src/IVtkOCC/IVtkOCC_SelectableObject.cxx b/src/Visualization/TKIVtk/IVtkOCC/IVtkOCC_SelectableObject.cxx similarity index 100% rename from src/IVtkOCC/IVtkOCC_SelectableObject.cxx rename to src/Visualization/TKIVtk/IVtkOCC/IVtkOCC_SelectableObject.cxx diff --git a/src/IVtkOCC/IVtkOCC_SelectableObject.hxx b/src/Visualization/TKIVtk/IVtkOCC/IVtkOCC_SelectableObject.hxx similarity index 100% rename from src/IVtkOCC/IVtkOCC_SelectableObject.hxx rename to src/Visualization/TKIVtk/IVtkOCC/IVtkOCC_SelectableObject.hxx diff --git a/src/IVtkOCC/IVtkOCC_Shape.cxx b/src/Visualization/TKIVtk/IVtkOCC/IVtkOCC_Shape.cxx similarity index 100% rename from src/IVtkOCC/IVtkOCC_Shape.cxx rename to src/Visualization/TKIVtk/IVtkOCC/IVtkOCC_Shape.cxx diff --git a/src/IVtkOCC/IVtkOCC_Shape.hxx b/src/Visualization/TKIVtk/IVtkOCC/IVtkOCC_Shape.hxx similarity index 100% rename from src/IVtkOCC/IVtkOCC_Shape.hxx rename to src/Visualization/TKIVtk/IVtkOCC/IVtkOCC_Shape.hxx diff --git a/src/IVtkOCC/IVtkOCC_ShapeMesher.cxx b/src/Visualization/TKIVtk/IVtkOCC/IVtkOCC_ShapeMesher.cxx similarity index 100% rename from src/IVtkOCC/IVtkOCC_ShapeMesher.cxx rename to src/Visualization/TKIVtk/IVtkOCC/IVtkOCC_ShapeMesher.cxx diff --git a/src/IVtkOCC/IVtkOCC_ShapeMesher.hxx b/src/Visualization/TKIVtk/IVtkOCC/IVtkOCC_ShapeMesher.hxx similarity index 100% rename from src/IVtkOCC/IVtkOCC_ShapeMesher.hxx rename to src/Visualization/TKIVtk/IVtkOCC/IVtkOCC_ShapeMesher.hxx diff --git a/src/IVtkOCC/IVtkOCC_ShapePickerAlgo.cxx b/src/Visualization/TKIVtk/IVtkOCC/IVtkOCC_ShapePickerAlgo.cxx similarity index 100% rename from src/IVtkOCC/IVtkOCC_ShapePickerAlgo.cxx rename to src/Visualization/TKIVtk/IVtkOCC/IVtkOCC_ShapePickerAlgo.cxx diff --git a/src/IVtkOCC/IVtkOCC_ShapePickerAlgo.hxx b/src/Visualization/TKIVtk/IVtkOCC/IVtkOCC_ShapePickerAlgo.hxx similarity index 100% rename from src/IVtkOCC/IVtkOCC_ShapePickerAlgo.hxx rename to src/Visualization/TKIVtk/IVtkOCC/IVtkOCC_ShapePickerAlgo.hxx diff --git a/src/IVtkOCC/IVtkOCC_ViewerSelector.cxx b/src/Visualization/TKIVtk/IVtkOCC/IVtkOCC_ViewerSelector.cxx similarity index 100% rename from src/IVtkOCC/IVtkOCC_ViewerSelector.cxx rename to src/Visualization/TKIVtk/IVtkOCC/IVtkOCC_ViewerSelector.cxx diff --git a/src/IVtkOCC/IVtkOCC_ViewerSelector.hxx b/src/Visualization/TKIVtk/IVtkOCC/IVtkOCC_ViewerSelector.hxx similarity index 100% rename from src/IVtkOCC/IVtkOCC_ViewerSelector.hxx rename to src/Visualization/TKIVtk/IVtkOCC/IVtkOCC_ViewerSelector.hxx diff --git a/src/Visualization/TKIVtk/IVtkTools/FILES.cmake b/src/Visualization/TKIVtk/IVtkTools/FILES.cmake new file mode 100644 index 0000000000..6934e5d2d4 --- /dev/null +++ b/src/Visualization/TKIVtk/IVtkTools/FILES.cmake @@ -0,0 +1,17 @@ +# Source files for IVtkTools package +set(OCCT_IVtkTools_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IVtkTools_FILES + IVtkTools.cxx + IVtkTools.hxx + IVtkTools_DisplayModeFilter.cxx + IVtkTools_DisplayModeFilter.hxx + IVtkTools_ShapeDataSource.cxx + IVtkTools_ShapeDataSource.hxx + IVtkTools_ShapeObject.cxx + IVtkTools_ShapeObject.hxx + IVtkTools_ShapePicker.cxx + IVtkTools_ShapePicker.hxx + IVtkTools_SubPolyDataFilter.cxx + IVtkTools_SubPolyDataFilter.hxx +) diff --git a/src/IVtkTools/IVtkTools.cxx b/src/Visualization/TKIVtk/IVtkTools/IVtkTools.cxx similarity index 100% rename from src/IVtkTools/IVtkTools.cxx rename to src/Visualization/TKIVtk/IVtkTools/IVtkTools.cxx diff --git a/src/IVtkTools/IVtkTools.hxx b/src/Visualization/TKIVtk/IVtkTools/IVtkTools.hxx similarity index 100% rename from src/IVtkTools/IVtkTools.hxx rename to src/Visualization/TKIVtk/IVtkTools/IVtkTools.hxx diff --git a/src/IVtkTools/IVtkTools_DisplayModeFilter.cxx b/src/Visualization/TKIVtk/IVtkTools/IVtkTools_DisplayModeFilter.cxx similarity index 100% rename from src/IVtkTools/IVtkTools_DisplayModeFilter.cxx rename to src/Visualization/TKIVtk/IVtkTools/IVtkTools_DisplayModeFilter.cxx diff --git a/src/IVtkTools/IVtkTools_DisplayModeFilter.hxx b/src/Visualization/TKIVtk/IVtkTools/IVtkTools_DisplayModeFilter.hxx similarity index 100% rename from src/IVtkTools/IVtkTools_DisplayModeFilter.hxx rename to src/Visualization/TKIVtk/IVtkTools/IVtkTools_DisplayModeFilter.hxx diff --git a/src/IVtkTools/IVtkTools_ShapeDataSource.cxx b/src/Visualization/TKIVtk/IVtkTools/IVtkTools_ShapeDataSource.cxx similarity index 100% rename from src/IVtkTools/IVtkTools_ShapeDataSource.cxx rename to src/Visualization/TKIVtk/IVtkTools/IVtkTools_ShapeDataSource.cxx diff --git a/src/IVtkTools/IVtkTools_ShapeDataSource.hxx b/src/Visualization/TKIVtk/IVtkTools/IVtkTools_ShapeDataSource.hxx similarity index 100% rename from src/IVtkTools/IVtkTools_ShapeDataSource.hxx rename to src/Visualization/TKIVtk/IVtkTools/IVtkTools_ShapeDataSource.hxx diff --git a/src/IVtkTools/IVtkTools_ShapeObject.cxx b/src/Visualization/TKIVtk/IVtkTools/IVtkTools_ShapeObject.cxx similarity index 100% rename from src/IVtkTools/IVtkTools_ShapeObject.cxx rename to src/Visualization/TKIVtk/IVtkTools/IVtkTools_ShapeObject.cxx diff --git a/src/IVtkTools/IVtkTools_ShapeObject.hxx b/src/Visualization/TKIVtk/IVtkTools/IVtkTools_ShapeObject.hxx similarity index 100% rename from src/IVtkTools/IVtkTools_ShapeObject.hxx rename to src/Visualization/TKIVtk/IVtkTools/IVtkTools_ShapeObject.hxx diff --git a/src/IVtkTools/IVtkTools_ShapePicker.cxx b/src/Visualization/TKIVtk/IVtkTools/IVtkTools_ShapePicker.cxx similarity index 100% rename from src/IVtkTools/IVtkTools_ShapePicker.cxx rename to src/Visualization/TKIVtk/IVtkTools/IVtkTools_ShapePicker.cxx diff --git a/src/IVtkTools/IVtkTools_ShapePicker.hxx b/src/Visualization/TKIVtk/IVtkTools/IVtkTools_ShapePicker.hxx similarity index 100% rename from src/IVtkTools/IVtkTools_ShapePicker.hxx rename to src/Visualization/TKIVtk/IVtkTools/IVtkTools_ShapePicker.hxx diff --git a/src/IVtkTools/IVtkTools_SubPolyDataFilter.cxx b/src/Visualization/TKIVtk/IVtkTools/IVtkTools_SubPolyDataFilter.cxx similarity index 100% rename from src/IVtkTools/IVtkTools_SubPolyDataFilter.cxx rename to src/Visualization/TKIVtk/IVtkTools/IVtkTools_SubPolyDataFilter.cxx diff --git a/src/IVtkTools/IVtkTools_SubPolyDataFilter.hxx b/src/Visualization/TKIVtk/IVtkTools/IVtkTools_SubPolyDataFilter.hxx similarity index 100% rename from src/IVtkTools/IVtkTools_SubPolyDataFilter.hxx rename to src/Visualization/TKIVtk/IVtkTools/IVtkTools_SubPolyDataFilter.hxx diff --git a/src/Visualization/TKIVtk/IVtkVTK/FILES.cmake b/src/Visualization/TKIVtk/IVtkVTK/FILES.cmake new file mode 100644 index 0000000000..52344830c3 --- /dev/null +++ b/src/Visualization/TKIVtk/IVtkVTK/FILES.cmake @@ -0,0 +1,9 @@ +# Source files for IVtkVTK package +set(OCCT_IVtkVTK_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_IVtkVTK_FILES + IVtkVTK_ShapeData.cxx + IVtkVTK_ShapeData.hxx + IVtkVTK_View.cxx + IVtkVTK_View.hxx +) diff --git a/src/IVtkVTK/IVtkVTK_ShapeData.cxx b/src/Visualization/TKIVtk/IVtkVTK/IVtkVTK_ShapeData.cxx similarity index 100% rename from src/IVtkVTK/IVtkVTK_ShapeData.cxx rename to src/Visualization/TKIVtk/IVtkVTK/IVtkVTK_ShapeData.cxx diff --git a/src/IVtkVTK/IVtkVTK_ShapeData.hxx b/src/Visualization/TKIVtk/IVtkVTK/IVtkVTK_ShapeData.hxx similarity index 100% rename from src/IVtkVTK/IVtkVTK_ShapeData.hxx rename to src/Visualization/TKIVtk/IVtkVTK/IVtkVTK_ShapeData.hxx diff --git a/src/IVtkVTK/IVtkVTK_View.cxx b/src/Visualization/TKIVtk/IVtkVTK/IVtkVTK_View.cxx similarity index 100% rename from src/IVtkVTK/IVtkVTK_View.cxx rename to src/Visualization/TKIVtk/IVtkVTK/IVtkVTK_View.cxx diff --git a/src/IVtkVTK/IVtkVTK_View.hxx b/src/Visualization/TKIVtk/IVtkVTK/IVtkVTK_View.hxx similarity index 100% rename from src/IVtkVTK/IVtkVTK_View.hxx rename to src/Visualization/TKIVtk/IVtkVTK/IVtkVTK_View.hxx diff --git a/src/Visualization/TKIVtk/PACKAGES.cmake b/src/Visualization/TKIVtk/PACKAGES.cmake new file mode 100644 index 0000000000..af12aeaabc --- /dev/null +++ b/src/Visualization/TKIVtk/PACKAGES.cmake @@ -0,0 +1,7 @@ +# Auto-generated list of packages for TKIVtk toolkit +set(OCCT_TKIVtk_LIST_OF_PACKAGES + IVtk + IVtkOCC + IVtkVTK + IVtkTools +) diff --git a/src/TKMeshVS/CMakeLists.txt b/src/Visualization/TKMeshVS/CMakeLists.txt similarity index 100% rename from src/TKMeshVS/CMakeLists.txt rename to src/Visualization/TKMeshVS/CMakeLists.txt diff --git a/src/Visualization/TKMeshVS/EXTERNLIB.cmake b/src/Visualization/TKMeshVS/EXTERNLIB.cmake new file mode 100644 index 0000000000..a92b2f25f2 --- /dev/null +++ b/src/Visualization/TKMeshVS/EXTERNLIB.cmake @@ -0,0 +1,9 @@ +# External dependencies for TKMeshVS +set(OCCT_TKMeshVS_EXTERNAL_LIBS + TKV3d + TKMath + TKService + TKernel + TKG3d + TKG2d +) diff --git a/src/Visualization/TKMeshVS/FILES.cmake b/src/Visualization/TKMeshVS/FILES.cmake new file mode 100644 index 0000000000..94dbadf6da --- /dev/null +++ b/src/Visualization/TKMeshVS/FILES.cmake @@ -0,0 +1,6 @@ +# Source files for TKMeshVS +set(OCCT_TKMeshVS_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKMeshVS_FILES + EXTERNLIB +) diff --git a/src/Visualization/TKMeshVS/MeshVS/FILES.cmake b/src/Visualization/TKMeshVS/MeshVS/FILES.cmake new file mode 100644 index 0000000000..0f82f19bf4 --- /dev/null +++ b/src/Visualization/TKMeshVS/MeshVS/FILES.cmake @@ -0,0 +1,86 @@ +# Source files for MeshVS package +set(OCCT_MeshVS_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_MeshVS_FILES + MeshVS_Array1OfSequenceOfInteger.hxx + MeshVS_Buffer.hxx + MeshVS_BuilderPriority.hxx + MeshVS_CommonSensitiveEntity.hxx + MeshVS_CommonSensitiveEntity.cxx + MeshVS_DataMapIteratorOfDataMapOfColorMapOfInteger.hxx + MeshVS_DataMapIteratorOfDataMapOfHArray1OfSequenceOfInteger.hxx + MeshVS_DataMapIteratorOfDataMapOfIntegerAsciiString.hxx + MeshVS_DataMapIteratorOfDataMapOfIntegerBoolean.hxx + MeshVS_DataMapIteratorOfDataMapOfIntegerColor.hxx + MeshVS_DataMapIteratorOfDataMapOfIntegerMaterial.hxx + MeshVS_DataMapIteratorOfDataMapOfIntegerMeshEntityOwner.hxx + MeshVS_DataMapIteratorOfDataMapOfIntegerOwner.hxx + MeshVS_DataMapIteratorOfDataMapOfIntegerTwoColors.hxx + MeshVS_DataMapIteratorOfDataMapOfIntegerVector.hxx + MeshVS_DataMapIteratorOfDataMapOfTwoColorsMapOfInteger.hxx + MeshVS_DataMapOfColorMapOfInteger.hxx + MeshVS_DataMapOfHArray1OfSequenceOfInteger.hxx + MeshVS_DataMapOfIntegerAsciiString.hxx + MeshVS_DataMapOfIntegerBoolean.hxx + MeshVS_DataMapOfIntegerColor.hxx + MeshVS_DataMapOfIntegerMaterial.hxx + MeshVS_DataMapOfIntegerMeshEntityOwner.hxx + MeshVS_DataMapOfIntegerOwner.hxx + MeshVS_DataMapOfIntegerTwoColors.hxx + MeshVS_DataMapOfIntegerVector.hxx + MeshVS_DataMapOfTwoColorsMapOfInteger.hxx + MeshVS_DataSource.cxx + MeshVS_DataSource.hxx + MeshVS_DataSource3D.cxx + MeshVS_DataSource3D.hxx + MeshVS_DeformedDataSource.cxx + MeshVS_DeformedDataSource.hxx + MeshVS_DisplayModeFlags.hxx + MeshVS_Drawer.cxx + MeshVS_Drawer.hxx + MeshVS_DrawerAttribute.hxx + MeshVS_DummySensitiveEntity.cxx + MeshVS_DummySensitiveEntity.hxx + MeshVS_ElementalColorPrsBuilder.cxx + MeshVS_ElementalColorPrsBuilder.hxx + MeshVS_EntityType.hxx + MeshVS_HArray1OfSequenceOfInteger.hxx + MeshVS_MapIteratorOfMapOfTwoNodes.hxx + MeshVS_MapOfTwoNodes.hxx + MeshVS_Mesh.cxx + MeshVS_Mesh.hxx + MeshVS_MeshEntityOwner.cxx + MeshVS_MeshEntityOwner.hxx + MeshVS_MeshOwner.cxx + MeshVS_MeshOwner.hxx + MeshVS_MeshPrsBuilder.cxx + MeshVS_MeshPrsBuilder.hxx + MeshVS_MeshPtr.hxx + MeshVS_MeshSelectionMethod.hxx + MeshVS_NodalColorPrsBuilder.cxx + MeshVS_NodalColorPrsBuilder.hxx + MeshVS_PrsBuilder.cxx + MeshVS_PrsBuilder.hxx + MeshVS_SelectionModeFlags.hxx + MeshVS_SensitiveFace.cxx + MeshVS_SensitiveFace.hxx + MeshVS_SensitiveMesh.cxx + MeshVS_SensitiveMesh.hxx + MeshVS_SensitivePolyhedron.cxx + MeshVS_SensitivePolyhedron.hxx + MeshVS_SensitiveSegment.cxx + MeshVS_SensitiveSegment.hxx + MeshVS_SensitiveQuad.hxx + MeshVS_SensitiveQuad.cxx + MeshVS_SequenceOfPrsBuilder.hxx + MeshVS_SymmetricPairHasher.hxx + MeshVS_TextPrsBuilder.cxx + MeshVS_TextPrsBuilder.hxx + MeshVS_Tool.cxx + MeshVS_Tool.hxx + MeshVS_TwoColors.cxx + MeshVS_TwoColors.hxx + MeshVS_TwoNodes.hxx + MeshVS_VectorPrsBuilder.cxx + MeshVS_VectorPrsBuilder.hxx +) diff --git a/src/MeshVS/MeshVS_Array1OfSequenceOfInteger.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_Array1OfSequenceOfInteger.hxx similarity index 100% rename from src/MeshVS/MeshVS_Array1OfSequenceOfInteger.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_Array1OfSequenceOfInteger.hxx diff --git a/src/MeshVS/MeshVS_Buffer.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_Buffer.hxx similarity index 100% rename from src/MeshVS/MeshVS_Buffer.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_Buffer.hxx diff --git a/src/MeshVS/MeshVS_BuilderPriority.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_BuilderPriority.hxx similarity index 100% rename from src/MeshVS/MeshVS_BuilderPriority.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_BuilderPriority.hxx diff --git a/src/MeshVS/MeshVS_CommonSensitiveEntity.cxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_CommonSensitiveEntity.cxx similarity index 100% rename from src/MeshVS/MeshVS_CommonSensitiveEntity.cxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_CommonSensitiveEntity.cxx diff --git a/src/MeshVS/MeshVS_CommonSensitiveEntity.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_CommonSensitiveEntity.hxx similarity index 100% rename from src/MeshVS/MeshVS_CommonSensitiveEntity.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_CommonSensitiveEntity.hxx diff --git a/src/MeshVS/MeshVS_DataMapIteratorOfDataMapOfColorMapOfInteger.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapIteratorOfDataMapOfColorMapOfInteger.hxx similarity index 100% rename from src/MeshVS/MeshVS_DataMapIteratorOfDataMapOfColorMapOfInteger.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapIteratorOfDataMapOfColorMapOfInteger.hxx diff --git a/src/MeshVS/MeshVS_DataMapIteratorOfDataMapOfHArray1OfSequenceOfInteger.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapIteratorOfDataMapOfHArray1OfSequenceOfInteger.hxx similarity index 100% rename from src/MeshVS/MeshVS_DataMapIteratorOfDataMapOfHArray1OfSequenceOfInteger.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapIteratorOfDataMapOfHArray1OfSequenceOfInteger.hxx diff --git a/src/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerAsciiString.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerAsciiString.hxx similarity index 100% rename from src/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerAsciiString.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerAsciiString.hxx diff --git a/src/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerBoolean.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerBoolean.hxx similarity index 100% rename from src/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerBoolean.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerBoolean.hxx diff --git a/src/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerColor.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerColor.hxx similarity index 100% rename from src/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerColor.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerColor.hxx diff --git a/src/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerMaterial.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerMaterial.hxx similarity index 100% rename from src/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerMaterial.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerMaterial.hxx diff --git a/src/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerMeshEntityOwner.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerMeshEntityOwner.hxx similarity index 100% rename from src/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerMeshEntityOwner.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerMeshEntityOwner.hxx diff --git a/src/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerOwner.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerOwner.hxx similarity index 100% rename from src/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerOwner.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerOwner.hxx diff --git a/src/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerTwoColors.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerTwoColors.hxx similarity index 100% rename from src/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerTwoColors.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerTwoColors.hxx diff --git a/src/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerVector.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerVector.hxx similarity index 100% rename from src/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerVector.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapIteratorOfDataMapOfIntegerVector.hxx diff --git a/src/MeshVS/MeshVS_DataMapIteratorOfDataMapOfTwoColorsMapOfInteger.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapIteratorOfDataMapOfTwoColorsMapOfInteger.hxx similarity index 100% rename from src/MeshVS/MeshVS_DataMapIteratorOfDataMapOfTwoColorsMapOfInteger.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapIteratorOfDataMapOfTwoColorsMapOfInteger.hxx diff --git a/src/MeshVS/MeshVS_DataMapOfColorMapOfInteger.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapOfColorMapOfInteger.hxx similarity index 100% rename from src/MeshVS/MeshVS_DataMapOfColorMapOfInteger.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapOfColorMapOfInteger.hxx diff --git a/src/MeshVS/MeshVS_DataMapOfHArray1OfSequenceOfInteger.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapOfHArray1OfSequenceOfInteger.hxx similarity index 100% rename from src/MeshVS/MeshVS_DataMapOfHArray1OfSequenceOfInteger.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapOfHArray1OfSequenceOfInteger.hxx diff --git a/src/MeshVS/MeshVS_DataMapOfIntegerAsciiString.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapOfIntegerAsciiString.hxx similarity index 100% rename from src/MeshVS/MeshVS_DataMapOfIntegerAsciiString.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapOfIntegerAsciiString.hxx diff --git a/src/MeshVS/MeshVS_DataMapOfIntegerBoolean.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapOfIntegerBoolean.hxx similarity index 100% rename from src/MeshVS/MeshVS_DataMapOfIntegerBoolean.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapOfIntegerBoolean.hxx diff --git a/src/MeshVS/MeshVS_DataMapOfIntegerColor.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapOfIntegerColor.hxx similarity index 100% rename from src/MeshVS/MeshVS_DataMapOfIntegerColor.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapOfIntegerColor.hxx diff --git a/src/MeshVS/MeshVS_DataMapOfIntegerMaterial.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapOfIntegerMaterial.hxx similarity index 100% rename from src/MeshVS/MeshVS_DataMapOfIntegerMaterial.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapOfIntegerMaterial.hxx diff --git a/src/MeshVS/MeshVS_DataMapOfIntegerMeshEntityOwner.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapOfIntegerMeshEntityOwner.hxx similarity index 100% rename from src/MeshVS/MeshVS_DataMapOfIntegerMeshEntityOwner.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapOfIntegerMeshEntityOwner.hxx diff --git a/src/MeshVS/MeshVS_DataMapOfIntegerOwner.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapOfIntegerOwner.hxx similarity index 100% rename from src/MeshVS/MeshVS_DataMapOfIntegerOwner.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapOfIntegerOwner.hxx diff --git a/src/MeshVS/MeshVS_DataMapOfIntegerTwoColors.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapOfIntegerTwoColors.hxx similarity index 100% rename from src/MeshVS/MeshVS_DataMapOfIntegerTwoColors.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapOfIntegerTwoColors.hxx diff --git a/src/MeshVS/MeshVS_DataMapOfIntegerVector.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapOfIntegerVector.hxx similarity index 100% rename from src/MeshVS/MeshVS_DataMapOfIntegerVector.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapOfIntegerVector.hxx diff --git a/src/MeshVS/MeshVS_DataMapOfTwoColorsMapOfInteger.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapOfTwoColorsMapOfInteger.hxx similarity index 100% rename from src/MeshVS/MeshVS_DataMapOfTwoColorsMapOfInteger.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataMapOfTwoColorsMapOfInteger.hxx diff --git a/src/MeshVS/MeshVS_DataSource.cxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataSource.cxx similarity index 100% rename from src/MeshVS/MeshVS_DataSource.cxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataSource.cxx diff --git a/src/MeshVS/MeshVS_DataSource.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataSource.hxx similarity index 100% rename from src/MeshVS/MeshVS_DataSource.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataSource.hxx diff --git a/src/MeshVS/MeshVS_DataSource3D.cxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataSource3D.cxx similarity index 100% rename from src/MeshVS/MeshVS_DataSource3D.cxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataSource3D.cxx diff --git a/src/MeshVS/MeshVS_DataSource3D.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DataSource3D.hxx similarity index 100% rename from src/MeshVS/MeshVS_DataSource3D.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DataSource3D.hxx diff --git a/src/MeshVS/MeshVS_DeformedDataSource.cxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DeformedDataSource.cxx similarity index 100% rename from src/MeshVS/MeshVS_DeformedDataSource.cxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DeformedDataSource.cxx diff --git a/src/MeshVS/MeshVS_DeformedDataSource.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DeformedDataSource.hxx similarity index 100% rename from src/MeshVS/MeshVS_DeformedDataSource.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DeformedDataSource.hxx diff --git a/src/MeshVS/MeshVS_DisplayModeFlags.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DisplayModeFlags.hxx similarity index 100% rename from src/MeshVS/MeshVS_DisplayModeFlags.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DisplayModeFlags.hxx diff --git a/src/MeshVS/MeshVS_Drawer.cxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_Drawer.cxx similarity index 100% rename from src/MeshVS/MeshVS_Drawer.cxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_Drawer.cxx diff --git a/src/MeshVS/MeshVS_Drawer.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_Drawer.hxx similarity index 100% rename from src/MeshVS/MeshVS_Drawer.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_Drawer.hxx diff --git a/src/MeshVS/MeshVS_DrawerAttribute.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DrawerAttribute.hxx similarity index 100% rename from src/MeshVS/MeshVS_DrawerAttribute.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DrawerAttribute.hxx diff --git a/src/MeshVS/MeshVS_DummySensitiveEntity.cxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DummySensitiveEntity.cxx similarity index 100% rename from src/MeshVS/MeshVS_DummySensitiveEntity.cxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DummySensitiveEntity.cxx diff --git a/src/MeshVS/MeshVS_DummySensitiveEntity.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_DummySensitiveEntity.hxx similarity index 100% rename from src/MeshVS/MeshVS_DummySensitiveEntity.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_DummySensitiveEntity.hxx diff --git a/src/MeshVS/MeshVS_ElementalColorPrsBuilder.cxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_ElementalColorPrsBuilder.cxx similarity index 100% rename from src/MeshVS/MeshVS_ElementalColorPrsBuilder.cxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_ElementalColorPrsBuilder.cxx diff --git a/src/MeshVS/MeshVS_ElementalColorPrsBuilder.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_ElementalColorPrsBuilder.hxx similarity index 100% rename from src/MeshVS/MeshVS_ElementalColorPrsBuilder.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_ElementalColorPrsBuilder.hxx diff --git a/src/MeshVS/MeshVS_EntityType.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_EntityType.hxx similarity index 100% rename from src/MeshVS/MeshVS_EntityType.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_EntityType.hxx diff --git a/src/MeshVS/MeshVS_HArray1OfSequenceOfInteger.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_HArray1OfSequenceOfInteger.hxx similarity index 100% rename from src/MeshVS/MeshVS_HArray1OfSequenceOfInteger.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_HArray1OfSequenceOfInteger.hxx diff --git a/src/MeshVS/MeshVS_MapIteratorOfMapOfTwoNodes.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_MapIteratorOfMapOfTwoNodes.hxx similarity index 100% rename from src/MeshVS/MeshVS_MapIteratorOfMapOfTwoNodes.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_MapIteratorOfMapOfTwoNodes.hxx diff --git a/src/MeshVS/MeshVS_MapOfTwoNodes.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_MapOfTwoNodes.hxx similarity index 100% rename from src/MeshVS/MeshVS_MapOfTwoNodes.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_MapOfTwoNodes.hxx diff --git a/src/MeshVS/MeshVS_Mesh.cxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_Mesh.cxx similarity index 100% rename from src/MeshVS/MeshVS_Mesh.cxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_Mesh.cxx diff --git a/src/MeshVS/MeshVS_Mesh.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_Mesh.hxx similarity index 100% rename from src/MeshVS/MeshVS_Mesh.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_Mesh.hxx diff --git a/src/MeshVS/MeshVS_MeshEntityOwner.cxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_MeshEntityOwner.cxx similarity index 100% rename from src/MeshVS/MeshVS_MeshEntityOwner.cxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_MeshEntityOwner.cxx diff --git a/src/MeshVS/MeshVS_MeshEntityOwner.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_MeshEntityOwner.hxx similarity index 100% rename from src/MeshVS/MeshVS_MeshEntityOwner.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_MeshEntityOwner.hxx diff --git a/src/MeshVS/MeshVS_MeshOwner.cxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_MeshOwner.cxx similarity index 100% rename from src/MeshVS/MeshVS_MeshOwner.cxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_MeshOwner.cxx diff --git a/src/MeshVS/MeshVS_MeshOwner.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_MeshOwner.hxx similarity index 100% rename from src/MeshVS/MeshVS_MeshOwner.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_MeshOwner.hxx diff --git a/src/MeshVS/MeshVS_MeshPrsBuilder.cxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_MeshPrsBuilder.cxx similarity index 100% rename from src/MeshVS/MeshVS_MeshPrsBuilder.cxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_MeshPrsBuilder.cxx diff --git a/src/MeshVS/MeshVS_MeshPrsBuilder.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_MeshPrsBuilder.hxx similarity index 100% rename from src/MeshVS/MeshVS_MeshPrsBuilder.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_MeshPrsBuilder.hxx diff --git a/src/MeshVS/MeshVS_MeshPtr.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_MeshPtr.hxx similarity index 100% rename from src/MeshVS/MeshVS_MeshPtr.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_MeshPtr.hxx diff --git a/src/MeshVS/MeshVS_MeshSelectionMethod.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_MeshSelectionMethod.hxx similarity index 100% rename from src/MeshVS/MeshVS_MeshSelectionMethod.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_MeshSelectionMethod.hxx diff --git a/src/MeshVS/MeshVS_NodalColorPrsBuilder.cxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_NodalColorPrsBuilder.cxx similarity index 100% rename from src/MeshVS/MeshVS_NodalColorPrsBuilder.cxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_NodalColorPrsBuilder.cxx diff --git a/src/MeshVS/MeshVS_NodalColorPrsBuilder.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_NodalColorPrsBuilder.hxx similarity index 100% rename from src/MeshVS/MeshVS_NodalColorPrsBuilder.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_NodalColorPrsBuilder.hxx diff --git a/src/MeshVS/MeshVS_PrsBuilder.cxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_PrsBuilder.cxx similarity index 100% rename from src/MeshVS/MeshVS_PrsBuilder.cxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_PrsBuilder.cxx diff --git a/src/MeshVS/MeshVS_PrsBuilder.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_PrsBuilder.hxx similarity index 100% rename from src/MeshVS/MeshVS_PrsBuilder.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_PrsBuilder.hxx diff --git a/src/MeshVS/MeshVS_SelectionModeFlags.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_SelectionModeFlags.hxx similarity index 100% rename from src/MeshVS/MeshVS_SelectionModeFlags.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_SelectionModeFlags.hxx diff --git a/src/MeshVS/MeshVS_SensitiveFace.cxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_SensitiveFace.cxx similarity index 100% rename from src/MeshVS/MeshVS_SensitiveFace.cxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_SensitiveFace.cxx diff --git a/src/MeshVS/MeshVS_SensitiveFace.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_SensitiveFace.hxx similarity index 100% rename from src/MeshVS/MeshVS_SensitiveFace.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_SensitiveFace.hxx diff --git a/src/MeshVS/MeshVS_SensitiveMesh.cxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_SensitiveMesh.cxx similarity index 100% rename from src/MeshVS/MeshVS_SensitiveMesh.cxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_SensitiveMesh.cxx diff --git a/src/MeshVS/MeshVS_SensitiveMesh.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_SensitiveMesh.hxx similarity index 100% rename from src/MeshVS/MeshVS_SensitiveMesh.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_SensitiveMesh.hxx diff --git a/src/MeshVS/MeshVS_SensitivePolyhedron.cxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_SensitivePolyhedron.cxx similarity index 100% rename from src/MeshVS/MeshVS_SensitivePolyhedron.cxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_SensitivePolyhedron.cxx diff --git a/src/MeshVS/MeshVS_SensitivePolyhedron.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_SensitivePolyhedron.hxx similarity index 100% rename from src/MeshVS/MeshVS_SensitivePolyhedron.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_SensitivePolyhedron.hxx diff --git a/src/MeshVS/MeshVS_SensitiveQuad.cxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_SensitiveQuad.cxx similarity index 100% rename from src/MeshVS/MeshVS_SensitiveQuad.cxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_SensitiveQuad.cxx diff --git a/src/MeshVS/MeshVS_SensitiveQuad.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_SensitiveQuad.hxx similarity index 100% rename from src/MeshVS/MeshVS_SensitiveQuad.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_SensitiveQuad.hxx diff --git a/src/MeshVS/MeshVS_SensitiveSegment.cxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_SensitiveSegment.cxx similarity index 100% rename from src/MeshVS/MeshVS_SensitiveSegment.cxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_SensitiveSegment.cxx diff --git a/src/MeshVS/MeshVS_SensitiveSegment.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_SensitiveSegment.hxx similarity index 100% rename from src/MeshVS/MeshVS_SensitiveSegment.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_SensitiveSegment.hxx diff --git a/src/MeshVS/MeshVS_SequenceOfPrsBuilder.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_SequenceOfPrsBuilder.hxx similarity index 100% rename from src/MeshVS/MeshVS_SequenceOfPrsBuilder.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_SequenceOfPrsBuilder.hxx diff --git a/src/MeshVS/MeshVS_SymmetricPairHasher.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_SymmetricPairHasher.hxx similarity index 100% rename from src/MeshVS/MeshVS_SymmetricPairHasher.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_SymmetricPairHasher.hxx diff --git a/src/MeshVS/MeshVS_TextPrsBuilder.cxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_TextPrsBuilder.cxx similarity index 100% rename from src/MeshVS/MeshVS_TextPrsBuilder.cxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_TextPrsBuilder.cxx diff --git a/src/MeshVS/MeshVS_TextPrsBuilder.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_TextPrsBuilder.hxx similarity index 100% rename from src/MeshVS/MeshVS_TextPrsBuilder.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_TextPrsBuilder.hxx diff --git a/src/MeshVS/MeshVS_Tool.cxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_Tool.cxx similarity index 100% rename from src/MeshVS/MeshVS_Tool.cxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_Tool.cxx diff --git a/src/MeshVS/MeshVS_Tool.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_Tool.hxx similarity index 100% rename from src/MeshVS/MeshVS_Tool.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_Tool.hxx diff --git a/src/MeshVS/MeshVS_TwoColors.cxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_TwoColors.cxx similarity index 100% rename from src/MeshVS/MeshVS_TwoColors.cxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_TwoColors.cxx diff --git a/src/MeshVS/MeshVS_TwoColors.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_TwoColors.hxx similarity index 100% rename from src/MeshVS/MeshVS_TwoColors.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_TwoColors.hxx diff --git a/src/MeshVS/MeshVS_TwoNodes.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_TwoNodes.hxx similarity index 100% rename from src/MeshVS/MeshVS_TwoNodes.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_TwoNodes.hxx diff --git a/src/MeshVS/MeshVS_VectorPrsBuilder.cxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_VectorPrsBuilder.cxx similarity index 100% rename from src/MeshVS/MeshVS_VectorPrsBuilder.cxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_VectorPrsBuilder.cxx diff --git a/src/MeshVS/MeshVS_VectorPrsBuilder.hxx b/src/Visualization/TKMeshVS/MeshVS/MeshVS_VectorPrsBuilder.hxx similarity index 100% rename from src/MeshVS/MeshVS_VectorPrsBuilder.hxx rename to src/Visualization/TKMeshVS/MeshVS/MeshVS_VectorPrsBuilder.hxx diff --git a/src/Visualization/TKMeshVS/PACKAGES.cmake b/src/Visualization/TKMeshVS/PACKAGES.cmake new file mode 100644 index 0000000000..12eafdaf97 --- /dev/null +++ b/src/Visualization/TKMeshVS/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKMeshVS toolkit +set(OCCT_TKMeshVS_LIST_OF_PACKAGES + MeshVS +) diff --git a/src/TKOpenGl/CMakeLists.txt b/src/Visualization/TKOpenGl/CMakeLists.txt similarity index 100% rename from src/TKOpenGl/CMakeLists.txt rename to src/Visualization/TKOpenGl/CMakeLists.txt diff --git a/src/Visualization/TKOpenGl/EXTERNLIB.cmake b/src/Visualization/TKOpenGl/EXTERNLIB.cmake new file mode 100644 index 0000000000..d890d04abe --- /dev/null +++ b/src/Visualization/TKOpenGl/EXTERNLIB.cmake @@ -0,0 +1,14 @@ +# External dependencies for TKOpenGl +set(OCCT_TKOpenGl_EXTERNAL_LIBS + TKernel + TKService + TKMath + CSF_TBB + CSF_OpenGlLibs + CSF_user32 + CSF_gdi32 + CSF_XwLibs + CSF_Appkit + CSF_IOKit + CSF_objc +) diff --git a/src/Visualization/TKOpenGl/FILES.cmake b/src/Visualization/TKOpenGl/FILES.cmake new file mode 100644 index 0000000000..eca9257b72 --- /dev/null +++ b/src/Visualization/TKOpenGl/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKOpenGl +set(OCCT_TKOpenGl_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKOpenGl_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/Visualization/TKOpenGl/OpenGl/FILES.cmake b/src/Visualization/TKOpenGl/OpenGl/FILES.cmake new file mode 100644 index 0000000000..d9e02ae240 --- /dev/null +++ b/src/Visualization/TKOpenGl/OpenGl/FILES.cmake @@ -0,0 +1,160 @@ +# Source files for OpenGl package +set(OCCT_OpenGl_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_OpenGl_FILES + OpenGl_glext.h + OpenGl_khrplatform.h + OpenGl_ArbDbg.hxx + OpenGl_ArbFBO.hxx + OpenGl_ArbIns.hxx + OpenGl_ArbSamplerObject.hxx + OpenGl_ArbTBO.hxx + OpenGl_ArbTexBindless.hxx + OpenGl_Aspects.cxx + OpenGl_Aspects.hxx + OpenGl_AspectsProgram.cxx + OpenGl_AspectsProgram.hxx + OpenGl_AspectsSprite.cxx + OpenGl_AspectsSprite.hxx + OpenGl_AspectsTextureSet.cxx + OpenGl_AspectsTextureSet.hxx + OpenGl_Buffer.cxx + OpenGl_Buffer.hxx + OpenGl_BufferCompatT.hxx + OpenGl_FrameStats.cxx + OpenGl_FrameStats.hxx + OpenGl_FrameStatsPrs.cxx + OpenGl_FrameStatsPrs.hxx + OpenGl_Group.hxx + OpenGl_Group.cxx + OpenGl_Structure.hxx + OpenGl_Structure.cxx + OpenGl_StructureShadow.hxx + OpenGl_StructureShadow.cxx + OpenGl_Element.hxx + OpenGl_Element.cxx + OpenGl_Text.hxx + OpenGl_Text.cxx + OpenGl_PointSprite.hxx + OpenGl_PointSprite.cxx + OpenGl_PrimitiveArray.hxx + OpenGl_PrimitiveArray.cxx + OpenGl_Workspace.hxx + OpenGl_Workspace.cxx + OpenGl_View.hxx + OpenGl_View.cxx + OpenGl_View_Raytrace.cxx + OpenGl_GraduatedTrihedron.hxx + OpenGl_GraduatedTrihedron.cxx + OpenGl_Material.hxx + OpenGl_MaterialState.hxx + OpenGl_MatrixState.hxx + OpenGl_LineAttributes.hxx + OpenGl_LineAttributes.cxx + OpenGl_Window.hxx + OpenGl_Window.cxx + OpenGl_Window_1.mm + OpenGl_FrameBuffer.hxx + OpenGl_FrameBuffer.cxx + OpenGl_Texture.cxx + OpenGl_Texture.hxx + OpenGl_TextureFormat.cxx + OpenGl_TextureFormat.hxx + OpenGl_TextureSet.cxx + OpenGl_TextureSet.hxx + OpenGl_TextureSetPairIterator.hxx + OpenGl_Resource.hxx + OpenGl_Resource.cxx + OpenGl_NamedResource.hxx + OpenGl_Font.hxx + OpenGl_Font.cxx + OpenGl_BackgroundArray.cxx + OpenGl_BackgroundArray.hxx + OpenGl_CappingAlgo.cxx + OpenGl_CappingAlgo.hxx + OpenGl_CappingPlaneResource.cxx + OpenGl_CappingPlaneResource.hxx + OpenGl_Caps.cxx + OpenGl_Caps.hxx + OpenGl_Clipping.cxx + OpenGl_Clipping.hxx + OpenGl_ClippingIterator.hxx + OpenGl_Context.cxx + OpenGl_Context.hxx + OpenGl_Context_1.mm + OpenGl_DepthPeeling.cxx + OpenGl_DepthPeeling.hxx + OpenGl_ExtGS.hxx + OpenGl_GLESExtensions.hxx + OpenGl_GlFunctions.cxx + OpenGl_GlFunctions.hxx + OpenGl_GlNative.hxx + OpenGl_GlTypes.hxx + OpenGl_Flipper.cxx + OpenGl_Flipper.hxx + OpenGl_GlCore11.hxx + OpenGl_GlCore11Fwd.hxx + OpenGl_GlCore12.hxx + OpenGl_GlCore13.hxx + OpenGl_GlCore14.hxx + OpenGl_GlCore15.hxx + OpenGl_GlCore20.hxx + OpenGl_GlCore21.hxx + OpenGl_GlCore30.hxx + OpenGl_GlCore31.hxx + OpenGl_GlCore32.hxx + OpenGl_GlCore33.hxx + OpenGl_GlCore40.hxx + OpenGl_GlCore41.hxx + OpenGl_GlCore42.hxx + OpenGl_GlCore43.hxx + OpenGl_GlCore44.hxx + OpenGl_GlCore45.hxx + OpenGl_GlCore46.hxx + OpenGl_LayerList.cxx + OpenGl_LayerList.hxx + OpenGl_LayerFilter.hxx + OpenGl_GraphicDriver.cxx + OpenGl_GraphicDriver.hxx + OpenGl_GraphicDriverFactory.cxx + OpenGl_GraphicDriverFactory.hxx + OpenGl_IndexBuffer.cxx + OpenGl_IndexBuffer.hxx + OpenGl_Layer.hxx + OpenGl_PBREnvironment.cxx + OpenGl_PBREnvironment.hxx + OpenGl_RenderFilter.hxx + OpenGl_Sampler.cxx + OpenGl_Sampler.hxx + OpenGl_SceneGeometry.cxx + OpenGl_SceneGeometry.hxx + OpenGl_SetOfShaderPrograms.hxx + OpenGl_ShaderManager.cxx + OpenGl_ShaderManager.hxx + OpenGl_ShaderObject.cxx + OpenGl_ShaderObject.hxx + OpenGl_ShaderProgram.cxx + OpenGl_ShaderProgram.hxx + OpenGl_ShaderStates.cxx + OpenGl_ShaderStates.hxx + OpenGl_ShadowMap.cxx + OpenGl_ShadowMap.hxx + OpenGl_StencilTest.cxx + OpenGl_StencilTest.hxx + OpenGl_TileSampler.hxx + OpenGl_TileSampler.cxx + OpenGl_TextureBuffer.cxx + OpenGl_TextureBuffer.hxx + OpenGl_TextureBufferArb.hxx + OpenGl_UniformBuffer.cxx + OpenGl_UniformBuffer.hxx + OpenGl_Vec.hxx + OpenGl_VertexBuffer.cxx + OpenGl_VertexBuffer.hxx + OpenGl_VertexBufferCompat.hxx + OpenGl_VertexBufferEditor.hxx + OpenGl_TextBuilder.hxx + OpenGl_TextBuilder.cxx + OpenGl_HaltonSampler.hxx + OpenGl_ShaderProgramDumpLevel.hxx +) diff --git a/src/OpenGl/OpenGl_ArbDbg.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_ArbDbg.hxx similarity index 100% rename from src/OpenGl/OpenGl_ArbDbg.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_ArbDbg.hxx diff --git a/src/OpenGl/OpenGl_ArbFBO.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_ArbFBO.hxx similarity index 100% rename from src/OpenGl/OpenGl_ArbFBO.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_ArbFBO.hxx diff --git a/src/OpenGl/OpenGl_ArbIns.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_ArbIns.hxx similarity index 100% rename from src/OpenGl/OpenGl_ArbIns.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_ArbIns.hxx diff --git a/src/OpenGl/OpenGl_ArbSamplerObject.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_ArbSamplerObject.hxx similarity index 100% rename from src/OpenGl/OpenGl_ArbSamplerObject.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_ArbSamplerObject.hxx diff --git a/src/OpenGl/OpenGl_ArbTBO.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_ArbTBO.hxx similarity index 100% rename from src/OpenGl/OpenGl_ArbTBO.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_ArbTBO.hxx diff --git a/src/OpenGl/OpenGl_ArbTexBindless.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_ArbTexBindless.hxx similarity index 100% rename from src/OpenGl/OpenGl_ArbTexBindless.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_ArbTexBindless.hxx diff --git a/src/OpenGl/OpenGl_Aspects.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Aspects.cxx similarity index 100% rename from src/OpenGl/OpenGl_Aspects.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Aspects.cxx diff --git a/src/OpenGl/OpenGl_Aspects.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Aspects.hxx similarity index 100% rename from src/OpenGl/OpenGl_Aspects.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Aspects.hxx diff --git a/src/OpenGl/OpenGl_AspectsProgram.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_AspectsProgram.cxx similarity index 100% rename from src/OpenGl/OpenGl_AspectsProgram.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_AspectsProgram.cxx diff --git a/src/OpenGl/OpenGl_AspectsProgram.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_AspectsProgram.hxx similarity index 100% rename from src/OpenGl/OpenGl_AspectsProgram.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_AspectsProgram.hxx diff --git a/src/OpenGl/OpenGl_AspectsSprite.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_AspectsSprite.cxx similarity index 100% rename from src/OpenGl/OpenGl_AspectsSprite.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_AspectsSprite.cxx diff --git a/src/OpenGl/OpenGl_AspectsSprite.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_AspectsSprite.hxx similarity index 100% rename from src/OpenGl/OpenGl_AspectsSprite.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_AspectsSprite.hxx diff --git a/src/OpenGl/OpenGl_AspectsTextureSet.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_AspectsTextureSet.cxx similarity index 100% rename from src/OpenGl/OpenGl_AspectsTextureSet.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_AspectsTextureSet.cxx diff --git a/src/OpenGl/OpenGl_AspectsTextureSet.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_AspectsTextureSet.hxx similarity index 100% rename from src/OpenGl/OpenGl_AspectsTextureSet.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_AspectsTextureSet.hxx diff --git a/src/OpenGl/OpenGl_BackgroundArray.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_BackgroundArray.cxx similarity index 100% rename from src/OpenGl/OpenGl_BackgroundArray.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_BackgroundArray.cxx diff --git a/src/OpenGl/OpenGl_BackgroundArray.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_BackgroundArray.hxx similarity index 100% rename from src/OpenGl/OpenGl_BackgroundArray.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_BackgroundArray.hxx diff --git a/src/OpenGl/OpenGl_Buffer.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Buffer.cxx similarity index 100% rename from src/OpenGl/OpenGl_Buffer.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Buffer.cxx diff --git a/src/OpenGl/OpenGl_Buffer.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Buffer.hxx similarity index 100% rename from src/OpenGl/OpenGl_Buffer.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Buffer.hxx diff --git a/src/OpenGl/OpenGl_BufferCompatT.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_BufferCompatT.hxx similarity index 100% rename from src/OpenGl/OpenGl_BufferCompatT.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_BufferCompatT.hxx diff --git a/src/OpenGl/OpenGl_CappingAlgo.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_CappingAlgo.cxx similarity index 100% rename from src/OpenGl/OpenGl_CappingAlgo.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_CappingAlgo.cxx diff --git a/src/OpenGl/OpenGl_CappingAlgo.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_CappingAlgo.hxx similarity index 100% rename from src/OpenGl/OpenGl_CappingAlgo.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_CappingAlgo.hxx diff --git a/src/OpenGl/OpenGl_CappingPlaneResource.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_CappingPlaneResource.cxx similarity index 100% rename from src/OpenGl/OpenGl_CappingPlaneResource.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_CappingPlaneResource.cxx diff --git a/src/OpenGl/OpenGl_CappingPlaneResource.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_CappingPlaneResource.hxx similarity index 100% rename from src/OpenGl/OpenGl_CappingPlaneResource.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_CappingPlaneResource.hxx diff --git a/src/OpenGl/OpenGl_Caps.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Caps.cxx similarity index 100% rename from src/OpenGl/OpenGl_Caps.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Caps.cxx diff --git a/src/OpenGl/OpenGl_Caps.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Caps.hxx similarity index 100% rename from src/OpenGl/OpenGl_Caps.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Caps.hxx diff --git a/src/OpenGl/OpenGl_Clipping.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Clipping.cxx similarity index 100% rename from src/OpenGl/OpenGl_Clipping.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Clipping.cxx diff --git a/src/OpenGl/OpenGl_Clipping.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Clipping.hxx similarity index 100% rename from src/OpenGl/OpenGl_Clipping.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Clipping.hxx diff --git a/src/OpenGl/OpenGl_ClippingIterator.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_ClippingIterator.hxx similarity index 100% rename from src/OpenGl/OpenGl_ClippingIterator.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_ClippingIterator.hxx diff --git a/src/OpenGl/OpenGl_Context.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Context.cxx similarity index 100% rename from src/OpenGl/OpenGl_Context.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Context.cxx diff --git a/src/OpenGl/OpenGl_Context.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Context.hxx similarity index 100% rename from src/OpenGl/OpenGl_Context.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Context.hxx diff --git a/src/OpenGl/OpenGl_Context_1.mm b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Context_1.mm similarity index 100% rename from src/OpenGl/OpenGl_Context_1.mm rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Context_1.mm diff --git a/src/OpenGl/OpenGl_DepthPeeling.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_DepthPeeling.cxx similarity index 100% rename from src/OpenGl/OpenGl_DepthPeeling.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_DepthPeeling.cxx diff --git a/src/OpenGl/OpenGl_DepthPeeling.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_DepthPeeling.hxx similarity index 100% rename from src/OpenGl/OpenGl_DepthPeeling.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_DepthPeeling.hxx diff --git a/src/OpenGl/OpenGl_Element.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Element.cxx similarity index 100% rename from src/OpenGl/OpenGl_Element.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Element.cxx diff --git a/src/OpenGl/OpenGl_Element.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Element.hxx similarity index 100% rename from src/OpenGl/OpenGl_Element.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Element.hxx diff --git a/src/OpenGl/OpenGl_ExtGS.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_ExtGS.hxx similarity index 100% rename from src/OpenGl/OpenGl_ExtGS.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_ExtGS.hxx diff --git a/src/OpenGl/OpenGl_Flipper.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Flipper.cxx similarity index 100% rename from src/OpenGl/OpenGl_Flipper.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Flipper.cxx diff --git a/src/OpenGl/OpenGl_Flipper.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Flipper.hxx similarity index 100% rename from src/OpenGl/OpenGl_Flipper.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Flipper.hxx diff --git a/src/OpenGl/OpenGl_Font.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Font.cxx similarity index 100% rename from src/OpenGl/OpenGl_Font.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Font.cxx diff --git a/src/OpenGl/OpenGl_Font.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Font.hxx similarity index 100% rename from src/OpenGl/OpenGl_Font.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Font.hxx diff --git a/src/OpenGl/OpenGl_FrameBuffer.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_FrameBuffer.cxx similarity index 100% rename from src/OpenGl/OpenGl_FrameBuffer.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_FrameBuffer.cxx diff --git a/src/OpenGl/OpenGl_FrameBuffer.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_FrameBuffer.hxx similarity index 100% rename from src/OpenGl/OpenGl_FrameBuffer.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_FrameBuffer.hxx diff --git a/src/OpenGl/OpenGl_FrameStats.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_FrameStats.cxx similarity index 100% rename from src/OpenGl/OpenGl_FrameStats.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_FrameStats.cxx diff --git a/src/OpenGl/OpenGl_FrameStats.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_FrameStats.hxx similarity index 100% rename from src/OpenGl/OpenGl_FrameStats.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_FrameStats.hxx diff --git a/src/OpenGl/OpenGl_FrameStatsPrs.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_FrameStatsPrs.cxx similarity index 100% rename from src/OpenGl/OpenGl_FrameStatsPrs.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_FrameStatsPrs.cxx diff --git a/src/OpenGl/OpenGl_FrameStatsPrs.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_FrameStatsPrs.hxx similarity index 100% rename from src/OpenGl/OpenGl_FrameStatsPrs.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_FrameStatsPrs.hxx diff --git a/src/OpenGl/OpenGl_GLESExtensions.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GLESExtensions.hxx similarity index 100% rename from src/OpenGl/OpenGl_GLESExtensions.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GLESExtensions.hxx diff --git a/src/OpenGl/OpenGl_GlCore11.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore11.hxx similarity index 100% rename from src/OpenGl/OpenGl_GlCore11.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore11.hxx diff --git a/src/OpenGl/OpenGl_GlCore11Fwd.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore11Fwd.hxx similarity index 100% rename from src/OpenGl/OpenGl_GlCore11Fwd.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore11Fwd.hxx diff --git a/src/OpenGl/OpenGl_GlCore12.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore12.hxx similarity index 100% rename from src/OpenGl/OpenGl_GlCore12.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore12.hxx diff --git a/src/OpenGl/OpenGl_GlCore13.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore13.hxx similarity index 100% rename from src/OpenGl/OpenGl_GlCore13.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore13.hxx diff --git a/src/OpenGl/OpenGl_GlCore14.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore14.hxx similarity index 100% rename from src/OpenGl/OpenGl_GlCore14.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore14.hxx diff --git a/src/OpenGl/OpenGl_GlCore15.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore15.hxx similarity index 100% rename from src/OpenGl/OpenGl_GlCore15.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore15.hxx diff --git a/src/OpenGl/OpenGl_GlCore20.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore20.hxx similarity index 100% rename from src/OpenGl/OpenGl_GlCore20.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore20.hxx diff --git a/src/OpenGl/OpenGl_GlCore21.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore21.hxx similarity index 100% rename from src/OpenGl/OpenGl_GlCore21.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore21.hxx diff --git a/src/OpenGl/OpenGl_GlCore30.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore30.hxx similarity index 100% rename from src/OpenGl/OpenGl_GlCore30.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore30.hxx diff --git a/src/OpenGl/OpenGl_GlCore31.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore31.hxx similarity index 100% rename from src/OpenGl/OpenGl_GlCore31.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore31.hxx diff --git a/src/OpenGl/OpenGl_GlCore32.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore32.hxx similarity index 100% rename from src/OpenGl/OpenGl_GlCore32.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore32.hxx diff --git a/src/OpenGl/OpenGl_GlCore33.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore33.hxx similarity index 100% rename from src/OpenGl/OpenGl_GlCore33.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore33.hxx diff --git a/src/OpenGl/OpenGl_GlCore40.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore40.hxx similarity index 100% rename from src/OpenGl/OpenGl_GlCore40.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore40.hxx diff --git a/src/OpenGl/OpenGl_GlCore41.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore41.hxx similarity index 100% rename from src/OpenGl/OpenGl_GlCore41.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore41.hxx diff --git a/src/OpenGl/OpenGl_GlCore42.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore42.hxx similarity index 100% rename from src/OpenGl/OpenGl_GlCore42.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore42.hxx diff --git a/src/OpenGl/OpenGl_GlCore43.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore43.hxx similarity index 100% rename from src/OpenGl/OpenGl_GlCore43.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore43.hxx diff --git a/src/OpenGl/OpenGl_GlCore44.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore44.hxx similarity index 100% rename from src/OpenGl/OpenGl_GlCore44.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore44.hxx diff --git a/src/OpenGl/OpenGl_GlCore45.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore45.hxx similarity index 100% rename from src/OpenGl/OpenGl_GlCore45.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore45.hxx diff --git a/src/OpenGl/OpenGl_GlCore46.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore46.hxx similarity index 100% rename from src/OpenGl/OpenGl_GlCore46.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GlCore46.hxx diff --git a/src/OpenGl/OpenGl_GlFunctions.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GlFunctions.cxx similarity index 100% rename from src/OpenGl/OpenGl_GlFunctions.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GlFunctions.cxx diff --git a/src/OpenGl/OpenGl_GlFunctions.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GlFunctions.hxx similarity index 100% rename from src/OpenGl/OpenGl_GlFunctions.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GlFunctions.hxx diff --git a/src/OpenGl/OpenGl_GlNative.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GlNative.hxx similarity index 100% rename from src/OpenGl/OpenGl_GlNative.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GlNative.hxx diff --git a/src/OpenGl/OpenGl_GlTypes.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GlTypes.hxx similarity index 100% rename from src/OpenGl/OpenGl_GlTypes.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GlTypes.hxx diff --git a/src/OpenGl/OpenGl_GraduatedTrihedron.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GraduatedTrihedron.cxx similarity index 100% rename from src/OpenGl/OpenGl_GraduatedTrihedron.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GraduatedTrihedron.cxx diff --git a/src/OpenGl/OpenGl_GraduatedTrihedron.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GraduatedTrihedron.hxx similarity index 100% rename from src/OpenGl/OpenGl_GraduatedTrihedron.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GraduatedTrihedron.hxx diff --git a/src/OpenGl/OpenGl_GraphicDriver.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GraphicDriver.cxx similarity index 100% rename from src/OpenGl/OpenGl_GraphicDriver.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GraphicDriver.cxx diff --git a/src/OpenGl/OpenGl_GraphicDriver.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GraphicDriver.hxx similarity index 100% rename from src/OpenGl/OpenGl_GraphicDriver.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GraphicDriver.hxx diff --git a/src/OpenGl/OpenGl_GraphicDriverFactory.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GraphicDriverFactory.cxx similarity index 100% rename from src/OpenGl/OpenGl_GraphicDriverFactory.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GraphicDriverFactory.cxx diff --git a/src/OpenGl/OpenGl_GraphicDriverFactory.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_GraphicDriverFactory.hxx similarity index 100% rename from src/OpenGl/OpenGl_GraphicDriverFactory.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_GraphicDriverFactory.hxx diff --git a/src/OpenGl/OpenGl_Group.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Group.cxx similarity index 100% rename from src/OpenGl/OpenGl_Group.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Group.cxx diff --git a/src/OpenGl/OpenGl_Group.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Group.hxx similarity index 100% rename from src/OpenGl/OpenGl_Group.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Group.hxx diff --git a/src/OpenGl/OpenGl_HaltonSampler.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_HaltonSampler.hxx similarity index 100% rename from src/OpenGl/OpenGl_HaltonSampler.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_HaltonSampler.hxx diff --git a/src/OpenGl/OpenGl_IndexBuffer.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_IndexBuffer.cxx similarity index 100% rename from src/OpenGl/OpenGl_IndexBuffer.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_IndexBuffer.cxx diff --git a/src/OpenGl/OpenGl_IndexBuffer.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_IndexBuffer.hxx similarity index 100% rename from src/OpenGl/OpenGl_IndexBuffer.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_IndexBuffer.hxx diff --git a/src/OpenGl/OpenGl_Layer.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Layer.hxx similarity index 100% rename from src/OpenGl/OpenGl_Layer.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Layer.hxx diff --git a/src/OpenGl/OpenGl_LayerFilter.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_LayerFilter.hxx similarity index 100% rename from src/OpenGl/OpenGl_LayerFilter.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_LayerFilter.hxx diff --git a/src/OpenGl/OpenGl_LayerList.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_LayerList.cxx similarity index 100% rename from src/OpenGl/OpenGl_LayerList.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_LayerList.cxx diff --git a/src/OpenGl/OpenGl_LayerList.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_LayerList.hxx similarity index 100% rename from src/OpenGl/OpenGl_LayerList.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_LayerList.hxx diff --git a/src/OpenGl/OpenGl_LineAttributes.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_LineAttributes.cxx similarity index 100% rename from src/OpenGl/OpenGl_LineAttributes.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_LineAttributes.cxx diff --git a/src/OpenGl/OpenGl_LineAttributes.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_LineAttributes.hxx similarity index 100% rename from src/OpenGl/OpenGl_LineAttributes.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_LineAttributes.hxx diff --git a/src/OpenGl/OpenGl_Material.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Material.hxx similarity index 100% rename from src/OpenGl/OpenGl_Material.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Material.hxx diff --git a/src/OpenGl/OpenGl_MaterialState.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_MaterialState.hxx similarity index 100% rename from src/OpenGl/OpenGl_MaterialState.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_MaterialState.hxx diff --git a/src/OpenGl/OpenGl_MatrixState.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_MatrixState.hxx similarity index 100% rename from src/OpenGl/OpenGl_MatrixState.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_MatrixState.hxx diff --git a/src/OpenGl/OpenGl_NamedResource.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_NamedResource.hxx similarity index 100% rename from src/OpenGl/OpenGl_NamedResource.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_NamedResource.hxx diff --git a/src/OpenGl/OpenGl_PBREnvironment.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_PBREnvironment.cxx similarity index 100% rename from src/OpenGl/OpenGl_PBREnvironment.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_PBREnvironment.cxx diff --git a/src/OpenGl/OpenGl_PBREnvironment.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_PBREnvironment.hxx similarity index 100% rename from src/OpenGl/OpenGl_PBREnvironment.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_PBREnvironment.hxx diff --git a/src/OpenGl/OpenGl_PointSprite.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_PointSprite.cxx similarity index 100% rename from src/OpenGl/OpenGl_PointSprite.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_PointSprite.cxx diff --git a/src/OpenGl/OpenGl_PointSprite.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_PointSprite.hxx similarity index 100% rename from src/OpenGl/OpenGl_PointSprite.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_PointSprite.hxx diff --git a/src/OpenGl/OpenGl_PrimitiveArray.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_PrimitiveArray.cxx similarity index 100% rename from src/OpenGl/OpenGl_PrimitiveArray.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_PrimitiveArray.cxx diff --git a/src/OpenGl/OpenGl_PrimitiveArray.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_PrimitiveArray.hxx similarity index 100% rename from src/OpenGl/OpenGl_PrimitiveArray.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_PrimitiveArray.hxx diff --git a/src/OpenGl/OpenGl_RenderFilter.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_RenderFilter.hxx similarity index 100% rename from src/OpenGl/OpenGl_RenderFilter.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_RenderFilter.hxx diff --git a/src/OpenGl/OpenGl_Resource.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Resource.cxx similarity index 100% rename from src/OpenGl/OpenGl_Resource.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Resource.cxx diff --git a/src/OpenGl/OpenGl_Resource.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Resource.hxx similarity index 100% rename from src/OpenGl/OpenGl_Resource.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Resource.hxx diff --git a/src/OpenGl/OpenGl_Sampler.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Sampler.cxx similarity index 100% rename from src/OpenGl/OpenGl_Sampler.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Sampler.cxx diff --git a/src/OpenGl/OpenGl_Sampler.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Sampler.hxx similarity index 100% rename from src/OpenGl/OpenGl_Sampler.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Sampler.hxx diff --git a/src/OpenGl/OpenGl_SceneGeometry.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_SceneGeometry.cxx similarity index 100% rename from src/OpenGl/OpenGl_SceneGeometry.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_SceneGeometry.cxx diff --git a/src/OpenGl/OpenGl_SceneGeometry.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_SceneGeometry.hxx similarity index 100% rename from src/OpenGl/OpenGl_SceneGeometry.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_SceneGeometry.hxx diff --git a/src/OpenGl/OpenGl_SetOfShaderPrograms.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_SetOfShaderPrograms.hxx similarity index 100% rename from src/OpenGl/OpenGl_SetOfShaderPrograms.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_SetOfShaderPrograms.hxx diff --git a/src/OpenGl/OpenGl_ShaderManager.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_ShaderManager.cxx similarity index 100% rename from src/OpenGl/OpenGl_ShaderManager.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_ShaderManager.cxx diff --git a/src/OpenGl/OpenGl_ShaderManager.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_ShaderManager.hxx similarity index 100% rename from src/OpenGl/OpenGl_ShaderManager.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_ShaderManager.hxx diff --git a/src/OpenGl/OpenGl_ShaderObject.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_ShaderObject.cxx similarity index 100% rename from src/OpenGl/OpenGl_ShaderObject.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_ShaderObject.cxx diff --git a/src/OpenGl/OpenGl_ShaderObject.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_ShaderObject.hxx similarity index 100% rename from src/OpenGl/OpenGl_ShaderObject.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_ShaderObject.hxx diff --git a/src/OpenGl/OpenGl_ShaderProgram.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_ShaderProgram.cxx similarity index 99% rename from src/OpenGl/OpenGl_ShaderProgram.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_ShaderProgram.cxx index d9cbc6e531..1a293811e3 100755 --- a/src/OpenGl/OpenGl_ShaderProgram.cxx +++ b/src/Visualization/TKOpenGl/OpenGl/OpenGl_ShaderProgram.cxx @@ -23,8 +23,8 @@ #include -#include "../Shaders/Shaders_DeclarationsImpl_glsl.pxx" -#include "../Shaders/Shaders_Declarations_glsl.pxx" +#include "../../TKService/Shaders/Shaders_DeclarationsImpl_glsl.pxx" +#include "../../TKService/Shaders/Shaders_Declarations_glsl.pxx" #ifdef _WIN32 #include // for alloca() diff --git a/src/OpenGl/OpenGl_ShaderProgram.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_ShaderProgram.hxx similarity index 100% rename from src/OpenGl/OpenGl_ShaderProgram.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_ShaderProgram.hxx diff --git a/src/OpenGl/OpenGl_ShaderProgramDumpLevel.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_ShaderProgramDumpLevel.hxx similarity index 100% rename from src/OpenGl/OpenGl_ShaderProgramDumpLevel.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_ShaderProgramDumpLevel.hxx diff --git a/src/OpenGl/OpenGl_ShaderStates.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_ShaderStates.cxx similarity index 100% rename from src/OpenGl/OpenGl_ShaderStates.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_ShaderStates.cxx diff --git a/src/OpenGl/OpenGl_ShaderStates.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_ShaderStates.hxx similarity index 100% rename from src/OpenGl/OpenGl_ShaderStates.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_ShaderStates.hxx diff --git a/src/OpenGl/OpenGl_ShadowMap.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_ShadowMap.cxx similarity index 100% rename from src/OpenGl/OpenGl_ShadowMap.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_ShadowMap.cxx diff --git a/src/OpenGl/OpenGl_ShadowMap.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_ShadowMap.hxx similarity index 100% rename from src/OpenGl/OpenGl_ShadowMap.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_ShadowMap.hxx diff --git a/src/OpenGl/OpenGl_StencilTest.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_StencilTest.cxx similarity index 100% rename from src/OpenGl/OpenGl_StencilTest.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_StencilTest.cxx diff --git a/src/OpenGl/OpenGl_StencilTest.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_StencilTest.hxx similarity index 100% rename from src/OpenGl/OpenGl_StencilTest.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_StencilTest.hxx diff --git a/src/OpenGl/OpenGl_Structure.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Structure.cxx similarity index 100% rename from src/OpenGl/OpenGl_Structure.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Structure.cxx diff --git a/src/OpenGl/OpenGl_Structure.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Structure.hxx similarity index 100% rename from src/OpenGl/OpenGl_Structure.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Structure.hxx diff --git a/src/OpenGl/OpenGl_StructureShadow.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_StructureShadow.cxx similarity index 100% rename from src/OpenGl/OpenGl_StructureShadow.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_StructureShadow.cxx diff --git a/src/OpenGl/OpenGl_StructureShadow.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_StructureShadow.hxx similarity index 100% rename from src/OpenGl/OpenGl_StructureShadow.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_StructureShadow.hxx diff --git a/src/OpenGl/OpenGl_Text.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Text.cxx similarity index 100% rename from src/OpenGl/OpenGl_Text.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Text.cxx diff --git a/src/OpenGl/OpenGl_Text.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Text.hxx similarity index 100% rename from src/OpenGl/OpenGl_Text.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Text.hxx diff --git a/src/OpenGl/OpenGl_TextBuilder.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_TextBuilder.cxx similarity index 100% rename from src/OpenGl/OpenGl_TextBuilder.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_TextBuilder.cxx diff --git a/src/OpenGl/OpenGl_TextBuilder.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_TextBuilder.hxx similarity index 100% rename from src/OpenGl/OpenGl_TextBuilder.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_TextBuilder.hxx diff --git a/src/OpenGl/OpenGl_Texture.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Texture.cxx similarity index 100% rename from src/OpenGl/OpenGl_Texture.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Texture.cxx diff --git a/src/OpenGl/OpenGl_Texture.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Texture.hxx similarity index 100% rename from src/OpenGl/OpenGl_Texture.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Texture.hxx diff --git a/src/OpenGl/OpenGl_TextureBuffer.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_TextureBuffer.cxx similarity index 100% rename from src/OpenGl/OpenGl_TextureBuffer.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_TextureBuffer.cxx diff --git a/src/OpenGl/OpenGl_TextureBuffer.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_TextureBuffer.hxx similarity index 100% rename from src/OpenGl/OpenGl_TextureBuffer.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_TextureBuffer.hxx diff --git a/src/OpenGl/OpenGl_TextureBufferArb.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_TextureBufferArb.hxx similarity index 100% rename from src/OpenGl/OpenGl_TextureBufferArb.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_TextureBufferArb.hxx diff --git a/src/OpenGl/OpenGl_TextureFormat.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_TextureFormat.cxx similarity index 100% rename from src/OpenGl/OpenGl_TextureFormat.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_TextureFormat.cxx diff --git a/src/OpenGl/OpenGl_TextureFormat.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_TextureFormat.hxx similarity index 100% rename from src/OpenGl/OpenGl_TextureFormat.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_TextureFormat.hxx diff --git a/src/OpenGl/OpenGl_TextureSet.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_TextureSet.cxx similarity index 100% rename from src/OpenGl/OpenGl_TextureSet.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_TextureSet.cxx diff --git a/src/OpenGl/OpenGl_TextureSet.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_TextureSet.hxx similarity index 100% rename from src/OpenGl/OpenGl_TextureSet.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_TextureSet.hxx diff --git a/src/OpenGl/OpenGl_TextureSetPairIterator.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_TextureSetPairIterator.hxx similarity index 100% rename from src/OpenGl/OpenGl_TextureSetPairIterator.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_TextureSetPairIterator.hxx diff --git a/src/OpenGl/OpenGl_TileSampler.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_TileSampler.cxx similarity index 100% rename from src/OpenGl/OpenGl_TileSampler.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_TileSampler.cxx diff --git a/src/OpenGl/OpenGl_TileSampler.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_TileSampler.hxx similarity index 100% rename from src/OpenGl/OpenGl_TileSampler.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_TileSampler.hxx diff --git a/src/OpenGl/OpenGl_UniformBuffer.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_UniformBuffer.cxx similarity index 100% rename from src/OpenGl/OpenGl_UniformBuffer.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_UniformBuffer.cxx diff --git a/src/OpenGl/OpenGl_UniformBuffer.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_UniformBuffer.hxx similarity index 100% rename from src/OpenGl/OpenGl_UniformBuffer.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_UniformBuffer.hxx diff --git a/src/OpenGl/OpenGl_Vec.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Vec.hxx similarity index 100% rename from src/OpenGl/OpenGl_Vec.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Vec.hxx diff --git a/src/OpenGl/OpenGl_VertexBuffer.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_VertexBuffer.cxx similarity index 100% rename from src/OpenGl/OpenGl_VertexBuffer.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_VertexBuffer.cxx diff --git a/src/OpenGl/OpenGl_VertexBuffer.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_VertexBuffer.hxx similarity index 100% rename from src/OpenGl/OpenGl_VertexBuffer.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_VertexBuffer.hxx diff --git a/src/OpenGl/OpenGl_VertexBufferCompat.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_VertexBufferCompat.hxx similarity index 100% rename from src/OpenGl/OpenGl_VertexBufferCompat.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_VertexBufferCompat.hxx diff --git a/src/OpenGl/OpenGl_VertexBufferEditor.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_VertexBufferEditor.hxx similarity index 100% rename from src/OpenGl/OpenGl_VertexBufferEditor.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_VertexBufferEditor.hxx diff --git a/src/OpenGl/OpenGl_View.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_View.cxx similarity index 100% rename from src/OpenGl/OpenGl_View.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_View.cxx diff --git a/src/OpenGl/OpenGl_View.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_View.hxx similarity index 100% rename from src/OpenGl/OpenGl_View.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_View.hxx diff --git a/src/OpenGl/OpenGl_View_Raytrace.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_View_Raytrace.cxx similarity index 99% rename from src/OpenGl/OpenGl_View_Raytrace.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_View_Raytrace.cxx index 3083332de0..15d42d57e3 100644 --- a/src/OpenGl/OpenGl_View_Raytrace.cxx +++ b/src/Visualization/TKOpenGl/OpenGl/OpenGl_View_Raytrace.cxx @@ -27,13 +27,13 @@ #include #include -#include "../Shaders/Shaders_RaytraceBase_vs.pxx" -#include "../Shaders/Shaders_RaytraceBase_fs.pxx" -#include "../Shaders/Shaders_PathtraceBase_fs.pxx" -#include "../Shaders/Shaders_RaytraceRender_fs.pxx" -#include "../Shaders/Shaders_RaytraceSmooth_fs.pxx" -#include "../Shaders/Shaders_Display_fs.pxx" -#include "../Shaders/Shaders_TangentSpaceNormal_glsl.pxx" +#include "../../TKService/Shaders/Shaders_RaytraceBase_vs.pxx" +#include "../../TKService/Shaders/Shaders_RaytraceBase_fs.pxx" +#include "../../TKService/Shaders/Shaders_PathtraceBase_fs.pxx" +#include "../../TKService/Shaders/Shaders_RaytraceRender_fs.pxx" +#include "../../TKService/Shaders/Shaders_RaytraceSmooth_fs.pxx" +#include "../../TKService/Shaders/Shaders_Display_fs.pxx" +#include "../../TKService/Shaders/Shaders_TangentSpaceNormal_glsl.pxx" //! Use this macro to output ray-tracing debug info // #define RAY_TRACE_PRINT_INFO diff --git a/src/OpenGl/OpenGl_Window.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Window.cxx similarity index 100% rename from src/OpenGl/OpenGl_Window.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Window.cxx diff --git a/src/OpenGl/OpenGl_Window.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Window.hxx similarity index 100% rename from src/OpenGl/OpenGl_Window.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Window.hxx diff --git a/src/OpenGl/OpenGl_Window_1.mm b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Window_1.mm similarity index 100% rename from src/OpenGl/OpenGl_Window_1.mm rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Window_1.mm diff --git a/src/OpenGl/OpenGl_Workspace.cxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Workspace.cxx similarity index 100% rename from src/OpenGl/OpenGl_Workspace.cxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Workspace.cxx diff --git a/src/OpenGl/OpenGl_Workspace.hxx b/src/Visualization/TKOpenGl/OpenGl/OpenGl_Workspace.hxx similarity index 100% rename from src/OpenGl/OpenGl_Workspace.hxx rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_Workspace.hxx diff --git a/src/OpenGl/OpenGl_glext.h b/src/Visualization/TKOpenGl/OpenGl/OpenGl_glext.h similarity index 100% rename from src/OpenGl/OpenGl_glext.h rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_glext.h diff --git a/src/OpenGl/OpenGl_khrplatform.h b/src/Visualization/TKOpenGl/OpenGl/OpenGl_khrplatform.h similarity index 100% rename from src/OpenGl/OpenGl_khrplatform.h rename to src/Visualization/TKOpenGl/OpenGl/OpenGl_khrplatform.h diff --git a/src/Visualization/TKOpenGl/PACKAGES.cmake b/src/Visualization/TKOpenGl/PACKAGES.cmake new file mode 100644 index 0000000000..0f9060b52d --- /dev/null +++ b/src/Visualization/TKOpenGl/PACKAGES.cmake @@ -0,0 +1,5 @@ +# Auto-generated list of packages for TKOpenGl toolkit +set(OCCT_TKOpenGl_LIST_OF_PACKAGES + OpenGl + Textures +) diff --git a/src/Visualization/TKOpenGl/Textures/FILES.cmake b/src/Visualization/TKOpenGl/Textures/FILES.cmake new file mode 100644 index 0000000000..48a103cb5b --- /dev/null +++ b/src/Visualization/TKOpenGl/Textures/FILES.cmake @@ -0,0 +1,6 @@ +# Source files for Textures package +set(OCCT_Textures_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Textures_FILES + Textures_EnvLUT.pxx +) diff --git a/src/Textures/Textures_EnvLUT.pxx b/src/Visualization/TKOpenGl/Textures/Textures_EnvLUT.pxx similarity index 100% rename from src/Textures/Textures_EnvLUT.pxx rename to src/Visualization/TKOpenGl/Textures/Textures_EnvLUT.pxx diff --git a/src/TKOpenGles/CMakeLists.txt b/src/Visualization/TKOpenGles/CMakeLists.txt similarity index 100% rename from src/TKOpenGles/CMakeLists.txt rename to src/Visualization/TKOpenGles/CMakeLists.txt diff --git a/src/Visualization/TKOpenGles/EXTERNLIB.cmake b/src/Visualization/TKOpenGles/EXTERNLIB.cmake new file mode 100644 index 0000000000..9f72754960 --- /dev/null +++ b/src/Visualization/TKOpenGles/EXTERNLIB.cmake @@ -0,0 +1,15 @@ +# External dependencies for TKOpenGles +set(OCCT_TKOpenGles_EXTERNAL_LIBS + TKernel + TKService + TKMath + CSF_TBB + CSF_FREETYPE + CSF_OpenGlesLibs + CSF_user32 + CSF_gdi32 + CSF_XwLibs + CSF_Appkit + CSF_IOKit + CSF_objc +) diff --git a/src/Visualization/TKOpenGles/FILES.cmake b/src/Visualization/TKOpenGles/FILES.cmake new file mode 100644 index 0000000000..c01635fa1d --- /dev/null +++ b/src/Visualization/TKOpenGles/FILES.cmake @@ -0,0 +1,8 @@ +# Source files for TKOpenGles +set(OCCT_TKOpenGles_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKOpenGles_FILES + DEFINES + EXTERNLIB + PACKAGES +) diff --git a/src/Visualization/TKOpenGles/PACKAGES.cmake b/src/Visualization/TKOpenGles/PACKAGES.cmake new file mode 100644 index 0000000000..74b2a1b13a --- /dev/null +++ b/src/Visualization/TKOpenGles/PACKAGES.cmake @@ -0,0 +1,4 @@ +# Auto-generated list of packages for TKOpenGles toolkit +set(OCCT_TKOpenGles_LIST_OF_PACKAGES + ../TKOpenGl/OpenGl +) diff --git a/src/Aspect/Aspect_AspectFillAreaDefinitionError.hxx b/src/Visualization/TKService/Aspect/Aspect_AspectFillAreaDefinitionError.hxx similarity index 100% rename from src/Aspect/Aspect_AspectFillAreaDefinitionError.hxx rename to src/Visualization/TKService/Aspect/Aspect_AspectFillAreaDefinitionError.hxx diff --git a/src/Aspect/Aspect_AspectLineDefinitionError.hxx b/src/Visualization/TKService/Aspect/Aspect_AspectLineDefinitionError.hxx similarity index 100% rename from src/Aspect/Aspect_AspectLineDefinitionError.hxx rename to src/Visualization/TKService/Aspect/Aspect_AspectLineDefinitionError.hxx diff --git a/src/Aspect/Aspect_AspectMarkerDefinitionError.hxx b/src/Visualization/TKService/Aspect/Aspect_AspectMarkerDefinitionError.hxx similarity index 100% rename from src/Aspect/Aspect_AspectMarkerDefinitionError.hxx rename to src/Visualization/TKService/Aspect/Aspect_AspectMarkerDefinitionError.hxx diff --git a/src/Aspect/Aspect_Background.cxx b/src/Visualization/TKService/Aspect/Aspect_Background.cxx similarity index 100% rename from src/Aspect/Aspect_Background.cxx rename to src/Visualization/TKService/Aspect/Aspect_Background.cxx diff --git a/src/Aspect/Aspect_Background.hxx b/src/Visualization/TKService/Aspect/Aspect_Background.hxx similarity index 100% rename from src/Aspect/Aspect_Background.hxx rename to src/Visualization/TKService/Aspect/Aspect_Background.hxx diff --git a/src/Aspect/Aspect_CircularGrid.cxx b/src/Visualization/TKService/Aspect/Aspect_CircularGrid.cxx similarity index 100% rename from src/Aspect/Aspect_CircularGrid.cxx rename to src/Visualization/TKService/Aspect/Aspect_CircularGrid.cxx diff --git a/src/Aspect/Aspect_CircularGrid.hxx b/src/Visualization/TKService/Aspect/Aspect_CircularGrid.hxx similarity index 100% rename from src/Aspect/Aspect_CircularGrid.hxx rename to src/Visualization/TKService/Aspect/Aspect_CircularGrid.hxx diff --git a/src/Aspect/Aspect_ColorSpace.hxx b/src/Visualization/TKService/Aspect/Aspect_ColorSpace.hxx similarity index 100% rename from src/Aspect/Aspect_ColorSpace.hxx rename to src/Visualization/TKService/Aspect/Aspect_ColorSpace.hxx diff --git a/src/Aspect/Aspect_Display.hxx b/src/Visualization/TKService/Aspect/Aspect_Display.hxx similarity index 100% rename from src/Aspect/Aspect_Display.hxx rename to src/Visualization/TKService/Aspect/Aspect_Display.hxx diff --git a/src/Aspect/Aspect_DisplayConnection.cxx b/src/Visualization/TKService/Aspect/Aspect_DisplayConnection.cxx similarity index 100% rename from src/Aspect/Aspect_DisplayConnection.cxx rename to src/Visualization/TKService/Aspect/Aspect_DisplayConnection.cxx diff --git a/src/Aspect/Aspect_DisplayConnection.hxx b/src/Visualization/TKService/Aspect/Aspect_DisplayConnection.hxx similarity index 100% rename from src/Aspect/Aspect_DisplayConnection.hxx rename to src/Visualization/TKService/Aspect/Aspect_DisplayConnection.hxx diff --git a/src/Aspect/Aspect_DisplayConnectionDefinitionError.hxx b/src/Visualization/TKService/Aspect/Aspect_DisplayConnectionDefinitionError.hxx similarity index 100% rename from src/Aspect/Aspect_DisplayConnectionDefinitionError.hxx rename to src/Visualization/TKService/Aspect/Aspect_DisplayConnectionDefinitionError.hxx diff --git a/src/Aspect/Aspect_Drawable.hxx b/src/Visualization/TKService/Aspect/Aspect_Drawable.hxx similarity index 100% rename from src/Aspect/Aspect_Drawable.hxx rename to src/Visualization/TKService/Aspect/Aspect_Drawable.hxx diff --git a/src/Aspect/Aspect_Eye.hxx b/src/Visualization/TKService/Aspect/Aspect_Eye.hxx similarity index 100% rename from src/Aspect/Aspect_Eye.hxx rename to src/Visualization/TKService/Aspect/Aspect_Eye.hxx diff --git a/src/Aspect/Aspect_FBConfig.hxx b/src/Visualization/TKService/Aspect/Aspect_FBConfig.hxx similarity index 100% rename from src/Aspect/Aspect_FBConfig.hxx rename to src/Visualization/TKService/Aspect/Aspect_FBConfig.hxx diff --git a/src/Aspect/Aspect_FillMethod.hxx b/src/Visualization/TKService/Aspect/Aspect_FillMethod.hxx similarity index 100% rename from src/Aspect/Aspect_FillMethod.hxx rename to src/Visualization/TKService/Aspect/Aspect_FillMethod.hxx diff --git a/src/Aspect/Aspect_FrustumLRBT.hxx b/src/Visualization/TKService/Aspect/Aspect_FrustumLRBT.hxx similarity index 100% rename from src/Aspect/Aspect_FrustumLRBT.hxx rename to src/Visualization/TKService/Aspect/Aspect_FrustumLRBT.hxx diff --git a/src/Aspect/Aspect_GenId.cxx b/src/Visualization/TKService/Aspect/Aspect_GenId.cxx similarity index 100% rename from src/Aspect/Aspect_GenId.cxx rename to src/Visualization/TKService/Aspect/Aspect_GenId.cxx diff --git a/src/Aspect/Aspect_GenId.hxx b/src/Visualization/TKService/Aspect/Aspect_GenId.hxx similarity index 100% rename from src/Aspect/Aspect_GenId.hxx rename to src/Visualization/TKService/Aspect/Aspect_GenId.hxx diff --git a/src/Aspect/Aspect_GradientBackground.cxx b/src/Visualization/TKService/Aspect/Aspect_GradientBackground.cxx similarity index 100% rename from src/Aspect/Aspect_GradientBackground.cxx rename to src/Visualization/TKService/Aspect/Aspect_GradientBackground.cxx diff --git a/src/Aspect/Aspect_GradientBackground.hxx b/src/Visualization/TKService/Aspect/Aspect_GradientBackground.hxx similarity index 100% rename from src/Aspect/Aspect_GradientBackground.hxx rename to src/Visualization/TKService/Aspect/Aspect_GradientBackground.hxx diff --git a/src/Aspect/Aspect_GradientFillMethod.hxx b/src/Visualization/TKService/Aspect/Aspect_GradientFillMethod.hxx similarity index 100% rename from src/Aspect/Aspect_GradientFillMethod.hxx rename to src/Visualization/TKService/Aspect/Aspect_GradientFillMethod.hxx diff --git a/src/Aspect/Aspect_GraphicDeviceDefinitionError.hxx b/src/Visualization/TKService/Aspect/Aspect_GraphicDeviceDefinitionError.hxx similarity index 100% rename from src/Aspect/Aspect_GraphicDeviceDefinitionError.hxx rename to src/Visualization/TKService/Aspect/Aspect_GraphicDeviceDefinitionError.hxx diff --git a/src/Aspect/Aspect_GraphicsLibrary.hxx b/src/Visualization/TKService/Aspect/Aspect_GraphicsLibrary.hxx similarity index 100% rename from src/Aspect/Aspect_GraphicsLibrary.hxx rename to src/Visualization/TKService/Aspect/Aspect_GraphicsLibrary.hxx diff --git a/src/Aspect/Aspect_Grid.cxx b/src/Visualization/TKService/Aspect/Aspect_Grid.cxx similarity index 100% rename from src/Aspect/Aspect_Grid.cxx rename to src/Visualization/TKService/Aspect/Aspect_Grid.cxx diff --git a/src/Aspect/Aspect_Grid.hxx b/src/Visualization/TKService/Aspect/Aspect_Grid.hxx similarity index 100% rename from src/Aspect/Aspect_Grid.hxx rename to src/Visualization/TKService/Aspect/Aspect_Grid.hxx diff --git a/src/Aspect/Aspect_GridDrawMode.hxx b/src/Visualization/TKService/Aspect/Aspect_GridDrawMode.hxx similarity index 100% rename from src/Aspect/Aspect_GridDrawMode.hxx rename to src/Visualization/TKService/Aspect/Aspect_GridDrawMode.hxx diff --git a/src/Aspect/Aspect_GridType.hxx b/src/Visualization/TKService/Aspect/Aspect_GridType.hxx similarity index 100% rename from src/Aspect/Aspect_GridType.hxx rename to src/Visualization/TKService/Aspect/Aspect_GridType.hxx diff --git a/src/Aspect/Aspect_Handle.hxx b/src/Visualization/TKService/Aspect/Aspect_Handle.hxx similarity index 100% rename from src/Aspect/Aspect_Handle.hxx rename to src/Visualization/TKService/Aspect/Aspect_Handle.hxx diff --git a/src/Aspect/Aspect_HatchStyle.hxx b/src/Visualization/TKService/Aspect/Aspect_HatchStyle.hxx similarity index 100% rename from src/Aspect/Aspect_HatchStyle.hxx rename to src/Visualization/TKService/Aspect/Aspect_HatchStyle.hxx diff --git a/src/Aspect/Aspect_IdentDefinitionError.hxx b/src/Visualization/TKService/Aspect/Aspect_IdentDefinitionError.hxx similarity index 100% rename from src/Aspect/Aspect_IdentDefinitionError.hxx rename to src/Visualization/TKService/Aspect/Aspect_IdentDefinitionError.hxx diff --git a/src/Aspect/Aspect_InteriorStyle.hxx b/src/Visualization/TKService/Aspect/Aspect_InteriorStyle.hxx similarity index 100% rename from src/Aspect/Aspect_InteriorStyle.hxx rename to src/Visualization/TKService/Aspect/Aspect_InteriorStyle.hxx diff --git a/src/Aspect/Aspect_NeutralWindow.cxx b/src/Visualization/TKService/Aspect/Aspect_NeutralWindow.cxx similarity index 100% rename from src/Aspect/Aspect_NeutralWindow.cxx rename to src/Visualization/TKService/Aspect/Aspect_NeutralWindow.cxx diff --git a/src/Aspect/Aspect_NeutralWindow.hxx b/src/Visualization/TKService/Aspect/Aspect_NeutralWindow.hxx similarity index 100% rename from src/Aspect/Aspect_NeutralWindow.hxx rename to src/Visualization/TKService/Aspect/Aspect_NeutralWindow.hxx diff --git a/src/Aspect/Aspect_OpenVRSession.cxx b/src/Visualization/TKService/Aspect/Aspect_OpenVRSession.cxx similarity index 100% rename from src/Aspect/Aspect_OpenVRSession.cxx rename to src/Visualization/TKService/Aspect/Aspect_OpenVRSession.cxx diff --git a/src/Aspect/Aspect_OpenVRSession.hxx b/src/Visualization/TKService/Aspect/Aspect_OpenVRSession.hxx similarity index 100% rename from src/Aspect/Aspect_OpenVRSession.hxx rename to src/Visualization/TKService/Aspect/Aspect_OpenVRSession.hxx diff --git a/src/Aspect/Aspect_PolygonOffsetMode.hxx b/src/Visualization/TKService/Aspect/Aspect_PolygonOffsetMode.hxx similarity index 100% rename from src/Aspect/Aspect_PolygonOffsetMode.hxx rename to src/Visualization/TKService/Aspect/Aspect_PolygonOffsetMode.hxx diff --git a/src/Aspect/Aspect_RectangularGrid.cxx b/src/Visualization/TKService/Aspect/Aspect_RectangularGrid.cxx similarity index 100% rename from src/Aspect/Aspect_RectangularGrid.cxx rename to src/Visualization/TKService/Aspect/Aspect_RectangularGrid.cxx diff --git a/src/Aspect/Aspect_RectangularGrid.hxx b/src/Visualization/TKService/Aspect/Aspect_RectangularGrid.hxx similarity index 100% rename from src/Aspect/Aspect_RectangularGrid.hxx rename to src/Visualization/TKService/Aspect/Aspect_RectangularGrid.hxx diff --git a/src/Aspect/Aspect_RenderingContext.hxx b/src/Visualization/TKService/Aspect/Aspect_RenderingContext.hxx similarity index 100% rename from src/Aspect/Aspect_RenderingContext.hxx rename to src/Visualization/TKService/Aspect/Aspect_RenderingContext.hxx diff --git a/src/Aspect/Aspect_ScrollDelta.hxx b/src/Visualization/TKService/Aspect/Aspect_ScrollDelta.hxx similarity index 100% rename from src/Aspect/Aspect_ScrollDelta.hxx rename to src/Visualization/TKService/Aspect/Aspect_ScrollDelta.hxx diff --git a/src/Aspect/Aspect_SequenceOfColor.hxx b/src/Visualization/TKService/Aspect/Aspect_SequenceOfColor.hxx similarity index 100% rename from src/Aspect/Aspect_SequenceOfColor.hxx rename to src/Visualization/TKService/Aspect/Aspect_SequenceOfColor.hxx diff --git a/src/Aspect/Aspect_SkydomeBackground.cxx b/src/Visualization/TKService/Aspect/Aspect_SkydomeBackground.cxx similarity index 100% rename from src/Aspect/Aspect_SkydomeBackground.cxx rename to src/Visualization/TKService/Aspect/Aspect_SkydomeBackground.cxx diff --git a/src/Aspect/Aspect_SkydomeBackground.hxx b/src/Visualization/TKService/Aspect/Aspect_SkydomeBackground.hxx similarity index 100% rename from src/Aspect/Aspect_SkydomeBackground.hxx rename to src/Visualization/TKService/Aspect/Aspect_SkydomeBackground.hxx diff --git a/src/Aspect/Aspect_Touch.hxx b/src/Visualization/TKService/Aspect/Aspect_Touch.hxx similarity index 100% rename from src/Aspect/Aspect_Touch.hxx rename to src/Visualization/TKService/Aspect/Aspect_Touch.hxx diff --git a/src/Aspect/Aspect_TouchMap.hxx b/src/Visualization/TKService/Aspect/Aspect_TouchMap.hxx similarity index 100% rename from src/Aspect/Aspect_TouchMap.hxx rename to src/Visualization/TKService/Aspect/Aspect_TouchMap.hxx diff --git a/src/Aspect/Aspect_TrackedDevicePose.hxx b/src/Visualization/TKService/Aspect/Aspect_TrackedDevicePose.hxx similarity index 100% rename from src/Aspect/Aspect_TrackedDevicePose.hxx rename to src/Visualization/TKService/Aspect/Aspect_TrackedDevicePose.hxx diff --git a/src/Aspect/Aspect_TypeOfColorScaleData.hxx b/src/Visualization/TKService/Aspect/Aspect_TypeOfColorScaleData.hxx similarity index 100% rename from src/Aspect/Aspect_TypeOfColorScaleData.hxx rename to src/Visualization/TKService/Aspect/Aspect_TypeOfColorScaleData.hxx diff --git a/src/Aspect/Aspect_TypeOfColorScaleOrientation.hxx b/src/Visualization/TKService/Aspect/Aspect_TypeOfColorScaleOrientation.hxx similarity index 100% rename from src/Aspect/Aspect_TypeOfColorScaleOrientation.hxx rename to src/Visualization/TKService/Aspect/Aspect_TypeOfColorScaleOrientation.hxx diff --git a/src/Aspect/Aspect_TypeOfColorScalePosition.hxx b/src/Visualization/TKService/Aspect/Aspect_TypeOfColorScalePosition.hxx similarity index 100% rename from src/Aspect/Aspect_TypeOfColorScalePosition.hxx rename to src/Visualization/TKService/Aspect/Aspect_TypeOfColorScalePosition.hxx diff --git a/src/Aspect/Aspect_TypeOfDeflection.hxx b/src/Visualization/TKService/Aspect/Aspect_TypeOfDeflection.hxx similarity index 100% rename from src/Aspect/Aspect_TypeOfDeflection.hxx rename to src/Visualization/TKService/Aspect/Aspect_TypeOfDeflection.hxx diff --git a/src/Aspect/Aspect_TypeOfDisplayText.hxx b/src/Visualization/TKService/Aspect/Aspect_TypeOfDisplayText.hxx similarity index 100% rename from src/Aspect/Aspect_TypeOfDisplayText.hxx rename to src/Visualization/TKService/Aspect/Aspect_TypeOfDisplayText.hxx diff --git a/src/Aspect/Aspect_TypeOfFacingModel.hxx b/src/Visualization/TKService/Aspect/Aspect_TypeOfFacingModel.hxx similarity index 100% rename from src/Aspect/Aspect_TypeOfFacingModel.hxx rename to src/Visualization/TKService/Aspect/Aspect_TypeOfFacingModel.hxx diff --git a/src/Aspect/Aspect_TypeOfHighlightMethod.hxx b/src/Visualization/TKService/Aspect/Aspect_TypeOfHighlightMethod.hxx similarity index 100% rename from src/Aspect/Aspect_TypeOfHighlightMethod.hxx rename to src/Visualization/TKService/Aspect/Aspect_TypeOfHighlightMethod.hxx diff --git a/src/Aspect/Aspect_TypeOfLine.hxx b/src/Visualization/TKService/Aspect/Aspect_TypeOfLine.hxx similarity index 100% rename from src/Aspect/Aspect_TypeOfLine.hxx rename to src/Visualization/TKService/Aspect/Aspect_TypeOfLine.hxx diff --git a/src/Aspect/Aspect_TypeOfMarker.hxx b/src/Visualization/TKService/Aspect/Aspect_TypeOfMarker.hxx similarity index 100% rename from src/Aspect/Aspect_TypeOfMarker.hxx rename to src/Visualization/TKService/Aspect/Aspect_TypeOfMarker.hxx diff --git a/src/Aspect/Aspect_TypeOfResize.hxx b/src/Visualization/TKService/Aspect/Aspect_TypeOfResize.hxx similarity index 100% rename from src/Aspect/Aspect_TypeOfResize.hxx rename to src/Visualization/TKService/Aspect/Aspect_TypeOfResize.hxx diff --git a/src/Aspect/Aspect_TypeOfStyleText.hxx b/src/Visualization/TKService/Aspect/Aspect_TypeOfStyleText.hxx similarity index 100% rename from src/Aspect/Aspect_TypeOfStyleText.hxx rename to src/Visualization/TKService/Aspect/Aspect_TypeOfStyleText.hxx diff --git a/src/Aspect/Aspect_TypeOfTriedronPosition.hxx b/src/Visualization/TKService/Aspect/Aspect_TypeOfTriedronPosition.hxx similarity index 100% rename from src/Aspect/Aspect_TypeOfTriedronPosition.hxx rename to src/Visualization/TKService/Aspect/Aspect_TypeOfTriedronPosition.hxx diff --git a/src/Aspect/Aspect_Units.hxx b/src/Visualization/TKService/Aspect/Aspect_Units.hxx similarity index 100% rename from src/Aspect/Aspect_Units.hxx rename to src/Visualization/TKService/Aspect/Aspect_Units.hxx diff --git a/src/Aspect/Aspect_VKey.hxx b/src/Visualization/TKService/Aspect/Aspect_VKey.hxx similarity index 100% rename from src/Aspect/Aspect_VKey.hxx rename to src/Visualization/TKService/Aspect/Aspect_VKey.hxx diff --git a/src/Aspect/Aspect_VKeyFlags.hxx b/src/Visualization/TKService/Aspect/Aspect_VKeyFlags.hxx similarity index 100% rename from src/Aspect/Aspect_VKeyFlags.hxx rename to src/Visualization/TKService/Aspect/Aspect_VKeyFlags.hxx diff --git a/src/Aspect/Aspect_VKeySet.cxx b/src/Visualization/TKService/Aspect/Aspect_VKeySet.cxx similarity index 100% rename from src/Aspect/Aspect_VKeySet.cxx rename to src/Visualization/TKService/Aspect/Aspect_VKeySet.cxx diff --git a/src/Aspect/Aspect_VKeySet.hxx b/src/Visualization/TKService/Aspect/Aspect_VKeySet.hxx similarity index 100% rename from src/Aspect/Aspect_VKeySet.hxx rename to src/Visualization/TKService/Aspect/Aspect_VKeySet.hxx diff --git a/src/Aspect/Aspect_WidthOfLine.hxx b/src/Visualization/TKService/Aspect/Aspect_WidthOfLine.hxx similarity index 100% rename from src/Aspect/Aspect_WidthOfLine.hxx rename to src/Visualization/TKService/Aspect/Aspect_WidthOfLine.hxx diff --git a/src/Aspect/Aspect_Window.cxx b/src/Visualization/TKService/Aspect/Aspect_Window.cxx similarity index 100% rename from src/Aspect/Aspect_Window.cxx rename to src/Visualization/TKService/Aspect/Aspect_Window.cxx diff --git a/src/Aspect/Aspect_Window.hxx b/src/Visualization/TKService/Aspect/Aspect_Window.hxx similarity index 100% rename from src/Aspect/Aspect_Window.hxx rename to src/Visualization/TKService/Aspect/Aspect_Window.hxx diff --git a/src/Aspect/Aspect_WindowDefinitionError.hxx b/src/Visualization/TKService/Aspect/Aspect_WindowDefinitionError.hxx similarity index 100% rename from src/Aspect/Aspect_WindowDefinitionError.hxx rename to src/Visualization/TKService/Aspect/Aspect_WindowDefinitionError.hxx diff --git a/src/Aspect/Aspect_WindowError.hxx b/src/Visualization/TKService/Aspect/Aspect_WindowError.hxx similarity index 100% rename from src/Aspect/Aspect_WindowError.hxx rename to src/Visualization/TKService/Aspect/Aspect_WindowError.hxx diff --git a/src/Aspect/Aspect_WindowInputListener.cxx b/src/Visualization/TKService/Aspect/Aspect_WindowInputListener.cxx similarity index 100% rename from src/Aspect/Aspect_WindowInputListener.cxx rename to src/Visualization/TKService/Aspect/Aspect_WindowInputListener.cxx diff --git a/src/Aspect/Aspect_WindowInputListener.hxx b/src/Visualization/TKService/Aspect/Aspect_WindowInputListener.hxx similarity index 100% rename from src/Aspect/Aspect_WindowInputListener.hxx rename to src/Visualization/TKService/Aspect/Aspect_WindowInputListener.hxx diff --git a/src/Aspect/Aspect_XAtom.hxx b/src/Visualization/TKService/Aspect/Aspect_XAtom.hxx similarity index 100% rename from src/Aspect/Aspect_XAtom.hxx rename to src/Visualization/TKService/Aspect/Aspect_XAtom.hxx diff --git a/src/Aspect/Aspect_XRAction.hxx b/src/Visualization/TKService/Aspect/Aspect_XRAction.hxx similarity index 100% rename from src/Aspect/Aspect_XRAction.hxx rename to src/Visualization/TKService/Aspect/Aspect_XRAction.hxx diff --git a/src/Aspect/Aspect_XRActionSet.hxx b/src/Visualization/TKService/Aspect/Aspect_XRActionSet.hxx similarity index 100% rename from src/Aspect/Aspect_XRActionSet.hxx rename to src/Visualization/TKService/Aspect/Aspect_XRActionSet.hxx diff --git a/src/Aspect/Aspect_XRActionType.hxx b/src/Visualization/TKService/Aspect/Aspect_XRActionType.hxx similarity index 100% rename from src/Aspect/Aspect_XRActionType.hxx rename to src/Visualization/TKService/Aspect/Aspect_XRActionType.hxx diff --git a/src/Aspect/Aspect_XRAnalogActionData.hxx b/src/Visualization/TKService/Aspect/Aspect_XRAnalogActionData.hxx similarity index 100% rename from src/Aspect/Aspect_XRAnalogActionData.hxx rename to src/Visualization/TKService/Aspect/Aspect_XRAnalogActionData.hxx diff --git a/src/Aspect/Aspect_XRDigitalActionData.hxx b/src/Visualization/TKService/Aspect/Aspect_XRDigitalActionData.hxx similarity index 100% rename from src/Aspect/Aspect_XRDigitalActionData.hxx rename to src/Visualization/TKService/Aspect/Aspect_XRDigitalActionData.hxx diff --git a/src/Aspect/Aspect_XRGenericAction.hxx b/src/Visualization/TKService/Aspect/Aspect_XRGenericAction.hxx similarity index 100% rename from src/Aspect/Aspect_XRGenericAction.hxx rename to src/Visualization/TKService/Aspect/Aspect_XRGenericAction.hxx diff --git a/src/Aspect/Aspect_XRHapticActionData.hxx b/src/Visualization/TKService/Aspect/Aspect_XRHapticActionData.hxx similarity index 100% rename from src/Aspect/Aspect_XRHapticActionData.hxx rename to src/Visualization/TKService/Aspect/Aspect_XRHapticActionData.hxx diff --git a/src/Aspect/Aspect_XRPoseActionData.hxx b/src/Visualization/TKService/Aspect/Aspect_XRPoseActionData.hxx similarity index 100% rename from src/Aspect/Aspect_XRPoseActionData.hxx rename to src/Visualization/TKService/Aspect/Aspect_XRPoseActionData.hxx diff --git a/src/Aspect/Aspect_XRSession.cxx b/src/Visualization/TKService/Aspect/Aspect_XRSession.cxx similarity index 100% rename from src/Aspect/Aspect_XRSession.cxx rename to src/Visualization/TKService/Aspect/Aspect_XRSession.cxx diff --git a/src/Aspect/Aspect_XRSession.hxx b/src/Visualization/TKService/Aspect/Aspect_XRSession.hxx similarity index 100% rename from src/Aspect/Aspect_XRSession.hxx rename to src/Visualization/TKService/Aspect/Aspect_XRSession.hxx diff --git a/src/Aspect/Aspect_XRTrackedDeviceRole.hxx b/src/Visualization/TKService/Aspect/Aspect_XRTrackedDeviceRole.hxx similarity index 100% rename from src/Aspect/Aspect_XRTrackedDeviceRole.hxx rename to src/Visualization/TKService/Aspect/Aspect_XRTrackedDeviceRole.hxx diff --git a/src/Visualization/TKService/Aspect/FILES.cmake b/src/Visualization/TKService/Aspect/FILES.cmake new file mode 100644 index 0000000000..85a296f5e1 --- /dev/null +++ b/src/Visualization/TKService/Aspect/FILES.cmake @@ -0,0 +1,88 @@ +# Source files for Aspect package +set(OCCT_Aspect_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Aspect_FILES + Aspect_AspectFillAreaDefinitionError.hxx + Aspect_AspectLineDefinitionError.hxx + Aspect_AspectMarkerDefinitionError.hxx + Aspect_Background.cxx + Aspect_Background.hxx + Aspect_CircularGrid.cxx + Aspect_CircularGrid.hxx + Aspect_ColorSpace.hxx + Aspect_Display.hxx + Aspect_DisplayConnection.cxx + Aspect_DisplayConnection.hxx + Aspect_DisplayConnectionDefinitionError.hxx + Aspect_Drawable.hxx + Aspect_Eye.hxx + Aspect_FBConfig.hxx + Aspect_FillMethod.hxx + Aspect_FrustumLRBT.hxx + Aspect_GenId.cxx + Aspect_GenId.hxx + Aspect_GradientBackground.cxx + Aspect_GradientBackground.hxx + Aspect_GradientFillMethod.hxx + Aspect_GraphicDeviceDefinitionError.hxx + Aspect_GraphicsLibrary.hxx + Aspect_Grid.cxx + Aspect_Grid.hxx + Aspect_GridDrawMode.hxx + Aspect_GridType.hxx + Aspect_NeutralWindow.cxx + Aspect_NeutralWindow.hxx + Aspect_OpenVRSession.cxx + Aspect_OpenVRSession.hxx + Aspect_Handle.hxx + Aspect_HatchStyle.hxx + Aspect_IdentDefinitionError.hxx + Aspect_InteriorStyle.hxx + Aspect_PolygonOffsetMode.hxx + Aspect_RectangularGrid.cxx + Aspect_RectangularGrid.hxx + Aspect_RenderingContext.hxx + Aspect_SequenceOfColor.hxx + Aspect_ScrollDelta.hxx + Aspect_SkydomeBackground.cxx + Aspect_SkydomeBackground.hxx + Aspect_Touch.hxx + Aspect_TouchMap.hxx + Aspect_TrackedDevicePose.hxx + Aspect_TypeOfColorScaleData.hxx + Aspect_TypeOfColorScaleOrientation.hxx + Aspect_TypeOfColorScalePosition.hxx + Aspect_TypeOfDeflection.hxx + Aspect_TypeOfDisplayText.hxx + Aspect_TypeOfFacingModel.hxx + Aspect_TypeOfHighlightMethod.hxx + Aspect_TypeOfLine.hxx + Aspect_TypeOfMarker.hxx + Aspect_TypeOfResize.hxx + Aspect_TypeOfStyleText.hxx + Aspect_TypeOfTriedronPosition.hxx + Aspect_Units.hxx + Aspect_VKey.hxx + Aspect_VKeyFlags.hxx + Aspect_VKeySet.cxx + Aspect_VKeySet.hxx + Aspect_WidthOfLine.hxx + Aspect_Window.cxx + Aspect_Window.hxx + Aspect_WindowDefinitionError.hxx + Aspect_WindowError.hxx + Aspect_WindowInputListener.cxx + Aspect_WindowInputListener.hxx + Aspect_XAtom.hxx + Aspect_XRAction.hxx + Aspect_XRActionSet.hxx + Aspect_XRActionType.hxx + Aspect_XRAnalogActionData.hxx + Aspect_XRDigitalActionData.hxx + Aspect_XRGenericAction.hxx + Aspect_XRHapticActionData.hxx + Aspect_XRPoseActionData.hxx + Aspect_XRSession.cxx + Aspect_XRSession.hxx + Aspect_XRTrackedDeviceRole.hxx +) diff --git a/src/TKService/CMakeLists.txt b/src/Visualization/TKService/CMakeLists.txt similarity index 100% rename from src/TKService/CMakeLists.txt rename to src/Visualization/TKService/CMakeLists.txt diff --git a/src/Cocoa/Cocoa_LocalPool.hxx b/src/Visualization/TKService/Cocoa/Cocoa_LocalPool.hxx similarity index 100% rename from src/Cocoa/Cocoa_LocalPool.hxx rename to src/Visualization/TKService/Cocoa/Cocoa_LocalPool.hxx diff --git a/src/Cocoa/Cocoa_LocalPool.mm b/src/Visualization/TKService/Cocoa/Cocoa_LocalPool.mm similarity index 100% rename from src/Cocoa/Cocoa_LocalPool.mm rename to src/Visualization/TKService/Cocoa/Cocoa_LocalPool.mm diff --git a/src/Cocoa/Cocoa_Window.hxx b/src/Visualization/TKService/Cocoa/Cocoa_Window.hxx similarity index 100% rename from src/Cocoa/Cocoa_Window.hxx rename to src/Visualization/TKService/Cocoa/Cocoa_Window.hxx diff --git a/src/Cocoa/Cocoa_Window.mm b/src/Visualization/TKService/Cocoa/Cocoa_Window.mm similarity index 100% rename from src/Cocoa/Cocoa_Window.mm rename to src/Visualization/TKService/Cocoa/Cocoa_Window.mm diff --git a/src/Visualization/TKService/Cocoa/FILES.cmake b/src/Visualization/TKService/Cocoa/FILES.cmake new file mode 100644 index 0000000000..4887a685eb --- /dev/null +++ b/src/Visualization/TKService/Cocoa/FILES.cmake @@ -0,0 +1,9 @@ +# Source files for Cocoa package +set(OCCT_Cocoa_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Cocoa_FILES + Cocoa_LocalPool.hxx + Cocoa_LocalPool.mm + Cocoa_Window.hxx + Cocoa_Window.mm +) diff --git a/src/Visualization/TKService/EXTERNLIB.cmake b/src/Visualization/TKService/EXTERNLIB.cmake new file mode 100644 index 0000000000..8d5a77a2bd --- /dev/null +++ b/src/Visualization/TKService/EXTERNLIB.cmake @@ -0,0 +1,21 @@ +# External dependencies for TKService +set(OCCT_TKService_EXTERNAL_LIBS + TKernel + TKMath + CSF_user32 + CSF_advapi32 + CSF_OpenVR + CSF_advapi32 + CSF_user32 + CSF_XwLibs + CSF_dpsLibs + CSF_XmuLibs + CSF_fontconfig + CSF_objc + CSF_Appkit + CSF_IOKit + CSF_FreeImagePlus + CSF_FREETYPE + CSF_FFmpeg + CSF_winmm +) diff --git a/src/Visualization/TKService/FILES.cmake b/src/Visualization/TKService/FILES.cmake new file mode 100644 index 0000000000..7c9e572590 --- /dev/null +++ b/src/Visualization/TKService/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKService +set(OCCT_TKService_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKService_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/Visualization/TKService/Font/FILES.cmake b/src/Visualization/TKService/Font/FILES.cmake new file mode 100644 index 0000000000..938f8782a7 --- /dev/null +++ b/src/Visualization/TKService/Font/FILES.cmake @@ -0,0 +1,25 @@ +# Source files for Font package +set(OCCT_Font_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Font_FILES + Font_BRepFont.hxx + Font_BRepTextBuilder.hxx + Font_FontAspect.hxx + Font_FontMgr.cxx + Font_FontMgr.hxx + Font_FTFont.cxx + Font_FTFont.hxx + Font_FTLibrary.cxx + Font_FTLibrary.hxx + Font_Hinting.hxx + Font_NameOfFont.hxx + Font_NListOfSystemFont.hxx + Font_Rect.hxx + Font_StrictLevel.hxx + Font_SystemFont.cxx + Font_SystemFont.hxx + Font_TextFormatter.hxx + Font_TextFormatter.cxx + Font_UnicodeSubset.hxx + Font_DejavuSans_Latin_woff.pxx +) diff --git a/src/Font/Font_BRepFont.hxx b/src/Visualization/TKService/Font/Font_BRepFont.hxx similarity index 100% rename from src/Font/Font_BRepFont.hxx rename to src/Visualization/TKService/Font/Font_BRepFont.hxx diff --git a/src/Font/Font_BRepTextBuilder.hxx b/src/Visualization/TKService/Font/Font_BRepTextBuilder.hxx similarity index 100% rename from src/Font/Font_BRepTextBuilder.hxx rename to src/Visualization/TKService/Font/Font_BRepTextBuilder.hxx diff --git a/src/Font/Font_DejavuSans_Latin_woff.pxx b/src/Visualization/TKService/Font/Font_DejavuSans_Latin_woff.pxx similarity index 100% rename from src/Font/Font_DejavuSans_Latin_woff.pxx rename to src/Visualization/TKService/Font/Font_DejavuSans_Latin_woff.pxx diff --git a/src/Font/Font_FTFont.cxx b/src/Visualization/TKService/Font/Font_FTFont.cxx similarity index 100% rename from src/Font/Font_FTFont.cxx rename to src/Visualization/TKService/Font/Font_FTFont.cxx diff --git a/src/Font/Font_FTFont.hxx b/src/Visualization/TKService/Font/Font_FTFont.hxx similarity index 100% rename from src/Font/Font_FTFont.hxx rename to src/Visualization/TKService/Font/Font_FTFont.hxx diff --git a/src/Font/Font_FTLibrary.cxx b/src/Visualization/TKService/Font/Font_FTLibrary.cxx similarity index 100% rename from src/Font/Font_FTLibrary.cxx rename to src/Visualization/TKService/Font/Font_FTLibrary.cxx diff --git a/src/Font/Font_FTLibrary.hxx b/src/Visualization/TKService/Font/Font_FTLibrary.hxx similarity index 100% rename from src/Font/Font_FTLibrary.hxx rename to src/Visualization/TKService/Font/Font_FTLibrary.hxx diff --git a/src/Font/Font_FontAspect.hxx b/src/Visualization/TKService/Font/Font_FontAspect.hxx similarity index 100% rename from src/Font/Font_FontAspect.hxx rename to src/Visualization/TKService/Font/Font_FontAspect.hxx diff --git a/src/Font/Font_FontMgr.cxx b/src/Visualization/TKService/Font/Font_FontMgr.cxx similarity index 100% rename from src/Font/Font_FontMgr.cxx rename to src/Visualization/TKService/Font/Font_FontMgr.cxx diff --git a/src/Font/Font_FontMgr.hxx b/src/Visualization/TKService/Font/Font_FontMgr.hxx similarity index 100% rename from src/Font/Font_FontMgr.hxx rename to src/Visualization/TKService/Font/Font_FontMgr.hxx diff --git a/src/Font/Font_Hinting.hxx b/src/Visualization/TKService/Font/Font_Hinting.hxx similarity index 100% rename from src/Font/Font_Hinting.hxx rename to src/Visualization/TKService/Font/Font_Hinting.hxx diff --git a/src/Font/Font_NListOfSystemFont.hxx b/src/Visualization/TKService/Font/Font_NListOfSystemFont.hxx similarity index 100% rename from src/Font/Font_NListOfSystemFont.hxx rename to src/Visualization/TKService/Font/Font_NListOfSystemFont.hxx diff --git a/src/Font/Font_NameOfFont.hxx b/src/Visualization/TKService/Font/Font_NameOfFont.hxx similarity index 100% rename from src/Font/Font_NameOfFont.hxx rename to src/Visualization/TKService/Font/Font_NameOfFont.hxx diff --git a/src/Font/Font_Rect.hxx b/src/Visualization/TKService/Font/Font_Rect.hxx similarity index 100% rename from src/Font/Font_Rect.hxx rename to src/Visualization/TKService/Font/Font_Rect.hxx diff --git a/src/Font/Font_StrictLevel.hxx b/src/Visualization/TKService/Font/Font_StrictLevel.hxx similarity index 100% rename from src/Font/Font_StrictLevel.hxx rename to src/Visualization/TKService/Font/Font_StrictLevel.hxx diff --git a/src/Font/Font_SystemFont.cxx b/src/Visualization/TKService/Font/Font_SystemFont.cxx similarity index 100% rename from src/Font/Font_SystemFont.cxx rename to src/Visualization/TKService/Font/Font_SystemFont.cxx diff --git a/src/Font/Font_SystemFont.hxx b/src/Visualization/TKService/Font/Font_SystemFont.hxx similarity index 100% rename from src/Font/Font_SystemFont.hxx rename to src/Visualization/TKService/Font/Font_SystemFont.hxx diff --git a/src/Font/Font_TextFormatter.cxx b/src/Visualization/TKService/Font/Font_TextFormatter.cxx similarity index 100% rename from src/Font/Font_TextFormatter.cxx rename to src/Visualization/TKService/Font/Font_TextFormatter.cxx diff --git a/src/Font/Font_TextFormatter.hxx b/src/Visualization/TKService/Font/Font_TextFormatter.hxx similarity index 100% rename from src/Font/Font_TextFormatter.hxx rename to src/Visualization/TKService/Font/Font_TextFormatter.hxx diff --git a/src/Font/Font_UnicodeSubset.hxx b/src/Visualization/TKService/Font/Font_UnicodeSubset.hxx similarity index 100% rename from src/Font/Font_UnicodeSubset.hxx rename to src/Visualization/TKService/Font/Font_UnicodeSubset.hxx diff --git a/src/Visualization/TKService/Graphic3d/FILES.cmake b/src/Visualization/TKService/Graphic3d/FILES.cmake new file mode 100644 index 0000000000..e55bf61935 --- /dev/null +++ b/src/Visualization/TKService/Graphic3d/FILES.cmake @@ -0,0 +1,215 @@ +# Source files for Graphic3d package +set(OCCT_Graphic3d_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Graphic3d_FILES + Graphic3d_AlphaMode.hxx + Graphic3d_ArrayFlags.hxx + Graphic3d_ArrayOfPoints.hxx + Graphic3d_ArrayOfPolygons.hxx + Graphic3d_ArrayOfPolylines.hxx + Graphic3d_ArrayOfPrimitives.cxx + Graphic3d_ArrayOfPrimitives.hxx + Graphic3d_ArrayOfQuadrangles.hxx + Graphic3d_ArrayOfQuadrangleStrips.hxx + Graphic3d_ArrayOfSegments.hxx + Graphic3d_ArrayOfTriangleFans.hxx + Graphic3d_ArrayOfTriangles.hxx + Graphic3d_ArrayOfTriangleStrips.hxx + Graphic3d_Aspects.cxx + Graphic3d_Aspects.hxx + Graphic3d_AspectFillArea3d.cxx + Graphic3d_AspectFillArea3d.hxx + Graphic3d_AspectLine3d.cxx + Graphic3d_AspectLine3d.hxx + Graphic3d_AspectMarker3d.cxx + Graphic3d_AspectMarker3d.hxx + Graphic3d_AspectText3d.cxx + Graphic3d_AspectText3d.hxx + Graphic3d_AttribBuffer.cxx + Graphic3d_AttribBuffer.hxx + Graphic3d_BndBox3d.hxx + Graphic3d_BndBox4d.hxx + Graphic3d_BndBox4f.hxx + Graphic3d_BoundBuffer.hxx + Graphic3d_BSDF.cxx + Graphic3d_BSDF.hxx + Graphic3d_Buffer.cxx + Graphic3d_Buffer.hxx + Graphic3d_BufferRange.hxx + Graphic3d_BufferType.hxx + Graphic3d_BvhCStructureSet.cxx + Graphic3d_BvhCStructureSet.hxx + Graphic3d_BvhCStructureSetTrsfPers.cxx + Graphic3d_BvhCStructureSetTrsfPers.hxx + Graphic3d_Camera.cxx + Graphic3d_Camera.hxx + Graphic3d_CameraTile.cxx + Graphic3d_CameraTile.hxx + Graphic3d_CappingFlags.hxx + Graphic3d_CLight.cxx + Graphic3d_CLight.hxx + Graphic3d_ClipPlane.cxx + Graphic3d_ClipPlane.hxx + Graphic3d_CStructure.cxx + Graphic3d_CStructure.hxx + Graphic3d_CubeMap.cxx + Graphic3d_CubeMap.hxx + Graphic3d_CubeMapOrder.cxx + Graphic3d_CubeMapOrder.hxx + Graphic3d_CubeMapPacked.cxx + Graphic3d_CubeMapPacked.hxx + Graphic3d_CubeMapSeparate.cxx + Graphic3d_CubeMapSeparate.hxx + Graphic3d_CubeMapSide.hxx + Graphic3d_CullingTool.cxx + Graphic3d_CullingTool.hxx + Graphic3d_CView.cxx + Graphic3d_CView.hxx + Graphic3d_DataStructureManager.cxx + Graphic3d_DataStructureManager.hxx + Graphic3d_DiagnosticInfo.hxx + Graphic3d_DisplayPriority.hxx + Graphic3d_FrameStats.cxx + Graphic3d_FrameStats.hxx + Graphic3d_FrameStatsCounter.hxx + Graphic3d_FrameStatsData.cxx + Graphic3d_FrameStatsData.hxx + Graphic3d_FrameStatsTimer.hxx + Graphic3d_GraduatedTrihedron.hxx + Graphic3d_GraphicDriver.cxx + Graphic3d_GraphicDriver.hxx + Graphic3d_GraphicDriverFactory.cxx + Graphic3d_GraphicDriverFactory.hxx + Graphic3d_Group.cxx + Graphic3d_Group.hxx + Graphic3d_GroupAspect.hxx + Graphic3d_GroupDefinitionError.hxx + Graphic3d_HatchStyle.hxx + Graphic3d_HatchStyle.cxx + Graphic3d_PresentationAttributes.hxx + Graphic3d_PresentationAttributes.cxx + Graphic3d_HorizontalTextAlignment.hxx + Graphic3d_IndexBuffer.hxx + Graphic3d_MutableIndexBuffer.hxx + Graphic3d_LevelOfTextureAnisotropy.hxx + Graphic3d_LightSet.cxx + Graphic3d_LightSet.hxx + Graphic3d_MapOfAspectsToAspects.hxx + Graphic3d_MapIteratorOfMapOfStructure.hxx + Graphic3d_MapOfObject.hxx + Graphic3d_MapOfStructure.hxx + Graphic3d_MarkerImage.cxx + Graphic3d_MarkerImage.hxx + Graphic3d_MarkerImage.pxx + Graphic3d_Mat4.hxx + Graphic3d_Mat4d.hxx + Graphic3d_MaterialAspect.cxx + Graphic3d_MaterialAspect.hxx + Graphic3d_MaterialDefinitionError.hxx + Graphic3d_MediaTexture.cxx + Graphic3d_MediaTexture.hxx + Graphic3d_MediaTextureSet.cxx + Graphic3d_MediaTextureSet.hxx + Graphic3d_NameOfMaterial.hxx + Graphic3d_NameOfTexture1D.hxx + Graphic3d_NameOfTexture2D.hxx + Graphic3d_NameOfTextureEnv.hxx + Graphic3d_NameOfTexturePlane.hxx + Graphic3d_NMapOfTransient.hxx + Graphic3d_PBRMaterial.cxx + Graphic3d_PBRMaterial.hxx + Graphic3d_PolygonOffset.cxx + Graphic3d_PolygonOffset.hxx + Graphic3d_PriorityDefinitionError.hxx + Graphic3d_RenderingMode.hxx + Graphic3d_RenderingParams.cxx + Graphic3d_RenderingParams.hxx + Graphic3d_RenderTransparentMethod.hxx + Graphic3d_SequenceOfGroup.hxx + Graphic3d_SequenceOfHClipPlane.cxx + Graphic3d_SequenceOfHClipPlane.hxx + Graphic3d_SequenceOfStructure.hxx + Graphic3d_ShaderAttribute.cxx + Graphic3d_ShaderAttribute.hxx + Graphic3d_ShaderFlags.hxx + Graphic3d_ShaderManager.cxx + Graphic3d_ShaderManager.hxx + Graphic3d_ShaderObject.cxx + Graphic3d_ShaderObject.hxx + Graphic3d_ShaderProgram.cxx + Graphic3d_ShaderProgram.hxx + Graphic3d_ShaderVariable.cxx + Graphic3d_ShaderVariable.hxx + Graphic3d_ShaderVariable.lxx + Graphic3d_StereoMode.hxx + Graphic3d_Structure.cxx + Graphic3d_Structure.hxx + Graphic3d_StructureDefinitionError.hxx + Graphic3d_StructureManager.cxx + Graphic3d_StructureManager.hxx + Graphic3d_TextPath.hxx + Graphic3d_Text.cxx + Graphic3d_Text.hxx + Graphic3d_Texture1D.cxx + Graphic3d_Texture1D.hxx + Graphic3d_Texture1Dmanual.cxx + Graphic3d_Texture1Dmanual.hxx + Graphic3d_Texture1Dsegment.cxx + Graphic3d_Texture1Dsegment.hxx + Graphic3d_Texture2D.cxx + Graphic3d_Texture2D.hxx + Graphic3d_Texture2Dmanual.hxx + Graphic3d_Texture2Dplane.cxx + Graphic3d_Texture2Dplane.hxx + Graphic3d_Texture3D.cxx + Graphic3d_Texture3D.hxx + Graphic3d_TextureEnv.cxx + Graphic3d_TextureEnv.hxx + Graphic3d_TextureMap.cxx + Graphic3d_TextureMap.hxx + Graphic3d_TextureParams.cxx + Graphic3d_TextureParams.hxx + Graphic3d_TextureRoot.cxx + Graphic3d_TextureRoot.hxx + Graphic3d_TextureUnit.hxx + Graphic3d_TextureSet.cxx + Graphic3d_TextureSet.hxx + Graphic3d_TextureSetBits.hxx + Graphic3d_ToneMappingMethod.hxx + Graphic3d_TransformPers.hxx + Graphic3d_TransformPers.cxx + Graphic3d_TransformPersScaledAbove.hxx + Graphic3d_TransformPersScaledAbove.cxx + Graphic3d_TransformUtils.hxx + Graphic3d_TransModeFlags.hxx + Graphic3d_TypeOfAnswer.hxx + Graphic3d_TypeOfBackfacingModel.hxx + Graphic3d_TypeOfBackground.hxx + Graphic3d_TypeOfConnection.hxx + Graphic3d_TypeOfLightSource.hxx + Graphic3d_TypeOfLimit.hxx + Graphic3d_TypeOfMaterial.hxx + Graphic3d_TypeOfPrimitiveArray.hxx + Graphic3d_TypeOfReflection.hxx + Graphic3d_TypeOfShaderObject.hxx + Graphic3d_TypeOfShadingModel.hxx + Graphic3d_TypeOfStructure.hxx + Graphic3d_TypeOfTexture.hxx + Graphic3d_TypeOfTextureFilter.hxx + Graphic3d_TypeOfTextureMode.hxx + Graphic3d_TypeOfVisualization.hxx + Graphic3d_Vec.hxx + Graphic3d_Vec2.hxx + Graphic3d_Vec3.hxx + Graphic3d_Vec4.hxx + Graphic3d_Vertex.cxx + Graphic3d_Vertex.hxx + Graphic3d_VerticalTextAlignment.hxx + Graphic3d_ViewAffinity.cxx + Graphic3d_ViewAffinity.hxx + Graphic3d_WorldViewProjState.hxx + Graphic3d_Layer.cxx + Graphic3d_Layer.hxx + Graphic3d_ZLayerId.hxx + Graphic3d_ZLayerSettings.hxx +) diff --git a/src/Graphic3d/Graphic3d_AlphaMode.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_AlphaMode.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_AlphaMode.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_AlphaMode.hxx diff --git a/src/Graphic3d/Graphic3d_ArrayFlags.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ArrayFlags.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_ArrayFlags.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ArrayFlags.hxx diff --git a/src/Graphic3d/Graphic3d_ArrayOfPoints.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ArrayOfPoints.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_ArrayOfPoints.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ArrayOfPoints.hxx diff --git a/src/Graphic3d/Graphic3d_ArrayOfPolygons.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ArrayOfPolygons.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_ArrayOfPolygons.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ArrayOfPolygons.hxx diff --git a/src/Graphic3d/Graphic3d_ArrayOfPolylines.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ArrayOfPolylines.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_ArrayOfPolylines.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ArrayOfPolylines.hxx diff --git a/src/Graphic3d/Graphic3d_ArrayOfPrimitives.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ArrayOfPrimitives.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_ArrayOfPrimitives.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ArrayOfPrimitives.cxx diff --git a/src/Graphic3d/Graphic3d_ArrayOfPrimitives.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ArrayOfPrimitives.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_ArrayOfPrimitives.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ArrayOfPrimitives.hxx diff --git a/src/Graphic3d/Graphic3d_ArrayOfQuadrangleStrips.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ArrayOfQuadrangleStrips.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_ArrayOfQuadrangleStrips.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ArrayOfQuadrangleStrips.hxx diff --git a/src/Graphic3d/Graphic3d_ArrayOfQuadrangles.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ArrayOfQuadrangles.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_ArrayOfQuadrangles.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ArrayOfQuadrangles.hxx diff --git a/src/Graphic3d/Graphic3d_ArrayOfSegments.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ArrayOfSegments.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_ArrayOfSegments.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ArrayOfSegments.hxx diff --git a/src/Graphic3d/Graphic3d_ArrayOfTriangleFans.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ArrayOfTriangleFans.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_ArrayOfTriangleFans.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ArrayOfTriangleFans.hxx diff --git a/src/Graphic3d/Graphic3d_ArrayOfTriangleStrips.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ArrayOfTriangleStrips.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_ArrayOfTriangleStrips.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ArrayOfTriangleStrips.hxx diff --git a/src/Graphic3d/Graphic3d_ArrayOfTriangles.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ArrayOfTriangles.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_ArrayOfTriangles.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ArrayOfTriangles.hxx diff --git a/src/Graphic3d/Graphic3d_AspectFillArea3d.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_AspectFillArea3d.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_AspectFillArea3d.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_AspectFillArea3d.cxx diff --git a/src/Graphic3d/Graphic3d_AspectFillArea3d.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_AspectFillArea3d.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_AspectFillArea3d.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_AspectFillArea3d.hxx diff --git a/src/Graphic3d/Graphic3d_AspectLine3d.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_AspectLine3d.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_AspectLine3d.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_AspectLine3d.cxx diff --git a/src/Graphic3d/Graphic3d_AspectLine3d.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_AspectLine3d.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_AspectLine3d.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_AspectLine3d.hxx diff --git a/src/Graphic3d/Graphic3d_AspectMarker3d.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_AspectMarker3d.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_AspectMarker3d.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_AspectMarker3d.cxx diff --git a/src/Graphic3d/Graphic3d_AspectMarker3d.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_AspectMarker3d.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_AspectMarker3d.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_AspectMarker3d.hxx diff --git a/src/Graphic3d/Graphic3d_AspectText3d.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_AspectText3d.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_AspectText3d.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_AspectText3d.cxx diff --git a/src/Graphic3d/Graphic3d_AspectText3d.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_AspectText3d.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_AspectText3d.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_AspectText3d.hxx diff --git a/src/Graphic3d/Graphic3d_Aspects.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Aspects.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_Aspects.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Aspects.cxx diff --git a/src/Graphic3d/Graphic3d_Aspects.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Aspects.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_Aspects.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Aspects.hxx diff --git a/src/Graphic3d/Graphic3d_AttribBuffer.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_AttribBuffer.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_AttribBuffer.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_AttribBuffer.cxx diff --git a/src/Graphic3d/Graphic3d_AttribBuffer.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_AttribBuffer.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_AttribBuffer.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_AttribBuffer.hxx diff --git a/src/Graphic3d/Graphic3d_BSDF.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_BSDF.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_BSDF.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_BSDF.cxx diff --git a/src/Graphic3d/Graphic3d_BSDF.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_BSDF.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_BSDF.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_BSDF.hxx diff --git a/src/Graphic3d/Graphic3d_BndBox3d.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_BndBox3d.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_BndBox3d.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_BndBox3d.hxx diff --git a/src/Graphic3d/Graphic3d_BndBox4d.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_BndBox4d.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_BndBox4d.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_BndBox4d.hxx diff --git a/src/Graphic3d/Graphic3d_BndBox4f.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_BndBox4f.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_BndBox4f.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_BndBox4f.hxx diff --git a/src/Graphic3d/Graphic3d_BoundBuffer.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_BoundBuffer.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_BoundBuffer.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_BoundBuffer.hxx diff --git a/src/Graphic3d/Graphic3d_Buffer.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Buffer.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_Buffer.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Buffer.cxx diff --git a/src/Graphic3d/Graphic3d_Buffer.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Buffer.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_Buffer.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Buffer.hxx diff --git a/src/Graphic3d/Graphic3d_BufferRange.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_BufferRange.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_BufferRange.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_BufferRange.hxx diff --git a/src/Graphic3d/Graphic3d_BufferType.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_BufferType.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_BufferType.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_BufferType.hxx diff --git a/src/Graphic3d/Graphic3d_BvhCStructureSet.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_BvhCStructureSet.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_BvhCStructureSet.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_BvhCStructureSet.cxx diff --git a/src/Graphic3d/Graphic3d_BvhCStructureSet.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_BvhCStructureSet.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_BvhCStructureSet.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_BvhCStructureSet.hxx diff --git a/src/Graphic3d/Graphic3d_BvhCStructureSetTrsfPers.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_BvhCStructureSetTrsfPers.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_BvhCStructureSetTrsfPers.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_BvhCStructureSetTrsfPers.cxx diff --git a/src/Graphic3d/Graphic3d_BvhCStructureSetTrsfPers.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_BvhCStructureSetTrsfPers.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_BvhCStructureSetTrsfPers.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_BvhCStructureSetTrsfPers.hxx diff --git a/src/Graphic3d/Graphic3d_CLight.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_CLight.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_CLight.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_CLight.cxx diff --git a/src/Graphic3d/Graphic3d_CLight.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_CLight.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_CLight.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_CLight.hxx diff --git a/src/Graphic3d/Graphic3d_CStructure.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_CStructure.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_CStructure.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_CStructure.cxx diff --git a/src/Graphic3d/Graphic3d_CStructure.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_CStructure.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_CStructure.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_CStructure.hxx diff --git a/src/Graphic3d/Graphic3d_CView.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_CView.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_CView.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_CView.cxx diff --git a/src/Graphic3d/Graphic3d_CView.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_CView.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_CView.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_CView.hxx diff --git a/src/Graphic3d/Graphic3d_Camera.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Camera.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_Camera.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Camera.cxx diff --git a/src/Graphic3d/Graphic3d_Camera.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Camera.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_Camera.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Camera.hxx diff --git a/src/Graphic3d/Graphic3d_CameraTile.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_CameraTile.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_CameraTile.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_CameraTile.cxx diff --git a/src/Graphic3d/Graphic3d_CameraTile.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_CameraTile.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_CameraTile.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_CameraTile.hxx diff --git a/src/Graphic3d/Graphic3d_CappingFlags.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_CappingFlags.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_CappingFlags.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_CappingFlags.hxx diff --git a/src/Graphic3d/Graphic3d_ClipPlane.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ClipPlane.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_ClipPlane.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ClipPlane.cxx diff --git a/src/Graphic3d/Graphic3d_ClipPlane.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ClipPlane.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_ClipPlane.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ClipPlane.hxx diff --git a/src/Graphic3d/Graphic3d_CubeMap.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_CubeMap.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_CubeMap.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_CubeMap.cxx diff --git a/src/Graphic3d/Graphic3d_CubeMap.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_CubeMap.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_CubeMap.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_CubeMap.hxx diff --git a/src/Graphic3d/Graphic3d_CubeMapOrder.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_CubeMapOrder.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_CubeMapOrder.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_CubeMapOrder.cxx diff --git a/src/Graphic3d/Graphic3d_CubeMapOrder.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_CubeMapOrder.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_CubeMapOrder.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_CubeMapOrder.hxx diff --git a/src/Graphic3d/Graphic3d_CubeMapPacked.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_CubeMapPacked.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_CubeMapPacked.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_CubeMapPacked.cxx diff --git a/src/Graphic3d/Graphic3d_CubeMapPacked.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_CubeMapPacked.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_CubeMapPacked.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_CubeMapPacked.hxx diff --git a/src/Graphic3d/Graphic3d_CubeMapSeparate.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_CubeMapSeparate.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_CubeMapSeparate.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_CubeMapSeparate.cxx diff --git a/src/Graphic3d/Graphic3d_CubeMapSeparate.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_CubeMapSeparate.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_CubeMapSeparate.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_CubeMapSeparate.hxx diff --git a/src/Graphic3d/Graphic3d_CubeMapSide.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_CubeMapSide.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_CubeMapSide.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_CubeMapSide.hxx diff --git a/src/Graphic3d/Graphic3d_CullingTool.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_CullingTool.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_CullingTool.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_CullingTool.cxx diff --git a/src/Graphic3d/Graphic3d_CullingTool.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_CullingTool.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_CullingTool.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_CullingTool.hxx diff --git a/src/Graphic3d/Graphic3d_DataStructureManager.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_DataStructureManager.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_DataStructureManager.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_DataStructureManager.cxx diff --git a/src/Graphic3d/Graphic3d_DataStructureManager.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_DataStructureManager.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_DataStructureManager.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_DataStructureManager.hxx diff --git a/src/Graphic3d/Graphic3d_DiagnosticInfo.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_DiagnosticInfo.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_DiagnosticInfo.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_DiagnosticInfo.hxx diff --git a/src/Graphic3d/Graphic3d_DisplayPriority.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_DisplayPriority.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_DisplayPriority.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_DisplayPriority.hxx diff --git a/src/Graphic3d/Graphic3d_FrameStats.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_FrameStats.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_FrameStats.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_FrameStats.cxx diff --git a/src/Graphic3d/Graphic3d_FrameStats.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_FrameStats.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_FrameStats.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_FrameStats.hxx diff --git a/src/Graphic3d/Graphic3d_FrameStatsCounter.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_FrameStatsCounter.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_FrameStatsCounter.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_FrameStatsCounter.hxx diff --git a/src/Graphic3d/Graphic3d_FrameStatsData.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_FrameStatsData.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_FrameStatsData.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_FrameStatsData.cxx diff --git a/src/Graphic3d/Graphic3d_FrameStatsData.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_FrameStatsData.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_FrameStatsData.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_FrameStatsData.hxx diff --git a/src/Graphic3d/Graphic3d_FrameStatsTimer.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_FrameStatsTimer.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_FrameStatsTimer.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_FrameStatsTimer.hxx diff --git a/src/Graphic3d/Graphic3d_GraduatedTrihedron.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_GraduatedTrihedron.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_GraduatedTrihedron.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_GraduatedTrihedron.hxx diff --git a/src/Graphic3d/Graphic3d_GraphicDriver.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_GraphicDriver.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_GraphicDriver.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_GraphicDriver.cxx diff --git a/src/Graphic3d/Graphic3d_GraphicDriver.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_GraphicDriver.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_GraphicDriver.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_GraphicDriver.hxx diff --git a/src/Graphic3d/Graphic3d_GraphicDriverFactory.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_GraphicDriverFactory.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_GraphicDriverFactory.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_GraphicDriverFactory.cxx diff --git a/src/Graphic3d/Graphic3d_GraphicDriverFactory.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_GraphicDriverFactory.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_GraphicDriverFactory.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_GraphicDriverFactory.hxx diff --git a/src/Graphic3d/Graphic3d_Group.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Group.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_Group.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Group.cxx diff --git a/src/Graphic3d/Graphic3d_Group.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Group.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_Group.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Group.hxx diff --git a/src/Graphic3d/Graphic3d_GroupAspect.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_GroupAspect.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_GroupAspect.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_GroupAspect.hxx diff --git a/src/Graphic3d/Graphic3d_GroupDefinitionError.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_GroupDefinitionError.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_GroupDefinitionError.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_GroupDefinitionError.hxx diff --git a/src/Graphic3d/Graphic3d_HatchStyle.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_HatchStyle.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_HatchStyle.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_HatchStyle.cxx diff --git a/src/Graphic3d/Graphic3d_HatchStyle.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_HatchStyle.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_HatchStyle.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_HatchStyle.hxx diff --git a/src/Graphic3d/Graphic3d_HorizontalTextAlignment.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_HorizontalTextAlignment.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_HorizontalTextAlignment.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_HorizontalTextAlignment.hxx diff --git a/src/Graphic3d/Graphic3d_IndexBuffer.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_IndexBuffer.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_IndexBuffer.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_IndexBuffer.hxx diff --git a/src/Graphic3d/Graphic3d_Layer.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Layer.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_Layer.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Layer.cxx diff --git a/src/Graphic3d/Graphic3d_Layer.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Layer.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_Layer.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Layer.hxx diff --git a/src/Graphic3d/Graphic3d_LevelOfTextureAnisotropy.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_LevelOfTextureAnisotropy.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_LevelOfTextureAnisotropy.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_LevelOfTextureAnisotropy.hxx diff --git a/src/Graphic3d/Graphic3d_LightSet.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_LightSet.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_LightSet.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_LightSet.cxx diff --git a/src/Graphic3d/Graphic3d_LightSet.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_LightSet.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_LightSet.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_LightSet.hxx diff --git a/src/Graphic3d/Graphic3d_MapIteratorOfMapOfStructure.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_MapIteratorOfMapOfStructure.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_MapIteratorOfMapOfStructure.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_MapIteratorOfMapOfStructure.hxx diff --git a/src/Graphic3d/Graphic3d_MapOfAspectsToAspects.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_MapOfAspectsToAspects.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_MapOfAspectsToAspects.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_MapOfAspectsToAspects.hxx diff --git a/src/Graphic3d/Graphic3d_MapOfObject.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_MapOfObject.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_MapOfObject.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_MapOfObject.hxx diff --git a/src/Graphic3d/Graphic3d_MapOfStructure.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_MapOfStructure.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_MapOfStructure.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_MapOfStructure.hxx diff --git a/src/Graphic3d/Graphic3d_MarkerImage.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_MarkerImage.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_MarkerImage.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_MarkerImage.cxx diff --git a/src/Graphic3d/Graphic3d_MarkerImage.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_MarkerImage.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_MarkerImage.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_MarkerImage.hxx diff --git a/src/Graphic3d/Graphic3d_MarkerImage.pxx b/src/Visualization/TKService/Graphic3d/Graphic3d_MarkerImage.pxx similarity index 100% rename from src/Graphic3d/Graphic3d_MarkerImage.pxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_MarkerImage.pxx diff --git a/src/Graphic3d/Graphic3d_Mat4.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Mat4.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_Mat4.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Mat4.hxx diff --git a/src/Graphic3d/Graphic3d_Mat4d.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Mat4d.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_Mat4d.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Mat4d.hxx diff --git a/src/Graphic3d/Graphic3d_MaterialAspect.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_MaterialAspect.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_MaterialAspect.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_MaterialAspect.cxx diff --git a/src/Graphic3d/Graphic3d_MaterialAspect.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_MaterialAspect.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_MaterialAspect.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_MaterialAspect.hxx diff --git a/src/Graphic3d/Graphic3d_MaterialDefinitionError.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_MaterialDefinitionError.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_MaterialDefinitionError.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_MaterialDefinitionError.hxx diff --git a/src/Graphic3d/Graphic3d_MediaTexture.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_MediaTexture.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_MediaTexture.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_MediaTexture.cxx diff --git a/src/Graphic3d/Graphic3d_MediaTexture.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_MediaTexture.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_MediaTexture.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_MediaTexture.hxx diff --git a/src/Graphic3d/Graphic3d_MediaTextureSet.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_MediaTextureSet.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_MediaTextureSet.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_MediaTextureSet.cxx diff --git a/src/Graphic3d/Graphic3d_MediaTextureSet.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_MediaTextureSet.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_MediaTextureSet.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_MediaTextureSet.hxx diff --git a/src/Graphic3d/Graphic3d_MutableIndexBuffer.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_MutableIndexBuffer.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_MutableIndexBuffer.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_MutableIndexBuffer.hxx diff --git a/src/Graphic3d/Graphic3d_NMapOfTransient.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_NMapOfTransient.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_NMapOfTransient.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_NMapOfTransient.hxx diff --git a/src/Graphic3d/Graphic3d_NameOfMaterial.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_NameOfMaterial.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_NameOfMaterial.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_NameOfMaterial.hxx diff --git a/src/Graphic3d/Graphic3d_NameOfTexture1D.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_NameOfTexture1D.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_NameOfTexture1D.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_NameOfTexture1D.hxx diff --git a/src/Graphic3d/Graphic3d_NameOfTexture2D.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_NameOfTexture2D.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_NameOfTexture2D.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_NameOfTexture2D.hxx diff --git a/src/Graphic3d/Graphic3d_NameOfTextureEnv.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_NameOfTextureEnv.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_NameOfTextureEnv.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_NameOfTextureEnv.hxx diff --git a/src/Graphic3d/Graphic3d_NameOfTexturePlane.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_NameOfTexturePlane.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_NameOfTexturePlane.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_NameOfTexturePlane.hxx diff --git a/src/Graphic3d/Graphic3d_PBRMaterial.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_PBRMaterial.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_PBRMaterial.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_PBRMaterial.cxx diff --git a/src/Graphic3d/Graphic3d_PBRMaterial.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_PBRMaterial.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_PBRMaterial.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_PBRMaterial.hxx diff --git a/src/Graphic3d/Graphic3d_PolygonOffset.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_PolygonOffset.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_PolygonOffset.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_PolygonOffset.cxx diff --git a/src/Graphic3d/Graphic3d_PolygonOffset.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_PolygonOffset.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_PolygonOffset.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_PolygonOffset.hxx diff --git a/src/Graphic3d/Graphic3d_PresentationAttributes.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_PresentationAttributes.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_PresentationAttributes.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_PresentationAttributes.cxx diff --git a/src/Graphic3d/Graphic3d_PresentationAttributes.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_PresentationAttributes.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_PresentationAttributes.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_PresentationAttributes.hxx diff --git a/src/Graphic3d/Graphic3d_PriorityDefinitionError.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_PriorityDefinitionError.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_PriorityDefinitionError.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_PriorityDefinitionError.hxx diff --git a/src/Graphic3d/Graphic3d_RenderTransparentMethod.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_RenderTransparentMethod.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_RenderTransparentMethod.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_RenderTransparentMethod.hxx diff --git a/src/Graphic3d/Graphic3d_RenderingMode.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_RenderingMode.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_RenderingMode.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_RenderingMode.hxx diff --git a/src/Graphic3d/Graphic3d_RenderingParams.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_RenderingParams.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_RenderingParams.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_RenderingParams.cxx diff --git a/src/Graphic3d/Graphic3d_RenderingParams.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_RenderingParams.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_RenderingParams.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_RenderingParams.hxx diff --git a/src/Graphic3d/Graphic3d_SequenceOfGroup.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_SequenceOfGroup.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_SequenceOfGroup.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_SequenceOfGroup.hxx diff --git a/src/Graphic3d/Graphic3d_SequenceOfHClipPlane.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_SequenceOfHClipPlane.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_SequenceOfHClipPlane.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_SequenceOfHClipPlane.cxx diff --git a/src/Graphic3d/Graphic3d_SequenceOfHClipPlane.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_SequenceOfHClipPlane.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_SequenceOfHClipPlane.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_SequenceOfHClipPlane.hxx diff --git a/src/Graphic3d/Graphic3d_SequenceOfStructure.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_SequenceOfStructure.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_SequenceOfStructure.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_SequenceOfStructure.hxx diff --git a/src/Graphic3d/Graphic3d_ShaderAttribute.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ShaderAttribute.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_ShaderAttribute.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ShaderAttribute.cxx diff --git a/src/Graphic3d/Graphic3d_ShaderAttribute.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ShaderAttribute.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_ShaderAttribute.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ShaderAttribute.hxx diff --git a/src/Graphic3d/Graphic3d_ShaderFlags.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ShaderFlags.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_ShaderFlags.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ShaderFlags.hxx diff --git a/src/Graphic3d/Graphic3d_ShaderManager.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ShaderManager.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_ShaderManager.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ShaderManager.cxx diff --git a/src/Graphic3d/Graphic3d_ShaderManager.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ShaderManager.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_ShaderManager.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ShaderManager.hxx diff --git a/src/Graphic3d/Graphic3d_ShaderObject.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ShaderObject.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_ShaderObject.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ShaderObject.cxx diff --git a/src/Graphic3d/Graphic3d_ShaderObject.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ShaderObject.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_ShaderObject.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ShaderObject.hxx diff --git a/src/Graphic3d/Graphic3d_ShaderProgram.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ShaderProgram.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_ShaderProgram.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ShaderProgram.cxx diff --git a/src/Graphic3d/Graphic3d_ShaderProgram.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ShaderProgram.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_ShaderProgram.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ShaderProgram.hxx diff --git a/src/Graphic3d/Graphic3d_ShaderVariable.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ShaderVariable.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_ShaderVariable.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ShaderVariable.cxx diff --git a/src/Graphic3d/Graphic3d_ShaderVariable.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ShaderVariable.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_ShaderVariable.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ShaderVariable.hxx diff --git a/src/Graphic3d/Graphic3d_ShaderVariable.lxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ShaderVariable.lxx similarity index 100% rename from src/Graphic3d/Graphic3d_ShaderVariable.lxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ShaderVariable.lxx diff --git a/src/Graphic3d/Graphic3d_StereoMode.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_StereoMode.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_StereoMode.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_StereoMode.hxx diff --git a/src/Graphic3d/Graphic3d_Structure.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Structure.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_Structure.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Structure.cxx diff --git a/src/Graphic3d/Graphic3d_Structure.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Structure.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_Structure.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Structure.hxx diff --git a/src/Graphic3d/Graphic3d_StructureDefinitionError.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_StructureDefinitionError.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_StructureDefinitionError.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_StructureDefinitionError.hxx diff --git a/src/Graphic3d/Graphic3d_StructureManager.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_StructureManager.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_StructureManager.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_StructureManager.cxx diff --git a/src/Graphic3d/Graphic3d_StructureManager.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_StructureManager.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_StructureManager.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_StructureManager.hxx diff --git a/src/Graphic3d/Graphic3d_Text.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Text.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_Text.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Text.cxx diff --git a/src/Graphic3d/Graphic3d_Text.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Text.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_Text.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Text.hxx diff --git a/src/Graphic3d/Graphic3d_TextPath.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TextPath.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TextPath.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TextPath.hxx diff --git a/src/Graphic3d/Graphic3d_Texture1D.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Texture1D.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_Texture1D.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Texture1D.cxx diff --git a/src/Graphic3d/Graphic3d_Texture1D.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Texture1D.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_Texture1D.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Texture1D.hxx diff --git a/src/Graphic3d/Graphic3d_Texture1Dmanual.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Texture1Dmanual.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_Texture1Dmanual.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Texture1Dmanual.cxx diff --git a/src/Graphic3d/Graphic3d_Texture1Dmanual.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Texture1Dmanual.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_Texture1Dmanual.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Texture1Dmanual.hxx diff --git a/src/Graphic3d/Graphic3d_Texture1Dsegment.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Texture1Dsegment.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_Texture1Dsegment.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Texture1Dsegment.cxx diff --git a/src/Graphic3d/Graphic3d_Texture1Dsegment.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Texture1Dsegment.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_Texture1Dsegment.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Texture1Dsegment.hxx diff --git a/src/Graphic3d/Graphic3d_Texture2D.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Texture2D.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_Texture2D.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Texture2D.cxx diff --git a/src/Graphic3d/Graphic3d_Texture2D.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Texture2D.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_Texture2D.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Texture2D.hxx diff --git a/src/Graphic3d/Graphic3d_Texture2Dmanual.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Texture2Dmanual.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_Texture2Dmanual.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Texture2Dmanual.hxx diff --git a/src/Graphic3d/Graphic3d_Texture2Dplane.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Texture2Dplane.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_Texture2Dplane.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Texture2Dplane.cxx diff --git a/src/Graphic3d/Graphic3d_Texture2Dplane.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Texture2Dplane.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_Texture2Dplane.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Texture2Dplane.hxx diff --git a/src/Graphic3d/Graphic3d_Texture3D.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Texture3D.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_Texture3D.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Texture3D.cxx diff --git a/src/Graphic3d/Graphic3d_Texture3D.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Texture3D.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_Texture3D.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Texture3D.hxx diff --git a/src/Graphic3d/Graphic3d_TextureEnv.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TextureEnv.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_TextureEnv.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TextureEnv.cxx diff --git a/src/Graphic3d/Graphic3d_TextureEnv.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TextureEnv.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TextureEnv.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TextureEnv.hxx diff --git a/src/Graphic3d/Graphic3d_TextureMap.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TextureMap.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_TextureMap.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TextureMap.cxx diff --git a/src/Graphic3d/Graphic3d_TextureMap.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TextureMap.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TextureMap.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TextureMap.hxx diff --git a/src/Graphic3d/Graphic3d_TextureParams.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TextureParams.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_TextureParams.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TextureParams.cxx diff --git a/src/Graphic3d/Graphic3d_TextureParams.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TextureParams.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TextureParams.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TextureParams.hxx diff --git a/src/Graphic3d/Graphic3d_TextureRoot.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TextureRoot.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_TextureRoot.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TextureRoot.cxx diff --git a/src/Graphic3d/Graphic3d_TextureRoot.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TextureRoot.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TextureRoot.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TextureRoot.hxx diff --git a/src/Graphic3d/Graphic3d_TextureSet.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TextureSet.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_TextureSet.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TextureSet.cxx diff --git a/src/Graphic3d/Graphic3d_TextureSet.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TextureSet.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TextureSet.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TextureSet.hxx diff --git a/src/Graphic3d/Graphic3d_TextureSetBits.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TextureSetBits.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TextureSetBits.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TextureSetBits.hxx diff --git a/src/Graphic3d/Graphic3d_TextureUnit.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TextureUnit.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TextureUnit.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TextureUnit.hxx diff --git a/src/Graphic3d/Graphic3d_ToneMappingMethod.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ToneMappingMethod.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_ToneMappingMethod.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ToneMappingMethod.hxx diff --git a/src/Graphic3d/Graphic3d_TransModeFlags.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TransModeFlags.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TransModeFlags.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TransModeFlags.hxx diff --git a/src/Graphic3d/Graphic3d_TransformPers.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TransformPers.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_TransformPers.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TransformPers.cxx diff --git a/src/Graphic3d/Graphic3d_TransformPers.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TransformPers.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TransformPers.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TransformPers.hxx diff --git a/src/Graphic3d/Graphic3d_TransformPersScaledAbove.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TransformPersScaledAbove.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_TransformPersScaledAbove.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TransformPersScaledAbove.cxx diff --git a/src/Graphic3d/Graphic3d_TransformPersScaledAbove.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TransformPersScaledAbove.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TransformPersScaledAbove.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TransformPersScaledAbove.hxx diff --git a/src/Graphic3d/Graphic3d_TransformUtils.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TransformUtils.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TransformUtils.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TransformUtils.hxx diff --git a/src/Graphic3d/Graphic3d_TypeOfAnswer.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfAnswer.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TypeOfAnswer.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfAnswer.hxx diff --git a/src/Graphic3d/Graphic3d_TypeOfBackfacingModel.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfBackfacingModel.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TypeOfBackfacingModel.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfBackfacingModel.hxx diff --git a/src/Graphic3d/Graphic3d_TypeOfBackground.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfBackground.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TypeOfBackground.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfBackground.hxx diff --git a/src/Graphic3d/Graphic3d_TypeOfConnection.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfConnection.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TypeOfConnection.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfConnection.hxx diff --git a/src/Graphic3d/Graphic3d_TypeOfLightSource.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfLightSource.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TypeOfLightSource.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfLightSource.hxx diff --git a/src/Graphic3d/Graphic3d_TypeOfLimit.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfLimit.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TypeOfLimit.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfLimit.hxx diff --git a/src/Graphic3d/Graphic3d_TypeOfMaterial.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfMaterial.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TypeOfMaterial.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfMaterial.hxx diff --git a/src/Graphic3d/Graphic3d_TypeOfPrimitiveArray.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfPrimitiveArray.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TypeOfPrimitiveArray.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfPrimitiveArray.hxx diff --git a/src/Graphic3d/Graphic3d_TypeOfReflection.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfReflection.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TypeOfReflection.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfReflection.hxx diff --git a/src/Graphic3d/Graphic3d_TypeOfShaderObject.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfShaderObject.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TypeOfShaderObject.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfShaderObject.hxx diff --git a/src/Graphic3d/Graphic3d_TypeOfShadingModel.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfShadingModel.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TypeOfShadingModel.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfShadingModel.hxx diff --git a/src/Graphic3d/Graphic3d_TypeOfStructure.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfStructure.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TypeOfStructure.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfStructure.hxx diff --git a/src/Graphic3d/Graphic3d_TypeOfTexture.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfTexture.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TypeOfTexture.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfTexture.hxx diff --git a/src/Graphic3d/Graphic3d_TypeOfTextureFilter.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfTextureFilter.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TypeOfTextureFilter.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfTextureFilter.hxx diff --git a/src/Graphic3d/Graphic3d_TypeOfTextureMode.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfTextureMode.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TypeOfTextureMode.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfTextureMode.hxx diff --git a/src/Graphic3d/Graphic3d_TypeOfVisualization.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfVisualization.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_TypeOfVisualization.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_TypeOfVisualization.hxx diff --git a/src/Graphic3d/Graphic3d_Vec.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Vec.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_Vec.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Vec.hxx diff --git a/src/Graphic3d/Graphic3d_Vec2.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Vec2.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_Vec2.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Vec2.hxx diff --git a/src/Graphic3d/Graphic3d_Vec3.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Vec3.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_Vec3.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Vec3.hxx diff --git a/src/Graphic3d/Graphic3d_Vec4.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Vec4.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_Vec4.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Vec4.hxx diff --git a/src/Graphic3d/Graphic3d_Vertex.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Vertex.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_Vertex.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Vertex.cxx diff --git a/src/Graphic3d/Graphic3d_Vertex.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_Vertex.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_Vertex.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_Vertex.hxx diff --git a/src/Graphic3d/Graphic3d_VerticalTextAlignment.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_VerticalTextAlignment.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_VerticalTextAlignment.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_VerticalTextAlignment.hxx diff --git a/src/Graphic3d/Graphic3d_ViewAffinity.cxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ViewAffinity.cxx similarity index 100% rename from src/Graphic3d/Graphic3d_ViewAffinity.cxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ViewAffinity.cxx diff --git a/src/Graphic3d/Graphic3d_ViewAffinity.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ViewAffinity.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_ViewAffinity.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ViewAffinity.hxx diff --git a/src/Graphic3d/Graphic3d_WorldViewProjState.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_WorldViewProjState.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_WorldViewProjState.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_WorldViewProjState.hxx diff --git a/src/Graphic3d/Graphic3d_ZLayerId.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ZLayerId.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_ZLayerId.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ZLayerId.hxx diff --git a/src/Graphic3d/Graphic3d_ZLayerSettings.hxx b/src/Visualization/TKService/Graphic3d/Graphic3d_ZLayerSettings.hxx similarity index 100% rename from src/Graphic3d/Graphic3d_ZLayerSettings.hxx rename to src/Visualization/TKService/Graphic3d/Graphic3d_ZLayerSettings.hxx diff --git a/src/Visualization/TKService/Image/FILES.cmake b/src/Visualization/TKService/Image/FILES.cmake new file mode 100644 index 0000000000..5dde668929 --- /dev/null +++ b/src/Visualization/TKService/Image/FILES.cmake @@ -0,0 +1,25 @@ +# Source files for Image package +set(OCCT_Image_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Image_FILES + Image_AlienPixMap.cxx + Image_AlienPixMap.hxx + Image_Color.hxx + Image_CompressedFormat.hxx + Image_CompressedPixMap.hxx + Image_DDSParser.cxx + Image_DDSParser.hxx + Image_Diff.cxx + Image_Diff.hxx + Image_Format.hxx + Image_PixMap.cxx + Image_PixMap.hxx + Image_PixMapData.hxx + Image_PixMapTypedData.hxx + Image_SupportedFormats.cxx + Image_SupportedFormats.hxx + Image_Texture.cxx + Image_Texture.hxx + Image_VideoRecorder.cxx + Image_VideoRecorder.hxx +) diff --git a/src/Image/Image_AlienPixMap.cxx b/src/Visualization/TKService/Image/Image_AlienPixMap.cxx similarity index 100% rename from src/Image/Image_AlienPixMap.cxx rename to src/Visualization/TKService/Image/Image_AlienPixMap.cxx diff --git a/src/Image/Image_AlienPixMap.hxx b/src/Visualization/TKService/Image/Image_AlienPixMap.hxx similarity index 100% rename from src/Image/Image_AlienPixMap.hxx rename to src/Visualization/TKService/Image/Image_AlienPixMap.hxx diff --git a/src/Image/Image_Color.hxx b/src/Visualization/TKService/Image/Image_Color.hxx similarity index 100% rename from src/Image/Image_Color.hxx rename to src/Visualization/TKService/Image/Image_Color.hxx diff --git a/src/Image/Image_CompressedFormat.hxx b/src/Visualization/TKService/Image/Image_CompressedFormat.hxx similarity index 100% rename from src/Image/Image_CompressedFormat.hxx rename to src/Visualization/TKService/Image/Image_CompressedFormat.hxx diff --git a/src/Image/Image_CompressedPixMap.hxx b/src/Visualization/TKService/Image/Image_CompressedPixMap.hxx similarity index 100% rename from src/Image/Image_CompressedPixMap.hxx rename to src/Visualization/TKService/Image/Image_CompressedPixMap.hxx diff --git a/src/Image/Image_DDSParser.cxx b/src/Visualization/TKService/Image/Image_DDSParser.cxx similarity index 100% rename from src/Image/Image_DDSParser.cxx rename to src/Visualization/TKService/Image/Image_DDSParser.cxx diff --git a/src/Image/Image_DDSParser.hxx b/src/Visualization/TKService/Image/Image_DDSParser.hxx similarity index 100% rename from src/Image/Image_DDSParser.hxx rename to src/Visualization/TKService/Image/Image_DDSParser.hxx diff --git a/src/Image/Image_Diff.cxx b/src/Visualization/TKService/Image/Image_Diff.cxx similarity index 100% rename from src/Image/Image_Diff.cxx rename to src/Visualization/TKService/Image/Image_Diff.cxx diff --git a/src/Image/Image_Diff.hxx b/src/Visualization/TKService/Image/Image_Diff.hxx similarity index 100% rename from src/Image/Image_Diff.hxx rename to src/Visualization/TKService/Image/Image_Diff.hxx diff --git a/src/Image/Image_Format.hxx b/src/Visualization/TKService/Image/Image_Format.hxx similarity index 100% rename from src/Image/Image_Format.hxx rename to src/Visualization/TKService/Image/Image_Format.hxx diff --git a/src/Image/Image_PixMap.cxx b/src/Visualization/TKService/Image/Image_PixMap.cxx similarity index 100% rename from src/Image/Image_PixMap.cxx rename to src/Visualization/TKService/Image/Image_PixMap.cxx diff --git a/src/Image/Image_PixMap.hxx b/src/Visualization/TKService/Image/Image_PixMap.hxx similarity index 100% rename from src/Image/Image_PixMap.hxx rename to src/Visualization/TKService/Image/Image_PixMap.hxx diff --git a/src/Image/Image_PixMapData.hxx b/src/Visualization/TKService/Image/Image_PixMapData.hxx similarity index 100% rename from src/Image/Image_PixMapData.hxx rename to src/Visualization/TKService/Image/Image_PixMapData.hxx diff --git a/src/Image/Image_PixMapTypedData.hxx b/src/Visualization/TKService/Image/Image_PixMapTypedData.hxx similarity index 100% rename from src/Image/Image_PixMapTypedData.hxx rename to src/Visualization/TKService/Image/Image_PixMapTypedData.hxx diff --git a/src/Image/Image_SupportedFormats.cxx b/src/Visualization/TKService/Image/Image_SupportedFormats.cxx similarity index 100% rename from src/Image/Image_SupportedFormats.cxx rename to src/Visualization/TKService/Image/Image_SupportedFormats.cxx diff --git a/src/Image/Image_SupportedFormats.hxx b/src/Visualization/TKService/Image/Image_SupportedFormats.hxx similarity index 100% rename from src/Image/Image_SupportedFormats.hxx rename to src/Visualization/TKService/Image/Image_SupportedFormats.hxx diff --git a/src/Image/Image_Texture.cxx b/src/Visualization/TKService/Image/Image_Texture.cxx similarity index 100% rename from src/Image/Image_Texture.cxx rename to src/Visualization/TKService/Image/Image_Texture.cxx diff --git a/src/Image/Image_Texture.hxx b/src/Visualization/TKService/Image/Image_Texture.hxx similarity index 100% rename from src/Image/Image_Texture.hxx rename to src/Visualization/TKService/Image/Image_Texture.hxx diff --git a/src/Image/Image_VideoRecorder.cxx b/src/Visualization/TKService/Image/Image_VideoRecorder.cxx similarity index 100% rename from src/Image/Image_VideoRecorder.cxx rename to src/Visualization/TKService/Image/Image_VideoRecorder.cxx diff --git a/src/Image/Image_VideoRecorder.hxx b/src/Visualization/TKService/Image/Image_VideoRecorder.hxx similarity index 100% rename from src/Image/Image_VideoRecorder.hxx rename to src/Visualization/TKService/Image/Image_VideoRecorder.hxx diff --git a/src/Visualization/TKService/Media/FILES.cmake b/src/Visualization/TKService/Media/FILES.cmake new file mode 100644 index 0000000000..134521688d --- /dev/null +++ b/src/Visualization/TKService/Media/FILES.cmake @@ -0,0 +1,22 @@ +# Source files for Media package +set(OCCT_Media_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Media_FILES + Media_BufferPool.cxx + Media_BufferPool.hxx + Media_CodecContext.cxx + Media_CodecContext.hxx + Media_FormatContext.cxx + Media_FormatContext.hxx + Media_Frame.cxx + Media_Frame.hxx + Media_Packet.cxx + Media_Packet.hxx + Media_PlayerContext.cxx + Media_PlayerContext.hxx + Media_Scaler.cxx + Media_Scaler.hxx + Media_Timer.cxx + Media_Timer.hxx + Media_IFrameQueue.hxx +) diff --git a/src/Media/Media_BufferPool.cxx b/src/Visualization/TKService/Media/Media_BufferPool.cxx similarity index 100% rename from src/Media/Media_BufferPool.cxx rename to src/Visualization/TKService/Media/Media_BufferPool.cxx diff --git a/src/Media/Media_BufferPool.hxx b/src/Visualization/TKService/Media/Media_BufferPool.hxx similarity index 100% rename from src/Media/Media_BufferPool.hxx rename to src/Visualization/TKService/Media/Media_BufferPool.hxx diff --git a/src/Media/Media_CodecContext.cxx b/src/Visualization/TKService/Media/Media_CodecContext.cxx similarity index 100% rename from src/Media/Media_CodecContext.cxx rename to src/Visualization/TKService/Media/Media_CodecContext.cxx diff --git a/src/Media/Media_CodecContext.hxx b/src/Visualization/TKService/Media/Media_CodecContext.hxx similarity index 100% rename from src/Media/Media_CodecContext.hxx rename to src/Visualization/TKService/Media/Media_CodecContext.hxx diff --git a/src/Media/Media_FormatContext.cxx b/src/Visualization/TKService/Media/Media_FormatContext.cxx similarity index 100% rename from src/Media/Media_FormatContext.cxx rename to src/Visualization/TKService/Media/Media_FormatContext.cxx diff --git a/src/Media/Media_FormatContext.hxx b/src/Visualization/TKService/Media/Media_FormatContext.hxx similarity index 100% rename from src/Media/Media_FormatContext.hxx rename to src/Visualization/TKService/Media/Media_FormatContext.hxx diff --git a/src/Media/Media_Frame.cxx b/src/Visualization/TKService/Media/Media_Frame.cxx similarity index 100% rename from src/Media/Media_Frame.cxx rename to src/Visualization/TKService/Media/Media_Frame.cxx diff --git a/src/Media/Media_Frame.hxx b/src/Visualization/TKService/Media/Media_Frame.hxx similarity index 100% rename from src/Media/Media_Frame.hxx rename to src/Visualization/TKService/Media/Media_Frame.hxx diff --git a/src/Media/Media_IFrameQueue.hxx b/src/Visualization/TKService/Media/Media_IFrameQueue.hxx similarity index 100% rename from src/Media/Media_IFrameQueue.hxx rename to src/Visualization/TKService/Media/Media_IFrameQueue.hxx diff --git a/src/Media/Media_Packet.cxx b/src/Visualization/TKService/Media/Media_Packet.cxx similarity index 100% rename from src/Media/Media_Packet.cxx rename to src/Visualization/TKService/Media/Media_Packet.cxx diff --git a/src/Media/Media_Packet.hxx b/src/Visualization/TKService/Media/Media_Packet.hxx similarity index 100% rename from src/Media/Media_Packet.hxx rename to src/Visualization/TKService/Media/Media_Packet.hxx diff --git a/src/Media/Media_PlayerContext.cxx b/src/Visualization/TKService/Media/Media_PlayerContext.cxx similarity index 100% rename from src/Media/Media_PlayerContext.cxx rename to src/Visualization/TKService/Media/Media_PlayerContext.cxx diff --git a/src/Media/Media_PlayerContext.hxx b/src/Visualization/TKService/Media/Media_PlayerContext.hxx similarity index 100% rename from src/Media/Media_PlayerContext.hxx rename to src/Visualization/TKService/Media/Media_PlayerContext.hxx diff --git a/src/Media/Media_Scaler.cxx b/src/Visualization/TKService/Media/Media_Scaler.cxx similarity index 100% rename from src/Media/Media_Scaler.cxx rename to src/Visualization/TKService/Media/Media_Scaler.cxx diff --git a/src/Media/Media_Scaler.hxx b/src/Visualization/TKService/Media/Media_Scaler.hxx similarity index 100% rename from src/Media/Media_Scaler.hxx rename to src/Visualization/TKService/Media/Media_Scaler.hxx diff --git a/src/Media/Media_Timer.cxx b/src/Visualization/TKService/Media/Media_Timer.cxx similarity index 100% rename from src/Media/Media_Timer.cxx rename to src/Visualization/TKService/Media/Media_Timer.cxx diff --git a/src/Media/Media_Timer.hxx b/src/Visualization/TKService/Media/Media_Timer.hxx similarity index 100% rename from src/Media/Media_Timer.hxx rename to src/Visualization/TKService/Media/Media_Timer.hxx diff --git a/src/Visualization/TKService/PACKAGES.cmake b/src/Visualization/TKService/PACKAGES.cmake new file mode 100644 index 0000000000..598a7da7e3 --- /dev/null +++ b/src/Visualization/TKService/PACKAGES.cmake @@ -0,0 +1,13 @@ +# Auto-generated list of packages for TKService toolkit +set(OCCT_TKService_LIST_OF_PACKAGES + Aspect + Graphic3d + Xw + Image + Media + Wasm + WNT + Cocoa + Font + Shaders +) diff --git a/src/Visualization/TKService/Shaders/FILES.cmake b/src/Visualization/TKService/Shaders/FILES.cmake new file mode 100644 index 0000000000..4cc371546a --- /dev/null +++ b/src/Visualization/TKService/Shaders/FILES.cmake @@ -0,0 +1,30 @@ +# Source files for Shaders package +set(OCCT_Shaders_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Shaders_FILES + Shaders_Declarations_glsl.pxx + Shaders_DeclarationsImpl_glsl.pxx + Shaders_LightShadow_glsl.pxx + Shaders_Display_fs.pxx + Shaders_PBRCookTorrance_glsl.pxx + Shaders_PBRDirectionalLight_glsl.pxx + Shaders_PBRDistribution_glsl.pxx + Shaders_PBREnvBaking_fs.pxx + Shaders_PBREnvBaking_vs.pxx + Shaders_PBRFresnel_glsl.pxx + Shaders_PBRGeometry_glsl.pxx + Shaders_PBRIllumination_glsl.pxx + Shaders_PBRPointLight_glsl.pxx + Shaders_PBRSpotLight_glsl.pxx + Shaders_PhongDirectionalLight_glsl.pxx + Shaders_PhongPointLight_glsl.pxx + Shaders_PhongSpotLight_glsl.pxx + Shaders_PointLightAttenuation_glsl.pxx + Shaders_RaytraceBase_fs.pxx + Shaders_RaytraceRender_fs.pxx + Shaders_PathtraceBase_fs.pxx + Shaders_RaytraceBase_vs.pxx + Shaders_RaytraceSmooth_fs.pxx + Shaders_TangentSpaceNormal_glsl.pxx + Shaders_SkydomBackground_fs.pxx +) diff --git a/src/Shaders/Shaders_DeclarationsImpl_glsl.pxx b/src/Visualization/TKService/Shaders/Shaders_DeclarationsImpl_glsl.pxx similarity index 100% rename from src/Shaders/Shaders_DeclarationsImpl_glsl.pxx rename to src/Visualization/TKService/Shaders/Shaders_DeclarationsImpl_glsl.pxx diff --git a/src/Shaders/Shaders_Declarations_glsl.pxx b/src/Visualization/TKService/Shaders/Shaders_Declarations_glsl.pxx similarity index 100% rename from src/Shaders/Shaders_Declarations_glsl.pxx rename to src/Visualization/TKService/Shaders/Shaders_Declarations_glsl.pxx diff --git a/src/Shaders/Shaders_Display_fs.pxx b/src/Visualization/TKService/Shaders/Shaders_Display_fs.pxx similarity index 100% rename from src/Shaders/Shaders_Display_fs.pxx rename to src/Visualization/TKService/Shaders/Shaders_Display_fs.pxx diff --git a/src/Shaders/Shaders_LightShadow_glsl.pxx b/src/Visualization/TKService/Shaders/Shaders_LightShadow_glsl.pxx similarity index 100% rename from src/Shaders/Shaders_LightShadow_glsl.pxx rename to src/Visualization/TKService/Shaders/Shaders_LightShadow_glsl.pxx diff --git a/src/Shaders/Shaders_PBRCookTorrance_glsl.pxx b/src/Visualization/TKService/Shaders/Shaders_PBRCookTorrance_glsl.pxx similarity index 100% rename from src/Shaders/Shaders_PBRCookTorrance_glsl.pxx rename to src/Visualization/TKService/Shaders/Shaders_PBRCookTorrance_glsl.pxx diff --git a/src/Shaders/Shaders_PBRDirectionalLight_glsl.pxx b/src/Visualization/TKService/Shaders/Shaders_PBRDirectionalLight_glsl.pxx similarity index 100% rename from src/Shaders/Shaders_PBRDirectionalLight_glsl.pxx rename to src/Visualization/TKService/Shaders/Shaders_PBRDirectionalLight_glsl.pxx diff --git a/src/Shaders/Shaders_PBRDistribution_glsl.pxx b/src/Visualization/TKService/Shaders/Shaders_PBRDistribution_glsl.pxx similarity index 100% rename from src/Shaders/Shaders_PBRDistribution_glsl.pxx rename to src/Visualization/TKService/Shaders/Shaders_PBRDistribution_glsl.pxx diff --git a/src/Shaders/Shaders_PBREnvBaking_fs.pxx b/src/Visualization/TKService/Shaders/Shaders_PBREnvBaking_fs.pxx similarity index 100% rename from src/Shaders/Shaders_PBREnvBaking_fs.pxx rename to src/Visualization/TKService/Shaders/Shaders_PBREnvBaking_fs.pxx diff --git a/src/Shaders/Shaders_PBREnvBaking_vs.pxx b/src/Visualization/TKService/Shaders/Shaders_PBREnvBaking_vs.pxx similarity index 100% rename from src/Shaders/Shaders_PBREnvBaking_vs.pxx rename to src/Visualization/TKService/Shaders/Shaders_PBREnvBaking_vs.pxx diff --git a/src/Shaders/Shaders_PBRFresnel_glsl.pxx b/src/Visualization/TKService/Shaders/Shaders_PBRFresnel_glsl.pxx similarity index 100% rename from src/Shaders/Shaders_PBRFresnel_glsl.pxx rename to src/Visualization/TKService/Shaders/Shaders_PBRFresnel_glsl.pxx diff --git a/src/Shaders/Shaders_PBRGeometry_glsl.pxx b/src/Visualization/TKService/Shaders/Shaders_PBRGeometry_glsl.pxx similarity index 100% rename from src/Shaders/Shaders_PBRGeometry_glsl.pxx rename to src/Visualization/TKService/Shaders/Shaders_PBRGeometry_glsl.pxx diff --git a/src/Shaders/Shaders_PBRIllumination_glsl.pxx b/src/Visualization/TKService/Shaders/Shaders_PBRIllumination_glsl.pxx similarity index 100% rename from src/Shaders/Shaders_PBRIllumination_glsl.pxx rename to src/Visualization/TKService/Shaders/Shaders_PBRIllumination_glsl.pxx diff --git a/src/Shaders/Shaders_PBRPointLight_glsl.pxx b/src/Visualization/TKService/Shaders/Shaders_PBRPointLight_glsl.pxx similarity index 100% rename from src/Shaders/Shaders_PBRPointLight_glsl.pxx rename to src/Visualization/TKService/Shaders/Shaders_PBRPointLight_glsl.pxx diff --git a/src/Shaders/Shaders_PBRSpotLight_glsl.pxx b/src/Visualization/TKService/Shaders/Shaders_PBRSpotLight_glsl.pxx similarity index 100% rename from src/Shaders/Shaders_PBRSpotLight_glsl.pxx rename to src/Visualization/TKService/Shaders/Shaders_PBRSpotLight_glsl.pxx diff --git a/src/Shaders/Shaders_PathtraceBase_fs.pxx b/src/Visualization/TKService/Shaders/Shaders_PathtraceBase_fs.pxx similarity index 100% rename from src/Shaders/Shaders_PathtraceBase_fs.pxx rename to src/Visualization/TKService/Shaders/Shaders_PathtraceBase_fs.pxx diff --git a/src/Shaders/Shaders_PhongDirectionalLight_glsl.pxx b/src/Visualization/TKService/Shaders/Shaders_PhongDirectionalLight_glsl.pxx similarity index 100% rename from src/Shaders/Shaders_PhongDirectionalLight_glsl.pxx rename to src/Visualization/TKService/Shaders/Shaders_PhongDirectionalLight_glsl.pxx diff --git a/src/Shaders/Shaders_PhongPointLight_glsl.pxx b/src/Visualization/TKService/Shaders/Shaders_PhongPointLight_glsl.pxx similarity index 100% rename from src/Shaders/Shaders_PhongPointLight_glsl.pxx rename to src/Visualization/TKService/Shaders/Shaders_PhongPointLight_glsl.pxx diff --git a/src/Shaders/Shaders_PhongShading_fs.pxx b/src/Visualization/TKService/Shaders/Shaders_PhongShading_fs.pxx similarity index 100% rename from src/Shaders/Shaders_PhongShading_fs.pxx rename to src/Visualization/TKService/Shaders/Shaders_PhongShading_fs.pxx diff --git a/src/Shaders/Shaders_PhongShading_vs.pxx b/src/Visualization/TKService/Shaders/Shaders_PhongShading_vs.pxx similarity index 100% rename from src/Shaders/Shaders_PhongShading_vs.pxx rename to src/Visualization/TKService/Shaders/Shaders_PhongShading_vs.pxx diff --git a/src/Shaders/Shaders_PhongSpotLight_glsl.pxx b/src/Visualization/TKService/Shaders/Shaders_PhongSpotLight_glsl.pxx similarity index 100% rename from src/Shaders/Shaders_PhongSpotLight_glsl.pxx rename to src/Visualization/TKService/Shaders/Shaders_PhongSpotLight_glsl.pxx diff --git a/src/Shaders/Shaders_PointLightAttenuation_glsl.pxx b/src/Visualization/TKService/Shaders/Shaders_PointLightAttenuation_glsl.pxx similarity index 100% rename from src/Shaders/Shaders_PointLightAttenuation_glsl.pxx rename to src/Visualization/TKService/Shaders/Shaders_PointLightAttenuation_glsl.pxx diff --git a/src/Shaders/Shaders_RaytraceBase_fs.pxx b/src/Visualization/TKService/Shaders/Shaders_RaytraceBase_fs.pxx similarity index 100% rename from src/Shaders/Shaders_RaytraceBase_fs.pxx rename to src/Visualization/TKService/Shaders/Shaders_RaytraceBase_fs.pxx diff --git a/src/Shaders/Shaders_RaytraceBase_vs.pxx b/src/Visualization/TKService/Shaders/Shaders_RaytraceBase_vs.pxx similarity index 100% rename from src/Shaders/Shaders_RaytraceBase_vs.pxx rename to src/Visualization/TKService/Shaders/Shaders_RaytraceBase_vs.pxx diff --git a/src/Shaders/Shaders_RaytraceRender_fs.pxx b/src/Visualization/TKService/Shaders/Shaders_RaytraceRender_fs.pxx similarity index 100% rename from src/Shaders/Shaders_RaytraceRender_fs.pxx rename to src/Visualization/TKService/Shaders/Shaders_RaytraceRender_fs.pxx diff --git a/src/Shaders/Shaders_RaytraceSmooth_fs.pxx b/src/Visualization/TKService/Shaders/Shaders_RaytraceSmooth_fs.pxx similarity index 100% rename from src/Shaders/Shaders_RaytraceSmooth_fs.pxx rename to src/Visualization/TKService/Shaders/Shaders_RaytraceSmooth_fs.pxx diff --git a/src/Shaders/Shaders_SkydomBackground_fs.pxx b/src/Visualization/TKService/Shaders/Shaders_SkydomBackground_fs.pxx similarity index 100% rename from src/Shaders/Shaders_SkydomBackground_fs.pxx rename to src/Visualization/TKService/Shaders/Shaders_SkydomBackground_fs.pxx diff --git a/src/Shaders/Shaders_TangentSpaceNormal_glsl.pxx b/src/Visualization/TKService/Shaders/Shaders_TangentSpaceNormal_glsl.pxx similarity index 100% rename from src/Shaders/Shaders_TangentSpaceNormal_glsl.pxx rename to src/Visualization/TKService/Shaders/Shaders_TangentSpaceNormal_glsl.pxx diff --git a/src/Visualization/TKService/WNT/FILES.cmake b/src/Visualization/TKService/WNT/FILES.cmake new file mode 100644 index 0000000000..45a9c38b4e --- /dev/null +++ b/src/Visualization/TKService/WNT/FILES.cmake @@ -0,0 +1,15 @@ +# Source files for WNT package +set(OCCT_WNT_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_WNT_FILES + WNT_ClassDefinitionError.hxx + WNT_Dword.hxx + WNT_HIDSpaceMouse.cxx + WNT_HIDSpaceMouse.hxx + WNT_OrientationType.hxx + WNT_WClass.cxx + WNT_WClass.hxx + WNT_Window.cxx + WNT_Window.hxx + WNT_WindowPtr.hxx +) diff --git a/src/WNT/WNT_ClassDefinitionError.hxx b/src/Visualization/TKService/WNT/WNT_ClassDefinitionError.hxx similarity index 100% rename from src/WNT/WNT_ClassDefinitionError.hxx rename to src/Visualization/TKService/WNT/WNT_ClassDefinitionError.hxx diff --git a/src/WNT/WNT_Dword.hxx b/src/Visualization/TKService/WNT/WNT_Dword.hxx similarity index 100% rename from src/WNT/WNT_Dword.hxx rename to src/Visualization/TKService/WNT/WNT_Dword.hxx diff --git a/src/WNT/WNT_HIDSpaceMouse.cxx b/src/Visualization/TKService/WNT/WNT_HIDSpaceMouse.cxx similarity index 100% rename from src/WNT/WNT_HIDSpaceMouse.cxx rename to src/Visualization/TKService/WNT/WNT_HIDSpaceMouse.cxx diff --git a/src/WNT/WNT_HIDSpaceMouse.hxx b/src/Visualization/TKService/WNT/WNT_HIDSpaceMouse.hxx similarity index 100% rename from src/WNT/WNT_HIDSpaceMouse.hxx rename to src/Visualization/TKService/WNT/WNT_HIDSpaceMouse.hxx diff --git a/src/WNT/WNT_OrientationType.hxx b/src/Visualization/TKService/WNT/WNT_OrientationType.hxx similarity index 100% rename from src/WNT/WNT_OrientationType.hxx rename to src/Visualization/TKService/WNT/WNT_OrientationType.hxx diff --git a/src/WNT/WNT_WClass.cxx b/src/Visualization/TKService/WNT/WNT_WClass.cxx similarity index 100% rename from src/WNT/WNT_WClass.cxx rename to src/Visualization/TKService/WNT/WNT_WClass.cxx diff --git a/src/WNT/WNT_WClass.hxx b/src/Visualization/TKService/WNT/WNT_WClass.hxx similarity index 100% rename from src/WNT/WNT_WClass.hxx rename to src/Visualization/TKService/WNT/WNT_WClass.hxx diff --git a/src/WNT/WNT_Window.cxx b/src/Visualization/TKService/WNT/WNT_Window.cxx similarity index 100% rename from src/WNT/WNT_Window.cxx rename to src/Visualization/TKService/WNT/WNT_Window.cxx diff --git a/src/WNT/WNT_Window.hxx b/src/Visualization/TKService/WNT/WNT_Window.hxx similarity index 100% rename from src/WNT/WNT_Window.hxx rename to src/Visualization/TKService/WNT/WNT_Window.hxx diff --git a/src/WNT/WNT_WindowPtr.hxx b/src/Visualization/TKService/WNT/WNT_WindowPtr.hxx similarity index 100% rename from src/WNT/WNT_WindowPtr.hxx rename to src/Visualization/TKService/WNT/WNT_WindowPtr.hxx diff --git a/src/Visualization/TKService/Wasm/FILES.cmake b/src/Visualization/TKService/Wasm/FILES.cmake new file mode 100644 index 0000000000..c1173a7fa0 --- /dev/null +++ b/src/Visualization/TKService/Wasm/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for Wasm package +set(OCCT_Wasm_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Wasm_FILES + Wasm_Window.cxx + Wasm_Window.hxx +) diff --git a/src/Wasm/Wasm_Window.cxx b/src/Visualization/TKService/Wasm/Wasm_Window.cxx similarity index 100% rename from src/Wasm/Wasm_Window.cxx rename to src/Visualization/TKService/Wasm/Wasm_Window.cxx diff --git a/src/Wasm/Wasm_Window.hxx b/src/Visualization/TKService/Wasm/Wasm_Window.hxx similarity index 100% rename from src/Wasm/Wasm_Window.hxx rename to src/Visualization/TKService/Wasm/Wasm_Window.hxx diff --git a/src/Visualization/TKService/Xw/FILES.cmake b/src/Visualization/TKService/Xw/FILES.cmake new file mode 100644 index 0000000000..19e4f2d24c --- /dev/null +++ b/src/Visualization/TKService/Xw/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for Xw package +set(OCCT_Xw_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Xw_FILES + Xw_Window.cxx + Xw_Window.hxx +) diff --git a/src/Xw/Xw_Window.cxx b/src/Visualization/TKService/Xw/Xw_Window.cxx similarity index 100% rename from src/Xw/Xw_Window.cxx rename to src/Visualization/TKService/Xw/Xw_Window.cxx diff --git a/src/Xw/Xw_Window.hxx b/src/Visualization/TKService/Xw/Xw_Window.hxx similarity index 100% rename from src/Xw/Xw_Window.hxx rename to src/Visualization/TKService/Xw/Xw_Window.hxx diff --git a/src/AIS/AIS.hxx b/src/Visualization/TKV3d/AIS/AIS.hxx similarity index 100% rename from src/AIS/AIS.hxx rename to src/Visualization/TKV3d/AIS/AIS.hxx diff --git a/src/AIS/AIS_AngleDimension.hxx b/src/Visualization/TKV3d/AIS/AIS_AngleDimension.hxx similarity index 100% rename from src/AIS/AIS_AngleDimension.hxx rename to src/Visualization/TKV3d/AIS/AIS_AngleDimension.hxx diff --git a/src/AIS/AIS_Animation.cxx b/src/Visualization/TKV3d/AIS/AIS_Animation.cxx similarity index 100% rename from src/AIS/AIS_Animation.cxx rename to src/Visualization/TKV3d/AIS/AIS_Animation.cxx diff --git a/src/AIS/AIS_Animation.hxx b/src/Visualization/TKV3d/AIS/AIS_Animation.hxx similarity index 100% rename from src/AIS/AIS_Animation.hxx rename to src/Visualization/TKV3d/AIS/AIS_Animation.hxx diff --git a/src/AIS/AIS_AnimationAxisRotation.cxx b/src/Visualization/TKV3d/AIS/AIS_AnimationAxisRotation.cxx similarity index 100% rename from src/AIS/AIS_AnimationAxisRotation.cxx rename to src/Visualization/TKV3d/AIS/AIS_AnimationAxisRotation.cxx diff --git a/src/AIS/AIS_AnimationAxisRotation.hxx b/src/Visualization/TKV3d/AIS/AIS_AnimationAxisRotation.hxx similarity index 100% rename from src/AIS/AIS_AnimationAxisRotation.hxx rename to src/Visualization/TKV3d/AIS/AIS_AnimationAxisRotation.hxx diff --git a/src/AIS/AIS_AnimationCamera.cxx b/src/Visualization/TKV3d/AIS/AIS_AnimationCamera.cxx similarity index 100% rename from src/AIS/AIS_AnimationCamera.cxx rename to src/Visualization/TKV3d/AIS/AIS_AnimationCamera.cxx diff --git a/src/AIS/AIS_AnimationCamera.hxx b/src/Visualization/TKV3d/AIS/AIS_AnimationCamera.hxx similarity index 100% rename from src/AIS/AIS_AnimationCamera.hxx rename to src/Visualization/TKV3d/AIS/AIS_AnimationCamera.hxx diff --git a/src/AIS/AIS_AnimationObject.cxx b/src/Visualization/TKV3d/AIS/AIS_AnimationObject.cxx similarity index 100% rename from src/AIS/AIS_AnimationObject.cxx rename to src/Visualization/TKV3d/AIS/AIS_AnimationObject.cxx diff --git a/src/AIS/AIS_AnimationObject.hxx b/src/Visualization/TKV3d/AIS/AIS_AnimationObject.hxx similarity index 100% rename from src/AIS/AIS_AnimationObject.hxx rename to src/Visualization/TKV3d/AIS/AIS_AnimationObject.hxx diff --git a/src/AIS/AIS_AnimationTimer.hxx b/src/Visualization/TKV3d/AIS/AIS_AnimationTimer.hxx similarity index 100% rename from src/AIS/AIS_AnimationTimer.hxx rename to src/Visualization/TKV3d/AIS/AIS_AnimationTimer.hxx diff --git a/src/AIS/AIS_AttributeFilter.cxx b/src/Visualization/TKV3d/AIS/AIS_AttributeFilter.cxx similarity index 100% rename from src/AIS/AIS_AttributeFilter.cxx rename to src/Visualization/TKV3d/AIS/AIS_AttributeFilter.cxx diff --git a/src/AIS/AIS_AttributeFilter.hxx b/src/Visualization/TKV3d/AIS/AIS_AttributeFilter.hxx similarity index 100% rename from src/AIS/AIS_AttributeFilter.hxx rename to src/Visualization/TKV3d/AIS/AIS_AttributeFilter.hxx diff --git a/src/AIS/AIS_Axis.cxx b/src/Visualization/TKV3d/AIS/AIS_Axis.cxx similarity index 100% rename from src/AIS/AIS_Axis.cxx rename to src/Visualization/TKV3d/AIS/AIS_Axis.cxx diff --git a/src/AIS/AIS_Axis.hxx b/src/Visualization/TKV3d/AIS/AIS_Axis.hxx similarity index 100% rename from src/AIS/AIS_Axis.hxx rename to src/Visualization/TKV3d/AIS/AIS_Axis.hxx diff --git a/src/AIS/AIS_BadEdgeFilter.cxx b/src/Visualization/TKV3d/AIS/AIS_BadEdgeFilter.cxx similarity index 100% rename from src/AIS/AIS_BadEdgeFilter.cxx rename to src/Visualization/TKV3d/AIS/AIS_BadEdgeFilter.cxx diff --git a/src/AIS/AIS_BadEdgeFilter.hxx b/src/Visualization/TKV3d/AIS/AIS_BadEdgeFilter.hxx similarity index 100% rename from src/AIS/AIS_BadEdgeFilter.hxx rename to src/Visualization/TKV3d/AIS/AIS_BadEdgeFilter.hxx diff --git a/src/AIS/AIS_BaseAnimationObject.cxx b/src/Visualization/TKV3d/AIS/AIS_BaseAnimationObject.cxx similarity index 100% rename from src/AIS/AIS_BaseAnimationObject.cxx rename to src/Visualization/TKV3d/AIS/AIS_BaseAnimationObject.cxx diff --git a/src/AIS/AIS_BaseAnimationObject.hxx b/src/Visualization/TKV3d/AIS/AIS_BaseAnimationObject.hxx similarity index 100% rename from src/AIS/AIS_BaseAnimationObject.hxx rename to src/Visualization/TKV3d/AIS/AIS_BaseAnimationObject.hxx diff --git a/src/AIS/AIS_C0RegularityFilter.cxx b/src/Visualization/TKV3d/AIS/AIS_C0RegularityFilter.cxx similarity index 100% rename from src/AIS/AIS_C0RegularityFilter.cxx rename to src/Visualization/TKV3d/AIS/AIS_C0RegularityFilter.cxx diff --git a/src/AIS/AIS_C0RegularityFilter.hxx b/src/Visualization/TKV3d/AIS/AIS_C0RegularityFilter.hxx similarity index 100% rename from src/AIS/AIS_C0RegularityFilter.hxx rename to src/Visualization/TKV3d/AIS/AIS_C0RegularityFilter.hxx diff --git a/src/AIS/AIS_CameraFrustum.cxx b/src/Visualization/TKV3d/AIS/AIS_CameraFrustum.cxx similarity index 100% rename from src/AIS/AIS_CameraFrustum.cxx rename to src/Visualization/TKV3d/AIS/AIS_CameraFrustum.cxx diff --git a/src/AIS/AIS_CameraFrustum.hxx b/src/Visualization/TKV3d/AIS/AIS_CameraFrustum.hxx similarity index 100% rename from src/AIS/AIS_CameraFrustum.hxx rename to src/Visualization/TKV3d/AIS/AIS_CameraFrustum.hxx diff --git a/src/AIS/AIS_Chamf2dDimension.hxx b/src/Visualization/TKV3d/AIS/AIS_Chamf2dDimension.hxx similarity index 100% rename from src/AIS/AIS_Chamf2dDimension.hxx rename to src/Visualization/TKV3d/AIS/AIS_Chamf2dDimension.hxx diff --git a/src/AIS/AIS_Chamf3dDimension.hxx b/src/Visualization/TKV3d/AIS/AIS_Chamf3dDimension.hxx similarity index 100% rename from src/AIS/AIS_Chamf3dDimension.hxx rename to src/Visualization/TKV3d/AIS/AIS_Chamf3dDimension.hxx diff --git a/src/AIS/AIS_Circle.cxx b/src/Visualization/TKV3d/AIS/AIS_Circle.cxx similarity index 100% rename from src/AIS/AIS_Circle.cxx rename to src/Visualization/TKV3d/AIS/AIS_Circle.cxx diff --git a/src/AIS/AIS_Circle.hxx b/src/Visualization/TKV3d/AIS/AIS_Circle.hxx similarity index 100% rename from src/AIS/AIS_Circle.hxx rename to src/Visualization/TKV3d/AIS/AIS_Circle.hxx diff --git a/src/AIS/AIS_ColorScale.cxx b/src/Visualization/TKV3d/AIS/AIS_ColorScale.cxx similarity index 100% rename from src/AIS/AIS_ColorScale.cxx rename to src/Visualization/TKV3d/AIS/AIS_ColorScale.cxx diff --git a/src/AIS/AIS_ColorScale.hxx b/src/Visualization/TKV3d/AIS/AIS_ColorScale.hxx similarity index 100% rename from src/AIS/AIS_ColorScale.hxx rename to src/Visualization/TKV3d/AIS/AIS_ColorScale.hxx diff --git a/src/AIS/AIS_ColoredDrawer.hxx b/src/Visualization/TKV3d/AIS/AIS_ColoredDrawer.hxx similarity index 100% rename from src/AIS/AIS_ColoredDrawer.hxx rename to src/Visualization/TKV3d/AIS/AIS_ColoredDrawer.hxx diff --git a/src/AIS/AIS_ColoredShape.cxx b/src/Visualization/TKV3d/AIS/AIS_ColoredShape.cxx similarity index 100% rename from src/AIS/AIS_ColoredShape.cxx rename to src/Visualization/TKV3d/AIS/AIS_ColoredShape.cxx diff --git a/src/AIS/AIS_ColoredShape.hxx b/src/Visualization/TKV3d/AIS/AIS_ColoredShape.hxx similarity index 100% rename from src/AIS/AIS_ColoredShape.hxx rename to src/Visualization/TKV3d/AIS/AIS_ColoredShape.hxx diff --git a/src/AIS/AIS_ConcentricRelation.hxx b/src/Visualization/TKV3d/AIS/AIS_ConcentricRelation.hxx similarity index 100% rename from src/AIS/AIS_ConcentricRelation.hxx rename to src/Visualization/TKV3d/AIS/AIS_ConcentricRelation.hxx diff --git a/src/AIS/AIS_ConnectedInteractive.cxx b/src/Visualization/TKV3d/AIS/AIS_ConnectedInteractive.cxx similarity index 100% rename from src/AIS/AIS_ConnectedInteractive.cxx rename to src/Visualization/TKV3d/AIS/AIS_ConnectedInteractive.cxx diff --git a/src/AIS/AIS_ConnectedInteractive.hxx b/src/Visualization/TKV3d/AIS/AIS_ConnectedInteractive.hxx similarity index 100% rename from src/AIS/AIS_ConnectedInteractive.hxx rename to src/Visualization/TKV3d/AIS/AIS_ConnectedInteractive.hxx diff --git a/src/AIS/AIS_DataMapIteratorOfDataMapOfIOStatus.hxx b/src/Visualization/TKV3d/AIS/AIS_DataMapIteratorOfDataMapOfIOStatus.hxx similarity index 100% rename from src/AIS/AIS_DataMapIteratorOfDataMapOfIOStatus.hxx rename to src/Visualization/TKV3d/AIS/AIS_DataMapIteratorOfDataMapOfIOStatus.hxx diff --git a/src/AIS/AIS_DataMapOfIOStatus.hxx b/src/Visualization/TKV3d/AIS/AIS_DataMapOfIOStatus.hxx similarity index 100% rename from src/AIS/AIS_DataMapOfIOStatus.hxx rename to src/Visualization/TKV3d/AIS/AIS_DataMapOfIOStatus.hxx diff --git a/src/AIS/AIS_DataMapOfShapeDrawer.hxx b/src/Visualization/TKV3d/AIS/AIS_DataMapOfShapeDrawer.hxx similarity index 100% rename from src/AIS/AIS_DataMapOfShapeDrawer.hxx rename to src/Visualization/TKV3d/AIS/AIS_DataMapOfShapeDrawer.hxx diff --git a/src/AIS/AIS_DiameterDimension.hxx b/src/Visualization/TKV3d/AIS/AIS_DiameterDimension.hxx similarity index 100% rename from src/AIS/AIS_DiameterDimension.hxx rename to src/Visualization/TKV3d/AIS/AIS_DiameterDimension.hxx diff --git a/src/AIS/AIS_Dimension.hxx b/src/Visualization/TKV3d/AIS/AIS_Dimension.hxx similarity index 100% rename from src/AIS/AIS_Dimension.hxx rename to src/Visualization/TKV3d/AIS/AIS_Dimension.hxx diff --git a/src/AIS/AIS_DimensionOwner.hxx b/src/Visualization/TKV3d/AIS/AIS_DimensionOwner.hxx similarity index 100% rename from src/AIS/AIS_DimensionOwner.hxx rename to src/Visualization/TKV3d/AIS/AIS_DimensionOwner.hxx diff --git a/src/AIS/AIS_DisplayMode.hxx b/src/Visualization/TKV3d/AIS/AIS_DisplayMode.hxx similarity index 100% rename from src/AIS/AIS_DisplayMode.hxx rename to src/Visualization/TKV3d/AIS/AIS_DisplayMode.hxx diff --git a/src/AIS/AIS_DisplayStatus.hxx b/src/Visualization/TKV3d/AIS/AIS_DisplayStatus.hxx similarity index 100% rename from src/AIS/AIS_DisplayStatus.hxx rename to src/Visualization/TKV3d/AIS/AIS_DisplayStatus.hxx diff --git a/src/AIS/AIS_DragAction.hxx b/src/Visualization/TKV3d/AIS/AIS_DragAction.hxx similarity index 100% rename from src/AIS/AIS_DragAction.hxx rename to src/Visualization/TKV3d/AIS/AIS_DragAction.hxx diff --git a/src/AIS/AIS_EllipseRadiusDimension.hxx b/src/Visualization/TKV3d/AIS/AIS_EllipseRadiusDimension.hxx similarity index 100% rename from src/AIS/AIS_EllipseRadiusDimension.hxx rename to src/Visualization/TKV3d/AIS/AIS_EllipseRadiusDimension.hxx diff --git a/src/AIS/AIS_EqualDistanceRelation.hxx b/src/Visualization/TKV3d/AIS/AIS_EqualDistanceRelation.hxx similarity index 100% rename from src/AIS/AIS_EqualDistanceRelation.hxx rename to src/Visualization/TKV3d/AIS/AIS_EqualDistanceRelation.hxx diff --git a/src/AIS/AIS_EqualRadiusRelation.hxx b/src/Visualization/TKV3d/AIS/AIS_EqualRadiusRelation.hxx similarity index 100% rename from src/AIS/AIS_EqualRadiusRelation.hxx rename to src/Visualization/TKV3d/AIS/AIS_EqualRadiusRelation.hxx diff --git a/src/AIS/AIS_ExclusionFilter.cxx b/src/Visualization/TKV3d/AIS/AIS_ExclusionFilter.cxx similarity index 100% rename from src/AIS/AIS_ExclusionFilter.cxx rename to src/Visualization/TKV3d/AIS/AIS_ExclusionFilter.cxx diff --git a/src/AIS/AIS_ExclusionFilter.hxx b/src/Visualization/TKV3d/AIS/AIS_ExclusionFilter.hxx similarity index 100% rename from src/AIS/AIS_ExclusionFilter.hxx rename to src/Visualization/TKV3d/AIS/AIS_ExclusionFilter.hxx diff --git a/src/AIS/AIS_FixRelation.hxx b/src/Visualization/TKV3d/AIS/AIS_FixRelation.hxx similarity index 100% rename from src/AIS/AIS_FixRelation.hxx rename to src/Visualization/TKV3d/AIS/AIS_FixRelation.hxx diff --git a/src/AIS/AIS_GlobalStatus.cxx b/src/Visualization/TKV3d/AIS/AIS_GlobalStatus.cxx similarity index 100% rename from src/AIS/AIS_GlobalStatus.cxx rename to src/Visualization/TKV3d/AIS/AIS_GlobalStatus.cxx diff --git a/src/AIS/AIS_GlobalStatus.hxx b/src/Visualization/TKV3d/AIS/AIS_GlobalStatus.hxx similarity index 100% rename from src/AIS/AIS_GlobalStatus.hxx rename to src/Visualization/TKV3d/AIS/AIS_GlobalStatus.hxx diff --git a/src/AIS/AIS_GraphicTool.cxx b/src/Visualization/TKV3d/AIS/AIS_GraphicTool.cxx similarity index 100% rename from src/AIS/AIS_GraphicTool.cxx rename to src/Visualization/TKV3d/AIS/AIS_GraphicTool.cxx diff --git a/src/AIS/AIS_GraphicTool.hxx b/src/Visualization/TKV3d/AIS/AIS_GraphicTool.hxx similarity index 100% rename from src/AIS/AIS_GraphicTool.hxx rename to src/Visualization/TKV3d/AIS/AIS_GraphicTool.hxx diff --git a/src/AIS/AIS_IdenticRelation.hxx b/src/Visualization/TKV3d/AIS/AIS_IdenticRelation.hxx similarity index 100% rename from src/AIS/AIS_IdenticRelation.hxx rename to src/Visualization/TKV3d/AIS/AIS_IdenticRelation.hxx diff --git a/src/AIS/AIS_InteractiveContext.cxx b/src/Visualization/TKV3d/AIS/AIS_InteractiveContext.cxx similarity index 100% rename from src/AIS/AIS_InteractiveContext.cxx rename to src/Visualization/TKV3d/AIS/AIS_InteractiveContext.cxx diff --git a/src/AIS/AIS_InteractiveContext.hxx b/src/Visualization/TKV3d/AIS/AIS_InteractiveContext.hxx similarity index 100% rename from src/AIS/AIS_InteractiveContext.hxx rename to src/Visualization/TKV3d/AIS/AIS_InteractiveContext.hxx diff --git a/src/AIS/AIS_InteractiveObject.cxx b/src/Visualization/TKV3d/AIS/AIS_InteractiveObject.cxx similarity index 100% rename from src/AIS/AIS_InteractiveObject.cxx rename to src/Visualization/TKV3d/AIS/AIS_InteractiveObject.cxx diff --git a/src/AIS/AIS_InteractiveObject.hxx b/src/Visualization/TKV3d/AIS/AIS_InteractiveObject.hxx similarity index 100% rename from src/AIS/AIS_InteractiveObject.hxx rename to src/Visualization/TKV3d/AIS/AIS_InteractiveObject.hxx diff --git a/src/AIS/AIS_KindOfInteractive.hxx b/src/Visualization/TKV3d/AIS/AIS_KindOfInteractive.hxx similarity index 100% rename from src/AIS/AIS_KindOfInteractive.hxx rename to src/Visualization/TKV3d/AIS/AIS_KindOfInteractive.hxx diff --git a/src/AIS/AIS_LengthDimension.hxx b/src/Visualization/TKV3d/AIS/AIS_LengthDimension.hxx similarity index 100% rename from src/AIS/AIS_LengthDimension.hxx rename to src/Visualization/TKV3d/AIS/AIS_LengthDimension.hxx diff --git a/src/AIS/AIS_LightSource.cxx b/src/Visualization/TKV3d/AIS/AIS_LightSource.cxx similarity index 100% rename from src/AIS/AIS_LightSource.cxx rename to src/Visualization/TKV3d/AIS/AIS_LightSource.cxx diff --git a/src/AIS/AIS_LightSource.hxx b/src/Visualization/TKV3d/AIS/AIS_LightSource.hxx similarity index 100% rename from src/AIS/AIS_LightSource.hxx rename to src/Visualization/TKV3d/AIS/AIS_LightSource.hxx diff --git a/src/AIS/AIS_Line.cxx b/src/Visualization/TKV3d/AIS/AIS_Line.cxx similarity index 100% rename from src/AIS/AIS_Line.cxx rename to src/Visualization/TKV3d/AIS/AIS_Line.cxx diff --git a/src/AIS/AIS_Line.hxx b/src/Visualization/TKV3d/AIS/AIS_Line.hxx similarity index 100% rename from src/AIS/AIS_Line.hxx rename to src/Visualization/TKV3d/AIS/AIS_Line.hxx diff --git a/src/AIS/AIS_ListIteratorOfListOfInteractive.hxx b/src/Visualization/TKV3d/AIS/AIS_ListIteratorOfListOfInteractive.hxx similarity index 100% rename from src/AIS/AIS_ListIteratorOfListOfInteractive.hxx rename to src/Visualization/TKV3d/AIS/AIS_ListIteratorOfListOfInteractive.hxx diff --git a/src/AIS/AIS_ListOfInteractive.hxx b/src/Visualization/TKV3d/AIS/AIS_ListOfInteractive.hxx similarity index 100% rename from src/AIS/AIS_ListOfInteractive.hxx rename to src/Visualization/TKV3d/AIS/AIS_ListOfInteractive.hxx diff --git a/src/AIS/AIS_Manipulator.cxx b/src/Visualization/TKV3d/AIS/AIS_Manipulator.cxx similarity index 100% rename from src/AIS/AIS_Manipulator.cxx rename to src/Visualization/TKV3d/AIS/AIS_Manipulator.cxx diff --git a/src/AIS/AIS_Manipulator.hxx b/src/Visualization/TKV3d/AIS/AIS_Manipulator.hxx similarity index 100% rename from src/AIS/AIS_Manipulator.hxx rename to src/Visualization/TKV3d/AIS/AIS_Manipulator.hxx diff --git a/src/AIS/AIS_ManipulatorMode.hxx b/src/Visualization/TKV3d/AIS/AIS_ManipulatorMode.hxx similarity index 100% rename from src/AIS/AIS_ManipulatorMode.hxx rename to src/Visualization/TKV3d/AIS/AIS_ManipulatorMode.hxx diff --git a/src/AIS/AIS_ManipulatorOwner.cxx b/src/Visualization/TKV3d/AIS/AIS_ManipulatorOwner.cxx similarity index 100% rename from src/AIS/AIS_ManipulatorOwner.cxx rename to src/Visualization/TKV3d/AIS/AIS_ManipulatorOwner.cxx diff --git a/src/AIS/AIS_ManipulatorOwner.hxx b/src/Visualization/TKV3d/AIS/AIS_ManipulatorOwner.hxx similarity index 100% rename from src/AIS/AIS_ManipulatorOwner.hxx rename to src/Visualization/TKV3d/AIS/AIS_ManipulatorOwner.hxx diff --git a/src/AIS/AIS_MaxRadiusDimension.hxx b/src/Visualization/TKV3d/AIS/AIS_MaxRadiusDimension.hxx similarity index 100% rename from src/AIS/AIS_MaxRadiusDimension.hxx rename to src/Visualization/TKV3d/AIS/AIS_MaxRadiusDimension.hxx diff --git a/src/AIS/AIS_MediaPlayer.cxx b/src/Visualization/TKV3d/AIS/AIS_MediaPlayer.cxx similarity index 100% rename from src/AIS/AIS_MediaPlayer.cxx rename to src/Visualization/TKV3d/AIS/AIS_MediaPlayer.cxx diff --git a/src/AIS/AIS_MediaPlayer.hxx b/src/Visualization/TKV3d/AIS/AIS_MediaPlayer.hxx similarity index 100% rename from src/AIS/AIS_MediaPlayer.hxx rename to src/Visualization/TKV3d/AIS/AIS_MediaPlayer.hxx diff --git a/src/AIS/AIS_MidPointRelation.hxx b/src/Visualization/TKV3d/AIS/AIS_MidPointRelation.hxx similarity index 100% rename from src/AIS/AIS_MidPointRelation.hxx rename to src/Visualization/TKV3d/AIS/AIS_MidPointRelation.hxx diff --git a/src/AIS/AIS_MinRadiusDimension.hxx b/src/Visualization/TKV3d/AIS/AIS_MinRadiusDimension.hxx similarity index 100% rename from src/AIS/AIS_MinRadiusDimension.hxx rename to src/Visualization/TKV3d/AIS/AIS_MinRadiusDimension.hxx diff --git a/src/AIS/AIS_MouseGesture.hxx b/src/Visualization/TKV3d/AIS/AIS_MouseGesture.hxx similarity index 100% rename from src/AIS/AIS_MouseGesture.hxx rename to src/Visualization/TKV3d/AIS/AIS_MouseGesture.hxx diff --git a/src/AIS/AIS_MultipleConnectedInteractive.cxx b/src/Visualization/TKV3d/AIS/AIS_MultipleConnectedInteractive.cxx similarity index 100% rename from src/AIS/AIS_MultipleConnectedInteractive.cxx rename to src/Visualization/TKV3d/AIS/AIS_MultipleConnectedInteractive.cxx diff --git a/src/AIS/AIS_MultipleConnectedInteractive.hxx b/src/Visualization/TKV3d/AIS/AIS_MultipleConnectedInteractive.hxx similarity index 100% rename from src/AIS/AIS_MultipleConnectedInteractive.hxx rename to src/Visualization/TKV3d/AIS/AIS_MultipleConnectedInteractive.hxx diff --git a/src/AIS/AIS_NArray1OfEntityOwner.hxx b/src/Visualization/TKV3d/AIS/AIS_NArray1OfEntityOwner.hxx similarity index 100% rename from src/AIS/AIS_NArray1OfEntityOwner.hxx rename to src/Visualization/TKV3d/AIS/AIS_NArray1OfEntityOwner.hxx diff --git a/src/AIS/AIS_NListOfEntityOwner.hxx b/src/Visualization/TKV3d/AIS/AIS_NListOfEntityOwner.hxx similarity index 100% rename from src/AIS/AIS_NListOfEntityOwner.hxx rename to src/Visualization/TKV3d/AIS/AIS_NListOfEntityOwner.hxx diff --git a/src/AIS/AIS_NavigationMode.hxx b/src/Visualization/TKV3d/AIS/AIS_NavigationMode.hxx similarity index 100% rename from src/AIS/AIS_NavigationMode.hxx rename to src/Visualization/TKV3d/AIS/AIS_NavigationMode.hxx diff --git a/src/AIS/AIS_OffsetDimension.hxx b/src/Visualization/TKV3d/AIS/AIS_OffsetDimension.hxx similarity index 100% rename from src/AIS/AIS_OffsetDimension.hxx rename to src/Visualization/TKV3d/AIS/AIS_OffsetDimension.hxx diff --git a/src/AIS/AIS_ParallelRelation.hxx b/src/Visualization/TKV3d/AIS/AIS_ParallelRelation.hxx similarity index 100% rename from src/AIS/AIS_ParallelRelation.hxx rename to src/Visualization/TKV3d/AIS/AIS_ParallelRelation.hxx diff --git a/src/AIS/AIS_PerpendicularRelation.hxx b/src/Visualization/TKV3d/AIS/AIS_PerpendicularRelation.hxx similarity index 100% rename from src/AIS/AIS_PerpendicularRelation.hxx rename to src/Visualization/TKV3d/AIS/AIS_PerpendicularRelation.hxx diff --git a/src/AIS/AIS_Plane.cxx b/src/Visualization/TKV3d/AIS/AIS_Plane.cxx similarity index 100% rename from src/AIS/AIS_Plane.cxx rename to src/Visualization/TKV3d/AIS/AIS_Plane.cxx diff --git a/src/AIS/AIS_Plane.hxx b/src/Visualization/TKV3d/AIS/AIS_Plane.hxx similarity index 100% rename from src/AIS/AIS_Plane.hxx rename to src/Visualization/TKV3d/AIS/AIS_Plane.hxx diff --git a/src/AIS/AIS_PlaneTrihedron.cxx b/src/Visualization/TKV3d/AIS/AIS_PlaneTrihedron.cxx similarity index 100% rename from src/AIS/AIS_PlaneTrihedron.cxx rename to src/Visualization/TKV3d/AIS/AIS_PlaneTrihedron.cxx diff --git a/src/AIS/AIS_PlaneTrihedron.hxx b/src/Visualization/TKV3d/AIS/AIS_PlaneTrihedron.hxx similarity index 100% rename from src/AIS/AIS_PlaneTrihedron.hxx rename to src/Visualization/TKV3d/AIS/AIS_PlaneTrihedron.hxx diff --git a/src/AIS/AIS_Point.cxx b/src/Visualization/TKV3d/AIS/AIS_Point.cxx similarity index 100% rename from src/AIS/AIS_Point.cxx rename to src/Visualization/TKV3d/AIS/AIS_Point.cxx diff --git a/src/AIS/AIS_Point.hxx b/src/Visualization/TKV3d/AIS/AIS_Point.hxx similarity index 100% rename from src/AIS/AIS_Point.hxx rename to src/Visualization/TKV3d/AIS/AIS_Point.hxx diff --git a/src/AIS/AIS_PointCloud.cxx b/src/Visualization/TKV3d/AIS/AIS_PointCloud.cxx similarity index 100% rename from src/AIS/AIS_PointCloud.cxx rename to src/Visualization/TKV3d/AIS/AIS_PointCloud.cxx diff --git a/src/AIS/AIS_PointCloud.hxx b/src/Visualization/TKV3d/AIS/AIS_PointCloud.hxx similarity index 100% rename from src/AIS/AIS_PointCloud.hxx rename to src/Visualization/TKV3d/AIS/AIS_PointCloud.hxx diff --git a/src/AIS/AIS_RadiusDimension.hxx b/src/Visualization/TKV3d/AIS/AIS_RadiusDimension.hxx similarity index 100% rename from src/AIS/AIS_RadiusDimension.hxx rename to src/Visualization/TKV3d/AIS/AIS_RadiusDimension.hxx diff --git a/src/AIS/AIS_Relation.hxx b/src/Visualization/TKV3d/AIS/AIS_Relation.hxx similarity index 100% rename from src/AIS/AIS_Relation.hxx rename to src/Visualization/TKV3d/AIS/AIS_Relation.hxx diff --git a/src/AIS/AIS_RotationMode.hxx b/src/Visualization/TKV3d/AIS/AIS_RotationMode.hxx similarity index 100% rename from src/AIS/AIS_RotationMode.hxx rename to src/Visualization/TKV3d/AIS/AIS_RotationMode.hxx diff --git a/src/AIS/AIS_RubberBand.cxx b/src/Visualization/TKV3d/AIS/AIS_RubberBand.cxx similarity index 100% rename from src/AIS/AIS_RubberBand.cxx rename to src/Visualization/TKV3d/AIS/AIS_RubberBand.cxx diff --git a/src/AIS/AIS_RubberBand.hxx b/src/Visualization/TKV3d/AIS/AIS_RubberBand.hxx similarity index 100% rename from src/AIS/AIS_RubberBand.hxx rename to src/Visualization/TKV3d/AIS/AIS_RubberBand.hxx diff --git a/src/AIS/AIS_SelectStatus.hxx b/src/Visualization/TKV3d/AIS/AIS_SelectStatus.hxx similarity index 100% rename from src/AIS/AIS_SelectStatus.hxx rename to src/Visualization/TKV3d/AIS/AIS_SelectStatus.hxx diff --git a/src/AIS/AIS_Selection.cxx b/src/Visualization/TKV3d/AIS/AIS_Selection.cxx similarity index 100% rename from src/AIS/AIS_Selection.cxx rename to src/Visualization/TKV3d/AIS/AIS_Selection.cxx diff --git a/src/AIS/AIS_Selection.hxx b/src/Visualization/TKV3d/AIS/AIS_Selection.hxx similarity index 100% rename from src/AIS/AIS_Selection.hxx rename to src/Visualization/TKV3d/AIS/AIS_Selection.hxx diff --git a/src/AIS/AIS_SelectionModesConcurrency.hxx b/src/Visualization/TKV3d/AIS/AIS_SelectionModesConcurrency.hxx similarity index 100% rename from src/AIS/AIS_SelectionModesConcurrency.hxx rename to src/Visualization/TKV3d/AIS/AIS_SelectionModesConcurrency.hxx diff --git a/src/AIS/AIS_SelectionScheme.hxx b/src/Visualization/TKV3d/AIS/AIS_SelectionScheme.hxx similarity index 100% rename from src/AIS/AIS_SelectionScheme.hxx rename to src/Visualization/TKV3d/AIS/AIS_SelectionScheme.hxx diff --git a/src/AIS/AIS_Shape.cxx b/src/Visualization/TKV3d/AIS/AIS_Shape.cxx similarity index 100% rename from src/AIS/AIS_Shape.cxx rename to src/Visualization/TKV3d/AIS/AIS_Shape.cxx diff --git a/src/AIS/AIS_Shape.hxx b/src/Visualization/TKV3d/AIS/AIS_Shape.hxx similarity index 100% rename from src/AIS/AIS_Shape.hxx rename to src/Visualization/TKV3d/AIS/AIS_Shape.hxx diff --git a/src/AIS/AIS_SignatureFilter.cxx b/src/Visualization/TKV3d/AIS/AIS_SignatureFilter.cxx similarity index 100% rename from src/AIS/AIS_SignatureFilter.cxx rename to src/Visualization/TKV3d/AIS/AIS_SignatureFilter.cxx diff --git a/src/AIS/AIS_SignatureFilter.hxx b/src/Visualization/TKV3d/AIS/AIS_SignatureFilter.hxx similarity index 100% rename from src/AIS/AIS_SignatureFilter.hxx rename to src/Visualization/TKV3d/AIS/AIS_SignatureFilter.hxx diff --git a/src/AIS/AIS_StatusOfDetection.hxx b/src/Visualization/TKV3d/AIS/AIS_StatusOfDetection.hxx similarity index 100% rename from src/AIS/AIS_StatusOfDetection.hxx rename to src/Visualization/TKV3d/AIS/AIS_StatusOfDetection.hxx diff --git a/src/AIS/AIS_StatusOfPick.hxx b/src/Visualization/TKV3d/AIS/AIS_StatusOfPick.hxx similarity index 100% rename from src/AIS/AIS_StatusOfPick.hxx rename to src/Visualization/TKV3d/AIS/AIS_StatusOfPick.hxx diff --git a/src/AIS/AIS_SymmetricRelation.hxx b/src/Visualization/TKV3d/AIS/AIS_SymmetricRelation.hxx similarity index 100% rename from src/AIS/AIS_SymmetricRelation.hxx rename to src/Visualization/TKV3d/AIS/AIS_SymmetricRelation.hxx diff --git a/src/AIS/AIS_TangentRelation.hxx b/src/Visualization/TKV3d/AIS/AIS_TangentRelation.hxx similarity index 100% rename from src/AIS/AIS_TangentRelation.hxx rename to src/Visualization/TKV3d/AIS/AIS_TangentRelation.hxx diff --git a/src/AIS/AIS_TextLabel.cxx b/src/Visualization/TKV3d/AIS/AIS_TextLabel.cxx similarity index 100% rename from src/AIS/AIS_TextLabel.cxx rename to src/Visualization/TKV3d/AIS/AIS_TextLabel.cxx diff --git a/src/AIS/AIS_TextLabel.hxx b/src/Visualization/TKV3d/AIS/AIS_TextLabel.hxx similarity index 100% rename from src/AIS/AIS_TextLabel.hxx rename to src/Visualization/TKV3d/AIS/AIS_TextLabel.hxx diff --git a/src/AIS/AIS_TexturedShape.cxx b/src/Visualization/TKV3d/AIS/AIS_TexturedShape.cxx similarity index 100% rename from src/AIS/AIS_TexturedShape.cxx rename to src/Visualization/TKV3d/AIS/AIS_TexturedShape.cxx diff --git a/src/AIS/AIS_TexturedShape.hxx b/src/Visualization/TKV3d/AIS/AIS_TexturedShape.hxx similarity index 100% rename from src/AIS/AIS_TexturedShape.hxx rename to src/Visualization/TKV3d/AIS/AIS_TexturedShape.hxx diff --git a/src/AIS/AIS_Triangulation.cxx b/src/Visualization/TKV3d/AIS/AIS_Triangulation.cxx similarity index 100% rename from src/AIS/AIS_Triangulation.cxx rename to src/Visualization/TKV3d/AIS/AIS_Triangulation.cxx diff --git a/src/AIS/AIS_Triangulation.hxx b/src/Visualization/TKV3d/AIS/AIS_Triangulation.hxx similarity index 100% rename from src/AIS/AIS_Triangulation.hxx rename to src/Visualization/TKV3d/AIS/AIS_Triangulation.hxx diff --git a/src/AIS/AIS_Trihedron.cxx b/src/Visualization/TKV3d/AIS/AIS_Trihedron.cxx similarity index 100% rename from src/AIS/AIS_Trihedron.cxx rename to src/Visualization/TKV3d/AIS/AIS_Trihedron.cxx diff --git a/src/AIS/AIS_Trihedron.hxx b/src/Visualization/TKV3d/AIS/AIS_Trihedron.hxx similarity index 100% rename from src/AIS/AIS_Trihedron.hxx rename to src/Visualization/TKV3d/AIS/AIS_Trihedron.hxx diff --git a/src/AIS/AIS_TrihedronOwner.cxx b/src/Visualization/TKV3d/AIS/AIS_TrihedronOwner.cxx similarity index 100% rename from src/AIS/AIS_TrihedronOwner.cxx rename to src/Visualization/TKV3d/AIS/AIS_TrihedronOwner.cxx diff --git a/src/AIS/AIS_TrihedronOwner.hxx b/src/Visualization/TKV3d/AIS/AIS_TrihedronOwner.hxx similarity index 100% rename from src/AIS/AIS_TrihedronOwner.hxx rename to src/Visualization/TKV3d/AIS/AIS_TrihedronOwner.hxx diff --git a/src/AIS/AIS_TrihedronSelectionMode.hxx b/src/Visualization/TKV3d/AIS/AIS_TrihedronSelectionMode.hxx similarity index 100% rename from src/AIS/AIS_TrihedronSelectionMode.hxx rename to src/Visualization/TKV3d/AIS/AIS_TrihedronSelectionMode.hxx diff --git a/src/AIS/AIS_TypeFilter.cxx b/src/Visualization/TKV3d/AIS/AIS_TypeFilter.cxx similarity index 100% rename from src/AIS/AIS_TypeFilter.cxx rename to src/Visualization/TKV3d/AIS/AIS_TypeFilter.cxx diff --git a/src/AIS/AIS_TypeFilter.hxx b/src/Visualization/TKV3d/AIS/AIS_TypeFilter.hxx similarity index 100% rename from src/AIS/AIS_TypeFilter.hxx rename to src/Visualization/TKV3d/AIS/AIS_TypeFilter.hxx diff --git a/src/AIS/AIS_TypeOfAttribute.hxx b/src/Visualization/TKV3d/AIS/AIS_TypeOfAttribute.hxx similarity index 100% rename from src/AIS/AIS_TypeOfAttribute.hxx rename to src/Visualization/TKV3d/AIS/AIS_TypeOfAttribute.hxx diff --git a/src/AIS/AIS_TypeOfAxis.hxx b/src/Visualization/TKV3d/AIS/AIS_TypeOfAxis.hxx similarity index 100% rename from src/AIS/AIS_TypeOfAxis.hxx rename to src/Visualization/TKV3d/AIS/AIS_TypeOfAxis.hxx diff --git a/src/AIS/AIS_TypeOfIso.hxx b/src/Visualization/TKV3d/AIS/AIS_TypeOfIso.hxx similarity index 100% rename from src/AIS/AIS_TypeOfIso.hxx rename to src/Visualization/TKV3d/AIS/AIS_TypeOfIso.hxx diff --git a/src/AIS/AIS_TypeOfPlane.hxx b/src/Visualization/TKV3d/AIS/AIS_TypeOfPlane.hxx similarity index 100% rename from src/AIS/AIS_TypeOfPlane.hxx rename to src/Visualization/TKV3d/AIS/AIS_TypeOfPlane.hxx diff --git a/src/AIS/AIS_ViewController.cxx b/src/Visualization/TKV3d/AIS/AIS_ViewController.cxx similarity index 100% rename from src/AIS/AIS_ViewController.cxx rename to src/Visualization/TKV3d/AIS/AIS_ViewController.cxx diff --git a/src/AIS/AIS_ViewController.hxx b/src/Visualization/TKV3d/AIS/AIS_ViewController.hxx similarity index 100% rename from src/AIS/AIS_ViewController.hxx rename to src/Visualization/TKV3d/AIS/AIS_ViewController.hxx diff --git a/src/AIS/AIS_ViewCube.cxx b/src/Visualization/TKV3d/AIS/AIS_ViewCube.cxx similarity index 100% rename from src/AIS/AIS_ViewCube.cxx rename to src/Visualization/TKV3d/AIS/AIS_ViewCube.cxx diff --git a/src/AIS/AIS_ViewCube.hxx b/src/Visualization/TKV3d/AIS/AIS_ViewCube.hxx similarity index 100% rename from src/AIS/AIS_ViewCube.hxx rename to src/Visualization/TKV3d/AIS/AIS_ViewCube.hxx diff --git a/src/AIS/AIS_ViewInputBuffer.hxx b/src/Visualization/TKV3d/AIS/AIS_ViewInputBuffer.hxx similarity index 100% rename from src/AIS/AIS_ViewInputBuffer.hxx rename to src/Visualization/TKV3d/AIS/AIS_ViewInputBuffer.hxx diff --git a/src/AIS/AIS_WalkDelta.hxx b/src/Visualization/TKV3d/AIS/AIS_WalkDelta.hxx similarity index 100% rename from src/AIS/AIS_WalkDelta.hxx rename to src/Visualization/TKV3d/AIS/AIS_WalkDelta.hxx diff --git a/src/AIS/AIS_XRTrackedDevice.cxx b/src/Visualization/TKV3d/AIS/AIS_XRTrackedDevice.cxx similarity index 100% rename from src/AIS/AIS_XRTrackedDevice.cxx rename to src/Visualization/TKV3d/AIS/AIS_XRTrackedDevice.cxx diff --git a/src/AIS/AIS_XRTrackedDevice.hxx b/src/Visualization/TKV3d/AIS/AIS_XRTrackedDevice.hxx similarity index 100% rename from src/AIS/AIS_XRTrackedDevice.hxx rename to src/Visualization/TKV3d/AIS/AIS_XRTrackedDevice.hxx diff --git a/src/Visualization/TKV3d/AIS/FILES.cmake b/src/Visualization/TKV3d/AIS/FILES.cmake new file mode 100644 index 0000000000..1ada9cc5bf --- /dev/null +++ b/src/Visualization/TKV3d/AIS/FILES.cmake @@ -0,0 +1,142 @@ +# Source files for AIS package +set(OCCT_AIS_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_AIS_FILES + AIS.hxx + AIS_Animation.cxx + AIS_Animation.hxx + AIS_AnimationTimer.hxx + AIS_AnimationAxisRotation.cxx + AIS_AnimationAxisRotation.hxx + AIS_AnimationCamera.cxx + AIS_AnimationCamera.hxx + AIS_AnimationObject.cxx + AIS_AnimationObject.hxx + AIS_AttributeFilter.cxx + AIS_AttributeFilter.hxx + AIS_Axis.cxx + AIS_Axis.hxx + AIS_BadEdgeFilter.cxx + AIS_BadEdgeFilter.hxx + AIS_BaseAnimationObject.cxx + AIS_BaseAnimationObject.hxx + AIS_C0RegularityFilter.cxx + AIS_C0RegularityFilter.hxx + AIS_CameraFrustum.cxx + AIS_CameraFrustum.hxx + AIS_Circle.cxx + AIS_Circle.hxx + AIS_ColoredDrawer.hxx + AIS_ColoredShape.cxx + AIS_ColoredShape.hxx + AIS_DataMapOfShapeDrawer.hxx + AIS_ColorScale.cxx + AIS_ColorScale.hxx + AIS_ConnectedInteractive.cxx + AIS_ConnectedInteractive.hxx + AIS_DataMapIteratorOfDataMapOfIOStatus.hxx + AIS_DataMapOfIOStatus.hxx + AIS_DisplayMode.hxx + AIS_DisplayStatus.hxx + AIS_DragAction.hxx + AIS_ExclusionFilter.cxx + AIS_ExclusionFilter.hxx + AIS_GlobalStatus.cxx + AIS_GlobalStatus.hxx + AIS_GraphicTool.cxx + AIS_GraphicTool.hxx + AIS_InteractiveContext.cxx + AIS_InteractiveContext.hxx + AIS_InteractiveObject.cxx + AIS_InteractiveObject.hxx + AIS_KindOfInteractive.hxx + AIS_LightSource.cxx + AIS_LightSource.hxx + AIS_Line.cxx + AIS_Line.hxx + AIS_ListIteratorOfListOfInteractive.hxx + AIS_ListOfInteractive.hxx + AIS_Manipulator.hxx + AIS_Manipulator.cxx + AIS_ManipulatorMode.hxx + AIS_ManipulatorOwner.hxx + AIS_ManipulatorOwner.cxx + AIS_MediaPlayer.cxx + AIS_MediaPlayer.hxx + AIS_MouseGesture.hxx + AIS_MultipleConnectedInteractive.cxx + AIS_MultipleConnectedInteractive.hxx + AIS_NavigationMode.hxx + AIS_NArray1OfEntityOwner.hxx + AIS_NListOfEntityOwner.hxx + AIS_Plane.cxx + AIS_Plane.hxx + AIS_PlaneTrihedron.cxx + AIS_PlaneTrihedron.hxx + AIS_Point.cxx + AIS_Point.hxx + AIS_PointCloud.cxx + AIS_PointCloud.hxx + AIS_RotationMode.hxx + AIS_RubberBand.hxx + AIS_RubberBand.cxx + AIS_Selection.cxx + AIS_Selection.hxx + AIS_SelectStatus.hxx + AIS_SelectionModesConcurrency.hxx + AIS_SelectionScheme.hxx + AIS_Shape.cxx + AIS_Shape.hxx + AIS_SignatureFilter.cxx + AIS_SignatureFilter.hxx + AIS_StatusOfDetection.hxx + AIS_StatusOfPick.hxx + AIS_TextLabel.cxx + AIS_TextLabel.hxx + AIS_TexturedShape.cxx + AIS_TexturedShape.hxx + AIS_Triangulation.cxx + AIS_Triangulation.hxx + AIS_Trihedron.cxx + AIS_Trihedron.hxx + AIS_TrihedronOwner.cxx + AIS_TrihedronOwner.hxx + AIS_TrihedronSelectionMode.hxx + AIS_TypeFilter.cxx + AIS_TypeFilter.hxx + AIS_TypeOfAttribute.hxx + AIS_TypeOfAxis.hxx + AIS_TypeOfIso.hxx + AIS_TypeOfPlane.hxx + AIS_ViewController.cxx + AIS_ViewController.hxx + AIS_ViewInputBuffer.hxx + AIS_ViewCube.cxx + AIS_ViewCube.hxx + AIS_WalkDelta.hxx + AIS_AngleDimension.hxx + AIS_Chamf2dDimension.hxx + AIS_Chamf3dDimension.hxx + AIS_ConcentricRelation.hxx + AIS_DiameterDimension.hxx + AIS_Dimension.hxx + AIS_DimensionOwner.hxx + AIS_EllipseRadiusDimension.hxx + AIS_EqualDistanceRelation.hxx + AIS_EqualRadiusRelation.hxx + AIS_FixRelation.hxx + AIS_IdenticRelation.hxx + AIS_LengthDimension.hxx + AIS_MaxRadiusDimension.hxx + AIS_MidPointRelation.hxx + AIS_MinRadiusDimension.hxx + AIS_OffsetDimension.hxx + AIS_ParallelRelation.hxx + AIS_PerpendicularRelation.hxx + AIS_RadiusDimension.hxx + AIS_Relation.hxx + AIS_SymmetricRelation.hxx + AIS_TangentRelation.hxx + AIS_XRTrackedDevice.cxx + AIS_XRTrackedDevice.hxx +) diff --git a/src/TKV3d/CMakeLists.txt b/src/Visualization/TKV3d/CMakeLists.txt similarity index 100% rename from src/TKV3d/CMakeLists.txt rename to src/Visualization/TKV3d/CMakeLists.txt diff --git a/src/DsgPrs/DsgPrs.cxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs.cxx similarity index 100% rename from src/DsgPrs/DsgPrs.cxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs.cxx diff --git a/src/DsgPrs/DsgPrs.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs.hxx similarity index 100% rename from src/DsgPrs/DsgPrs.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs.hxx diff --git a/src/DsgPrs/DsgPrs_AnglePresentation.cxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_AnglePresentation.cxx similarity index 100% rename from src/DsgPrs/DsgPrs_AnglePresentation.cxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_AnglePresentation.cxx diff --git a/src/DsgPrs/DsgPrs_AnglePresentation.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_AnglePresentation.hxx similarity index 100% rename from src/DsgPrs/DsgPrs_AnglePresentation.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_AnglePresentation.hxx diff --git a/src/DsgPrs/DsgPrs_ArrowSide.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_ArrowSide.hxx similarity index 100% rename from src/DsgPrs/DsgPrs_ArrowSide.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_ArrowSide.hxx diff --git a/src/DsgPrs/DsgPrs_Chamf2dPresentation.cxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_Chamf2dPresentation.cxx similarity index 100% rename from src/DsgPrs/DsgPrs_Chamf2dPresentation.cxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_Chamf2dPresentation.cxx diff --git a/src/DsgPrs/DsgPrs_Chamf2dPresentation.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_Chamf2dPresentation.hxx similarity index 100% rename from src/DsgPrs/DsgPrs_Chamf2dPresentation.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_Chamf2dPresentation.hxx diff --git a/src/DsgPrs/DsgPrs_ConcentricPresentation.cxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_ConcentricPresentation.cxx similarity index 100% rename from src/DsgPrs/DsgPrs_ConcentricPresentation.cxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_ConcentricPresentation.cxx diff --git a/src/DsgPrs/DsgPrs_ConcentricPresentation.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_ConcentricPresentation.hxx similarity index 100% rename from src/DsgPrs/DsgPrs_ConcentricPresentation.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_ConcentricPresentation.hxx diff --git a/src/DsgPrs/DsgPrs_DatumPrs.cxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_DatumPrs.cxx similarity index 100% rename from src/DsgPrs/DsgPrs_DatumPrs.cxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_DatumPrs.cxx diff --git a/src/DsgPrs/DsgPrs_DatumPrs.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_DatumPrs.hxx similarity index 100% rename from src/DsgPrs/DsgPrs_DatumPrs.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_DatumPrs.hxx diff --git a/src/DsgPrs/DsgPrs_DiameterPresentation.cxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_DiameterPresentation.cxx similarity index 100% rename from src/DsgPrs/DsgPrs_DiameterPresentation.cxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_DiameterPresentation.cxx diff --git a/src/DsgPrs/DsgPrs_DiameterPresentation.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_DiameterPresentation.hxx similarity index 100% rename from src/DsgPrs/DsgPrs_DiameterPresentation.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_DiameterPresentation.hxx diff --git a/src/DsgPrs/DsgPrs_EllipseRadiusPresentation.cxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_EllipseRadiusPresentation.cxx similarity index 100% rename from src/DsgPrs/DsgPrs_EllipseRadiusPresentation.cxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_EllipseRadiusPresentation.cxx diff --git a/src/DsgPrs/DsgPrs_EllipseRadiusPresentation.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_EllipseRadiusPresentation.hxx similarity index 100% rename from src/DsgPrs/DsgPrs_EllipseRadiusPresentation.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_EllipseRadiusPresentation.hxx diff --git a/src/DsgPrs/DsgPrs_EqualDistancePresentation.cxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_EqualDistancePresentation.cxx similarity index 100% rename from src/DsgPrs/DsgPrs_EqualDistancePresentation.cxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_EqualDistancePresentation.cxx diff --git a/src/DsgPrs/DsgPrs_EqualDistancePresentation.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_EqualDistancePresentation.hxx similarity index 100% rename from src/DsgPrs/DsgPrs_EqualDistancePresentation.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_EqualDistancePresentation.hxx diff --git a/src/DsgPrs/DsgPrs_EqualRadiusPresentation.cxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_EqualRadiusPresentation.cxx similarity index 100% rename from src/DsgPrs/DsgPrs_EqualRadiusPresentation.cxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_EqualRadiusPresentation.cxx diff --git a/src/DsgPrs/DsgPrs_EqualRadiusPresentation.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_EqualRadiusPresentation.hxx similarity index 100% rename from src/DsgPrs/DsgPrs_EqualRadiusPresentation.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_EqualRadiusPresentation.hxx diff --git a/src/DsgPrs/DsgPrs_FilletRadiusPresentation.cxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_FilletRadiusPresentation.cxx similarity index 100% rename from src/DsgPrs/DsgPrs_FilletRadiusPresentation.cxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_FilletRadiusPresentation.cxx diff --git a/src/DsgPrs/DsgPrs_FilletRadiusPresentation.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_FilletRadiusPresentation.hxx similarity index 100% rename from src/DsgPrs/DsgPrs_FilletRadiusPresentation.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_FilletRadiusPresentation.hxx diff --git a/src/DsgPrs/DsgPrs_FixPresentation.cxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_FixPresentation.cxx similarity index 100% rename from src/DsgPrs/DsgPrs_FixPresentation.cxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_FixPresentation.cxx diff --git a/src/DsgPrs/DsgPrs_FixPresentation.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_FixPresentation.hxx similarity index 100% rename from src/DsgPrs/DsgPrs_FixPresentation.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_FixPresentation.hxx diff --git a/src/DsgPrs/DsgPrs_IdenticPresentation.cxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_IdenticPresentation.cxx similarity index 100% rename from src/DsgPrs/DsgPrs_IdenticPresentation.cxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_IdenticPresentation.cxx diff --git a/src/DsgPrs/DsgPrs_IdenticPresentation.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_IdenticPresentation.hxx similarity index 100% rename from src/DsgPrs/DsgPrs_IdenticPresentation.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_IdenticPresentation.hxx diff --git a/src/DsgPrs/DsgPrs_LengthPresentation.cxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_LengthPresentation.cxx similarity index 100% rename from src/DsgPrs/DsgPrs_LengthPresentation.cxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_LengthPresentation.cxx diff --git a/src/DsgPrs/DsgPrs_LengthPresentation.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_LengthPresentation.hxx similarity index 100% rename from src/DsgPrs/DsgPrs_LengthPresentation.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_LengthPresentation.hxx diff --git a/src/DsgPrs/DsgPrs_MidPointPresentation.cxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_MidPointPresentation.cxx similarity index 100% rename from src/DsgPrs/DsgPrs_MidPointPresentation.cxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_MidPointPresentation.cxx diff --git a/src/DsgPrs/DsgPrs_MidPointPresentation.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_MidPointPresentation.hxx similarity index 100% rename from src/DsgPrs/DsgPrs_MidPointPresentation.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_MidPointPresentation.hxx diff --git a/src/DsgPrs/DsgPrs_OffsetPresentation.cxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_OffsetPresentation.cxx similarity index 100% rename from src/DsgPrs/DsgPrs_OffsetPresentation.cxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_OffsetPresentation.cxx diff --git a/src/DsgPrs/DsgPrs_OffsetPresentation.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_OffsetPresentation.hxx similarity index 100% rename from src/DsgPrs/DsgPrs_OffsetPresentation.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_OffsetPresentation.hxx diff --git a/src/DsgPrs/DsgPrs_ParalPresentation.cxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_ParalPresentation.cxx similarity index 100% rename from src/DsgPrs/DsgPrs_ParalPresentation.cxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_ParalPresentation.cxx diff --git a/src/DsgPrs/DsgPrs_ParalPresentation.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_ParalPresentation.hxx similarity index 100% rename from src/DsgPrs/DsgPrs_ParalPresentation.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_ParalPresentation.hxx diff --git a/src/DsgPrs/DsgPrs_PerpenPresentation.cxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_PerpenPresentation.cxx similarity index 100% rename from src/DsgPrs/DsgPrs_PerpenPresentation.cxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_PerpenPresentation.cxx diff --git a/src/DsgPrs/DsgPrs_PerpenPresentation.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_PerpenPresentation.hxx similarity index 100% rename from src/DsgPrs/DsgPrs_PerpenPresentation.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_PerpenPresentation.hxx diff --git a/src/DsgPrs/DsgPrs_RadiusPresentation.cxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_RadiusPresentation.cxx similarity index 100% rename from src/DsgPrs/DsgPrs_RadiusPresentation.cxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_RadiusPresentation.cxx diff --git a/src/DsgPrs/DsgPrs_RadiusPresentation.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_RadiusPresentation.hxx similarity index 100% rename from src/DsgPrs/DsgPrs_RadiusPresentation.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_RadiusPresentation.hxx diff --git a/src/DsgPrs/DsgPrs_ShadedPlanePresentation.cxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_ShadedPlanePresentation.cxx similarity index 100% rename from src/DsgPrs/DsgPrs_ShadedPlanePresentation.cxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_ShadedPlanePresentation.cxx diff --git a/src/DsgPrs/DsgPrs_ShadedPlanePresentation.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_ShadedPlanePresentation.hxx similarity index 100% rename from src/DsgPrs/DsgPrs_ShadedPlanePresentation.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_ShadedPlanePresentation.hxx diff --git a/src/DsgPrs/DsgPrs_ShapeDirPresentation.cxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_ShapeDirPresentation.cxx similarity index 100% rename from src/DsgPrs/DsgPrs_ShapeDirPresentation.cxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_ShapeDirPresentation.cxx diff --git a/src/DsgPrs/DsgPrs_ShapeDirPresentation.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_ShapeDirPresentation.hxx similarity index 100% rename from src/DsgPrs/DsgPrs_ShapeDirPresentation.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_ShapeDirPresentation.hxx diff --git a/src/DsgPrs/DsgPrs_SymbPresentation.cxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_SymbPresentation.cxx similarity index 100% rename from src/DsgPrs/DsgPrs_SymbPresentation.cxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_SymbPresentation.cxx diff --git a/src/DsgPrs/DsgPrs_SymbPresentation.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_SymbPresentation.hxx similarity index 100% rename from src/DsgPrs/DsgPrs_SymbPresentation.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_SymbPresentation.hxx diff --git a/src/DsgPrs/DsgPrs_SymmetricPresentation.cxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_SymmetricPresentation.cxx similarity index 100% rename from src/DsgPrs/DsgPrs_SymmetricPresentation.cxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_SymmetricPresentation.cxx diff --git a/src/DsgPrs/DsgPrs_SymmetricPresentation.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_SymmetricPresentation.hxx similarity index 100% rename from src/DsgPrs/DsgPrs_SymmetricPresentation.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_SymmetricPresentation.hxx diff --git a/src/DsgPrs/DsgPrs_TangentPresentation.cxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_TangentPresentation.cxx similarity index 100% rename from src/DsgPrs/DsgPrs_TangentPresentation.cxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_TangentPresentation.cxx diff --git a/src/DsgPrs/DsgPrs_TangentPresentation.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_TangentPresentation.hxx similarity index 100% rename from src/DsgPrs/DsgPrs_TangentPresentation.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_TangentPresentation.hxx diff --git a/src/DsgPrs/DsgPrs_XYZAxisPresentation.cxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_XYZAxisPresentation.cxx similarity index 100% rename from src/DsgPrs/DsgPrs_XYZAxisPresentation.cxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_XYZAxisPresentation.cxx diff --git a/src/DsgPrs/DsgPrs_XYZAxisPresentation.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_XYZAxisPresentation.hxx similarity index 100% rename from src/DsgPrs/DsgPrs_XYZAxisPresentation.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_XYZAxisPresentation.hxx diff --git a/src/DsgPrs/DsgPrs_XYZPlanePresentation.cxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_XYZPlanePresentation.cxx similarity index 100% rename from src/DsgPrs/DsgPrs_XYZPlanePresentation.cxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_XYZPlanePresentation.cxx diff --git a/src/DsgPrs/DsgPrs_XYZPlanePresentation.hxx b/src/Visualization/TKV3d/DsgPrs/DsgPrs_XYZPlanePresentation.hxx similarity index 100% rename from src/DsgPrs/DsgPrs_XYZPlanePresentation.hxx rename to src/Visualization/TKV3d/DsgPrs/DsgPrs_XYZPlanePresentation.hxx diff --git a/src/Visualization/TKV3d/DsgPrs/FILES.cmake b/src/Visualization/TKV3d/DsgPrs/FILES.cmake new file mode 100644 index 0000000000..2ab7476660 --- /dev/null +++ b/src/Visualization/TKV3d/DsgPrs/FILES.cmake @@ -0,0 +1,56 @@ +# Source files for DsgPrs package +set(OCCT_DsgPrs_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_DsgPrs_FILES + DsgPrs.cxx + DsgPrs.hxx + DsgPrs_AnglePresentation.cxx + DsgPrs_AnglePresentation.hxx + DsgPrs_ArrowSide.hxx + DsgPrs_Chamf2dPresentation.cxx + DsgPrs_Chamf2dPresentation.hxx + DsgPrs_ConcentricPresentation.cxx + DsgPrs_ConcentricPresentation.hxx + DsgPrs_DatumPrs.cxx + DsgPrs_DatumPrs.hxx + DsgPrs_DiameterPresentation.cxx + DsgPrs_DiameterPresentation.hxx + DsgPrs_EllipseRadiusPresentation.cxx + DsgPrs_EllipseRadiusPresentation.hxx + DsgPrs_EqualDistancePresentation.cxx + DsgPrs_EqualDistancePresentation.hxx + DsgPrs_EqualRadiusPresentation.cxx + DsgPrs_EqualRadiusPresentation.hxx + DsgPrs_FilletRadiusPresentation.cxx + DsgPrs_FilletRadiusPresentation.hxx + DsgPrs_FixPresentation.cxx + DsgPrs_FixPresentation.hxx + DsgPrs_IdenticPresentation.cxx + DsgPrs_IdenticPresentation.hxx + DsgPrs_LengthPresentation.cxx + DsgPrs_LengthPresentation.hxx + DsgPrs_MidPointPresentation.cxx + DsgPrs_MidPointPresentation.hxx + DsgPrs_OffsetPresentation.cxx + DsgPrs_OffsetPresentation.hxx + DsgPrs_ParalPresentation.cxx + DsgPrs_ParalPresentation.hxx + DsgPrs_PerpenPresentation.cxx + DsgPrs_PerpenPresentation.hxx + DsgPrs_RadiusPresentation.cxx + DsgPrs_RadiusPresentation.hxx + DsgPrs_ShadedPlanePresentation.cxx + DsgPrs_ShadedPlanePresentation.hxx + DsgPrs_ShapeDirPresentation.cxx + DsgPrs_ShapeDirPresentation.hxx + DsgPrs_SymbPresentation.cxx + DsgPrs_SymbPresentation.hxx + DsgPrs_SymmetricPresentation.cxx + DsgPrs_SymmetricPresentation.hxx + DsgPrs_TangentPresentation.cxx + DsgPrs_TangentPresentation.hxx + DsgPrs_XYZAxisPresentation.cxx + DsgPrs_XYZAxisPresentation.hxx + DsgPrs_XYZPlanePresentation.cxx + DsgPrs_XYZPlanePresentation.hxx +) diff --git a/src/Visualization/TKV3d/EXTERNLIB.cmake b/src/Visualization/TKV3d/EXTERNLIB.cmake new file mode 100644 index 0000000000..245c29d989 --- /dev/null +++ b/src/Visualization/TKV3d/EXTERNLIB.cmake @@ -0,0 +1,19 @@ +# External dependencies for TKV3d +set(OCCT_TKV3d_EXTERNAL_LIBS + TKBRep + TKMath + TKernel + TKService + TKShHealing + TKTopAlgo + TKG2d + TKG3d + TKGeomBase + TKMesh + TKGeomAlgo + TKHLR + CSF_user32 + CSF_gdi32 + CSF_FREETYPE + CSF_TBB +) diff --git a/src/Visualization/TKV3d/FILES.cmake b/src/Visualization/TKV3d/FILES.cmake new file mode 100644 index 0000000000..23a3512ee7 --- /dev/null +++ b/src/Visualization/TKV3d/FILES.cmake @@ -0,0 +1,7 @@ +# Source files for TKV3d +set(OCCT_TKV3d_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_TKV3d_FILES + EXTERNLIB + PACKAGES +) diff --git a/src/Visualization/TKV3d/PACKAGES.cmake b/src/Visualization/TKV3d/PACKAGES.cmake new file mode 100644 index 0000000000..d074c5ceb4 --- /dev/null +++ b/src/Visualization/TKV3d/PACKAGES.cmake @@ -0,0 +1,14 @@ +# Auto-generated list of packages for TKV3d toolkit +set(OCCT_TKV3d_LIST_OF_PACKAGES + V3d + Select3D + Prs3d + StdPrs + SelectBasics + SelectMgr + PrsMgr + AIS + StdSelect + DsgPrs + PrsDim +) diff --git a/src/Visualization/TKV3d/Prs3d/FILES.cmake b/src/Visualization/TKV3d/Prs3d/FILES.cmake new file mode 100644 index 0000000000..3baaa02a73 --- /dev/null +++ b/src/Visualization/TKV3d/Prs3d/FILES.cmake @@ -0,0 +1,68 @@ +# Source files for Prs3d package +set(OCCT_Prs3d_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Prs3d_FILES + Prs3d.cxx + Prs3d.hxx + Prs3d_Arrow.cxx + Prs3d_Arrow.hxx + Prs3d_ArrowAspect.cxx + Prs3d_ArrowAspect.hxx + Prs3d_BasicAspect.cxx + Prs3d_BasicAspect.hxx + Prs3d_BndBox.cxx + Prs3d_BndBox.hxx + Prs3d_DatumAspect.cxx + Prs3d_DatumAspect.hxx + Prs3d_DatumAttribute.hxx + Prs3d_DatumAxes.hxx + Prs3d_DatumMode.hxx + Prs3d_DatumParts.hxx + Prs3d_DimensionArrowOrientation.hxx + Prs3d_DimensionAspect.cxx + Prs3d_DimensionAspect.hxx + Prs3d_DimensionTextHorizontalPosition.hxx + Prs3d_DimensionTextVerticalPosition.hxx + Prs3d_DimensionUnits.hxx + Prs3d_Drawer.cxx + Prs3d_Drawer.hxx + Prs3d_InvalidAngle.hxx + Prs3d_IsoAspect.cxx + Prs3d_IsoAspect.hxx + Prs3d_LineAspect.cxx + Prs3d_LineAspect.hxx + Prs3d_NListIteratorOfListOfSequenceOfPnt.hxx + Prs3d_NListOfSequenceOfPnt.hxx + Prs3d_PlaneAspect.cxx + Prs3d_PlaneAspect.hxx + Prs3d_Point.hxx + Prs3d_PointAspect.cxx + Prs3d_PointAspect.hxx + Prs3d_Presentation.hxx + Prs3d_PresentationShadow.cxx + Prs3d_PresentationShadow.hxx + Prs3d_Root.hxx + Prs3d_ShadingAspect.cxx + Prs3d_ShadingAspect.hxx + Prs3d_ShapeTool.hxx + Prs3d_Text.cxx + Prs3d_Text.hxx + Prs3d_TextAspect.cxx + Prs3d_TextAspect.hxx + Prs3d_ToolDisk.hxx + Prs3d_ToolDisk.cxx + Prs3d_ToolCylinder.hxx + Prs3d_ToolCylinder.cxx + Prs3d_ToolQuadric.hxx + Prs3d_ToolQuadric.cxx + Prs3d_ToolSector.hxx + Prs3d_ToolSector.cxx + Prs3d_ToolSphere.hxx + Prs3d_ToolSphere.cxx + Prs3d_ToolTorus.hxx + Prs3d_ToolTorus.cxx + Prs3d_TypeOfHighlight.hxx + Prs3d_TypeOfHLR.hxx + Prs3d_TypeOfLinePicking.hxx + Prs3d_VertexDrawMode.hxx +) diff --git a/src/Prs3d/Prs3d.cxx b/src/Visualization/TKV3d/Prs3d/Prs3d.cxx similarity index 100% rename from src/Prs3d/Prs3d.cxx rename to src/Visualization/TKV3d/Prs3d/Prs3d.cxx diff --git a/src/Prs3d/Prs3d.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d.hxx similarity index 100% rename from src/Prs3d/Prs3d.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d.hxx diff --git a/src/Prs3d/Prs3d_Arrow.cxx b/src/Visualization/TKV3d/Prs3d/Prs3d_Arrow.cxx similarity index 100% rename from src/Prs3d/Prs3d_Arrow.cxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_Arrow.cxx diff --git a/src/Prs3d/Prs3d_Arrow.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_Arrow.hxx similarity index 100% rename from src/Prs3d/Prs3d_Arrow.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_Arrow.hxx diff --git a/src/Prs3d/Prs3d_ArrowAspect.cxx b/src/Visualization/TKV3d/Prs3d/Prs3d_ArrowAspect.cxx similarity index 100% rename from src/Prs3d/Prs3d_ArrowAspect.cxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_ArrowAspect.cxx diff --git a/src/Prs3d/Prs3d_ArrowAspect.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_ArrowAspect.hxx similarity index 100% rename from src/Prs3d/Prs3d_ArrowAspect.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_ArrowAspect.hxx diff --git a/src/Prs3d/Prs3d_BasicAspect.cxx b/src/Visualization/TKV3d/Prs3d/Prs3d_BasicAspect.cxx similarity index 100% rename from src/Prs3d/Prs3d_BasicAspect.cxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_BasicAspect.cxx diff --git a/src/Prs3d/Prs3d_BasicAspect.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_BasicAspect.hxx similarity index 100% rename from src/Prs3d/Prs3d_BasicAspect.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_BasicAspect.hxx diff --git a/src/Prs3d/Prs3d_BndBox.cxx b/src/Visualization/TKV3d/Prs3d/Prs3d_BndBox.cxx similarity index 100% rename from src/Prs3d/Prs3d_BndBox.cxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_BndBox.cxx diff --git a/src/Prs3d/Prs3d_BndBox.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_BndBox.hxx similarity index 100% rename from src/Prs3d/Prs3d_BndBox.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_BndBox.hxx diff --git a/src/Prs3d/Prs3d_DatumAspect.cxx b/src/Visualization/TKV3d/Prs3d/Prs3d_DatumAspect.cxx similarity index 100% rename from src/Prs3d/Prs3d_DatumAspect.cxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_DatumAspect.cxx diff --git a/src/Prs3d/Prs3d_DatumAspect.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_DatumAspect.hxx similarity index 100% rename from src/Prs3d/Prs3d_DatumAspect.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_DatumAspect.hxx diff --git a/src/Prs3d/Prs3d_DatumAttribute.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_DatumAttribute.hxx similarity index 100% rename from src/Prs3d/Prs3d_DatumAttribute.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_DatumAttribute.hxx diff --git a/src/Prs3d/Prs3d_DatumAxes.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_DatumAxes.hxx similarity index 100% rename from src/Prs3d/Prs3d_DatumAxes.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_DatumAxes.hxx diff --git a/src/Prs3d/Prs3d_DatumMode.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_DatumMode.hxx similarity index 100% rename from src/Prs3d/Prs3d_DatumMode.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_DatumMode.hxx diff --git a/src/Prs3d/Prs3d_DatumParts.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_DatumParts.hxx similarity index 100% rename from src/Prs3d/Prs3d_DatumParts.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_DatumParts.hxx diff --git a/src/Prs3d/Prs3d_DimensionArrowOrientation.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_DimensionArrowOrientation.hxx similarity index 100% rename from src/Prs3d/Prs3d_DimensionArrowOrientation.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_DimensionArrowOrientation.hxx diff --git a/src/Prs3d/Prs3d_DimensionAspect.cxx b/src/Visualization/TKV3d/Prs3d/Prs3d_DimensionAspect.cxx similarity index 100% rename from src/Prs3d/Prs3d_DimensionAspect.cxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_DimensionAspect.cxx diff --git a/src/Prs3d/Prs3d_DimensionAspect.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_DimensionAspect.hxx similarity index 100% rename from src/Prs3d/Prs3d_DimensionAspect.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_DimensionAspect.hxx diff --git a/src/Prs3d/Prs3d_DimensionTextHorizontalPosition.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_DimensionTextHorizontalPosition.hxx similarity index 100% rename from src/Prs3d/Prs3d_DimensionTextHorizontalPosition.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_DimensionTextHorizontalPosition.hxx diff --git a/src/Prs3d/Prs3d_DimensionTextVerticalPosition.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_DimensionTextVerticalPosition.hxx similarity index 100% rename from src/Prs3d/Prs3d_DimensionTextVerticalPosition.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_DimensionTextVerticalPosition.hxx diff --git a/src/Prs3d/Prs3d_DimensionUnits.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_DimensionUnits.hxx similarity index 100% rename from src/Prs3d/Prs3d_DimensionUnits.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_DimensionUnits.hxx diff --git a/src/Prs3d/Prs3d_Drawer.cxx b/src/Visualization/TKV3d/Prs3d/Prs3d_Drawer.cxx similarity index 100% rename from src/Prs3d/Prs3d_Drawer.cxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_Drawer.cxx diff --git a/src/Prs3d/Prs3d_Drawer.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_Drawer.hxx similarity index 100% rename from src/Prs3d/Prs3d_Drawer.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_Drawer.hxx diff --git a/src/Prs3d/Prs3d_InvalidAngle.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_InvalidAngle.hxx similarity index 100% rename from src/Prs3d/Prs3d_InvalidAngle.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_InvalidAngle.hxx diff --git a/src/Prs3d/Prs3d_IsoAspect.cxx b/src/Visualization/TKV3d/Prs3d/Prs3d_IsoAspect.cxx similarity index 100% rename from src/Prs3d/Prs3d_IsoAspect.cxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_IsoAspect.cxx diff --git a/src/Prs3d/Prs3d_IsoAspect.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_IsoAspect.hxx similarity index 100% rename from src/Prs3d/Prs3d_IsoAspect.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_IsoAspect.hxx diff --git a/src/Prs3d/Prs3d_LineAspect.cxx b/src/Visualization/TKV3d/Prs3d/Prs3d_LineAspect.cxx similarity index 100% rename from src/Prs3d/Prs3d_LineAspect.cxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_LineAspect.cxx diff --git a/src/Prs3d/Prs3d_LineAspect.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_LineAspect.hxx similarity index 100% rename from src/Prs3d/Prs3d_LineAspect.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_LineAspect.hxx diff --git a/src/Prs3d/Prs3d_NListIteratorOfListOfSequenceOfPnt.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_NListIteratorOfListOfSequenceOfPnt.hxx similarity index 100% rename from src/Prs3d/Prs3d_NListIteratorOfListOfSequenceOfPnt.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_NListIteratorOfListOfSequenceOfPnt.hxx diff --git a/src/Prs3d/Prs3d_NListOfSequenceOfPnt.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_NListOfSequenceOfPnt.hxx similarity index 100% rename from src/Prs3d/Prs3d_NListOfSequenceOfPnt.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_NListOfSequenceOfPnt.hxx diff --git a/src/Prs3d/Prs3d_PlaneAspect.cxx b/src/Visualization/TKV3d/Prs3d/Prs3d_PlaneAspect.cxx similarity index 100% rename from src/Prs3d/Prs3d_PlaneAspect.cxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_PlaneAspect.cxx diff --git a/src/Prs3d/Prs3d_PlaneAspect.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_PlaneAspect.hxx similarity index 100% rename from src/Prs3d/Prs3d_PlaneAspect.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_PlaneAspect.hxx diff --git a/src/Prs3d/Prs3d_Point.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_Point.hxx similarity index 100% rename from src/Prs3d/Prs3d_Point.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_Point.hxx diff --git a/src/Prs3d/Prs3d_PointAspect.cxx b/src/Visualization/TKV3d/Prs3d/Prs3d_PointAspect.cxx similarity index 100% rename from src/Prs3d/Prs3d_PointAspect.cxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_PointAspect.cxx diff --git a/src/Prs3d/Prs3d_PointAspect.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_PointAspect.hxx similarity index 100% rename from src/Prs3d/Prs3d_PointAspect.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_PointAspect.hxx diff --git a/src/Prs3d/Prs3d_Presentation.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_Presentation.hxx similarity index 100% rename from src/Prs3d/Prs3d_Presentation.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_Presentation.hxx diff --git a/src/Prs3d/Prs3d_PresentationShadow.cxx b/src/Visualization/TKV3d/Prs3d/Prs3d_PresentationShadow.cxx similarity index 100% rename from src/Prs3d/Prs3d_PresentationShadow.cxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_PresentationShadow.cxx diff --git a/src/Prs3d/Prs3d_PresentationShadow.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_PresentationShadow.hxx similarity index 100% rename from src/Prs3d/Prs3d_PresentationShadow.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_PresentationShadow.hxx diff --git a/src/Prs3d/Prs3d_Root.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_Root.hxx similarity index 100% rename from src/Prs3d/Prs3d_Root.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_Root.hxx diff --git a/src/Prs3d/Prs3d_ShadingAspect.cxx b/src/Visualization/TKV3d/Prs3d/Prs3d_ShadingAspect.cxx similarity index 100% rename from src/Prs3d/Prs3d_ShadingAspect.cxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_ShadingAspect.cxx diff --git a/src/Prs3d/Prs3d_ShadingAspect.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_ShadingAspect.hxx similarity index 100% rename from src/Prs3d/Prs3d_ShadingAspect.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_ShadingAspect.hxx diff --git a/src/Prs3d/Prs3d_ShapeTool.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_ShapeTool.hxx similarity index 100% rename from src/Prs3d/Prs3d_ShapeTool.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_ShapeTool.hxx diff --git a/src/Prs3d/Prs3d_Text.cxx b/src/Visualization/TKV3d/Prs3d/Prs3d_Text.cxx similarity index 100% rename from src/Prs3d/Prs3d_Text.cxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_Text.cxx diff --git a/src/Prs3d/Prs3d_Text.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_Text.hxx similarity index 100% rename from src/Prs3d/Prs3d_Text.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_Text.hxx diff --git a/src/Prs3d/Prs3d_TextAspect.cxx b/src/Visualization/TKV3d/Prs3d/Prs3d_TextAspect.cxx similarity index 100% rename from src/Prs3d/Prs3d_TextAspect.cxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_TextAspect.cxx diff --git a/src/Prs3d/Prs3d_TextAspect.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_TextAspect.hxx similarity index 100% rename from src/Prs3d/Prs3d_TextAspect.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_TextAspect.hxx diff --git a/src/Prs3d/Prs3d_ToolCylinder.cxx b/src/Visualization/TKV3d/Prs3d/Prs3d_ToolCylinder.cxx similarity index 100% rename from src/Prs3d/Prs3d_ToolCylinder.cxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_ToolCylinder.cxx diff --git a/src/Prs3d/Prs3d_ToolCylinder.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_ToolCylinder.hxx similarity index 100% rename from src/Prs3d/Prs3d_ToolCylinder.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_ToolCylinder.hxx diff --git a/src/Prs3d/Prs3d_ToolDisk.cxx b/src/Visualization/TKV3d/Prs3d/Prs3d_ToolDisk.cxx similarity index 100% rename from src/Prs3d/Prs3d_ToolDisk.cxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_ToolDisk.cxx diff --git a/src/Prs3d/Prs3d_ToolDisk.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_ToolDisk.hxx similarity index 100% rename from src/Prs3d/Prs3d_ToolDisk.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_ToolDisk.hxx diff --git a/src/Prs3d/Prs3d_ToolQuadric.cxx b/src/Visualization/TKV3d/Prs3d/Prs3d_ToolQuadric.cxx similarity index 100% rename from src/Prs3d/Prs3d_ToolQuadric.cxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_ToolQuadric.cxx diff --git a/src/Prs3d/Prs3d_ToolQuadric.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_ToolQuadric.hxx similarity index 100% rename from src/Prs3d/Prs3d_ToolQuadric.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_ToolQuadric.hxx diff --git a/src/Prs3d/Prs3d_ToolSector.cxx b/src/Visualization/TKV3d/Prs3d/Prs3d_ToolSector.cxx similarity index 100% rename from src/Prs3d/Prs3d_ToolSector.cxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_ToolSector.cxx diff --git a/src/Prs3d/Prs3d_ToolSector.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_ToolSector.hxx similarity index 100% rename from src/Prs3d/Prs3d_ToolSector.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_ToolSector.hxx diff --git a/src/Prs3d/Prs3d_ToolSphere.cxx b/src/Visualization/TKV3d/Prs3d/Prs3d_ToolSphere.cxx similarity index 100% rename from src/Prs3d/Prs3d_ToolSphere.cxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_ToolSphere.cxx diff --git a/src/Prs3d/Prs3d_ToolSphere.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_ToolSphere.hxx similarity index 100% rename from src/Prs3d/Prs3d_ToolSphere.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_ToolSphere.hxx diff --git a/src/Prs3d/Prs3d_ToolTorus.cxx b/src/Visualization/TKV3d/Prs3d/Prs3d_ToolTorus.cxx similarity index 100% rename from src/Prs3d/Prs3d_ToolTorus.cxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_ToolTorus.cxx diff --git a/src/Prs3d/Prs3d_ToolTorus.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_ToolTorus.hxx similarity index 100% rename from src/Prs3d/Prs3d_ToolTorus.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_ToolTorus.hxx diff --git a/src/Prs3d/Prs3d_TypeOfHLR.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_TypeOfHLR.hxx similarity index 100% rename from src/Prs3d/Prs3d_TypeOfHLR.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_TypeOfHLR.hxx diff --git a/src/Prs3d/Prs3d_TypeOfHighlight.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_TypeOfHighlight.hxx similarity index 100% rename from src/Prs3d/Prs3d_TypeOfHighlight.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_TypeOfHighlight.hxx diff --git a/src/Prs3d/Prs3d_TypeOfLinePicking.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_TypeOfLinePicking.hxx similarity index 100% rename from src/Prs3d/Prs3d_TypeOfLinePicking.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_TypeOfLinePicking.hxx diff --git a/src/Prs3d/Prs3d_VertexDrawMode.hxx b/src/Visualization/TKV3d/Prs3d/Prs3d_VertexDrawMode.hxx similarity index 100% rename from src/Prs3d/Prs3d_VertexDrawMode.hxx rename to src/Visualization/TKV3d/Prs3d/Prs3d_VertexDrawMode.hxx diff --git a/src/Visualization/TKV3d/PrsDim/FILES.cmake b/src/Visualization/TKV3d/PrsDim/FILES.cmake new file mode 100644 index 0000000000..0fa5f06124 --- /dev/null +++ b/src/Visualization/TKV3d/PrsDim/FILES.cmake @@ -0,0 +1,61 @@ +# Source files for PrsDim package +set(OCCT_PrsDim_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_PrsDim_FILES + PrsDim.cxx + PrsDim.hxx + PrsDim_AngleDimension.cxx + PrsDim_AngleDimension.hxx + PrsDim_Chamf2dDimension.cxx + PrsDim_Chamf2dDimension.hxx + PrsDim_Chamf3dDimension.cxx + PrsDim_Chamf3dDimension.hxx + PrsDim_ConcentricRelation.cxx + PrsDim_ConcentricRelation.hxx + PrsDim_DiameterDimension.cxx + PrsDim_DiameterDimension.hxx + PrsDim_Dimension.cxx + PrsDim_Dimension.hxx + PrsDim_DimensionOwner.cxx + PrsDim_DimensionOwner.hxx + PrsDim_EllipseRadiusDimension.cxx + PrsDim_EllipseRadiusDimension.hxx + PrsDim_EqualDistanceRelation.cxx + PrsDim_EqualDistanceRelation.hxx + PrsDim_EqualRadiusRelation.cxx + PrsDim_EqualRadiusRelation.hxx + PrsDim_FixRelation.cxx + PrsDim_FixRelation.hxx + PrsDim_IdenticRelation.cxx + PrsDim_IdenticRelation.hxx + PrsDim_LengthDimension.cxx + PrsDim_LengthDimension.hxx + PrsDim_MaxRadiusDimension.cxx + PrsDim_MaxRadiusDimension.hxx + PrsDim_MidPointRelation.cxx + PrsDim_MidPointRelation.hxx + PrsDim_MinRadiusDimension.cxx + PrsDim_MinRadiusDimension.hxx + PrsDim_OffsetDimension.cxx + PrsDim_OffsetDimension.hxx + PrsDim_ParallelRelation.cxx + PrsDim_ParallelRelation.hxx + PrsDim_PerpendicularRelation.cxx + PrsDim_PerpendicularRelation.hxx + PrsDim_RadiusDimension.cxx + PrsDim_RadiusDimension.hxx + PrsDim_Relation.cxx + PrsDim_Relation.hxx + PrsDim_SymmetricRelation.cxx + PrsDim_SymmetricRelation.hxx + PrsDim_TangentRelation.cxx + PrsDim_TangentRelation.hxx + PrsDim_DimensionSelectionMode.hxx + PrsDim_DisplaySpecialSymbol.hxx + PrsDim_KindOfDimension.hxx + PrsDim_KindOfRelation.hxx + PrsDim_KindOfSurface.hxx + PrsDim_TypeOfAngle.hxx + PrsDim_TypeOfAngleArrowVisibility.hxx + PrsDim_TypeOfDist.hxx +) diff --git a/src/PrsDim/PrsDim.cxx b/src/Visualization/TKV3d/PrsDim/PrsDim.cxx similarity index 100% rename from src/PrsDim/PrsDim.cxx rename to src/Visualization/TKV3d/PrsDim/PrsDim.cxx diff --git a/src/PrsDim/PrsDim.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim.hxx similarity index 100% rename from src/PrsDim/PrsDim.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim.hxx diff --git a/src/PrsDim/PrsDim_AngleDimension.cxx b/src/Visualization/TKV3d/PrsDim/PrsDim_AngleDimension.cxx similarity index 100% rename from src/PrsDim/PrsDim_AngleDimension.cxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_AngleDimension.cxx diff --git a/src/PrsDim/PrsDim_AngleDimension.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_AngleDimension.hxx similarity index 100% rename from src/PrsDim/PrsDim_AngleDimension.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_AngleDimension.hxx diff --git a/src/PrsDim/PrsDim_Chamf2dDimension.cxx b/src/Visualization/TKV3d/PrsDim/PrsDim_Chamf2dDimension.cxx similarity index 100% rename from src/PrsDim/PrsDim_Chamf2dDimension.cxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_Chamf2dDimension.cxx diff --git a/src/PrsDim/PrsDim_Chamf2dDimension.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_Chamf2dDimension.hxx similarity index 100% rename from src/PrsDim/PrsDim_Chamf2dDimension.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_Chamf2dDimension.hxx diff --git a/src/PrsDim/PrsDim_Chamf3dDimension.cxx b/src/Visualization/TKV3d/PrsDim/PrsDim_Chamf3dDimension.cxx similarity index 100% rename from src/PrsDim/PrsDim_Chamf3dDimension.cxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_Chamf3dDimension.cxx diff --git a/src/PrsDim/PrsDim_Chamf3dDimension.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_Chamf3dDimension.hxx similarity index 100% rename from src/PrsDim/PrsDim_Chamf3dDimension.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_Chamf3dDimension.hxx diff --git a/src/PrsDim/PrsDim_ConcentricRelation.cxx b/src/Visualization/TKV3d/PrsDim/PrsDim_ConcentricRelation.cxx similarity index 100% rename from src/PrsDim/PrsDim_ConcentricRelation.cxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_ConcentricRelation.cxx diff --git a/src/PrsDim/PrsDim_ConcentricRelation.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_ConcentricRelation.hxx similarity index 100% rename from src/PrsDim/PrsDim_ConcentricRelation.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_ConcentricRelation.hxx diff --git a/src/PrsDim/PrsDim_DiameterDimension.cxx b/src/Visualization/TKV3d/PrsDim/PrsDim_DiameterDimension.cxx similarity index 100% rename from src/PrsDim/PrsDim_DiameterDimension.cxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_DiameterDimension.cxx diff --git a/src/PrsDim/PrsDim_DiameterDimension.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_DiameterDimension.hxx similarity index 100% rename from src/PrsDim/PrsDim_DiameterDimension.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_DiameterDimension.hxx diff --git a/src/PrsDim/PrsDim_Dimension.cxx b/src/Visualization/TKV3d/PrsDim/PrsDim_Dimension.cxx similarity index 100% rename from src/PrsDim/PrsDim_Dimension.cxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_Dimension.cxx diff --git a/src/PrsDim/PrsDim_Dimension.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_Dimension.hxx similarity index 100% rename from src/PrsDim/PrsDim_Dimension.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_Dimension.hxx diff --git a/src/PrsDim/PrsDim_DimensionOwner.cxx b/src/Visualization/TKV3d/PrsDim/PrsDim_DimensionOwner.cxx similarity index 100% rename from src/PrsDim/PrsDim_DimensionOwner.cxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_DimensionOwner.cxx diff --git a/src/PrsDim/PrsDim_DimensionOwner.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_DimensionOwner.hxx similarity index 100% rename from src/PrsDim/PrsDim_DimensionOwner.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_DimensionOwner.hxx diff --git a/src/PrsDim/PrsDim_DimensionSelectionMode.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_DimensionSelectionMode.hxx similarity index 100% rename from src/PrsDim/PrsDim_DimensionSelectionMode.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_DimensionSelectionMode.hxx diff --git a/src/PrsDim/PrsDim_DisplaySpecialSymbol.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_DisplaySpecialSymbol.hxx similarity index 100% rename from src/PrsDim/PrsDim_DisplaySpecialSymbol.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_DisplaySpecialSymbol.hxx diff --git a/src/PrsDim/PrsDim_EllipseRadiusDimension.cxx b/src/Visualization/TKV3d/PrsDim/PrsDim_EllipseRadiusDimension.cxx similarity index 100% rename from src/PrsDim/PrsDim_EllipseRadiusDimension.cxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_EllipseRadiusDimension.cxx diff --git a/src/PrsDim/PrsDim_EllipseRadiusDimension.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_EllipseRadiusDimension.hxx similarity index 100% rename from src/PrsDim/PrsDim_EllipseRadiusDimension.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_EllipseRadiusDimension.hxx diff --git a/src/PrsDim/PrsDim_EqualDistanceRelation.cxx b/src/Visualization/TKV3d/PrsDim/PrsDim_EqualDistanceRelation.cxx similarity index 100% rename from src/PrsDim/PrsDim_EqualDistanceRelation.cxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_EqualDistanceRelation.cxx diff --git a/src/PrsDim/PrsDim_EqualDistanceRelation.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_EqualDistanceRelation.hxx similarity index 100% rename from src/PrsDim/PrsDim_EqualDistanceRelation.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_EqualDistanceRelation.hxx diff --git a/src/PrsDim/PrsDim_EqualRadiusRelation.cxx b/src/Visualization/TKV3d/PrsDim/PrsDim_EqualRadiusRelation.cxx similarity index 100% rename from src/PrsDim/PrsDim_EqualRadiusRelation.cxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_EqualRadiusRelation.cxx diff --git a/src/PrsDim/PrsDim_EqualRadiusRelation.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_EqualRadiusRelation.hxx similarity index 100% rename from src/PrsDim/PrsDim_EqualRadiusRelation.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_EqualRadiusRelation.hxx diff --git a/src/PrsDim/PrsDim_FixRelation.cxx b/src/Visualization/TKV3d/PrsDim/PrsDim_FixRelation.cxx similarity index 100% rename from src/PrsDim/PrsDim_FixRelation.cxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_FixRelation.cxx diff --git a/src/PrsDim/PrsDim_FixRelation.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_FixRelation.hxx similarity index 100% rename from src/PrsDim/PrsDim_FixRelation.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_FixRelation.hxx diff --git a/src/PrsDim/PrsDim_IdenticRelation.cxx b/src/Visualization/TKV3d/PrsDim/PrsDim_IdenticRelation.cxx similarity index 100% rename from src/PrsDim/PrsDim_IdenticRelation.cxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_IdenticRelation.cxx diff --git a/src/PrsDim/PrsDim_IdenticRelation.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_IdenticRelation.hxx similarity index 100% rename from src/PrsDim/PrsDim_IdenticRelation.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_IdenticRelation.hxx diff --git a/src/PrsDim/PrsDim_KindOfDimension.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_KindOfDimension.hxx similarity index 100% rename from src/PrsDim/PrsDim_KindOfDimension.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_KindOfDimension.hxx diff --git a/src/PrsDim/PrsDim_KindOfRelation.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_KindOfRelation.hxx similarity index 100% rename from src/PrsDim/PrsDim_KindOfRelation.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_KindOfRelation.hxx diff --git a/src/PrsDim/PrsDim_KindOfSurface.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_KindOfSurface.hxx similarity index 100% rename from src/PrsDim/PrsDim_KindOfSurface.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_KindOfSurface.hxx diff --git a/src/PrsDim/PrsDim_LengthDimension.cxx b/src/Visualization/TKV3d/PrsDim/PrsDim_LengthDimension.cxx similarity index 100% rename from src/PrsDim/PrsDim_LengthDimension.cxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_LengthDimension.cxx diff --git a/src/PrsDim/PrsDim_LengthDimension.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_LengthDimension.hxx similarity index 100% rename from src/PrsDim/PrsDim_LengthDimension.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_LengthDimension.hxx diff --git a/src/PrsDim/PrsDim_MaxRadiusDimension.cxx b/src/Visualization/TKV3d/PrsDim/PrsDim_MaxRadiusDimension.cxx similarity index 100% rename from src/PrsDim/PrsDim_MaxRadiusDimension.cxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_MaxRadiusDimension.cxx diff --git a/src/PrsDim/PrsDim_MaxRadiusDimension.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_MaxRadiusDimension.hxx similarity index 100% rename from src/PrsDim/PrsDim_MaxRadiusDimension.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_MaxRadiusDimension.hxx diff --git a/src/PrsDim/PrsDim_MidPointRelation.cxx b/src/Visualization/TKV3d/PrsDim/PrsDim_MidPointRelation.cxx similarity index 100% rename from src/PrsDim/PrsDim_MidPointRelation.cxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_MidPointRelation.cxx diff --git a/src/PrsDim/PrsDim_MidPointRelation.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_MidPointRelation.hxx similarity index 100% rename from src/PrsDim/PrsDim_MidPointRelation.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_MidPointRelation.hxx diff --git a/src/PrsDim/PrsDim_MinRadiusDimension.cxx b/src/Visualization/TKV3d/PrsDim/PrsDim_MinRadiusDimension.cxx similarity index 100% rename from src/PrsDim/PrsDim_MinRadiusDimension.cxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_MinRadiusDimension.cxx diff --git a/src/PrsDim/PrsDim_MinRadiusDimension.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_MinRadiusDimension.hxx similarity index 100% rename from src/PrsDim/PrsDim_MinRadiusDimension.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_MinRadiusDimension.hxx diff --git a/src/PrsDim/PrsDim_OffsetDimension.cxx b/src/Visualization/TKV3d/PrsDim/PrsDim_OffsetDimension.cxx similarity index 100% rename from src/PrsDim/PrsDim_OffsetDimension.cxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_OffsetDimension.cxx diff --git a/src/PrsDim/PrsDim_OffsetDimension.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_OffsetDimension.hxx similarity index 100% rename from src/PrsDim/PrsDim_OffsetDimension.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_OffsetDimension.hxx diff --git a/src/PrsDim/PrsDim_ParallelRelation.cxx b/src/Visualization/TKV3d/PrsDim/PrsDim_ParallelRelation.cxx similarity index 100% rename from src/PrsDim/PrsDim_ParallelRelation.cxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_ParallelRelation.cxx diff --git a/src/PrsDim/PrsDim_ParallelRelation.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_ParallelRelation.hxx similarity index 100% rename from src/PrsDim/PrsDim_ParallelRelation.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_ParallelRelation.hxx diff --git a/src/PrsDim/PrsDim_PerpendicularRelation.cxx b/src/Visualization/TKV3d/PrsDim/PrsDim_PerpendicularRelation.cxx similarity index 100% rename from src/PrsDim/PrsDim_PerpendicularRelation.cxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_PerpendicularRelation.cxx diff --git a/src/PrsDim/PrsDim_PerpendicularRelation.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_PerpendicularRelation.hxx similarity index 100% rename from src/PrsDim/PrsDim_PerpendicularRelation.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_PerpendicularRelation.hxx diff --git a/src/PrsDim/PrsDim_RadiusDimension.cxx b/src/Visualization/TKV3d/PrsDim/PrsDim_RadiusDimension.cxx similarity index 100% rename from src/PrsDim/PrsDim_RadiusDimension.cxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_RadiusDimension.cxx diff --git a/src/PrsDim/PrsDim_RadiusDimension.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_RadiusDimension.hxx similarity index 100% rename from src/PrsDim/PrsDim_RadiusDimension.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_RadiusDimension.hxx diff --git a/src/PrsDim/PrsDim_Relation.cxx b/src/Visualization/TKV3d/PrsDim/PrsDim_Relation.cxx similarity index 100% rename from src/PrsDim/PrsDim_Relation.cxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_Relation.cxx diff --git a/src/PrsDim/PrsDim_Relation.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_Relation.hxx similarity index 100% rename from src/PrsDim/PrsDim_Relation.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_Relation.hxx diff --git a/src/PrsDim/PrsDim_SymmetricRelation.cxx b/src/Visualization/TKV3d/PrsDim/PrsDim_SymmetricRelation.cxx similarity index 100% rename from src/PrsDim/PrsDim_SymmetricRelation.cxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_SymmetricRelation.cxx diff --git a/src/PrsDim/PrsDim_SymmetricRelation.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_SymmetricRelation.hxx similarity index 100% rename from src/PrsDim/PrsDim_SymmetricRelation.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_SymmetricRelation.hxx diff --git a/src/PrsDim/PrsDim_TangentRelation.cxx b/src/Visualization/TKV3d/PrsDim/PrsDim_TangentRelation.cxx similarity index 100% rename from src/PrsDim/PrsDim_TangentRelation.cxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_TangentRelation.cxx diff --git a/src/PrsDim/PrsDim_TangentRelation.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_TangentRelation.hxx similarity index 100% rename from src/PrsDim/PrsDim_TangentRelation.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_TangentRelation.hxx diff --git a/src/PrsDim/PrsDim_TypeOfAngle.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_TypeOfAngle.hxx similarity index 100% rename from src/PrsDim/PrsDim_TypeOfAngle.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_TypeOfAngle.hxx diff --git a/src/PrsDim/PrsDim_TypeOfAngleArrowVisibility.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_TypeOfAngleArrowVisibility.hxx similarity index 100% rename from src/PrsDim/PrsDim_TypeOfAngleArrowVisibility.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_TypeOfAngleArrowVisibility.hxx diff --git a/src/PrsDim/PrsDim_TypeOfDist.hxx b/src/Visualization/TKV3d/PrsDim/PrsDim_TypeOfDist.hxx similarity index 100% rename from src/PrsDim/PrsDim_TypeOfDist.hxx rename to src/Visualization/TKV3d/PrsDim/PrsDim_TypeOfDist.hxx diff --git a/src/Visualization/TKV3d/PrsMgr/FILES.cmake b/src/Visualization/TKV3d/PrsMgr/FILES.cmake new file mode 100644 index 0000000000..403a0afa95 --- /dev/null +++ b/src/Visualization/TKV3d/PrsMgr/FILES.cmake @@ -0,0 +1,18 @@ +# Source files for PrsMgr package +set(OCCT_PrsMgr_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_PrsMgr_FILES + PrsMgr_DisplayStatus.hxx + PrsMgr_ListOfPresentableObjects.hxx + PrsMgr_ListOfPresentations.hxx + PrsMgr_PresentableObject.cxx + PrsMgr_PresentableObject.hxx + PrsMgr_Presentation.cxx + PrsMgr_Presentation.hxx + PrsMgr_Presentation3d.hxx + PrsMgr_PresentationManager.cxx + PrsMgr_PresentationManager.hxx + PrsMgr_PresentationManager3d.hxx + PrsMgr_Presentations.hxx + PrsMgr_TypeOfPresentation3d.hxx +) diff --git a/src/PrsMgr/PrsMgr_DisplayStatus.hxx b/src/Visualization/TKV3d/PrsMgr/PrsMgr_DisplayStatus.hxx similarity index 100% rename from src/PrsMgr/PrsMgr_DisplayStatus.hxx rename to src/Visualization/TKV3d/PrsMgr/PrsMgr_DisplayStatus.hxx diff --git a/src/PrsMgr/PrsMgr_ListOfPresentableObjects.hxx b/src/Visualization/TKV3d/PrsMgr/PrsMgr_ListOfPresentableObjects.hxx similarity index 100% rename from src/PrsMgr/PrsMgr_ListOfPresentableObjects.hxx rename to src/Visualization/TKV3d/PrsMgr/PrsMgr_ListOfPresentableObjects.hxx diff --git a/src/PrsMgr/PrsMgr_ListOfPresentations.hxx b/src/Visualization/TKV3d/PrsMgr/PrsMgr_ListOfPresentations.hxx similarity index 100% rename from src/PrsMgr/PrsMgr_ListOfPresentations.hxx rename to src/Visualization/TKV3d/PrsMgr/PrsMgr_ListOfPresentations.hxx diff --git a/src/PrsMgr/PrsMgr_PresentableObject.cxx b/src/Visualization/TKV3d/PrsMgr/PrsMgr_PresentableObject.cxx similarity index 100% rename from src/PrsMgr/PrsMgr_PresentableObject.cxx rename to src/Visualization/TKV3d/PrsMgr/PrsMgr_PresentableObject.cxx diff --git a/src/PrsMgr/PrsMgr_PresentableObject.hxx b/src/Visualization/TKV3d/PrsMgr/PrsMgr_PresentableObject.hxx similarity index 100% rename from src/PrsMgr/PrsMgr_PresentableObject.hxx rename to src/Visualization/TKV3d/PrsMgr/PrsMgr_PresentableObject.hxx diff --git a/src/PrsMgr/PrsMgr_Presentation.cxx b/src/Visualization/TKV3d/PrsMgr/PrsMgr_Presentation.cxx similarity index 100% rename from src/PrsMgr/PrsMgr_Presentation.cxx rename to src/Visualization/TKV3d/PrsMgr/PrsMgr_Presentation.cxx diff --git a/src/PrsMgr/PrsMgr_Presentation.hxx b/src/Visualization/TKV3d/PrsMgr/PrsMgr_Presentation.hxx similarity index 100% rename from src/PrsMgr/PrsMgr_Presentation.hxx rename to src/Visualization/TKV3d/PrsMgr/PrsMgr_Presentation.hxx diff --git a/src/PrsMgr/PrsMgr_Presentation3d.hxx b/src/Visualization/TKV3d/PrsMgr/PrsMgr_Presentation3d.hxx similarity index 100% rename from src/PrsMgr/PrsMgr_Presentation3d.hxx rename to src/Visualization/TKV3d/PrsMgr/PrsMgr_Presentation3d.hxx diff --git a/src/PrsMgr/PrsMgr_PresentationManager.cxx b/src/Visualization/TKV3d/PrsMgr/PrsMgr_PresentationManager.cxx similarity index 100% rename from src/PrsMgr/PrsMgr_PresentationManager.cxx rename to src/Visualization/TKV3d/PrsMgr/PrsMgr_PresentationManager.cxx diff --git a/src/PrsMgr/PrsMgr_PresentationManager.hxx b/src/Visualization/TKV3d/PrsMgr/PrsMgr_PresentationManager.hxx similarity index 100% rename from src/PrsMgr/PrsMgr_PresentationManager.hxx rename to src/Visualization/TKV3d/PrsMgr/PrsMgr_PresentationManager.hxx diff --git a/src/PrsMgr/PrsMgr_PresentationManager3d.hxx b/src/Visualization/TKV3d/PrsMgr/PrsMgr_PresentationManager3d.hxx similarity index 100% rename from src/PrsMgr/PrsMgr_PresentationManager3d.hxx rename to src/Visualization/TKV3d/PrsMgr/PrsMgr_PresentationManager3d.hxx diff --git a/src/PrsMgr/PrsMgr_Presentations.hxx b/src/Visualization/TKV3d/PrsMgr/PrsMgr_Presentations.hxx similarity index 100% rename from src/PrsMgr/PrsMgr_Presentations.hxx rename to src/Visualization/TKV3d/PrsMgr/PrsMgr_Presentations.hxx diff --git a/src/PrsMgr/PrsMgr_TypeOfPresentation3d.hxx b/src/Visualization/TKV3d/PrsMgr/PrsMgr_TypeOfPresentation3d.hxx similarity index 100% rename from src/PrsMgr/PrsMgr_TypeOfPresentation3d.hxx rename to src/Visualization/TKV3d/PrsMgr/PrsMgr_TypeOfPresentation3d.hxx diff --git a/src/Visualization/TKV3d/Select3D/FILES.cmake b/src/Visualization/TKV3d/Select3D/FILES.cmake new file mode 100644 index 0000000000..ec34c40d63 --- /dev/null +++ b/src/Visualization/TKV3d/Select3D/FILES.cmake @@ -0,0 +1,47 @@ +# Source files for Select3D package +set(OCCT_Select3D_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_Select3D_FILES + Select3D_BndBox3d.hxx + Select3D_BVHBuilder3d.hxx + Select3D_BVHIndexBuffer.hxx + Select3D_EntitySequence.hxx + Select3D_IndexedMapOfEntity.hxx + Select3D_InteriorSensitivePointSet.cxx + Select3D_InteriorSensitivePointSet.hxx + Select3D_Pnt.hxx + Select3D_PointData.hxx + Select3D_SensitiveBox.cxx + Select3D_SensitiveBox.hxx + Select3D_SensitiveCircle.cxx + Select3D_SensitiveCircle.hxx + Select3D_SensitiveCurve.cxx + Select3D_SensitiveCurve.hxx + Select3D_SensitiveCylinder.cxx + Select3D_SensitiveCylinder.hxx + Select3D_SensitiveEntity.cxx + Select3D_SensitiveEntity.hxx + Select3D_SensitiveFace.cxx + Select3D_SensitiveFace.hxx + Select3D_SensitiveGroup.cxx + Select3D_SensitiveGroup.hxx + Select3D_SensitivePoint.cxx + Select3D_SensitivePoint.hxx + Select3D_SensitivePoly.cxx + Select3D_SensitivePoly.hxx + Select3D_SensitivePrimitiveArray.cxx + Select3D_SensitivePrimitiveArray.hxx + Select3D_SensitiveSegment.cxx + Select3D_SensitiveSegment.hxx + Select3D_SensitiveSet.cxx + Select3D_SensitiveSet.hxx + Select3D_SensitiveSphere.cxx + Select3D_SensitiveSphere.hxx + Select3D_SensitiveTriangle.cxx + Select3D_SensitiveTriangle.hxx + Select3D_SensitiveTriangulation.cxx + Select3D_SensitiveTriangulation.hxx + Select3D_SensitiveWire.cxx + Select3D_SensitiveWire.hxx + Select3D_TypeOfSensitivity.hxx +) diff --git a/src/Select3D/Select3D_BVHBuilder3d.hxx b/src/Visualization/TKV3d/Select3D/Select3D_BVHBuilder3d.hxx similarity index 100% rename from src/Select3D/Select3D_BVHBuilder3d.hxx rename to src/Visualization/TKV3d/Select3D/Select3D_BVHBuilder3d.hxx diff --git a/src/Select3D/Select3D_BVHIndexBuffer.hxx b/src/Visualization/TKV3d/Select3D/Select3D_BVHIndexBuffer.hxx similarity index 100% rename from src/Select3D/Select3D_BVHIndexBuffer.hxx rename to src/Visualization/TKV3d/Select3D/Select3D_BVHIndexBuffer.hxx diff --git a/src/Select3D/Select3D_BndBox3d.hxx b/src/Visualization/TKV3d/Select3D/Select3D_BndBox3d.hxx similarity index 100% rename from src/Select3D/Select3D_BndBox3d.hxx rename to src/Visualization/TKV3d/Select3D/Select3D_BndBox3d.hxx diff --git a/src/Select3D/Select3D_EntitySequence.hxx b/src/Visualization/TKV3d/Select3D/Select3D_EntitySequence.hxx similarity index 100% rename from src/Select3D/Select3D_EntitySequence.hxx rename to src/Visualization/TKV3d/Select3D/Select3D_EntitySequence.hxx diff --git a/src/Select3D/Select3D_IndexedMapOfEntity.hxx b/src/Visualization/TKV3d/Select3D/Select3D_IndexedMapOfEntity.hxx similarity index 100% rename from src/Select3D/Select3D_IndexedMapOfEntity.hxx rename to src/Visualization/TKV3d/Select3D/Select3D_IndexedMapOfEntity.hxx diff --git a/src/Select3D/Select3D_InteriorSensitivePointSet.cxx b/src/Visualization/TKV3d/Select3D/Select3D_InteriorSensitivePointSet.cxx similarity index 100% rename from src/Select3D/Select3D_InteriorSensitivePointSet.cxx rename to src/Visualization/TKV3d/Select3D/Select3D_InteriorSensitivePointSet.cxx diff --git a/src/Select3D/Select3D_InteriorSensitivePointSet.hxx b/src/Visualization/TKV3d/Select3D/Select3D_InteriorSensitivePointSet.hxx similarity index 100% rename from src/Select3D/Select3D_InteriorSensitivePointSet.hxx rename to src/Visualization/TKV3d/Select3D/Select3D_InteriorSensitivePointSet.hxx diff --git a/src/Select3D/Select3D_Pnt.hxx b/src/Visualization/TKV3d/Select3D/Select3D_Pnt.hxx similarity index 100% rename from src/Select3D/Select3D_Pnt.hxx rename to src/Visualization/TKV3d/Select3D/Select3D_Pnt.hxx diff --git a/src/Select3D/Select3D_PointData.hxx b/src/Visualization/TKV3d/Select3D/Select3D_PointData.hxx similarity index 100% rename from src/Select3D/Select3D_PointData.hxx rename to src/Visualization/TKV3d/Select3D/Select3D_PointData.hxx diff --git a/src/Select3D/Select3D_SensitiveBox.cxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveBox.cxx similarity index 100% rename from src/Select3D/Select3D_SensitiveBox.cxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveBox.cxx diff --git a/src/Select3D/Select3D_SensitiveBox.hxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveBox.hxx similarity index 100% rename from src/Select3D/Select3D_SensitiveBox.hxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveBox.hxx diff --git a/src/Select3D/Select3D_SensitiveCircle.cxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveCircle.cxx similarity index 100% rename from src/Select3D/Select3D_SensitiveCircle.cxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveCircle.cxx diff --git a/src/Select3D/Select3D_SensitiveCircle.hxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveCircle.hxx similarity index 100% rename from src/Select3D/Select3D_SensitiveCircle.hxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveCircle.hxx diff --git a/src/Select3D/Select3D_SensitiveCurve.cxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveCurve.cxx similarity index 100% rename from src/Select3D/Select3D_SensitiveCurve.cxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveCurve.cxx diff --git a/src/Select3D/Select3D_SensitiveCurve.hxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveCurve.hxx similarity index 100% rename from src/Select3D/Select3D_SensitiveCurve.hxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveCurve.hxx diff --git a/src/Select3D/Select3D_SensitiveCylinder.cxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveCylinder.cxx similarity index 100% rename from src/Select3D/Select3D_SensitiveCylinder.cxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveCylinder.cxx diff --git a/src/Select3D/Select3D_SensitiveCylinder.hxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveCylinder.hxx similarity index 100% rename from src/Select3D/Select3D_SensitiveCylinder.hxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveCylinder.hxx diff --git a/src/Select3D/Select3D_SensitiveEntity.cxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveEntity.cxx similarity index 100% rename from src/Select3D/Select3D_SensitiveEntity.cxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveEntity.cxx diff --git a/src/Select3D/Select3D_SensitiveEntity.hxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveEntity.hxx similarity index 100% rename from src/Select3D/Select3D_SensitiveEntity.hxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveEntity.hxx diff --git a/src/Select3D/Select3D_SensitiveFace.cxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveFace.cxx similarity index 100% rename from src/Select3D/Select3D_SensitiveFace.cxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveFace.cxx diff --git a/src/Select3D/Select3D_SensitiveFace.hxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveFace.hxx similarity index 100% rename from src/Select3D/Select3D_SensitiveFace.hxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveFace.hxx diff --git a/src/Select3D/Select3D_SensitiveGroup.cxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveGroup.cxx similarity index 100% rename from src/Select3D/Select3D_SensitiveGroup.cxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveGroup.cxx diff --git a/src/Select3D/Select3D_SensitiveGroup.hxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveGroup.hxx similarity index 100% rename from src/Select3D/Select3D_SensitiveGroup.hxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveGroup.hxx diff --git a/src/Select3D/Select3D_SensitivePoint.cxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitivePoint.cxx similarity index 100% rename from src/Select3D/Select3D_SensitivePoint.cxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitivePoint.cxx diff --git a/src/Select3D/Select3D_SensitivePoint.hxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitivePoint.hxx similarity index 100% rename from src/Select3D/Select3D_SensitivePoint.hxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitivePoint.hxx diff --git a/src/Select3D/Select3D_SensitivePoly.cxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitivePoly.cxx similarity index 100% rename from src/Select3D/Select3D_SensitivePoly.cxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitivePoly.cxx diff --git a/src/Select3D/Select3D_SensitivePoly.hxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitivePoly.hxx similarity index 100% rename from src/Select3D/Select3D_SensitivePoly.hxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitivePoly.hxx diff --git a/src/Select3D/Select3D_SensitivePrimitiveArray.cxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitivePrimitiveArray.cxx similarity index 100% rename from src/Select3D/Select3D_SensitivePrimitiveArray.cxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitivePrimitiveArray.cxx diff --git a/src/Select3D/Select3D_SensitivePrimitiveArray.hxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitivePrimitiveArray.hxx similarity index 100% rename from src/Select3D/Select3D_SensitivePrimitiveArray.hxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitivePrimitiveArray.hxx diff --git a/src/Select3D/Select3D_SensitiveSegment.cxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveSegment.cxx similarity index 100% rename from src/Select3D/Select3D_SensitiveSegment.cxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveSegment.cxx diff --git a/src/Select3D/Select3D_SensitiveSegment.hxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveSegment.hxx similarity index 100% rename from src/Select3D/Select3D_SensitiveSegment.hxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveSegment.hxx diff --git a/src/Select3D/Select3D_SensitiveSet.cxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveSet.cxx similarity index 100% rename from src/Select3D/Select3D_SensitiveSet.cxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveSet.cxx diff --git a/src/Select3D/Select3D_SensitiveSet.hxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveSet.hxx similarity index 100% rename from src/Select3D/Select3D_SensitiveSet.hxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveSet.hxx diff --git a/src/Select3D/Select3D_SensitiveSphere.cxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveSphere.cxx similarity index 100% rename from src/Select3D/Select3D_SensitiveSphere.cxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveSphere.cxx diff --git a/src/Select3D/Select3D_SensitiveSphere.hxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveSphere.hxx similarity index 100% rename from src/Select3D/Select3D_SensitiveSphere.hxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveSphere.hxx diff --git a/src/Select3D/Select3D_SensitiveTriangle.cxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveTriangle.cxx similarity index 100% rename from src/Select3D/Select3D_SensitiveTriangle.cxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveTriangle.cxx diff --git a/src/Select3D/Select3D_SensitiveTriangle.hxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveTriangle.hxx similarity index 100% rename from src/Select3D/Select3D_SensitiveTriangle.hxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveTriangle.hxx diff --git a/src/Select3D/Select3D_SensitiveTriangulation.cxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveTriangulation.cxx similarity index 100% rename from src/Select3D/Select3D_SensitiveTriangulation.cxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveTriangulation.cxx diff --git a/src/Select3D/Select3D_SensitiveTriangulation.hxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveTriangulation.hxx similarity index 100% rename from src/Select3D/Select3D_SensitiveTriangulation.hxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveTriangulation.hxx diff --git a/src/Select3D/Select3D_SensitiveWire.cxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveWire.cxx similarity index 100% rename from src/Select3D/Select3D_SensitiveWire.cxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveWire.cxx diff --git a/src/Select3D/Select3D_SensitiveWire.hxx b/src/Visualization/TKV3d/Select3D/Select3D_SensitiveWire.hxx similarity index 100% rename from src/Select3D/Select3D_SensitiveWire.hxx rename to src/Visualization/TKV3d/Select3D/Select3D_SensitiveWire.hxx diff --git a/src/Select3D/Select3D_TypeOfSensitivity.hxx b/src/Visualization/TKV3d/Select3D/Select3D_TypeOfSensitivity.hxx similarity index 100% rename from src/Select3D/Select3D_TypeOfSensitivity.hxx rename to src/Visualization/TKV3d/Select3D/Select3D_TypeOfSensitivity.hxx diff --git a/src/Visualization/TKV3d/SelectBasics/FILES.cmake b/src/Visualization/TKV3d/SelectBasics/FILES.cmake new file mode 100644 index 0000000000..ca64574e96 --- /dev/null +++ b/src/Visualization/TKV3d/SelectBasics/FILES.cmake @@ -0,0 +1,11 @@ +# Source files for SelectBasics package +set(OCCT_SelectBasics_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_SelectBasics_FILES + SelectBasics.hxx + SelectBasics_EntityOwner.hxx + SelectBasics_PickResult.hxx + SelectBasics_SelectingVolumeManager.cxx + SelectBasics_SelectingVolumeManager.hxx + SelectBasics_SensitiveEntity.hxx +) diff --git a/src/SelectBasics/SelectBasics.hxx b/src/Visualization/TKV3d/SelectBasics/SelectBasics.hxx similarity index 100% rename from src/SelectBasics/SelectBasics.hxx rename to src/Visualization/TKV3d/SelectBasics/SelectBasics.hxx diff --git a/src/SelectBasics/SelectBasics_EntityOwner.hxx b/src/Visualization/TKV3d/SelectBasics/SelectBasics_EntityOwner.hxx similarity index 100% rename from src/SelectBasics/SelectBasics_EntityOwner.hxx rename to src/Visualization/TKV3d/SelectBasics/SelectBasics_EntityOwner.hxx diff --git a/src/SelectBasics/SelectBasics_PickResult.hxx b/src/Visualization/TKV3d/SelectBasics/SelectBasics_PickResult.hxx similarity index 100% rename from src/SelectBasics/SelectBasics_PickResult.hxx rename to src/Visualization/TKV3d/SelectBasics/SelectBasics_PickResult.hxx diff --git a/src/SelectBasics/SelectBasics_SelectingVolumeManager.cxx b/src/Visualization/TKV3d/SelectBasics/SelectBasics_SelectingVolumeManager.cxx similarity index 100% rename from src/SelectBasics/SelectBasics_SelectingVolumeManager.cxx rename to src/Visualization/TKV3d/SelectBasics/SelectBasics_SelectingVolumeManager.cxx diff --git a/src/SelectBasics/SelectBasics_SelectingVolumeManager.hxx b/src/Visualization/TKV3d/SelectBasics/SelectBasics_SelectingVolumeManager.hxx similarity index 100% rename from src/SelectBasics/SelectBasics_SelectingVolumeManager.hxx rename to src/Visualization/TKV3d/SelectBasics/SelectBasics_SelectingVolumeManager.hxx diff --git a/src/SelectBasics/SelectBasics_SensitiveEntity.hxx b/src/Visualization/TKV3d/SelectBasics/SelectBasics_SensitiveEntity.hxx similarity index 100% rename from src/SelectBasics/SelectBasics_SensitiveEntity.hxx rename to src/Visualization/TKV3d/SelectBasics/SelectBasics_SensitiveEntity.hxx diff --git a/src/Visualization/TKV3d/SelectMgr/FILES.cmake b/src/Visualization/TKV3d/SelectMgr/FILES.cmake new file mode 100644 index 0000000000..801ad0e649 --- /dev/null +++ b/src/Visualization/TKV3d/SelectMgr/FILES.cmake @@ -0,0 +1,75 @@ +# Source files for SelectMgr package +set(OCCT_SelectMgr_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_SelectMgr_FILES + SelectMgr.cxx + SelectMgr.hxx + SelectMgr_AndFilter.cxx + SelectMgr_AndFilter.hxx + SelectMgr_AndOrFilter.cxx + SelectMgr_AndOrFilter.hxx + SelectMgr_AxisIntersector.cxx + SelectMgr_AxisIntersector.hxx + SelectMgr_BaseIntersector.cxx + SelectMgr_BaseIntersector.hxx + SelectMgr_BaseFrustum.cxx + SelectMgr_BaseFrustum.hxx + SelectMgr_BVHThreadPool.cxx + SelectMgr_BVHThreadPool.hxx + SelectMgr_CompositionFilter.cxx + SelectMgr_CompositionFilter.hxx + SelectMgr_EntityOwner.cxx + SelectMgr_EntityOwner.hxx + SelectMgr_Filter.cxx + SelectMgr_Filter.hxx + SelectMgr_FilterType.hxx + SelectMgr_Frustum.hxx + SelectMgr_Frustum.lxx + SelectMgr_FrustumBuilder.cxx + SelectMgr_FrustumBuilder.hxx + SelectMgr_IndexedDataMapOfOwnerCriterion.hxx + SelectMgr_IndexedMapOfOwner.hxx + SelectMgr_ListIteratorOfListOfFilter.hxx + SelectMgr_ListOfFilter.hxx + SelectMgr_OrFilter.cxx + SelectMgr_OrFilter.hxx + SelectMgr_PickingStrategy.hxx + SelectMgr_RectangularFrustum.cxx + SelectMgr_RectangularFrustum.hxx + SelectMgr_SelectableObject.cxx + SelectMgr_SelectableObject.hxx + SelectMgr_SelectableObjectSet.cxx + SelectMgr_SelectableObjectSet.hxx + SelectMgr_SelectingVolumeManager.cxx + SelectMgr_SelectingVolumeManager.hxx + SelectMgr_Selection.cxx + SelectMgr_Selection.hxx + SelectMgr_SelectionImageFiller.cxx + SelectMgr_SelectionImageFiller.hxx + SelectMgr_SelectionManager.cxx + SelectMgr_SelectionManager.hxx + SelectMgr_SelectionType.hxx + SelectMgr_SensitiveEntity.cxx + SelectMgr_SensitiveEntity.hxx + SelectMgr_SensitiveEntitySet.cxx + SelectMgr_SensitiveEntitySet.hxx + SelectMgr_SequenceOfOwner.hxx + SelectMgr_SequenceOfSelection.hxx + SelectMgr_SortCriterion.hxx + SelectMgr_StateOfSelection.hxx + SelectMgr_ToleranceMap.hxx + SelectMgr_ToleranceMap.cxx + SelectMgr_TriangularFrustum.cxx + SelectMgr_TriangularFrustum.hxx + SelectMgr_TriangularFrustumSet.cxx + SelectMgr_TriangularFrustumSet.hxx + SelectMgr_TypeOfBVHUpdate.hxx + SelectMgr_TypeOfDepthTolerance.hxx + SelectMgr_TypeOfUpdate.hxx + SelectMgr_VectorTypes.hxx + SelectMgr_ViewClipRange.cxx + SelectMgr_ViewClipRange.hxx + SelectMgr_ViewerSelector.cxx + SelectMgr_ViewerSelector.hxx + SelectMgr_ViewerSelector3d.hxx +) diff --git a/src/SelectMgr/SelectMgr.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr.cxx similarity index 100% rename from src/SelectMgr/SelectMgr.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr.cxx diff --git a/src/SelectMgr/SelectMgr.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr.hxx similarity index 100% rename from src/SelectMgr/SelectMgr.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr.hxx diff --git a/src/SelectMgr/SelectMgr_AndFilter.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_AndFilter.cxx similarity index 100% rename from src/SelectMgr/SelectMgr_AndFilter.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_AndFilter.cxx diff --git a/src/SelectMgr/SelectMgr_AndFilter.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_AndFilter.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_AndFilter.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_AndFilter.hxx diff --git a/src/SelectMgr/SelectMgr_AndOrFilter.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_AndOrFilter.cxx similarity index 100% rename from src/SelectMgr/SelectMgr_AndOrFilter.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_AndOrFilter.cxx diff --git a/src/SelectMgr/SelectMgr_AndOrFilter.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_AndOrFilter.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_AndOrFilter.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_AndOrFilter.hxx diff --git a/src/SelectMgr/SelectMgr_AxisIntersector.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_AxisIntersector.cxx similarity index 100% rename from src/SelectMgr/SelectMgr_AxisIntersector.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_AxisIntersector.cxx diff --git a/src/SelectMgr/SelectMgr_AxisIntersector.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_AxisIntersector.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_AxisIntersector.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_AxisIntersector.hxx diff --git a/src/SelectMgr/SelectMgr_BVHThreadPool.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_BVHThreadPool.cxx similarity index 100% rename from src/SelectMgr/SelectMgr_BVHThreadPool.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_BVHThreadPool.cxx diff --git a/src/SelectMgr/SelectMgr_BVHThreadPool.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_BVHThreadPool.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_BVHThreadPool.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_BVHThreadPool.hxx diff --git a/src/SelectMgr/SelectMgr_BaseFrustum.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_BaseFrustum.cxx similarity index 100% rename from src/SelectMgr/SelectMgr_BaseFrustum.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_BaseFrustum.cxx diff --git a/src/SelectMgr/SelectMgr_BaseFrustum.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_BaseFrustum.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_BaseFrustum.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_BaseFrustum.hxx diff --git a/src/SelectMgr/SelectMgr_BaseIntersector.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_BaseIntersector.cxx similarity index 100% rename from src/SelectMgr/SelectMgr_BaseIntersector.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_BaseIntersector.cxx diff --git a/src/SelectMgr/SelectMgr_BaseIntersector.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_BaseIntersector.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_BaseIntersector.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_BaseIntersector.hxx diff --git a/src/SelectMgr/SelectMgr_CompositionFilter.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_CompositionFilter.cxx similarity index 100% rename from src/SelectMgr/SelectMgr_CompositionFilter.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_CompositionFilter.cxx diff --git a/src/SelectMgr/SelectMgr_CompositionFilter.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_CompositionFilter.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_CompositionFilter.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_CompositionFilter.hxx diff --git a/src/SelectMgr/SelectMgr_EntityOwner.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_EntityOwner.cxx similarity index 100% rename from src/SelectMgr/SelectMgr_EntityOwner.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_EntityOwner.cxx diff --git a/src/SelectMgr/SelectMgr_EntityOwner.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_EntityOwner.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_EntityOwner.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_EntityOwner.hxx diff --git a/src/SelectMgr/SelectMgr_Filter.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_Filter.cxx similarity index 100% rename from src/SelectMgr/SelectMgr_Filter.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_Filter.cxx diff --git a/src/SelectMgr/SelectMgr_Filter.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_Filter.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_Filter.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_Filter.hxx diff --git a/src/SelectMgr/SelectMgr_FilterType.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_FilterType.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_FilterType.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_FilterType.hxx diff --git a/src/SelectMgr/SelectMgr_Frustum.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_Frustum.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_Frustum.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_Frustum.hxx diff --git a/src/SelectMgr/SelectMgr_Frustum.lxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_Frustum.lxx similarity index 100% rename from src/SelectMgr/SelectMgr_Frustum.lxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_Frustum.lxx diff --git a/src/SelectMgr/SelectMgr_FrustumBuilder.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_FrustumBuilder.cxx similarity index 100% rename from src/SelectMgr/SelectMgr_FrustumBuilder.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_FrustumBuilder.cxx diff --git a/src/SelectMgr/SelectMgr_FrustumBuilder.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_FrustumBuilder.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_FrustumBuilder.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_FrustumBuilder.hxx diff --git a/src/SelectMgr/SelectMgr_IndexedDataMapOfOwnerCriterion.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_IndexedDataMapOfOwnerCriterion.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_IndexedDataMapOfOwnerCriterion.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_IndexedDataMapOfOwnerCriterion.hxx diff --git a/src/SelectMgr/SelectMgr_IndexedMapOfOwner.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_IndexedMapOfOwner.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_IndexedMapOfOwner.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_IndexedMapOfOwner.hxx diff --git a/src/SelectMgr/SelectMgr_ListIteratorOfListOfFilter.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_ListIteratorOfListOfFilter.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_ListIteratorOfListOfFilter.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_ListIteratorOfListOfFilter.hxx diff --git a/src/SelectMgr/SelectMgr_ListOfFilter.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_ListOfFilter.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_ListOfFilter.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_ListOfFilter.hxx diff --git a/src/SelectMgr/SelectMgr_OrFilter.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_OrFilter.cxx similarity index 100% rename from src/SelectMgr/SelectMgr_OrFilter.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_OrFilter.cxx diff --git a/src/SelectMgr/SelectMgr_OrFilter.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_OrFilter.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_OrFilter.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_OrFilter.hxx diff --git a/src/SelectMgr/SelectMgr_PickingStrategy.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_PickingStrategy.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_PickingStrategy.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_PickingStrategy.hxx diff --git a/src/SelectMgr/SelectMgr_RectangularFrustum.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_RectangularFrustum.cxx similarity index 100% rename from src/SelectMgr/SelectMgr_RectangularFrustum.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_RectangularFrustum.cxx diff --git a/src/SelectMgr/SelectMgr_RectangularFrustum.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_RectangularFrustum.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_RectangularFrustum.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_RectangularFrustum.hxx diff --git a/src/SelectMgr/SelectMgr_SelectableObject.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_SelectableObject.cxx similarity index 100% rename from src/SelectMgr/SelectMgr_SelectableObject.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_SelectableObject.cxx diff --git a/src/SelectMgr/SelectMgr_SelectableObject.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_SelectableObject.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_SelectableObject.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_SelectableObject.hxx diff --git a/src/SelectMgr/SelectMgr_SelectableObjectSet.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_SelectableObjectSet.cxx similarity index 100% rename from src/SelectMgr/SelectMgr_SelectableObjectSet.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_SelectableObjectSet.cxx diff --git a/src/SelectMgr/SelectMgr_SelectableObjectSet.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_SelectableObjectSet.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_SelectableObjectSet.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_SelectableObjectSet.hxx diff --git a/src/SelectMgr/SelectMgr_SelectingVolumeManager.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_SelectingVolumeManager.cxx similarity index 100% rename from src/SelectMgr/SelectMgr_SelectingVolumeManager.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_SelectingVolumeManager.cxx diff --git a/src/SelectMgr/SelectMgr_SelectingVolumeManager.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_SelectingVolumeManager.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_SelectingVolumeManager.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_SelectingVolumeManager.hxx diff --git a/src/SelectMgr/SelectMgr_Selection.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_Selection.cxx similarity index 100% rename from src/SelectMgr/SelectMgr_Selection.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_Selection.cxx diff --git a/src/SelectMgr/SelectMgr_Selection.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_Selection.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_Selection.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_Selection.hxx diff --git a/src/SelectMgr/SelectMgr_SelectionImageFiller.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_SelectionImageFiller.cxx similarity index 100% rename from src/SelectMgr/SelectMgr_SelectionImageFiller.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_SelectionImageFiller.cxx diff --git a/src/SelectMgr/SelectMgr_SelectionImageFiller.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_SelectionImageFiller.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_SelectionImageFiller.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_SelectionImageFiller.hxx diff --git a/src/SelectMgr/SelectMgr_SelectionManager.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_SelectionManager.cxx similarity index 100% rename from src/SelectMgr/SelectMgr_SelectionManager.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_SelectionManager.cxx diff --git a/src/SelectMgr/SelectMgr_SelectionManager.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_SelectionManager.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_SelectionManager.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_SelectionManager.hxx diff --git a/src/SelectMgr/SelectMgr_SelectionType.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_SelectionType.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_SelectionType.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_SelectionType.hxx diff --git a/src/SelectMgr/SelectMgr_SensitiveEntity.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_SensitiveEntity.cxx similarity index 100% rename from src/SelectMgr/SelectMgr_SensitiveEntity.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_SensitiveEntity.cxx diff --git a/src/SelectMgr/SelectMgr_SensitiveEntity.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_SensitiveEntity.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_SensitiveEntity.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_SensitiveEntity.hxx diff --git a/src/SelectMgr/SelectMgr_SensitiveEntitySet.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_SensitiveEntitySet.cxx similarity index 100% rename from src/SelectMgr/SelectMgr_SensitiveEntitySet.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_SensitiveEntitySet.cxx diff --git a/src/SelectMgr/SelectMgr_SensitiveEntitySet.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_SensitiveEntitySet.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_SensitiveEntitySet.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_SensitiveEntitySet.hxx diff --git a/src/SelectMgr/SelectMgr_SequenceOfOwner.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_SequenceOfOwner.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_SequenceOfOwner.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_SequenceOfOwner.hxx diff --git a/src/SelectMgr/SelectMgr_SequenceOfSelection.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_SequenceOfSelection.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_SequenceOfSelection.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_SequenceOfSelection.hxx diff --git a/src/SelectMgr/SelectMgr_SortCriterion.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_SortCriterion.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_SortCriterion.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_SortCriterion.hxx diff --git a/src/SelectMgr/SelectMgr_StateOfSelection.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_StateOfSelection.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_StateOfSelection.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_StateOfSelection.hxx diff --git a/src/SelectMgr/SelectMgr_ToleranceMap.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_ToleranceMap.cxx similarity index 100% rename from src/SelectMgr/SelectMgr_ToleranceMap.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_ToleranceMap.cxx diff --git a/src/SelectMgr/SelectMgr_ToleranceMap.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_ToleranceMap.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_ToleranceMap.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_ToleranceMap.hxx diff --git a/src/SelectMgr/SelectMgr_TriangularFrustum.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_TriangularFrustum.cxx similarity index 100% rename from src/SelectMgr/SelectMgr_TriangularFrustum.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_TriangularFrustum.cxx diff --git a/src/SelectMgr/SelectMgr_TriangularFrustum.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_TriangularFrustum.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_TriangularFrustum.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_TriangularFrustum.hxx diff --git a/src/SelectMgr/SelectMgr_TriangularFrustumSet.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_TriangularFrustumSet.cxx similarity index 100% rename from src/SelectMgr/SelectMgr_TriangularFrustumSet.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_TriangularFrustumSet.cxx diff --git a/src/SelectMgr/SelectMgr_TriangularFrustumSet.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_TriangularFrustumSet.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_TriangularFrustumSet.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_TriangularFrustumSet.hxx diff --git a/src/SelectMgr/SelectMgr_TypeOfBVHUpdate.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_TypeOfBVHUpdate.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_TypeOfBVHUpdate.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_TypeOfBVHUpdate.hxx diff --git a/src/SelectMgr/SelectMgr_TypeOfDepthTolerance.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_TypeOfDepthTolerance.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_TypeOfDepthTolerance.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_TypeOfDepthTolerance.hxx diff --git a/src/SelectMgr/SelectMgr_TypeOfUpdate.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_TypeOfUpdate.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_TypeOfUpdate.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_TypeOfUpdate.hxx diff --git a/src/SelectMgr/SelectMgr_VectorTypes.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_VectorTypes.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_VectorTypes.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_VectorTypes.hxx diff --git a/src/SelectMgr/SelectMgr_ViewClipRange.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_ViewClipRange.cxx similarity index 100% rename from src/SelectMgr/SelectMgr_ViewClipRange.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_ViewClipRange.cxx diff --git a/src/SelectMgr/SelectMgr_ViewClipRange.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_ViewClipRange.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_ViewClipRange.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_ViewClipRange.hxx diff --git a/src/SelectMgr/SelectMgr_ViewerSelector.cxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_ViewerSelector.cxx similarity index 100% rename from src/SelectMgr/SelectMgr_ViewerSelector.cxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_ViewerSelector.cxx diff --git a/src/SelectMgr/SelectMgr_ViewerSelector.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_ViewerSelector.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_ViewerSelector.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_ViewerSelector.hxx diff --git a/src/SelectMgr/SelectMgr_ViewerSelector3d.hxx b/src/Visualization/TKV3d/SelectMgr/SelectMgr_ViewerSelector3d.hxx similarity index 100% rename from src/SelectMgr/SelectMgr_ViewerSelector3d.hxx rename to src/Visualization/TKV3d/SelectMgr/SelectMgr_ViewerSelector3d.hxx diff --git a/src/Visualization/TKV3d/StdPrs/FILES.cmake b/src/Visualization/TKV3d/StdPrs/FILES.cmake new file mode 100644 index 0000000000..fd64677b6c --- /dev/null +++ b/src/Visualization/TKV3d/StdPrs/FILES.cmake @@ -0,0 +1,57 @@ +# Source files for StdPrs package +set(OCCT_StdPrs_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StdPrs_FILES + StdPrs_BRepFont.cxx + StdPrs_BRepFont.hxx + StdPrs_BRepTextBuilder.cxx + StdPrs_BRepTextBuilder.hxx + StdPrs_BndBox.hxx + StdPrs_Curve.cxx + StdPrs_Curve.hxx + StdPrs_DeflectionCurve.cxx + StdPrs_DeflectionCurve.hxx + StdPrs_HLRPolyShape.cxx + StdPrs_HLRPolyShape.hxx + StdPrs_HLRShape.cxx + StdPrs_HLRShape.hxx + StdPrs_HLRShapeI.cxx + StdPrs_HLRShapeI.hxx + StdPrs_HLRToolShape.cxx + StdPrs_HLRToolShape.hxx + StdPrs_Isolines.cxx + StdPrs_Isolines.hxx + StdPrs_Plane.cxx + StdPrs_Plane.hxx + StdPrs_Point.hxx + StdPrs_PoleCurve.cxx + StdPrs_PoleCurve.hxx + StdPrs_ShadedShape.cxx + StdPrs_ShadedShape.hxx + StdPrs_ShadedSurface.cxx + StdPrs_ShadedSurface.hxx + StdPrs_ShapeTool.cxx + StdPrs_ShapeTool.hxx + StdPrs_ToolPoint.cxx + StdPrs_ToolPoint.hxx + StdPrs_ToolRFace.cxx + StdPrs_ToolRFace.hxx + StdPrs_ToolTriangulatedShape.cxx + StdPrs_ToolTriangulatedShape.hxx + StdPrs_ToolVertex.cxx + StdPrs_ToolVertex.hxx + StdPrs_Vertex.hxx + StdPrs_Volume.hxx + StdPrs_WFDeflectionRestrictedFace.cxx + StdPrs_WFDeflectionRestrictedFace.hxx + StdPrs_WFDeflectionSurface.cxx + StdPrs_WFDeflectionSurface.hxx + StdPrs_WFPoleSurface.cxx + StdPrs_WFPoleSurface.hxx + StdPrs_WFRestrictedFace.cxx + StdPrs_WFRestrictedFace.hxx + StdPrs_WFShape.cxx + StdPrs_WFShape.hxx + StdPrs_WFSurface.cxx + StdPrs_WFSurface.hxx +) diff --git a/src/StdPrs/StdPrs_BRepFont.cxx b/src/Visualization/TKV3d/StdPrs/StdPrs_BRepFont.cxx similarity index 100% rename from src/StdPrs/StdPrs_BRepFont.cxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_BRepFont.cxx diff --git a/src/StdPrs/StdPrs_BRepFont.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_BRepFont.hxx similarity index 100% rename from src/StdPrs/StdPrs_BRepFont.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_BRepFont.hxx diff --git a/src/StdPrs/StdPrs_BRepTextBuilder.cxx b/src/Visualization/TKV3d/StdPrs/StdPrs_BRepTextBuilder.cxx similarity index 100% rename from src/StdPrs/StdPrs_BRepTextBuilder.cxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_BRepTextBuilder.cxx diff --git a/src/StdPrs/StdPrs_BRepTextBuilder.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_BRepTextBuilder.hxx similarity index 100% rename from src/StdPrs/StdPrs_BRepTextBuilder.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_BRepTextBuilder.hxx diff --git a/src/StdPrs/StdPrs_BndBox.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_BndBox.hxx similarity index 100% rename from src/StdPrs/StdPrs_BndBox.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_BndBox.hxx diff --git a/src/StdPrs/StdPrs_Curve.cxx b/src/Visualization/TKV3d/StdPrs/StdPrs_Curve.cxx similarity index 100% rename from src/StdPrs/StdPrs_Curve.cxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_Curve.cxx diff --git a/src/StdPrs/StdPrs_Curve.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_Curve.hxx similarity index 100% rename from src/StdPrs/StdPrs_Curve.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_Curve.hxx diff --git a/src/StdPrs/StdPrs_DeflectionCurve.cxx b/src/Visualization/TKV3d/StdPrs/StdPrs_DeflectionCurve.cxx similarity index 100% rename from src/StdPrs/StdPrs_DeflectionCurve.cxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_DeflectionCurve.cxx diff --git a/src/StdPrs/StdPrs_DeflectionCurve.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_DeflectionCurve.hxx similarity index 100% rename from src/StdPrs/StdPrs_DeflectionCurve.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_DeflectionCurve.hxx diff --git a/src/StdPrs/StdPrs_HLRPolyShape.cxx b/src/Visualization/TKV3d/StdPrs/StdPrs_HLRPolyShape.cxx similarity index 100% rename from src/StdPrs/StdPrs_HLRPolyShape.cxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_HLRPolyShape.cxx diff --git a/src/StdPrs/StdPrs_HLRPolyShape.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_HLRPolyShape.hxx similarity index 100% rename from src/StdPrs/StdPrs_HLRPolyShape.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_HLRPolyShape.hxx diff --git a/src/StdPrs/StdPrs_HLRShape.cxx b/src/Visualization/TKV3d/StdPrs/StdPrs_HLRShape.cxx similarity index 100% rename from src/StdPrs/StdPrs_HLRShape.cxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_HLRShape.cxx diff --git a/src/StdPrs/StdPrs_HLRShape.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_HLRShape.hxx similarity index 100% rename from src/StdPrs/StdPrs_HLRShape.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_HLRShape.hxx diff --git a/src/StdPrs/StdPrs_HLRShapeI.cxx b/src/Visualization/TKV3d/StdPrs/StdPrs_HLRShapeI.cxx similarity index 100% rename from src/StdPrs/StdPrs_HLRShapeI.cxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_HLRShapeI.cxx diff --git a/src/StdPrs/StdPrs_HLRShapeI.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_HLRShapeI.hxx similarity index 100% rename from src/StdPrs/StdPrs_HLRShapeI.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_HLRShapeI.hxx diff --git a/src/StdPrs/StdPrs_HLRToolShape.cxx b/src/Visualization/TKV3d/StdPrs/StdPrs_HLRToolShape.cxx similarity index 100% rename from src/StdPrs/StdPrs_HLRToolShape.cxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_HLRToolShape.cxx diff --git a/src/StdPrs/StdPrs_HLRToolShape.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_HLRToolShape.hxx similarity index 100% rename from src/StdPrs/StdPrs_HLRToolShape.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_HLRToolShape.hxx diff --git a/src/StdPrs/StdPrs_Isolines.cxx b/src/Visualization/TKV3d/StdPrs/StdPrs_Isolines.cxx similarity index 100% rename from src/StdPrs/StdPrs_Isolines.cxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_Isolines.cxx diff --git a/src/StdPrs/StdPrs_Isolines.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_Isolines.hxx similarity index 100% rename from src/StdPrs/StdPrs_Isolines.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_Isolines.hxx diff --git a/src/StdPrs/StdPrs_Plane.cxx b/src/Visualization/TKV3d/StdPrs/StdPrs_Plane.cxx similarity index 100% rename from src/StdPrs/StdPrs_Plane.cxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_Plane.cxx diff --git a/src/StdPrs/StdPrs_Plane.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_Plane.hxx similarity index 100% rename from src/StdPrs/StdPrs_Plane.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_Plane.hxx diff --git a/src/StdPrs/StdPrs_Point.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_Point.hxx similarity index 100% rename from src/StdPrs/StdPrs_Point.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_Point.hxx diff --git a/src/StdPrs/StdPrs_PoleCurve.cxx b/src/Visualization/TKV3d/StdPrs/StdPrs_PoleCurve.cxx similarity index 100% rename from src/StdPrs/StdPrs_PoleCurve.cxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_PoleCurve.cxx diff --git a/src/StdPrs/StdPrs_PoleCurve.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_PoleCurve.hxx similarity index 100% rename from src/StdPrs/StdPrs_PoleCurve.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_PoleCurve.hxx diff --git a/src/StdPrs/StdPrs_ShadedShape.cxx b/src/Visualization/TKV3d/StdPrs/StdPrs_ShadedShape.cxx similarity index 100% rename from src/StdPrs/StdPrs_ShadedShape.cxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_ShadedShape.cxx diff --git a/src/StdPrs/StdPrs_ShadedShape.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_ShadedShape.hxx similarity index 100% rename from src/StdPrs/StdPrs_ShadedShape.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_ShadedShape.hxx diff --git a/src/StdPrs/StdPrs_ShadedSurface.cxx b/src/Visualization/TKV3d/StdPrs/StdPrs_ShadedSurface.cxx similarity index 100% rename from src/StdPrs/StdPrs_ShadedSurface.cxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_ShadedSurface.cxx diff --git a/src/StdPrs/StdPrs_ShadedSurface.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_ShadedSurface.hxx similarity index 100% rename from src/StdPrs/StdPrs_ShadedSurface.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_ShadedSurface.hxx diff --git a/src/StdPrs/StdPrs_ShapeTool.cxx b/src/Visualization/TKV3d/StdPrs/StdPrs_ShapeTool.cxx similarity index 100% rename from src/StdPrs/StdPrs_ShapeTool.cxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_ShapeTool.cxx diff --git a/src/StdPrs/StdPrs_ShapeTool.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_ShapeTool.hxx similarity index 100% rename from src/StdPrs/StdPrs_ShapeTool.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_ShapeTool.hxx diff --git a/src/StdPrs/StdPrs_ToolPoint.cxx b/src/Visualization/TKV3d/StdPrs/StdPrs_ToolPoint.cxx similarity index 100% rename from src/StdPrs/StdPrs_ToolPoint.cxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_ToolPoint.cxx diff --git a/src/StdPrs/StdPrs_ToolPoint.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_ToolPoint.hxx similarity index 100% rename from src/StdPrs/StdPrs_ToolPoint.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_ToolPoint.hxx diff --git a/src/StdPrs/StdPrs_ToolRFace.cxx b/src/Visualization/TKV3d/StdPrs/StdPrs_ToolRFace.cxx similarity index 100% rename from src/StdPrs/StdPrs_ToolRFace.cxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_ToolRFace.cxx diff --git a/src/StdPrs/StdPrs_ToolRFace.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_ToolRFace.hxx similarity index 100% rename from src/StdPrs/StdPrs_ToolRFace.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_ToolRFace.hxx diff --git a/src/StdPrs/StdPrs_ToolTriangulatedShape.cxx b/src/Visualization/TKV3d/StdPrs/StdPrs_ToolTriangulatedShape.cxx similarity index 100% rename from src/StdPrs/StdPrs_ToolTriangulatedShape.cxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_ToolTriangulatedShape.cxx diff --git a/src/StdPrs/StdPrs_ToolTriangulatedShape.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_ToolTriangulatedShape.hxx similarity index 100% rename from src/StdPrs/StdPrs_ToolTriangulatedShape.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_ToolTriangulatedShape.hxx diff --git a/src/StdPrs/StdPrs_ToolVertex.cxx b/src/Visualization/TKV3d/StdPrs/StdPrs_ToolVertex.cxx similarity index 100% rename from src/StdPrs/StdPrs_ToolVertex.cxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_ToolVertex.cxx diff --git a/src/StdPrs/StdPrs_ToolVertex.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_ToolVertex.hxx similarity index 100% rename from src/StdPrs/StdPrs_ToolVertex.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_ToolVertex.hxx diff --git a/src/StdPrs/StdPrs_Vertex.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_Vertex.hxx similarity index 100% rename from src/StdPrs/StdPrs_Vertex.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_Vertex.hxx diff --git a/src/StdPrs/StdPrs_Volume.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_Volume.hxx similarity index 100% rename from src/StdPrs/StdPrs_Volume.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_Volume.hxx diff --git a/src/StdPrs/StdPrs_WFDeflectionRestrictedFace.cxx b/src/Visualization/TKV3d/StdPrs/StdPrs_WFDeflectionRestrictedFace.cxx similarity index 100% rename from src/StdPrs/StdPrs_WFDeflectionRestrictedFace.cxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_WFDeflectionRestrictedFace.cxx diff --git a/src/StdPrs/StdPrs_WFDeflectionRestrictedFace.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_WFDeflectionRestrictedFace.hxx similarity index 100% rename from src/StdPrs/StdPrs_WFDeflectionRestrictedFace.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_WFDeflectionRestrictedFace.hxx diff --git a/src/StdPrs/StdPrs_WFDeflectionSurface.cxx b/src/Visualization/TKV3d/StdPrs/StdPrs_WFDeflectionSurface.cxx similarity index 100% rename from src/StdPrs/StdPrs_WFDeflectionSurface.cxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_WFDeflectionSurface.cxx diff --git a/src/StdPrs/StdPrs_WFDeflectionSurface.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_WFDeflectionSurface.hxx similarity index 100% rename from src/StdPrs/StdPrs_WFDeflectionSurface.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_WFDeflectionSurface.hxx diff --git a/src/StdPrs/StdPrs_WFPoleSurface.cxx b/src/Visualization/TKV3d/StdPrs/StdPrs_WFPoleSurface.cxx similarity index 100% rename from src/StdPrs/StdPrs_WFPoleSurface.cxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_WFPoleSurface.cxx diff --git a/src/StdPrs/StdPrs_WFPoleSurface.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_WFPoleSurface.hxx similarity index 100% rename from src/StdPrs/StdPrs_WFPoleSurface.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_WFPoleSurface.hxx diff --git a/src/StdPrs/StdPrs_WFRestrictedFace.cxx b/src/Visualization/TKV3d/StdPrs/StdPrs_WFRestrictedFace.cxx similarity index 100% rename from src/StdPrs/StdPrs_WFRestrictedFace.cxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_WFRestrictedFace.cxx diff --git a/src/StdPrs/StdPrs_WFRestrictedFace.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_WFRestrictedFace.hxx similarity index 100% rename from src/StdPrs/StdPrs_WFRestrictedFace.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_WFRestrictedFace.hxx diff --git a/src/StdPrs/StdPrs_WFShape.cxx b/src/Visualization/TKV3d/StdPrs/StdPrs_WFShape.cxx similarity index 100% rename from src/StdPrs/StdPrs_WFShape.cxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_WFShape.cxx diff --git a/src/StdPrs/StdPrs_WFShape.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_WFShape.hxx similarity index 100% rename from src/StdPrs/StdPrs_WFShape.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_WFShape.hxx diff --git a/src/StdPrs/StdPrs_WFSurface.cxx b/src/Visualization/TKV3d/StdPrs/StdPrs_WFSurface.cxx similarity index 100% rename from src/StdPrs/StdPrs_WFSurface.cxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_WFSurface.cxx diff --git a/src/StdPrs/StdPrs_WFSurface.hxx b/src/Visualization/TKV3d/StdPrs/StdPrs_WFSurface.hxx similarity index 100% rename from src/StdPrs/StdPrs_WFSurface.hxx rename to src/Visualization/TKV3d/StdPrs/StdPrs_WFSurface.hxx diff --git a/src/Visualization/TKV3d/StdSelect/FILES.cmake b/src/Visualization/TKV3d/StdSelect/FILES.cmake new file mode 100644 index 0000000000..9a9b5af9ad --- /dev/null +++ b/src/Visualization/TKV3d/StdSelect/FILES.cmake @@ -0,0 +1,23 @@ +# Source files for StdSelect package +set(OCCT_StdSelect_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_StdSelect_FILES + StdSelect.cxx + StdSelect.hxx + StdSelect_BRepOwner.cxx + StdSelect_BRepOwner.hxx + StdSelect_BRepSelectionTool.cxx + StdSelect_BRepSelectionTool.hxx + StdSelect_EdgeFilter.cxx + StdSelect_EdgeFilter.hxx + StdSelect_FaceFilter.cxx + StdSelect_FaceFilter.hxx + StdSelect_Shape.cxx + StdSelect_Shape.hxx + StdSelect_ShapeTypeFilter.cxx + StdSelect_ShapeTypeFilter.hxx + StdSelect_TypeOfEdge.hxx + StdSelect_TypeOfFace.hxx + StdSelect_TypeOfSelectionImage.hxx + StdSelect_ViewerSelector3d.hxx +) diff --git a/src/StdSelect/StdSelect.cxx b/src/Visualization/TKV3d/StdSelect/StdSelect.cxx similarity index 100% rename from src/StdSelect/StdSelect.cxx rename to src/Visualization/TKV3d/StdSelect/StdSelect.cxx diff --git a/src/StdSelect/StdSelect.hxx b/src/Visualization/TKV3d/StdSelect/StdSelect.hxx similarity index 100% rename from src/StdSelect/StdSelect.hxx rename to src/Visualization/TKV3d/StdSelect/StdSelect.hxx diff --git a/src/StdSelect/StdSelect_BRepOwner.cxx b/src/Visualization/TKV3d/StdSelect/StdSelect_BRepOwner.cxx similarity index 100% rename from src/StdSelect/StdSelect_BRepOwner.cxx rename to src/Visualization/TKV3d/StdSelect/StdSelect_BRepOwner.cxx diff --git a/src/StdSelect/StdSelect_BRepOwner.hxx b/src/Visualization/TKV3d/StdSelect/StdSelect_BRepOwner.hxx similarity index 100% rename from src/StdSelect/StdSelect_BRepOwner.hxx rename to src/Visualization/TKV3d/StdSelect/StdSelect_BRepOwner.hxx diff --git a/src/StdSelect/StdSelect_BRepSelectionTool.cxx b/src/Visualization/TKV3d/StdSelect/StdSelect_BRepSelectionTool.cxx similarity index 100% rename from src/StdSelect/StdSelect_BRepSelectionTool.cxx rename to src/Visualization/TKV3d/StdSelect/StdSelect_BRepSelectionTool.cxx diff --git a/src/StdSelect/StdSelect_BRepSelectionTool.hxx b/src/Visualization/TKV3d/StdSelect/StdSelect_BRepSelectionTool.hxx similarity index 100% rename from src/StdSelect/StdSelect_BRepSelectionTool.hxx rename to src/Visualization/TKV3d/StdSelect/StdSelect_BRepSelectionTool.hxx diff --git a/src/StdSelect/StdSelect_EdgeFilter.cxx b/src/Visualization/TKV3d/StdSelect/StdSelect_EdgeFilter.cxx similarity index 100% rename from src/StdSelect/StdSelect_EdgeFilter.cxx rename to src/Visualization/TKV3d/StdSelect/StdSelect_EdgeFilter.cxx diff --git a/src/StdSelect/StdSelect_EdgeFilter.hxx b/src/Visualization/TKV3d/StdSelect/StdSelect_EdgeFilter.hxx similarity index 100% rename from src/StdSelect/StdSelect_EdgeFilter.hxx rename to src/Visualization/TKV3d/StdSelect/StdSelect_EdgeFilter.hxx diff --git a/src/StdSelect/StdSelect_FaceFilter.cxx b/src/Visualization/TKV3d/StdSelect/StdSelect_FaceFilter.cxx similarity index 100% rename from src/StdSelect/StdSelect_FaceFilter.cxx rename to src/Visualization/TKV3d/StdSelect/StdSelect_FaceFilter.cxx diff --git a/src/StdSelect/StdSelect_FaceFilter.hxx b/src/Visualization/TKV3d/StdSelect/StdSelect_FaceFilter.hxx similarity index 100% rename from src/StdSelect/StdSelect_FaceFilter.hxx rename to src/Visualization/TKV3d/StdSelect/StdSelect_FaceFilter.hxx diff --git a/src/StdSelect/StdSelect_Shape.cxx b/src/Visualization/TKV3d/StdSelect/StdSelect_Shape.cxx similarity index 100% rename from src/StdSelect/StdSelect_Shape.cxx rename to src/Visualization/TKV3d/StdSelect/StdSelect_Shape.cxx diff --git a/src/StdSelect/StdSelect_Shape.hxx b/src/Visualization/TKV3d/StdSelect/StdSelect_Shape.hxx similarity index 100% rename from src/StdSelect/StdSelect_Shape.hxx rename to src/Visualization/TKV3d/StdSelect/StdSelect_Shape.hxx diff --git a/src/StdSelect/StdSelect_ShapeTypeFilter.cxx b/src/Visualization/TKV3d/StdSelect/StdSelect_ShapeTypeFilter.cxx similarity index 100% rename from src/StdSelect/StdSelect_ShapeTypeFilter.cxx rename to src/Visualization/TKV3d/StdSelect/StdSelect_ShapeTypeFilter.cxx diff --git a/src/StdSelect/StdSelect_ShapeTypeFilter.hxx b/src/Visualization/TKV3d/StdSelect/StdSelect_ShapeTypeFilter.hxx similarity index 100% rename from src/StdSelect/StdSelect_ShapeTypeFilter.hxx rename to src/Visualization/TKV3d/StdSelect/StdSelect_ShapeTypeFilter.hxx diff --git a/src/StdSelect/StdSelect_TypeOfEdge.hxx b/src/Visualization/TKV3d/StdSelect/StdSelect_TypeOfEdge.hxx similarity index 100% rename from src/StdSelect/StdSelect_TypeOfEdge.hxx rename to src/Visualization/TKV3d/StdSelect/StdSelect_TypeOfEdge.hxx diff --git a/src/StdSelect/StdSelect_TypeOfFace.hxx b/src/Visualization/TKV3d/StdSelect/StdSelect_TypeOfFace.hxx similarity index 100% rename from src/StdSelect/StdSelect_TypeOfFace.hxx rename to src/Visualization/TKV3d/StdSelect/StdSelect_TypeOfFace.hxx diff --git a/src/StdSelect/StdSelect_TypeOfSelectionImage.hxx b/src/Visualization/TKV3d/StdSelect/StdSelect_TypeOfSelectionImage.hxx similarity index 100% rename from src/StdSelect/StdSelect_TypeOfSelectionImage.hxx rename to src/Visualization/TKV3d/StdSelect/StdSelect_TypeOfSelectionImage.hxx diff --git a/src/StdSelect/StdSelect_ViewerSelector3d.hxx b/src/Visualization/TKV3d/StdSelect/StdSelect_ViewerSelector3d.hxx similarity index 100% rename from src/StdSelect/StdSelect_ViewerSelector3d.hxx rename to src/Visualization/TKV3d/StdSelect/StdSelect_ViewerSelector3d.hxx diff --git a/src/TKV3d/TKV3d_pch.hxx b/src/Visualization/TKV3d/TKV3d_pch.hxx similarity index 100% rename from src/TKV3d/TKV3d_pch.hxx rename to src/Visualization/TKV3d/TKV3d_pch.hxx diff --git a/src/Visualization/TKV3d/V3d/FILES.cmake b/src/Visualization/TKV3d/V3d/FILES.cmake new file mode 100644 index 0000000000..712b561ddc --- /dev/null +++ b/src/Visualization/TKV3d/V3d/FILES.cmake @@ -0,0 +1,44 @@ +# Source files for V3d package +set(OCCT_V3d_FILES_LOCATION "${CMAKE_CURRENT_LIST_DIR}") + +set(OCCT_V3d_FILES + V3d.cxx + V3d.hxx + V3d_AmbientLight.cxx + V3d_AmbientLight.hxx + V3d_BadValue.hxx + V3d_CircularGrid.cxx + V3d_CircularGrid.hxx + V3d_DirectionalLight.cxx + V3d_DirectionalLight.hxx + V3d_ImageDumpOptions.hxx + V3d_Light.hxx + V3d_ListOfLight.hxx + V3d_ListOfView.hxx + V3d_Plane.cxx + V3d_Plane.hxx + V3d_PositionalLight.cxx + V3d_PositionalLight.hxx + V3d_PositionLight.cxx + V3d_PositionLight.hxx + V3d_RectangularGrid.cxx + V3d_RectangularGrid.hxx + V3d_SpotLight.cxx + V3d_SpotLight.hxx + V3d_StereoDumpOptions.hxx + V3d_Trihedron.cxx + V3d_Trihedron.hxx + V3d_TypeOfAxe.hxx + V3d_TypeOfBackfacingModel.hxx + V3d_TypeOfLight.hxx + V3d_TypeOfOrientation.hxx + V3d_TypeOfShadingModel.hxx + V3d_TypeOfView.hxx + V3d_TypeOfVisualization.hxx + V3d_UnMapped.hxx + V3d_View.cxx + V3d_View.hxx + V3d_Viewer.cxx + V3d_Viewer.hxx + V3d_ViewerPointer.hxx +) diff --git a/src/V3d/V3d.cxx b/src/Visualization/TKV3d/V3d/V3d.cxx similarity index 100% rename from src/V3d/V3d.cxx rename to src/Visualization/TKV3d/V3d/V3d.cxx diff --git a/src/V3d/V3d.hxx b/src/Visualization/TKV3d/V3d/V3d.hxx similarity index 100% rename from src/V3d/V3d.hxx rename to src/Visualization/TKV3d/V3d/V3d.hxx diff --git a/src/V3d/V3d_AmbientLight.cxx b/src/Visualization/TKV3d/V3d/V3d_AmbientLight.cxx similarity index 100% rename from src/V3d/V3d_AmbientLight.cxx rename to src/Visualization/TKV3d/V3d/V3d_AmbientLight.cxx diff --git a/src/V3d/V3d_AmbientLight.hxx b/src/Visualization/TKV3d/V3d/V3d_AmbientLight.hxx similarity index 100% rename from src/V3d/V3d_AmbientLight.hxx rename to src/Visualization/TKV3d/V3d/V3d_AmbientLight.hxx diff --git a/src/V3d/V3d_BadValue.hxx b/src/Visualization/TKV3d/V3d/V3d_BadValue.hxx similarity index 100% rename from src/V3d/V3d_BadValue.hxx rename to src/Visualization/TKV3d/V3d/V3d_BadValue.hxx diff --git a/src/V3d/V3d_CircularGrid.cxx b/src/Visualization/TKV3d/V3d/V3d_CircularGrid.cxx similarity index 100% rename from src/V3d/V3d_CircularGrid.cxx rename to src/Visualization/TKV3d/V3d/V3d_CircularGrid.cxx diff --git a/src/V3d/V3d_CircularGrid.hxx b/src/Visualization/TKV3d/V3d/V3d_CircularGrid.hxx similarity index 100% rename from src/V3d/V3d_CircularGrid.hxx rename to src/Visualization/TKV3d/V3d/V3d_CircularGrid.hxx diff --git a/src/V3d/V3d_DirectionalLight.cxx b/src/Visualization/TKV3d/V3d/V3d_DirectionalLight.cxx similarity index 100% rename from src/V3d/V3d_DirectionalLight.cxx rename to src/Visualization/TKV3d/V3d/V3d_DirectionalLight.cxx diff --git a/src/V3d/V3d_DirectionalLight.hxx b/src/Visualization/TKV3d/V3d/V3d_DirectionalLight.hxx similarity index 100% rename from src/V3d/V3d_DirectionalLight.hxx rename to src/Visualization/TKV3d/V3d/V3d_DirectionalLight.hxx diff --git a/src/V3d/V3d_ImageDumpOptions.hxx b/src/Visualization/TKV3d/V3d/V3d_ImageDumpOptions.hxx similarity index 100% rename from src/V3d/V3d_ImageDumpOptions.hxx rename to src/Visualization/TKV3d/V3d/V3d_ImageDumpOptions.hxx diff --git a/src/V3d/V3d_Light.hxx b/src/Visualization/TKV3d/V3d/V3d_Light.hxx similarity index 100% rename from src/V3d/V3d_Light.hxx rename to src/Visualization/TKV3d/V3d/V3d_Light.hxx diff --git a/src/V3d/V3d_ListOfLight.hxx b/src/Visualization/TKV3d/V3d/V3d_ListOfLight.hxx similarity index 100% rename from src/V3d/V3d_ListOfLight.hxx rename to src/Visualization/TKV3d/V3d/V3d_ListOfLight.hxx diff --git a/src/V3d/V3d_ListOfView.hxx b/src/Visualization/TKV3d/V3d/V3d_ListOfView.hxx similarity index 100% rename from src/V3d/V3d_ListOfView.hxx rename to src/Visualization/TKV3d/V3d/V3d_ListOfView.hxx diff --git a/src/V3d/V3d_Plane.cxx b/src/Visualization/TKV3d/V3d/V3d_Plane.cxx similarity index 100% rename from src/V3d/V3d_Plane.cxx rename to src/Visualization/TKV3d/V3d/V3d_Plane.cxx diff --git a/src/V3d/V3d_Plane.hxx b/src/Visualization/TKV3d/V3d/V3d_Plane.hxx similarity index 100% rename from src/V3d/V3d_Plane.hxx rename to src/Visualization/TKV3d/V3d/V3d_Plane.hxx diff --git a/src/V3d/V3d_PositionLight.cxx b/src/Visualization/TKV3d/V3d/V3d_PositionLight.cxx similarity index 100% rename from src/V3d/V3d_PositionLight.cxx rename to src/Visualization/TKV3d/V3d/V3d_PositionLight.cxx diff --git a/src/V3d/V3d_PositionLight.hxx b/src/Visualization/TKV3d/V3d/V3d_PositionLight.hxx similarity index 100% rename from src/V3d/V3d_PositionLight.hxx rename to src/Visualization/TKV3d/V3d/V3d_PositionLight.hxx diff --git a/src/V3d/V3d_PositionalLight.cxx b/src/Visualization/TKV3d/V3d/V3d_PositionalLight.cxx similarity index 100% rename from src/V3d/V3d_PositionalLight.cxx rename to src/Visualization/TKV3d/V3d/V3d_PositionalLight.cxx diff --git a/src/V3d/V3d_PositionalLight.hxx b/src/Visualization/TKV3d/V3d/V3d_PositionalLight.hxx similarity index 100% rename from src/V3d/V3d_PositionalLight.hxx rename to src/Visualization/TKV3d/V3d/V3d_PositionalLight.hxx diff --git a/src/V3d/V3d_RectangularGrid.cxx b/src/Visualization/TKV3d/V3d/V3d_RectangularGrid.cxx similarity index 100% rename from src/V3d/V3d_RectangularGrid.cxx rename to src/Visualization/TKV3d/V3d/V3d_RectangularGrid.cxx diff --git a/src/V3d/V3d_RectangularGrid.hxx b/src/Visualization/TKV3d/V3d/V3d_RectangularGrid.hxx similarity index 100% rename from src/V3d/V3d_RectangularGrid.hxx rename to src/Visualization/TKV3d/V3d/V3d_RectangularGrid.hxx diff --git a/src/V3d/V3d_SpotLight.cxx b/src/Visualization/TKV3d/V3d/V3d_SpotLight.cxx similarity index 100% rename from src/V3d/V3d_SpotLight.cxx rename to src/Visualization/TKV3d/V3d/V3d_SpotLight.cxx diff --git a/src/V3d/V3d_SpotLight.hxx b/src/Visualization/TKV3d/V3d/V3d_SpotLight.hxx similarity index 100% rename from src/V3d/V3d_SpotLight.hxx rename to src/Visualization/TKV3d/V3d/V3d_SpotLight.hxx diff --git a/src/V3d/V3d_StereoDumpOptions.hxx b/src/Visualization/TKV3d/V3d/V3d_StereoDumpOptions.hxx similarity index 100% rename from src/V3d/V3d_StereoDumpOptions.hxx rename to src/Visualization/TKV3d/V3d/V3d_StereoDumpOptions.hxx diff --git a/src/V3d/V3d_Trihedron.cxx b/src/Visualization/TKV3d/V3d/V3d_Trihedron.cxx similarity index 100% rename from src/V3d/V3d_Trihedron.cxx rename to src/Visualization/TKV3d/V3d/V3d_Trihedron.cxx diff --git a/src/V3d/V3d_Trihedron.hxx b/src/Visualization/TKV3d/V3d/V3d_Trihedron.hxx similarity index 100% rename from src/V3d/V3d_Trihedron.hxx rename to src/Visualization/TKV3d/V3d/V3d_Trihedron.hxx diff --git a/src/V3d/V3d_TypeOfAxe.hxx b/src/Visualization/TKV3d/V3d/V3d_TypeOfAxe.hxx similarity index 100% rename from src/V3d/V3d_TypeOfAxe.hxx rename to src/Visualization/TKV3d/V3d/V3d_TypeOfAxe.hxx diff --git a/src/V3d/V3d_TypeOfBackfacingModel.hxx b/src/Visualization/TKV3d/V3d/V3d_TypeOfBackfacingModel.hxx similarity index 100% rename from src/V3d/V3d_TypeOfBackfacingModel.hxx rename to src/Visualization/TKV3d/V3d/V3d_TypeOfBackfacingModel.hxx diff --git a/src/V3d/V3d_TypeOfLight.hxx b/src/Visualization/TKV3d/V3d/V3d_TypeOfLight.hxx similarity index 100% rename from src/V3d/V3d_TypeOfLight.hxx rename to src/Visualization/TKV3d/V3d/V3d_TypeOfLight.hxx diff --git a/src/V3d/V3d_TypeOfOrientation.hxx b/src/Visualization/TKV3d/V3d/V3d_TypeOfOrientation.hxx similarity index 100% rename from src/V3d/V3d_TypeOfOrientation.hxx rename to src/Visualization/TKV3d/V3d/V3d_TypeOfOrientation.hxx diff --git a/src/V3d/V3d_TypeOfShadingModel.hxx b/src/Visualization/TKV3d/V3d/V3d_TypeOfShadingModel.hxx similarity index 100% rename from src/V3d/V3d_TypeOfShadingModel.hxx rename to src/Visualization/TKV3d/V3d/V3d_TypeOfShadingModel.hxx diff --git a/src/V3d/V3d_TypeOfView.hxx b/src/Visualization/TKV3d/V3d/V3d_TypeOfView.hxx similarity index 100% rename from src/V3d/V3d_TypeOfView.hxx rename to src/Visualization/TKV3d/V3d/V3d_TypeOfView.hxx diff --git a/src/V3d/V3d_TypeOfVisualization.hxx b/src/Visualization/TKV3d/V3d/V3d_TypeOfVisualization.hxx similarity index 100% rename from src/V3d/V3d_TypeOfVisualization.hxx rename to src/Visualization/TKV3d/V3d/V3d_TypeOfVisualization.hxx diff --git a/src/V3d/V3d_UnMapped.hxx b/src/Visualization/TKV3d/V3d/V3d_UnMapped.hxx similarity index 100% rename from src/V3d/V3d_UnMapped.hxx rename to src/Visualization/TKV3d/V3d/V3d_UnMapped.hxx diff --git a/src/V3d/V3d_View.cxx b/src/Visualization/TKV3d/V3d/V3d_View.cxx similarity index 100% rename from src/V3d/V3d_View.cxx rename to src/Visualization/TKV3d/V3d/V3d_View.cxx diff --git a/src/V3d/V3d_View.hxx b/src/Visualization/TKV3d/V3d/V3d_View.hxx similarity index 100% rename from src/V3d/V3d_View.hxx rename to src/Visualization/TKV3d/V3d/V3d_View.hxx diff --git a/src/V3d/V3d_Viewer.cxx b/src/Visualization/TKV3d/V3d/V3d_Viewer.cxx similarity index 100% rename from src/V3d/V3d_Viewer.cxx rename to src/Visualization/TKV3d/V3d/V3d_Viewer.cxx diff --git a/src/V3d/V3d_Viewer.hxx b/src/Visualization/TKV3d/V3d/V3d_Viewer.hxx similarity index 100% rename from src/V3d/V3d_Viewer.hxx rename to src/Visualization/TKV3d/V3d/V3d_Viewer.hxx diff --git a/src/V3d/V3d_ViewerPointer.hxx b/src/Visualization/TKV3d/V3d/V3d_ViewerPointer.hxx similarity index 100% rename from src/V3d/V3d_ViewerPointer.hxx rename to src/Visualization/TKV3d/V3d/V3d_ViewerPointer.hxx diff --git a/src/Visualization/TOOLKITS.cmake b/src/Visualization/TOOLKITS.cmake new file mode 100644 index 0000000000..6d2f214ae5 --- /dev/null +++ b/src/Visualization/TOOLKITS.cmake @@ -0,0 +1,10 @@ +# Auto-generated list of toolkits for Visualization module +set(OCCT_Visualization_LIST_OF_TOOLKITS + TKService + TKV3d + TKOpenGl + TKOpenGles + TKMeshVS + TKIVtk + TKD3DHost +) diff --git a/src/Vrml/FILES b/src/Vrml/FILES deleted file mode 100644 index 2f91b88988..0000000000 --- a/src/Vrml/FILES +++ /dev/null @@ -1,95 +0,0 @@ -Vrml.cxx -Vrml.hxx -Vrml_AsciiText.cxx -Vrml_AsciiText.hxx -Vrml_AsciiTextJustification.hxx -Vrml_Cone.cxx -Vrml_Cone.hxx -Vrml_ConeParts.hxx -Vrml_ConfigurationNode.hxx -Vrml_Coordinate3.cxx -Vrml_Coordinate3.hxx -Vrml_Cube.cxx -Vrml_Cube.hxx -Vrml_Cylinder.cxx -Vrml_Cylinder.hxx -Vrml_CylinderParts.hxx -Vrml_DirectionalLight.cxx -Vrml_DirectionalLight.hxx -Vrml_FaceType.hxx -Vrml_FontStyle.cxx -Vrml_FontStyle.hxx -Vrml_FontStyleFamily.hxx -Vrml_FontStyleStyle.hxx -Vrml_Group.cxx -Vrml_Group.hxx -Vrml_IndexedFaceSet.cxx -Vrml_IndexedFaceSet.hxx -Vrml_IndexedLineSet.cxx -Vrml_IndexedLineSet.hxx -Vrml_Info.cxx -Vrml_Info.hxx -Vrml_Instancing.cxx -Vrml_Instancing.hxx -Vrml_LOD.cxx -Vrml_LOD.hxx -Vrml_Material.cxx -Vrml_Material.hxx -Vrml_MaterialBinding.cxx -Vrml_MaterialBinding.hxx -Vrml_MaterialBindingAndNormalBinding.hxx -Vrml_MatrixTransform.cxx -Vrml_MatrixTransform.hxx -Vrml_Normal.cxx -Vrml_Normal.hxx -Vrml_NormalBinding.cxx -Vrml_NormalBinding.hxx -Vrml_OrthographicCamera.cxx -Vrml_OrthographicCamera.hxx -Vrml_PerspectiveCamera.cxx -Vrml_PerspectiveCamera.hxx -Vrml_PointLight.cxx -Vrml_PointLight.hxx -Vrml_PointSet.cxx -Vrml_PointSet.hxx -Vrml_Provider.hxx -Vrml_Rotation.cxx -Vrml_Rotation.hxx -Vrml_Scale.cxx -Vrml_Scale.hxx -Vrml_Separator.cxx -Vrml_Separator.hxx -Vrml_SeparatorRenderCulling.hxx -Vrml_SFImage.cxx -Vrml_SFImage.hxx -Vrml_SFImageNumber.hxx -Vrml_SFRotation.cxx -Vrml_SFRotation.hxx -Vrml_ShapeHints.cxx -Vrml_ShapeHints.hxx -Vrml_ShapeType.hxx -Vrml_Sphere.cxx -Vrml_Sphere.hxx -Vrml_SpotLight.cxx -Vrml_SpotLight.hxx -Vrml_Switch.cxx -Vrml_Switch.hxx -Vrml_Texture2.cxx -Vrml_Texture2.hxx -Vrml_Texture2Transform.cxx -Vrml_Texture2Transform.hxx -Vrml_Texture2Wrap.hxx -Vrml_TextureCoordinate2.cxx -Vrml_TextureCoordinate2.hxx -Vrml_Transform.cxx -Vrml_Transform.hxx -Vrml_TransformSeparator.cxx -Vrml_TransformSeparator.hxx -Vrml_Translation.cxx -Vrml_Translation.hxx -Vrml_VertexOrdering.hxx -Vrml_WWWAnchor.cxx -Vrml_WWWAnchor.hxx -Vrml_WWWAnchorMap.hxx -Vrml_WWWInline.cxx -Vrml_WWWInline.hxx diff --git a/src/VrmlAPI/FILES b/src/VrmlAPI/FILES deleted file mode 100644 index 97f69df8a9..0000000000 --- a/src/VrmlAPI/FILES +++ /dev/null @@ -1,7 +0,0 @@ -VrmlAPI.cxx -VrmlAPI.hxx -VrmlAPI_CafReader.cxx -VrmlAPI_CafReader.hxx -VrmlAPI_RepresentationOfShape.hxx -VrmlAPI_Writer.cxx -VrmlAPI_Writer.hxx diff --git a/src/VrmlConverter/FILES b/src/VrmlConverter/FILES deleted file mode 100644 index c10fc7425e..0000000000 --- a/src/VrmlConverter/FILES +++ /dev/null @@ -1,30 +0,0 @@ -VrmlConverter_Curve.cxx -VrmlConverter_Curve.hxx -VrmlConverter_DeflectionCurve.cxx -VrmlConverter_DeflectionCurve.hxx -VrmlConverter_Drawer.cxx -VrmlConverter_Drawer.hxx -VrmlConverter_HLRShape.cxx -VrmlConverter_HLRShape.hxx -VrmlConverter_IsoAspect.cxx -VrmlConverter_IsoAspect.hxx -VrmlConverter_LineAspect.cxx -VrmlConverter_LineAspect.hxx -VrmlConverter_PointAspect.cxx -VrmlConverter_PointAspect.hxx -VrmlConverter_Projector.cxx -VrmlConverter_Projector.hxx -VrmlConverter_ShadedShape.cxx -VrmlConverter_ShadedShape.hxx -VrmlConverter_ShadingAspect.cxx -VrmlConverter_ShadingAspect.hxx -VrmlConverter_TypeOfCamera.hxx -VrmlConverter_TypeOfLight.hxx -VrmlConverter_WFDeflectionRestrictedFace.cxx -VrmlConverter_WFDeflectionRestrictedFace.hxx -VrmlConverter_WFDeflectionShape.cxx -VrmlConverter_WFDeflectionShape.hxx -VrmlConverter_WFRestrictedFace.cxx -VrmlConverter_WFRestrictedFace.hxx -VrmlConverter_WFShape.cxx -VrmlConverter_WFShape.hxx diff --git a/src/VrmlData/FILES b/src/VrmlData/FILES deleted file mode 100755 index ff52c6d0bb..0000000000 --- a/src/VrmlData/FILES +++ /dev/null @@ -1,39 +0,0 @@ -VrmlData_Appearance.hxx -VrmlData_ArrayVec3d.hxx -VrmlData_Box.hxx -VrmlData_Color.hxx -VrmlData_Cone.hxx -VrmlData_Coordinate.hxx -VrmlData_Cylinder.hxx -VrmlData_DataMapOfShapeAppearance.hxx -VrmlData_ErrorStatus.hxx -VrmlData_Faceted.hxx -VrmlData_Geometry.cxx -VrmlData_Geometry.hxx -VrmlData_Group.cxx -VrmlData_Group.hxx -VrmlData_ImageTexture.hxx -VrmlData_InBuffer.hxx -VrmlData_IndexedFaceSet.cxx -VrmlData_IndexedFaceSet.hxx -VrmlData_IndexedLineSet.cxx -VrmlData_IndexedLineSet.hxx -VrmlData_ListOfNode.hxx -VrmlData_MapOfNode.hxx -VrmlData_Material.cxx -VrmlData_Material.hxx -VrmlData_Node.cxx -VrmlData_Node.hxx -VrmlData_Normal.hxx -VrmlData_Scene.cxx -VrmlData_Scene.hxx -VrmlData_ShapeConvert.cxx -VrmlData_ShapeConvert.hxx -VrmlData_ShapeNode.hxx -VrmlData_Sphere.hxx -VrmlData_Texture.hxx -VrmlData_TextureCoordinate.hxx -VrmlData_TextureTransform.hxx -VrmlData_UnknownNode.hxx -VrmlData_WorldInfo.cxx -VrmlData_WorldInfo.hxx diff --git a/src/WNT/FILES b/src/WNT/FILES deleted file mode 100755 index e323ce0ef5..0000000000 --- a/src/WNT/FILES +++ /dev/null @@ -1,10 +0,0 @@ -WNT_ClassDefinitionError.hxx -WNT_Dword.hxx -WNT_HIDSpaceMouse.cxx -WNT_HIDSpaceMouse.hxx -WNT_OrientationType.hxx -WNT_WClass.cxx -WNT_WClass.hxx -WNT_Window.cxx -WNT_Window.hxx -WNT_WindowPtr.hxx diff --git a/src/Wasm/FILES b/src/Wasm/FILES deleted file mode 100644 index 56fc2c6647..0000000000 --- a/src/Wasm/FILES +++ /dev/null @@ -1,2 +0,0 @@ -Wasm_Window.cxx -Wasm_Window.hxx diff --git a/src/XBRepMesh/FILES b/src/XBRepMesh/FILES deleted file mode 100644 index ee1b7487f3..0000000000 --- a/src/XBRepMesh/FILES +++ /dev/null @@ -1,2 +0,0 @@ -XBRepMesh.cxx -XBRepMesh.hxx diff --git a/src/XCAFApp/FILES b/src/XCAFApp/FILES deleted file mode 100644 index 649b945a1d..0000000000 --- a/src/XCAFApp/FILES +++ /dev/null @@ -1,2 +0,0 @@ -XCAFApp_Application.cxx -XCAFApp_Application.hxx diff --git a/src/XCAFDimTolObjects/FILES b/src/XCAFDimTolObjects/FILES deleted file mode 100644 index 0bbce85f4a..0000000000 --- a/src/XCAFDimTolObjects/FILES +++ /dev/null @@ -1,33 +0,0 @@ -FILES -XCAFDimTolObjects_DatumObject.cxx -XCAFDimTolObjects_DatumObject.hxx -XCAFDimTolObjects_DimensionObject.cxx -XCAFDimTolObjects_DimensionObject.hxx -XCAFDimTolObjects_GeomToleranceObject.cxx -XCAFDimTolObjects_GeomToleranceObject.hxx -XCAFDimTolObjects_Tool.cxx -XCAFDimTolObjects_Tool.hxx -XCAFDimTolObjects_DatumModifWithValue.hxx -XCAFDimTolObjects_DatumSingleModif.hxx -XCAFDimTolObjects_DatumTargetType.hxx -XCAFDimTolObjects_DimensionModif.hxx -XCAFDimTolObjects_DimensionFormVariance.hxx -XCAFDimTolObjects_DimensionGrade.hxx -XCAFDimTolObjects_DimensionQualifier.hxx -XCAFDimTolObjects_DimensionType.hxx -XCAFDimTolObjects_GeomToleranceModif.hxx -XCAFDimTolObjects_GeomToleranceType.hxx -XCAFDimTolObjects_GeomToleranceTypeValue.hxx -XCAFDimTolObjects_GeomToleranceMatReqModif.hxx -XCAFDimTolObjects_GeomToleranceZoneModif.hxx -XCAFDimTolObjects_DimensionModifiersSequence.hxx -XCAFDimTolObjects_GeomToleranceModifiersSequence.hxx -XCAFDimTolObjects_DatumModifiersSequence.hxx -XCAFDimTolObjects_DatumObjectSequence.hxx -XCAFDimTolObjects_DimensionObjectSequence.hxx -XCAFDimTolObjects_GeomToleranceObjectSequence.hxx -XCAFDimTolObjects_DataMapOfToleranceDatum.hxx -XCAFDimTolObjects_ToleranceZoneAffectedPlane.hxx -XCAFDimTolObjects_AngularQualifier.hxx - - diff --git a/src/XCAFDoc/FILES b/src/XCAFDoc/FILES deleted file mode 100755 index 2398d99643..0000000000 --- a/src/XCAFDoc/FILES +++ /dev/null @@ -1,80 +0,0 @@ -FILES -GUID.txt -XCAFDoc.cxx -XCAFDoc.hxx -XCAFDoc_AssemblyItemId.cxx -XCAFDoc_AssemblyItemId.hxx -XCAFDoc_AssemblyItemRef.cxx -XCAFDoc_AssemblyItemRef.hxx -XCAFDoc_AssemblyIterator.hxx -XCAFDoc_AssemblyIterator.cxx -XCAFDoc_AssemblyGraph.hxx -XCAFDoc_AssemblyGraph.cxx -XCAFDoc_AssemblyTool.hxx -XCAFDoc_PartId.hxx -XCAFDoc_Area.cxx -XCAFDoc_Area.hxx -XCAFDoc_Centroid.cxx -XCAFDoc_Centroid.hxx -XCAFDoc_ClippingPlaneTool.cxx -XCAFDoc_ClippingPlaneTool.hxx -XCAFDoc_Color.cxx -XCAFDoc_Color.hxx -XCAFDoc_ColorTool.cxx -XCAFDoc_ColorTool.hxx -XCAFDoc_ColorType.hxx -XCAFDoc_DataMapIteratorOfDataMapOfShapeLabel.hxx -XCAFDoc_DataMapOfShapeLabel.hxx -XCAFDoc_Datum.cxx -XCAFDoc_Datum.hxx -XCAFDoc_Dimension.cxx -XCAFDoc_Dimension.hxx -XCAFDoc_GeomTolerance.cxx -XCAFDoc_GeomTolerance.hxx -XCAFDoc_DimTol.cxx -XCAFDoc_DimTol.hxx -XCAFDoc_DimTolTool.cxx -XCAFDoc_DimTolTool.hxx -XCAFDoc_DocumentTool.cxx -XCAFDoc_DocumentTool.hxx -XCAFDoc_Editor.cxx -XCAFDoc_Editor.hxx -XCAFDoc_GraphNode.cxx -XCAFDoc_GraphNode.hxx -XCAFDoc_GraphNodeSequence.hxx -XCAFDoc_LayerTool.cxx -XCAFDoc_LayerTool.hxx -XCAFDoc_LengthUnit.cxx -XCAFDoc_LengthUnit.hxx -XCAFDoc_Location.cxx -XCAFDoc_Location.hxx -XCAFDoc_Material.cxx -XCAFDoc_Material.hxx -XCAFDoc_MaterialTool.cxx -XCAFDoc_MaterialTool.hxx -XCAFDoc_Note.cxx -XCAFDoc_Note.hxx -XCAFDoc_NoteBalloon.cxx -XCAFDoc_NoteBalloon.hxx -XCAFDoc_NoteComment.cxx -XCAFDoc_NoteComment.hxx -XCAFDoc_NoteBinData.cxx -XCAFDoc_NoteBinData.hxx -XCAFDoc_NotesTool.cxx -XCAFDoc_NotesTool.hxx -XCAFDoc_ShapeMapTool.cxx -XCAFDoc_ShapeMapTool.hxx -XCAFDoc_ShapeTool.cxx -XCAFDoc_ShapeTool.hxx -XCAFDoc_View.cxx -XCAFDoc_View.hxx -XCAFDoc_ViewTool.cxx -XCAFDoc_ViewTool.hxx -XCAFDoc_VisMaterial.cxx -XCAFDoc_VisMaterial.hxx -XCAFDoc_VisMaterialCommon.hxx -XCAFDoc_VisMaterialPBR.hxx -XCAFDoc_VisMaterialTool.cxx -XCAFDoc_VisMaterialTool.hxx -XCAFDoc_Volume.cxx -XCAFDoc_Volume.hxx diff --git a/src/XCAFNoteObjects/FILES b/src/XCAFNoteObjects/FILES deleted file mode 100644 index b3f904a074..0000000000 --- a/src/XCAFNoteObjects/FILES +++ /dev/null @@ -1,3 +0,0 @@ -FILES -XCAFNoteObjects_NoteObject.cxx -XCAFNoteObjects_NoteObject.hxx diff --git a/src/XCAFPrs/FILES b/src/XCAFPrs/FILES deleted file mode 100644 index b86972f7ca..0000000000 --- a/src/XCAFPrs/FILES +++ /dev/null @@ -1,20 +0,0 @@ -XCAFPrs.cxx -XCAFPrs.hxx -XCAFPrs_AISObject.cxx -XCAFPrs_AISObject.hxx -XCAFPrs_DataMapIteratorOfIndexedDataMapOfShapeStyle.hxx -XCAFPrs_DataMapIteratorOfDataMapOfStyleShape.hxx -XCAFPrs_DataMapIteratorOfDataMapOfStyleTransient.hxx -XCAFPrs_IndexedDataMapOfShapeStyle.hxx -XCAFPrs_DataMapOfStyleShape.hxx -XCAFPrs_DataMapOfStyleTransient.hxx -XCAFPrs_DocumentExplorer.cxx -XCAFPrs_DocumentExplorer.hxx -XCAFPrs_DocumentIdIterator.hxx -XCAFPrs_DocumentNode.hxx -XCAFPrs_Driver.cxx -XCAFPrs_Driver.hxx -XCAFPrs_Style.cxx -XCAFPrs_Style.hxx -XCAFPrs_Texture.cxx -XCAFPrs_Texture.hxx diff --git a/src/XCAFView/FILES b/src/XCAFView/FILES deleted file mode 100644 index a7a84769a9..0000000000 --- a/src/XCAFView/FILES +++ /dev/null @@ -1,3 +0,0 @@ -XCAFView_Object.cxx -XCAFView_Object.hxx -XCAFView_ProjectionType.hxx diff --git a/src/XDEDRAW/FILES b/src/XDEDRAW/FILES deleted file mode 100644 index a896d4c95e..0000000000 --- a/src/XDEDRAW/FILES +++ /dev/null @@ -1,18 +0,0 @@ -XDEDRAW.cxx -XDEDRAW.hxx -XDEDRAW_Colors.cxx -XDEDRAW_Colors.hxx -XDEDRAW_Common.cxx -XDEDRAW_Common.hxx -XDEDRAW_Layers.cxx -XDEDRAW_Layers.hxx -XDEDRAW_Props.cxx -XDEDRAW_Props.hxx -XDEDRAW_GDTs.cxx -XDEDRAW_GDTs.hxx -XDEDRAW_Shapes.cxx -XDEDRAW_Shapes.hxx -XDEDRAW_Views.cxx -XDEDRAW_Views.hxx -XDEDRAW_Notes.cxx -XDEDRAW_Notes.hxx diff --git a/src/XSAlgo/FILES b/src/XSAlgo/FILES deleted file mode 100644 index f2d21f121d..0000000000 --- a/src/XSAlgo/FILES +++ /dev/null @@ -1,6 +0,0 @@ -XSAlgo.cxx -XSAlgo.hxx -XSAlgo_AlgoContainer.cxx -XSAlgo_AlgoContainer.hxx -XSAlgo_ShapeProcessor.cxx -XSAlgo_ShapeProcessor.hxx diff --git a/src/XSControl/FILES b/src/XSControl/FILES deleted file mode 100644 index 034d830ee8..0000000000 --- a/src/XSControl/FILES +++ /dev/null @@ -1,28 +0,0 @@ -XSControl.cxx -XSControl.hxx -XSControl_ConnectedShapes.cxx -XSControl_ConnectedShapes.hxx -XSControl_Controller.cxx -XSControl_Controller.hxx -XSControl_FuncShape.cxx -XSControl_FuncShape.hxx -XSControl_Functions.cxx -XSControl_Functions.hxx -XSControl_Reader.cxx -XSControl_Reader.hxx -XSControl_SelectForTransfer.cxx -XSControl_SelectForTransfer.hxx -XSControl_SignTransferStatus.cxx -XSControl_SignTransferStatus.hxx -XSControl_TransferReader.cxx -XSControl_TransferReader.hxx -XSControl_TransferWriter.cxx -XSControl_TransferWriter.hxx -XSControl_Utils.cxx -XSControl_Utils.hxx -XSControl_Vars.cxx -XSControl_Vars.hxx -XSControl_WorkSession.cxx -XSControl_WorkSession.hxx -XSControl_Writer.cxx -XSControl_Writer.hxx diff --git a/src/XSDRAW/FILES b/src/XSDRAW/FILES deleted file mode 100755 index 8d3ba0efb1..0000000000 --- a/src/XSDRAW/FILES +++ /dev/null @@ -1,6 +0,0 @@ -XSDRAW.cxx -XSDRAW.hxx -XSDRAW_Functions.cxx -XSDRAW_Functions.hxx -XSDRAW_Vars.cxx -XSDRAW_Vars.hxx diff --git a/src/XSDRAWDE/FILES b/src/XSDRAWDE/FILES deleted file mode 100644 index 9025c37bcb..0000000000 --- a/src/XSDRAWDE/FILES +++ /dev/null @@ -1,2 +0,0 @@ -XSDRAWDE.cxx -XSDRAWDE.hxx diff --git a/src/XSDRAWGLTF/FILES b/src/XSDRAWGLTF/FILES deleted file mode 100644 index 28bb8b0397..0000000000 --- a/src/XSDRAWGLTF/FILES +++ /dev/null @@ -1,2 +0,0 @@ -XSDRAWGLTF.cxx -XSDRAWGLTF.hxx diff --git a/src/XSDRAWIGES/FILES b/src/XSDRAWIGES/FILES deleted file mode 100644 index 3b6316582a..0000000000 --- a/src/XSDRAWIGES/FILES +++ /dev/null @@ -1,2 +0,0 @@ -XSDRAWIGES.cxx -XSDRAWIGES.hxx diff --git a/src/XSDRAWOBJ/FILES b/src/XSDRAWOBJ/FILES deleted file mode 100644 index 9659ffd3c3..0000000000 --- a/src/XSDRAWOBJ/FILES +++ /dev/null @@ -1,2 +0,0 @@ -XSDRAWOBJ.cxx -XSDRAWOBJ.hxx diff --git a/src/XSDRAWPLY/FILES b/src/XSDRAWPLY/FILES deleted file mode 100644 index 3501638378..0000000000 --- a/src/XSDRAWPLY/FILES +++ /dev/null @@ -1,2 +0,0 @@ -XSDRAWPLY.cxx -XSDRAWPLY.hxx diff --git a/src/XSDRAWSTEP/FILES b/src/XSDRAWSTEP/FILES deleted file mode 100644 index 852e830812..0000000000 --- a/src/XSDRAWSTEP/FILES +++ /dev/null @@ -1,2 +0,0 @@ -XSDRAWSTEP.cxx -XSDRAWSTEP.hxx diff --git a/src/XSDRAWSTL/FILES b/src/XSDRAWSTL/FILES deleted file mode 100644 index 7a964554ac..0000000000 --- a/src/XSDRAWSTL/FILES +++ /dev/null @@ -1,8 +0,0 @@ -XSDRAWSTL.cxx -XSDRAWSTL.hxx -XSDRAWSTL_DataSource.cxx -XSDRAWSTL_DataSource.hxx -XSDRAWSTL_DataSource3D.cxx -XSDRAWSTL_DataSource3D.hxx -XSDRAWSTL_DrawableMesh.cxx -XSDRAWSTL_DrawableMesh.hxx \ No newline at end of file diff --git a/src/XSDRAWVRML/FILES b/src/XSDRAWVRML/FILES deleted file mode 100644 index e2a81aa604..0000000000 --- a/src/XSDRAWVRML/FILES +++ /dev/null @@ -1,2 +0,0 @@ -XSDRAWVRML.cxx -XSDRAWVRML.hxx diff --git a/src/XSMessage/FILES b/src/XSMessage/FILES deleted file mode 100755 index 904004a80e..0000000000 --- a/src/XSMessage/FILES +++ /dev/null @@ -1 +0,0 @@ -XSMessage_XSTEP_us.pxx diff --git a/src/XmlDrivers/FILES b/src/XmlDrivers/FILES deleted file mode 100644 index 058b8acc20..0000000000 --- a/src/XmlDrivers/FILES +++ /dev/null @@ -1,6 +0,0 @@ -XmlDrivers.cxx -XmlDrivers.hxx -XmlDrivers_DocumentRetrievalDriver.cxx -XmlDrivers_DocumentRetrievalDriver.hxx -XmlDrivers_DocumentStorageDriver.cxx -XmlDrivers_DocumentStorageDriver.hxx diff --git a/src/XmlLDrivers/FILES b/src/XmlLDrivers/FILES deleted file mode 100644 index c64b80983a..0000000000 --- a/src/XmlLDrivers/FILES +++ /dev/null @@ -1,9 +0,0 @@ -XmlLDrivers.cxx -XmlLDrivers.hxx -XmlLDrivers_DocumentRetrievalDriver.cxx -XmlLDrivers_DocumentRetrievalDriver.hxx -XmlLDrivers_DocumentStorageDriver.cxx -XmlLDrivers_DocumentStorageDriver.hxx -XmlLDrivers_NamespaceDef.cxx -XmlLDrivers_NamespaceDef.hxx -XmlLDrivers_SequenceOfNamespaceDef.hxx diff --git a/src/XmlMDF/FILES b/src/XmlMDF/FILES deleted file mode 100644 index cac1671e8a..0000000000 --- a/src/XmlMDF/FILES +++ /dev/null @@ -1,16 +0,0 @@ -XmlMDF.cxx -XmlMDF.hxx -XmlMDF_ADriver.cxx -XmlMDF_ADriver.hxx -XmlMDF_ADriverTable.cxx -XmlMDF_ADriverTable.hxx -XmlMDF_DataMapIteratorOfMapOfDriver.hxx -XmlMDF_DataMapIteratorOfTypeADriverMap.hxx -XmlMDF_MapOfDriver.hxx -XmlMDF_ReferenceDriver.cxx -XmlMDF_ReferenceDriver.hxx -XmlMDF_TagSourceDriver.cxx -XmlMDF_TagSourceDriver.hxx -XmlMDF_TypeADriverMap.hxx -XmlMDF_DerivedDriver.cxx -XmlMDF_DerivedDriver.hxx diff --git a/src/XmlMDataStd/FILES b/src/XmlMDataStd/FILES deleted file mode 100644 index 6e75870fa3..0000000000 --- a/src/XmlMDataStd/FILES +++ /dev/null @@ -1,46 +0,0 @@ -XmlMDataStd.cxx -XmlMDataStd.hxx -XmlMDataStd_AsciiStringDriver.cxx -XmlMDataStd_AsciiStringDriver.hxx -XmlMDataStd_BooleanArrayDriver.cxx -XmlMDataStd_BooleanArrayDriver.hxx -XmlMDataStd_BooleanListDriver.cxx -XmlMDataStd_BooleanListDriver.hxx -XmlMDataStd_ByteArrayDriver.cxx -XmlMDataStd_ByteArrayDriver.hxx -XmlMDataStd_ExpressionDriver.cxx -XmlMDataStd_ExpressionDriver.hxx -XmlMDataStd_ExtStringArrayDriver.cxx -XmlMDataStd_ExtStringArrayDriver.hxx -XmlMDataStd_ExtStringListDriver.cxx -XmlMDataStd_ExtStringListDriver.hxx -XmlMDataStd_IntegerArrayDriver.cxx -XmlMDataStd_IntegerArrayDriver.hxx -XmlMDataStd_IntegerDriver.cxx -XmlMDataStd_IntegerDriver.hxx -XmlMDataStd_IntegerListDriver.cxx -XmlMDataStd_IntegerListDriver.hxx -XmlMDataStd_IntPackedMapDriver.cxx -XmlMDataStd_IntPackedMapDriver.hxx -XmlMDataStd_NamedDataDriver.cxx -XmlMDataStd_NamedDataDriver.hxx -XmlMDataStd_GenericExtStringDriver.cxx -XmlMDataStd_GenericExtStringDriver.hxx -XmlMDataStd_RealArrayDriver.cxx -XmlMDataStd_RealArrayDriver.hxx -XmlMDataStd_RealDriver.cxx -XmlMDataStd_RealDriver.hxx -XmlMDataStd_RealListDriver.cxx -XmlMDataStd_RealListDriver.hxx -XmlMDataStd_ReferenceArrayDriver.cxx -XmlMDataStd_ReferenceArrayDriver.hxx -XmlMDataStd_ReferenceListDriver.cxx -XmlMDataStd_ReferenceListDriver.hxx -XmlMDataStd_GenericEmptyDriver.cxx -XmlMDataStd_GenericEmptyDriver.hxx -XmlMDataStd_TreeNodeDriver.cxx -XmlMDataStd_TreeNodeDriver.hxx -XmlMDataStd_UAttributeDriver.cxx -XmlMDataStd_UAttributeDriver.hxx -XmlMDataStd_VariableDriver.cxx -XmlMDataStd_VariableDriver.hxx diff --git a/src/XmlMDataXtd/FILES b/src/XmlMDataXtd/FILES deleted file mode 100644 index 6cd788d344..0000000000 --- a/src/XmlMDataXtd/FILES +++ /dev/null @@ -1,14 +0,0 @@ -XmlMDataXtd.cxx -XmlMDataXtd.hxx -XmlMDataXtd_ConstraintDriver.cxx -XmlMDataXtd_ConstraintDriver.hxx -XmlMDataXtd_GeometryDriver.cxx -XmlMDataXtd_GeometryDriver.hxx -XmlMDataXtd_PatternStdDriver.cxx -XmlMDataXtd_PatternStdDriver.hxx -XmlMDataXtd_PositionDriver.hxx -XmlMDataXtd_PositionDriver.cxx -XmlMDataXtd_PresentationDriver.hxx -XmlMDataXtd_PresentationDriver.cxx -XmlMDataXtd_TriangulationDriver.cxx -XmlMDataXtd_TriangulationDriver.hxx diff --git a/src/XmlMDocStd/FILES b/src/XmlMDocStd/FILES deleted file mode 100644 index 9cbf3d8bcc..0000000000 --- a/src/XmlMDocStd/FILES +++ /dev/null @@ -1,4 +0,0 @@ -XmlMDocStd.cxx -XmlMDocStd.hxx -XmlMDocStd_XLinkDriver.cxx -XmlMDocStd_XLinkDriver.hxx diff --git a/src/XmlMFunction/FILES b/src/XmlMFunction/FILES deleted file mode 100644 index 738ed0ef84..0000000000 --- a/src/XmlMFunction/FILES +++ /dev/null @@ -1,8 +0,0 @@ -XmlMFunction.cxx -XmlMFunction.hxx -XmlMFunction_FunctionDriver.cxx -XmlMFunction_FunctionDriver.hxx -XmlMFunction_GraphNodeDriver.cxx -XmlMFunction_GraphNodeDriver.hxx -XmlMFunction_ScopeDriver.cxx -XmlMFunction_ScopeDriver.hxx diff --git a/src/XmlMNaming/FILES b/src/XmlMNaming/FILES deleted file mode 100644 index df6da6463a..0000000000 --- a/src/XmlMNaming/FILES +++ /dev/null @@ -1,9 +0,0 @@ -XmlMNaming.cxx -XmlMNaming.hxx -XmlMNaming_NamedShapeDriver.cxx -XmlMNaming_NamedShapeDriver.hxx -XmlMNaming_NamedShapeDriver.lxx -XmlMNaming_NamingDriver.cxx -XmlMNaming_NamingDriver.hxx -XmlMNaming_Shape1.cxx -XmlMNaming_Shape1.hxx diff --git a/src/XmlMXCAFDoc/FILES b/src/XmlMXCAFDoc/FILES deleted file mode 100644 index de2f6209ae..0000000000 --- a/src/XmlMXCAFDoc/FILES +++ /dev/null @@ -1,31 +0,0 @@ -XmlMXCAFDoc.cxx -XmlMXCAFDoc.hxx -XmlMXCAFDoc_AssemblyItemRefDriver.cxx -XmlMXCAFDoc_AssemblyItemRefDriver.hxx -XmlMXCAFDoc_CentroidDriver.cxx -XmlMXCAFDoc_CentroidDriver.hxx -XmlMXCAFDoc_ColorDriver.cxx -XmlMXCAFDoc_ColorDriver.hxx -XmlMXCAFDoc_DatumDriver.cxx -XmlMXCAFDoc_DatumDriver.hxx -XmlMXCAFDoc_DimTolDriver.cxx -XmlMXCAFDoc_DimTolDriver.hxx -XmlMXCAFDoc_GraphNodeDriver.cxx -XmlMXCAFDoc_GraphNodeDriver.hxx -XmlMXCAFDoc_LengthUnitDriver.cxx -XmlMXCAFDoc_LengthUnitDriver.hxx -XmlMXCAFDoc_LocationDriver.cxx -XmlMXCAFDoc_LocationDriver.hxx -XmlMXCAFDoc_LocationDriver.lxx -XmlMXCAFDoc_MaterialDriver.cxx -XmlMXCAFDoc_MaterialDriver.hxx -XmlMXCAFDoc_NoteDriver.cxx -XmlMXCAFDoc_NoteDriver.hxx -XmlMXCAFDoc_NoteCommentDriver.cxx -XmlMXCAFDoc_NoteCommentDriver.hxx -XmlMXCAFDoc_NoteBinDataDriver.cxx -XmlMXCAFDoc_NoteBinDataDriver.hxx -XmlMXCAFDoc_VisMaterialDriver.cxx -XmlMXCAFDoc_VisMaterialDriver.hxx -XmlMXCAFDoc_VisMaterialToolDriver.cxx -XmlMXCAFDoc_VisMaterialToolDriver.hxx diff --git a/src/XmlObjMgt/FILES b/src/XmlObjMgt/FILES deleted file mode 100755 index 5c942adf8a..0000000000 --- a/src/XmlObjMgt/FILES +++ /dev/null @@ -1,17 +0,0 @@ -XmlObjMgt.cxx -XmlObjMgt.hxx -XmlObjMgt_Array1.cxx -XmlObjMgt_Array1.hxx -XmlObjMgt_Array1.lxx -XmlObjMgt_Document.hxx -XmlObjMgt_DOMString.hxx -XmlObjMgt_Element.hxx -XmlObjMgt_GP.cxx -XmlObjMgt_GP.hxx -XmlObjMgt_Persistent.cxx -XmlObjMgt_Persistent.hxx -XmlObjMgt_Persistent.lxx -XmlObjMgt_RRelocationTable.cxx -XmlObjMgt_RRelocationTable.hxx -XmlObjMgt_SRelocationTable.cxx -XmlObjMgt_SRelocationTable.hxx diff --git a/src/XmlTObjDrivers/FILES b/src/XmlTObjDrivers/FILES deleted file mode 100755 index 3bb74355a7..0000000000 --- a/src/XmlTObjDrivers/FILES +++ /dev/null @@ -1,16 +0,0 @@ -XmlTObjDrivers.cxx -XmlTObjDrivers.hxx -XmlTObjDrivers_DocumentRetrievalDriver.cxx -XmlTObjDrivers_DocumentRetrievalDriver.hxx -XmlTObjDrivers_DocumentStorageDriver.cxx -XmlTObjDrivers_DocumentStorageDriver.hxx -XmlTObjDrivers_IntSparseArrayDriver.cxx -XmlTObjDrivers_IntSparseArrayDriver.hxx -XmlTObjDrivers_ModelDriver.cxx -XmlTObjDrivers_ModelDriver.hxx -XmlTObjDrivers_ObjectDriver.cxx -XmlTObjDrivers_ObjectDriver.hxx -XmlTObjDrivers_ReferenceDriver.cxx -XmlTObjDrivers_ReferenceDriver.hxx -XmlTObjDrivers_XYZDriver.cxx -XmlTObjDrivers_XYZDriver.hxx diff --git a/src/XmlXCAFDrivers/FILES b/src/XmlXCAFDrivers/FILES deleted file mode 100755 index ecee705c40..0000000000 --- a/src/XmlXCAFDrivers/FILES +++ /dev/null @@ -1,8 +0,0 @@ -FILES -GUID.txt -XmlXCAFDrivers.cxx -XmlXCAFDrivers.hxx -XmlXCAFDrivers_DocumentRetrievalDriver.cxx -XmlXCAFDrivers_DocumentRetrievalDriver.hxx -XmlXCAFDrivers_DocumentStorageDriver.cxx -XmlXCAFDrivers_DocumentStorageDriver.hxx diff --git a/src/Xw/FILES b/src/Xw/FILES deleted file mode 100755 index 1ab3878630..0000000000 --- a/src/Xw/FILES +++ /dev/null @@ -1,2 +0,0 @@ -Xw_Window.cxx -Xw_Window.hxx diff --git a/src/gce/FILES b/src/gce/FILES deleted file mode 100644 index 4c2de8f778..0000000000 --- a/src/gce/FILES +++ /dev/null @@ -1,49 +0,0 @@ -gce_ErrorType.hxx -gce_MakeCirc.cxx -gce_MakeCirc.hxx -gce_MakeCirc2d.cxx -gce_MakeCirc2d.hxx -gce_MakeCone.cxx -gce_MakeCone.hxx -gce_MakeCylinder.cxx -gce_MakeCylinder.hxx -gce_MakeDir.cxx -gce_MakeDir.hxx -gce_MakeDir2d.cxx -gce_MakeDir2d.hxx -gce_MakeElips.cxx -gce_MakeElips.hxx -gce_MakeElips2d.cxx -gce_MakeElips2d.hxx -gce_MakeHypr.cxx -gce_MakeHypr.hxx -gce_MakeHypr2d.cxx -gce_MakeHypr2d.hxx -gce_MakeLin.cxx -gce_MakeLin.hxx -gce_MakeLin2d.cxx -gce_MakeLin2d.hxx -gce_MakeMirror.cxx -gce_MakeMirror.hxx -gce_MakeMirror2d.cxx -gce_MakeMirror2d.hxx -gce_MakeParab.cxx -gce_MakeParab.hxx -gce_MakeParab2d.cxx -gce_MakeParab2d.hxx -gce_MakePln.cxx -gce_MakePln.hxx -gce_MakeRotation.cxx -gce_MakeRotation.hxx -gce_MakeRotation2d.cxx -gce_MakeRotation2d.hxx -gce_MakeScale.cxx -gce_MakeScale.hxx -gce_MakeScale2d.cxx -gce_MakeScale2d.hxx -gce_MakeTranslation.cxx -gce_MakeTranslation.hxx -gce_MakeTranslation2d.cxx -gce_MakeTranslation2d.hxx -gce_Root.hxx -gce_Root.lxx diff --git a/src/gp/FILES b/src/gp/FILES deleted file mode 100644 index 06e80cf7ab..0000000000 --- a/src/gp/FILES +++ /dev/null @@ -1,80 +0,0 @@ -gp.cxx -gp.hxx -gp_Ax1.cxx -gp_Ax1.hxx -gp_Ax2.cxx -gp_Ax2.hxx -gp_Ax2d.cxx -gp_Ax2d.hxx -gp_Ax3.cxx -gp_Ax3.hxx -gp_Ax22d.cxx -gp_Ax22d.hxx -gp_Circ.cxx -gp_Circ.hxx -gp_Circ2d.cxx -gp_Circ2d.hxx -gp_Cone.cxx -gp_Cone.hxx -gp_Cylinder.cxx -gp_Cylinder.hxx -gp_Dir.cxx -gp_Dir.hxx -gp_Dir2d.cxx -gp_Dir2d.hxx -gp_Elips.cxx -gp_Elips.hxx -gp_Elips2d.cxx -gp_Elips2d.hxx -gp_EulerSequence.hxx -gp_GTrsf.cxx -gp_GTrsf.hxx -gp_GTrsf2d.cxx -gp_GTrsf2d.hxx -gp_Hypr.cxx -gp_Hypr.hxx -gp_Hypr2d.cxx -gp_Hypr2d.hxx -gp_Lin.cxx -gp_Lin.hxx -gp_Lin2d.cxx -gp_Lin2d.hxx -gp_Mat.cxx -gp_Mat.hxx -gp_Mat2d.cxx -gp_Mat2d.hxx -gp_Parab.cxx -gp_Parab.hxx -gp_Parab2d.cxx -gp_Parab2d.hxx -gp_Pln.cxx -gp_Pln.hxx -gp_Pnt.cxx -gp_Pnt.hxx -gp_Pnt2d.cxx -gp_Pnt2d.hxx -gp_Quaternion.cxx -gp_Quaternion.hxx -gp_QuaternionNLerp.hxx -gp_QuaternionSLerp.hxx -gp_Sphere.cxx -gp_Sphere.hxx -gp_Torus.cxx -gp_Torus.hxx -gp_Trsf.cxx -gp_Trsf.hxx -gp_Trsf2d.cxx -gp_Trsf2d.hxx -gp_TrsfForm.hxx -gp_TrsfNLerp.hxx -gp_Vec.cxx -gp_Vec.hxx -gp_Vec2d.cxx -gp_Vec2d.hxx -gp_Vec2f.hxx -gp_Vec3f.hxx -gp_VectorWithNullMagnitude.hxx -gp_XY.cxx -gp_XY.hxx -gp_XYZ.cxx -gp_XYZ.hxx diff --git a/src/math/FILES b/src/math/FILES deleted file mode 100755 index d1c626a2ba..0000000000 --- a/src/math/FILES +++ /dev/null @@ -1,126 +0,0 @@ -math.cxx -math.hxx -math_Array1OfValueAndWeight.hxx -math_BFGS.cxx -math_BFGS.hxx -math_BFGS.lxx -math_BissecNewton.cxx -math_BissecNewton.hxx -math_BissecNewton.lxx -math_BracketedRoot.cxx -math_BracketedRoot.hxx -math_BracketedRoot.lxx -math_BracketMinimum.cxx -math_BracketMinimum.hxx -math_BracketMinimum.lxx -math_BrentMinimum.cxx -math_BrentMinimum.hxx -math_BrentMinimum.lxx -math_BullardGenerator.hxx -math_ComputeGaussPointsAndWeights.cxx -math_ComputeGaussPointsAndWeights.hxx -math_ComputeKronrodPointsAndWeights.cxx -math_ComputeKronrodPointsAndWeights.hxx -math_Crout.cxx -math_Crout.hxx -math_Crout.lxx -math_DirectPolynomialRoots.cxx -math_DirectPolynomialRoots.hxx -math_DirectPolynomialRoots.lxx -math_DoubleTab.cxx -math_DoubleTab.hxx -math_DoubleTab.lxx -math_EigenValuesSearcher.cxx -math_EigenValuesSearcher.hxx -math_FRPR.cxx -math_FRPR.hxx -math_FRPR.lxx -math_Function.cxx -math_Function.hxx -math_FunctionAllRoots.cxx -math_FunctionAllRoots.hxx -math_FunctionAllRoots.lxx -math_FunctionRoot.cxx -math_FunctionRoot.hxx -math_FunctionRoot.lxx -math_FunctionRoots.cxx -math_FunctionRoots.hxx -math_FunctionRoots.lxx -math_FunctionSample.cxx -math_FunctionSample.hxx -math_FunctionSet.cxx -math_FunctionSet.hxx -math_FunctionSetRoot.cxx -math_FunctionSetRoot.hxx -math_FunctionSetWithDerivatives.hxx -math_FunctionWithDerivative.cxx -math_FunctionWithDerivative.hxx -math_Gauss.cxx -math_Gauss.hxx -math_GaussLeastSquare.cxx -math_GaussLeastSquare.hxx -math_GaussLeastSquare.lxx -math_GaussMultipleIntegration.cxx -math_GaussMultipleIntegration.hxx -math_GaussMultipleIntegration.lxx -math_GaussSetIntegration.cxx -math_GaussSetIntegration.hxx -math_GaussSetIntegration.lxx -math_GaussSingleIntegration.cxx -math_GaussSingleIntegration.hxx -math_GaussSingleIntegration.lxx -math_GlobOptMin.cxx -math_GlobOptMin.hxx -math_Householder.cxx -math_Householder.hxx -math_Householder.lxx -math_IntegerVector.hxx -math_Jacobi.cxx -math_Jacobi.hxx -math_Jacobi.lxx -math_Kronrod.cxx -math_KronrodSingleIntegration.cxx -math_KronrodSingleIntegration.hxx -math_KronrodSingleIntegration.lxx -math_Matrix.cxx -math_Matrix.hxx -math_Matrix.lxx -math_MultipleVarFunction.cxx -math_MultipleVarFunction.hxx -math_MultipleVarFunctionWithGradient.hxx -math_MultipleVarFunctionWithHessian.hxx -math_NewtonFunctionRoot.cxx -math_NewtonFunctionRoot.hxx -math_NewtonFunctionRoot.lxx -math_NewtonFunctionSetRoot.cxx -math_NewtonFunctionSetRoot.hxx -math_NewtonFunctionSetRoot.lxx -math_NewtonMinimum.cxx -math_NewtonMinimum.hxx -math_NewtonMinimum.lxx -math_NotSquare.hxx -math_Powell.cxx -math_Powell.hxx -math_Powell.lxx -math_PSO.cxx -math_PSO.hxx -math_PSOParticlesPool.cxx -math_PSOParticlesPool.hxx -math_Recipes.cxx -math_Recipes.hxx -math_SingularMatrix.hxx -math_Status.hxx -math_SVD.cxx -math_SVD.hxx -math_SVD.lxx -math_TrigonometricFunctionRoots.cxx -math_TrigonometricFunctionRoots.hxx -math_TrigonometricFunctionRoots.lxx -math_TrigonometricEquationFunction.hxx -math_Uzawa.cxx -math_Uzawa.hxx -math_Uzawa.lxx -math_ValueAndWeight.hxx -math_VectorBase.hxx -math_VectorBase.lxx -math_Vector.hxx diff --git a/tests/demo/draw/getsource b/tests/demo/draw/getsource index f0604d260f..9cdfffa636 100755 --- a/tests/demo/draw/getsource +++ b/tests/demo/draw/getsource @@ -1,7 +1,7 @@ # test for command getsource # check that path returned for command pload is as expected -set expected src/Draw/Draw_PloadCommands.cxx +set expected src/Draw/TKDraw/Draw/Draw_PloadCommands.cxx set path [lindex [getsourcefile pload] 1] if { [string compare -nocase $path $expected] } { puts "Error: command 'getsourcefile pload' returned '$path' while expected '$expected'"