diff options
-rw-r--r-- | science/paraview/Makefile | 30 | ||||
-rw-r--r-- | science/paraview/distinfo | 4 | ||||
-rw-r--r-- | science/paraview/files/patch-CMakeLists.txt | 20 | ||||
-rw-r--r-- | science/paraview/files/patch-Plugins_PointSprite_StreamingView_VTK_vtkGridSampler2.cxx | 11 | ||||
-rw-r--r-- | science/paraview/files/patch-VTK_GUISupport_Qt_CMakeLists.txt | 26 | ||||
-rw-r--r-- | science/paraview/files/patch-VTK_GUISupport_Qt___TestQtSQLDatabase.cxx | 11 | ||||
-rw-r--r-- | science/paraview/pkg-plist | 501 |
7 files changed, 381 insertions, 222 deletions
diff --git a/science/paraview/Makefile b/science/paraview/Makefile index 142dda221d91..60d77a508413 100644 --- a/science/paraview/Makefile +++ b/science/paraview/Makefile @@ -6,9 +6,9 @@ # PORTNAME= paraview -PORTVERSION= 3.8.1 +PORTVERSION= 3.10.0 CATEGORIES= science graphics -MASTER_SITES= http://www.paraview.org/files/v3.8/ +MASTER_SITES= http://www.paraview.org/files/v${VERMAJORMINOR}/ DISTNAME= ParaView-${PORTVERSION} MAINTAINER= devel@stasyan.com @@ -57,6 +57,16 @@ OPTIONS= OSMESA "Use Mesa for off-screen rendering" Off \ GL2PS "Install support conversion OpenGL to PostScript" On # VTKMPEG2 "Install patented MPEG2 encoder module" Off \ +VERMAJORMINOR= ${PORTVERSION:R} + +# Temporary workaround until a fix will be committed to bsd.cmake.mk (ports/150363) +.if defined(WITH_DEBUG) +CMAKE_BUILD_TYPE?= Debug +.else +CMAKE_BUILD_TYPE?= Release +.endif +PLIST_SUB+= CMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE:L}" + .include <bsd.port.options.mk> .if defined(WITH_OSMESA) @@ -77,16 +87,10 @@ PLIST_SUB+= GL2PS="@comment " MAKE_JOBS_SAFE= yes CMAKE_OUTSOURCE= yes -PLIST_SUB+= VERMAJORMINOR=3.8 +PLIST_SUB+= VERMAJORMINOR=${VERMAJORMINOR} CMAKE2INST= ParaViewConfig.cmake \ - ParaViewLibraryDepends.cmake cmake_install.cmake -LIB_INSTDIR= ${PREFIX}/lib/${PORTNAME}-${PORTVERSION:R} - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 700042 -BROKEN= does not build on 6.x -.endif + cmake_install.cmake +LIB_INSTDIR= ${PREFIX}/lib/${PORTNAME}-${VERMAJORMINOR} post-patch: ${REINPLACE_CMD} -e 's|png_set_gray_1_2_4_to_8|png_set_expand_gray_1_2_4_to_8|' \ @@ -99,6 +103,6 @@ post-install: ${BUILD_WRKSRC}/${c2f} > ${LIB_INSTDIR}/`${BASENAME} ${c2f}` .endfor ${INSTALL_DATA} ${PATCH_WRKSRC}/ParaViewUse.cmake \ - ${PREFIX}/lib/${PORTNAME}-${PORTVERSION:R} + ${PREFIX}/lib/${PORTNAME}-${VERMAJORMINOR} -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/science/paraview/distinfo b/science/paraview/distinfo index 47951bf1ddfc..66ddfb0441d0 100644 --- a/science/paraview/distinfo +++ b/science/paraview/distinfo @@ -1,2 +1,2 @@ -SHA256 (ParaView-3.8.1.tar.gz) = 37647172af0ac7fc3b677cc2d1e2e825cf364cb4915190da74f19992d84e263c -SIZE (ParaView-3.8.1.tar.gz) = 33123181 +SHA256 (ParaView-3.10.0.tar.gz) = fcd00d66cd0ccd046374d9887d510d779db66ff7e3943101e8be64ba8e3d9100 +SIZE (ParaView-3.10.0.tar.gz) = 39694496 diff --git a/science/paraview/files/patch-CMakeLists.txt b/science/paraview/files/patch-CMakeLists.txt new file mode 100644 index 000000000000..19a64352c5c6 --- /dev/null +++ b/science/paraview/files/patch-CMakeLists.txt @@ -0,0 +1,20 @@ +--- CMakeLists.txt.orig 2011-04-04 13:38:07.000000000 +0700 ++++ CMakeLists.txt 2011-04-04 13:38:21.000000000 +0700 +@@ -382,7 +382,7 @@ + SET(cmakeDevFiles + ${ParaView_CMAKE_DIR}/branded_splash.png + ${ParaView_SOURCE_DIR}/ParaViewUse.cmake +- ${ParaView_BINARY_DIR}/ParaViewLibraryDepends.cmake ++# ${ParaView_BINARY_DIR}/ParaViewLibraryDepends.cmake + ${ParaView_CMAKE_DIR}/ParaViewMacros.cmake + ${ParaView_CMAKE_DIR}/ParaViewPlugins.cmake + ${ParaView_CMAKE_DIR}/ParaViewBranding.cmake +@@ -449,7 +449,7 @@ + SET(PARAVIEW_SMTESTDRIVER_EXECUTABLE "\${ParaView_INSTALL_PREFIX}/${PV_INSTALL_BIN_DIR}/smTestDriver${PV_EXE_SUFFIX}") + SET(PARAVIEW_SERVER_MANAGER_RESOURCES_DIRECTORY "\${ParaView_INSTALL_PREFIX}/${PV_INSTALL_LIB_DIR}/Servers/ServerManager/Resources") + SET(VTKCS_CONFIG_DIR "\${ParaView_INSTALL_PREFIX}/${PV_INSTALL_CMAKE_DIR}") +- SET(PARAVIEW_LIBRARY_DEPENDS_FILE "\${ParaView_INSTALL_PREFIX}/${PV_INSTALL_CMAKE_DIR}/ParaViewLibraryDepends.cmake") ++# SET(PARAVIEW_LIBRARY_DEPENDS_FILE "\${ParaView_INSTALL_PREFIX}/${PV_INSTALL_CMAKE_DIR}/ParaViewLibraryDepends.cmake") + SET(PARAVIEW_TARGETS_FILE "\${ParaView_INSTALL_PREFIX}/${PV_INSTALL_CMAKE_DIR}/${PV_INSTALL_EXPORT_NAME}.cmake") + SET(VTK_MAKE_INSTANTIATOR "\${ParaView_INSTALL_PREFIX}/${PV_INSTALL_CMAKE_DIR}") + diff --git a/science/paraview/files/patch-Plugins_PointSprite_StreamingView_VTK_vtkGridSampler2.cxx b/science/paraview/files/patch-Plugins_PointSprite_StreamingView_VTK_vtkGridSampler2.cxx new file mode 100644 index 000000000000..f080fa53fb02 --- /dev/null +++ b/science/paraview/files/patch-Plugins_PointSprite_StreamingView_VTK_vtkGridSampler2.cxx @@ -0,0 +1,11 @@ +--- Plugins/StreamingView/VTK/vtkGridSampler2.cxx.orig 2011-04-01 13:42:14.000000000 +0700 ++++ Plugins/StreamingView/VTK/vtkGridSampler2.cxx 2011-04-01 13:48:03.000000000 +0700 +@@ -21,7 +21,7 @@ + + #include <math.h> + +-#ifdef WIN32 ++#if defined(WIN32) || defined(__FreeBSD__) + double log2(double value) + { + return log(value)/log(2.0); diff --git a/science/paraview/files/patch-VTK_GUISupport_Qt_CMakeLists.txt b/science/paraview/files/patch-VTK_GUISupport_Qt_CMakeLists.txt index 03e947220a7c..db5bb3be922d 100644 --- a/science/paraview/files/patch-VTK_GUISupport_Qt_CMakeLists.txt +++ b/science/paraview/files/patch-VTK_GUISupport_Qt_CMakeLists.txt @@ -1,14 +1,14 @@ ---- VTK/GUISupport/Qt/CMakeLists.txt.orig 2010-03-08 21:22:50.000000000 +0600 -+++ VTK/GUISupport/Qt/CMakeLists.txt 2010-04-16 11:21:17.000000000 +0700 -@@ -164,7 +164,10 @@ - ${QT_QTGUI_LIBRARY} - ) - ENDIF(QT_QTGUI_LIBRARY) --INCLUDE_DIRECTORIES(${QT_QTDESIGNER_INCLUDE_DIR}) -+INCLUDE_DIRECTORIES(BEFORE ${QT_QTDESIGNER_INCLUDE_DIR}) -+INCLUDE_DIRECTORIES(BEFORE ${QT_QTGUI_INCLUDE_DIR}) -+INCLUDE_DIRECTORIES(BEFORE ${QT_QTSQL_INCLUDE_DIR}) -+INCLUDE_DIRECTORIES(BEFORE ${QT_QTCORE_INCLUDE_DIR}) - QT4_WRAP_CPP ( PluginMocSrcs ${PluginMocHeaders} ) +--- VTK/GUISupport/Qt/CMakeLists.txt.orig 2011-03-10 00:31:41.000000000 +0600 ++++ VTK/GUISupport/Qt/CMakeLists.txt 2011-04-01 12:58:23.000000000 +0700 +@@ -352,7 +352,10 @@ + ) - # add QVTK plugin from sources + ADD_DEFINITIONS(-DQT_PLUGIN) +- INCLUDE_DIRECTORIES(${QT_QTDESIGNER_INCLUDE_DIR}) ++ INCLUDE_DIRECTORIES(BEFORE ${QT_QTDESIGNER_INCLUDE_DIR}) ++ INCLUDE_DIRECTORIES(BEFORE ${QT_QTGUI_INCLUDE_DIR}) ++ INCLUDE_DIRECTORIES(BEFORE ${QT_QTSQL_INCLUDE_DIR}) ++ INCLUDE_DIRECTORIES(BEFORE ${QT_QTCORE_INCLUDE_DIR}) + QT4_WRAP_CPP ( PluginMocSrcs ${PluginMocHeaders} ) + + # add QVTK plugin from sources diff --git a/science/paraview/files/patch-VTK_GUISupport_Qt___TestQtSQLDatabase.cxx b/science/paraview/files/patch-VTK_GUISupport_Qt___TestQtSQLDatabase.cxx new file mode 100644 index 000000000000..7c71f3b73cbc --- /dev/null +++ b/science/paraview/files/patch-VTK_GUISupport_Qt___TestQtSQLDatabase.cxx @@ -0,0 +1,11 @@ +--- VTK/GUISupport/Qt/Testing/Cxx/TestQtSQLDatabase.cxx.orig 2011-04-01 14:22:01.000000000 +0700 ++++ VTK/GUISupport/Qt/Testing/Cxx/TestQtSQLDatabase.cxx 2011-04-01 14:23:32.000000000 +0700 +@@ -21,7 +21,7 @@ + + // Check for Qt SQL module before defining this test. + #include <qglobal.h> +-#if (QT_EDITION & QT_MODULE_SQL) ++#if (defined(QT_EDITION) & defined(QT_MODULE_SQL)) + #include "vtkQtSQLDatabase.h" + #include "vtkSQLQuery.h" + #include "vtkRowQueryToTable.h" diff --git a/science/paraview/pkg-plist b/science/paraview/pkg-plist index c31fd3d4b012..efd242a22a8d 100644 --- a/science/paraview/pkg-plist +++ b/science/paraview/pkg-plist @@ -1,5 +1,4 @@ bin/kwProcessXML -bin/lproj bin/paraview bin/pvdataserver bin/pvrenderserver @@ -14,6 +13,7 @@ include/paraview-%%VERMAJORMINOR%%/Cosmo/CosmoHalo.h include/paraview-%%VERMAJORMINOR%%/Cosmo/CosmoHaloFinder.h include/paraview-%%VERMAJORMINOR%%/Cosmo/CosmoHaloFinderP.h include/paraview-%%VERMAJORMINOR%%/Cosmo/FOFHaloProperties.h +include/paraview-%%VERMAJORMINOR%%/Cosmo/HaloCenterFinder.h include/paraview-%%VERMAJORMINOR%%/Cosmo/Message.h include/paraview-%%VERMAJORMINOR%%/Cosmo/ParticleDistribute.h include/paraview-%%VERMAJORMINOR%%/Cosmo/ParticleExchange.h @@ -28,6 +28,10 @@ include/paraview-%%VERMAJORMINOR%%/DICOMParser.h include/paraview-%%VERMAJORMINOR%%/DICOMParserMap.h include/paraview-%%VERMAJORMINOR%%/DICOMTypes.h include/paraview-%%VERMAJORMINOR%%/QFilterTreeProxyModel.h +include/paraview-%%VERMAJORMINOR%%/QVTKApplication.h +include/paraview-%%VERMAJORMINOR%%/QVTKInteractor.h +include/paraview-%%VERMAJORMINOR%%/QVTKInteractorAdapter.h +include/paraview-%%VERMAJORMINOR%%/QVTKInteractorInternal.h include/paraview-%%VERMAJORMINOR%%/QVTKWidget.h include/paraview-%%VERMAJORMINOR%%/QVTKWin32Header.h include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/Icons/PVSplashScreen.png @@ -299,9 +303,7 @@ include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqAboutDialog.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqAddSourceDialog.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqAnimationSettings.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqApplicationOptions.ui -include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqBarChartDisplayPanel.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqBarChartOptionsWidget.ui -include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqBoxChartOptionsWidget.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqBoxWidget.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqCalculatorPanel.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqCameraDialog.ui @@ -329,10 +331,9 @@ include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqFixStateFilename include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqGlobalRenderViewOptions.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqHandleWidget.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqImplicitPlaneWidget.ui +include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqIsoVolumePanel.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqKeyFrameEditor.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqKeyFrameTypeWidget.ui -include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqLineChartDisplayPanel.ui -include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqLineChartOptionsWidget.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqLineSourceControls.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqLineWidget.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqLinksEditor.ui @@ -341,6 +342,7 @@ include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqLockViewSizeCust include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqMultiViewFrameMenu.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqOptionsDialog.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqOrbitCreatorDialog.ui +include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqParallelCoordinatesChartDisplayPanel.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqParticleTracerPanel.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqPipelineTimeKeyFrameEditor.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqPluginDialog.ui @@ -360,12 +362,10 @@ include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqSelectionInputWi include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqSelectionInspectorPanel.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqServerBrowser.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqServerStartupDialog.ui -include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqSignalAdaptorKeyFrameValue.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqSphereWidget.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqSplineWidget.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqSpreadSheetDisplayEditor.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqSpreadSheetViewDecorator.ui -include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqStackedChartOptionsWidget.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqStreamTracerPanel.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqTextDisplayPropertiesWidget.ui include/paraview-%%VERMAJORMINOR%%/Qt/Components/Resources/UI/pqThresholdPanel.ui @@ -475,7 +475,6 @@ include/paraview-%%VERMAJORMINOR%%/pq3DWidgetInterface.h include/paraview-%%VERMAJORMINOR%%/pqAboutDialog.h include/paraview-%%VERMAJORMINOR%%/pqAboutDialogReaction.h include/paraview-%%VERMAJORMINOR%%/pqActionGroupInterface.h -include/paraview-%%VERMAJORMINOR%%/pqActiveChartOptions.h include/paraview-%%VERMAJORMINOR%%/pqActiveObjects.h include/paraview-%%VERMAJORMINOR%%/pqActiveRenderViewOptions.h include/paraview-%%VERMAJORMINOR%%/pqActiveServer.h @@ -508,14 +507,6 @@ include/paraview-%%VERMAJORMINOR%%/pqAutoGeneratedObjectPanel.h include/paraview-%%VERMAJORMINOR%%/pqAutoLoadPluginXMLBehavior.h include/paraview-%%VERMAJORMINOR%%/pqAutoStartInterface.h include/paraview-%%VERMAJORMINOR%%/pqAxesToolbar.h -include/paraview-%%VERMAJORMINOR%%/pqBarChartDisplayPanel.h -include/paraview-%%VERMAJORMINOR%%/pqBarChartOptionsEditor.h -include/paraview-%%VERMAJORMINOR%%/pqBarChartOptionsHandler.h -include/paraview-%%VERMAJORMINOR%%/pqBarChartView.h -include/paraview-%%VERMAJORMINOR%%/pqBarChartViewContextMenuHandler.h -include/paraview-%%VERMAJORMINOR%%/pqBoxChartOptionsEditor.h -include/paraview-%%VERMAJORMINOR%%/pqBoxChartOptionsHandler.h -include/paraview-%%VERMAJORMINOR%%/pqBoxChartViewContextMenuHandler.h include/paraview-%%VERMAJORMINOR%%/pqBoxWidget.h include/paraview-%%VERMAJORMINOR%%/pqBrandPluginsLoader.h include/paraview-%%VERMAJORMINOR%%/pqCalculatorPanel.h @@ -528,16 +519,10 @@ include/paraview-%%VERMAJORMINOR%%/pqCameraUndoRedoReaction.h include/paraview-%%VERMAJORMINOR%%/pqCategoryToolbarsBehavior.h include/paraview-%%VERMAJORMINOR%%/pqChangeInputDialog.h include/paraview-%%VERMAJORMINOR%%/pqChangePipelineInputReaction.h -include/paraview-%%VERMAJORMINOR%%/pqChartOptionsEditor.h -include/paraview-%%VERMAJORMINOR%%/pqChartOptionsHandler.h include/paraview-%%VERMAJORMINOR%%/pqChartPixelScale.h include/paraview-%%VERMAJORMINOR%%/pqChartPrintSave.h include/paraview-%%VERMAJORMINOR%%/pqChartRepresentation.h -include/paraview-%%VERMAJORMINOR%%/pqChartSeriesEditorModel.h include/paraview-%%VERMAJORMINOR%%/pqChartValue.h -include/paraview-%%VERMAJORMINOR%%/pqChartView.h -include/paraview-%%VERMAJORMINOR%%/pqChartViewContextMenu.h -include/paraview-%%VERMAJORMINOR%%/pqChartViewContextMenuHandler.h include/paraview-%%VERMAJORMINOR%%/pqCheckBoxPixMaps.h include/paraview-%%VERMAJORMINOR%%/pqCheckableHeaderModel.h include/paraview-%%VERMAJORMINOR%%/pqCheckableHeaderView.h @@ -558,13 +543,13 @@ include/paraview-%%VERMAJORMINOR%%/pqColorToolbar.h include/paraview-%%VERMAJORMINOR%%/pqComboBoxDomain.h include/paraview-%%VERMAJORMINOR%%/pqCommandLineOptionsBehavior.h include/paraview-%%VERMAJORMINOR%%/pqCommandServerStartup.h -include/paraview-%%VERMAJORMINOR%%/pqComparativeBarChartView.h -include/paraview-%%VERMAJORMINOR%%/pqComparativeChartView.h +include/paraview-%%VERMAJORMINOR%%/pqComparativeContextView.h include/paraview-%%VERMAJORMINOR%%/pqComparativeCueWidget.h -include/paraview-%%VERMAJORMINOR%%/pqComparativeLineChartView.h include/paraview-%%VERMAJORMINOR%%/pqComparativePlotView.h include/paraview-%%VERMAJORMINOR%%/pqComparativeRenderView.h include/paraview-%%VERMAJORMINOR%%/pqComparativeVisPanel.h +include/paraview-%%VERMAJORMINOR%%/pqComparativeXYBarChartView.h +include/paraview-%%VERMAJORMINOR%%/pqComparativeXYChartView.h include/paraview-%%VERMAJORMINOR%%/pqComponentsExport.h include/paraview-%%VERMAJORMINOR%%/pqComponentsInit.h include/paraview-%%VERMAJORMINOR%%/pqComponentsTestUtility.h @@ -573,6 +558,7 @@ include/paraview-%%VERMAJORMINOR%%/pqConsoleWidget.h include/paraview-%%VERMAJORMINOR%%/pqContextView.h include/paraview-%%VERMAJORMINOR%%/pqContourPanel.h include/paraview-%%VERMAJORMINOR%%/pqContourWidget.h +include/paraview-%%VERMAJORMINOR%%/pqCopyReaction.h include/paraview-%%VERMAJORMINOR%%/pqCoreExport.h include/paraview-%%VERMAJORMINOR%%/pqCoreInit.h include/paraview-%%VERMAJORMINOR%%/pqCoreTestUtility.h @@ -600,6 +586,7 @@ include/paraview-%%VERMAJORMINOR%%/pqDeleteBehavior.h include/paraview-%%VERMAJORMINOR%%/pqDeleteReaction.h include/paraview-%%VERMAJORMINOR%%/pqDelimitedTextParser.h include/paraview-%%VERMAJORMINOR%%/pqDialog.h +include/paraview-%%VERMAJORMINOR%%/pqDisplayArrayWidget.h include/paraview-%%VERMAJORMINOR%%/pqDisplayColorWidget.h include/paraview-%%VERMAJORMINOR%%/pqDisplayPanel.h include/paraview-%%VERMAJORMINOR%%/pqDisplayPanelDecoratorInterface.h @@ -650,14 +637,10 @@ include/paraview-%%VERMAJORMINOR%%/pqImageTip.h include/paraview-%%VERMAJORMINOR%%/pqImageUtil.h include/paraview-%%VERMAJORMINOR%%/pqImplicitPlaneWidget.h include/paraview-%%VERMAJORMINOR%%/pqIntRangeWidget.h +include/paraview-%%VERMAJORMINOR%%/pqIsoVolumePanel.h include/paraview-%%VERMAJORMINOR%%/pqKeyFrameEditor.h include/paraview-%%VERMAJORMINOR%%/pqKeyFrameTimeValidator.h include/paraview-%%VERMAJORMINOR%%/pqKeyFrameTypeWidget.h -include/paraview-%%VERMAJORMINOR%%/pqLineChartDisplayPanel.h -include/paraview-%%VERMAJORMINOR%%/pqLineChartOptionsEditor.h -include/paraview-%%VERMAJORMINOR%%/pqLineChartOptionsHandler.h -include/paraview-%%VERMAJORMINOR%%/pqLineChartView.h -include/paraview-%%VERMAJORMINOR%%/pqLineChartViewContextMenuHandler.h include/paraview-%%VERMAJORMINOR%%/pqLineEdit.h include/paraview-%%VERMAJORMINOR%%/pqLineSourceWidget.h include/paraview-%%VERMAJORMINOR%%/pqLineWidget.h @@ -665,7 +648,6 @@ include/paraview-%%VERMAJORMINOR%%/pqLinkViewWidget.h include/paraview-%%VERMAJORMINOR%%/pqLinksEditor.h include/paraview-%%VERMAJORMINOR%%/pqLinksManager.h include/paraview-%%VERMAJORMINOR%%/pqLinksModel.h -include/paraview-%%VERMAJORMINOR%%/pqListNewProxyDefinitionsBehavior.h include/paraview-%%VERMAJORMINOR%%/pqListWidgetCheckHelper.h include/paraview-%%VERMAJORMINOR%%/pqListWidgetItemObject.h include/paraview-%%VERMAJORMINOR%%/pqLoadDataReaction.h @@ -673,6 +655,7 @@ include/paraview-%%VERMAJORMINOR%%/pqLoadStateReaction.h include/paraview-%%VERMAJORMINOR%%/pqLoadedFormObjectPanel.h include/paraview-%%VERMAJORMINOR%%/pqLockViewSizeCustomDialog.h include/paraview-%%VERMAJORMINOR%%/pqLookupTableManager.h +include/paraview-%%VERMAJORMINOR%%/pqMacroReaction.h include/paraview-%%VERMAJORMINOR%%/pqMainControlsToolbar.h include/paraview-%%VERMAJORMINOR%%/pqManageCustomFiltersReaction.h include/paraview-%%VERMAJORMINOR%%/pqManageLinksReaction.h @@ -688,6 +671,7 @@ include/paraview-%%VERMAJORMINOR%%/pqObjectBuilder.h include/paraview-%%VERMAJORMINOR%%/pqObjectInspectorWidget.h include/paraview-%%VERMAJORMINOR%%/pqObjectPanel.h include/paraview-%%VERMAJORMINOR%%/pqObjectPanelInterface.h +include/paraview-%%VERMAJORMINOR%%/pqObjectPickingBehavior.h include/paraview-%%VERMAJORMINOR%%/pqOptions.h include/paraview-%%VERMAJORMINOR%%/pqOptionsContainer.h include/paraview-%%VERMAJORMINOR%%/pqOptionsDialog.h @@ -704,10 +688,14 @@ include/paraview-%%VERMAJORMINOR%%/pqPVApplicationCore.h include/paraview-%%VERMAJORMINOR%%/pqPVNewSourceBehavior.h include/paraview-%%VERMAJORMINOR%%/pqParaViewBehaviors.h include/paraview-%%VERMAJORMINOR%%/pqParaViewMenuBuilders.h +include/paraview-%%VERMAJORMINOR%%/pqParallelCoordinatesChartDisplayPanel.h +include/paraview-%%VERMAJORMINOR%%/pqParallelCoordinatesChartView.h +include/paraview-%%VERMAJORMINOR%%/pqParallelCoordinatesSettingsModel.h include/paraview-%%VERMAJORMINOR%%/pqParticleTracerPanel.h include/paraview-%%VERMAJORMINOR%%/pqPersistentMainWindowStateBehavior.h include/paraview-%%VERMAJORMINOR%%/pqPickHelper.h include/paraview-%%VERMAJORMINOR%%/pqPipelineBrowserWidget.h +include/paraview-%%VERMAJORMINOR%%/pqPipelineContextMenuBehavior.h include/paraview-%%VERMAJORMINOR%%/pqPipelineFilter.h include/paraview-%%VERMAJORMINOR%%/pqPipelineModel.h include/paraview-%%VERMAJORMINOR%%/pqPipelineModelSelectionAdaptor.h @@ -721,6 +709,9 @@ include/paraview-%%VERMAJORMINOR%%/pqPluginDialog.h include/paraview-%%VERMAJORMINOR%%/pqPluginDockWidgetsBehavior.h include/paraview-%%VERMAJORMINOR%%/pqPluginManager.h include/paraview-%%VERMAJORMINOR%%/pqPluginPathBehavior.h +include/paraview-%%VERMAJORMINOR%%/pqPluginTreeWidget.h +include/paraview-%%VERMAJORMINOR%%/pqPluginTreeWidgetEventPlayer.h +include/paraview-%%VERMAJORMINOR%%/pqPluginTreeWidgetEventTranslator.h include/paraview-%%VERMAJORMINOR%%/pqPointSourceWidget.h include/paraview-%%VERMAJORMINOR%%/pqProgressBar.h include/paraview-%%VERMAJORMINOR%%/pqProgressBarHelper.h @@ -739,6 +730,7 @@ include/paraview-%%VERMAJORMINOR%%/pqProxyTabWidget.h include/paraview-%%VERMAJORMINOR%%/pqProxyUnRegisterUndoElement.h include/paraview-%%VERMAJORMINOR%%/pqPythonEventSourceImage.h include/paraview-%%VERMAJORMINOR%%/pqPythonShellReaction.h +include/paraview-%%VERMAJORMINOR%%/pqQVTKWidget.h include/paraview-%%VERMAJORMINOR%%/pqQVTKWidgetEventPlayer.h include/paraview-%%VERMAJORMINOR%%/pqQVTKWidgetEventTranslator.h include/paraview-%%VERMAJORMINOR%%/pqQtMessageHandlerBehavior.h @@ -805,14 +797,11 @@ include/paraview-%%VERMAJORMINOR%%/pqSetData.h include/paraview-%%VERMAJORMINOR%%/pqSetName.h include/paraview-%%VERMAJORMINOR%%/pqSettings.h include/paraview-%%VERMAJORMINOR%%/pqSignalAdaptorCompositeTreeWidget.h -include/paraview-%%VERMAJORMINOR%%/pqSignalAdaptorKeyFrameTime.h include/paraview-%%VERMAJORMINOR%%/pqSignalAdaptorKeyFrameType.h -include/paraview-%%VERMAJORMINOR%%/pqSignalAdaptorKeyFrameValue.h include/paraview-%%VERMAJORMINOR%%/pqSignalAdaptorSILModel.h include/paraview-%%VERMAJORMINOR%%/pqSignalAdaptorSelectionTreeWidget.h include/paraview-%%VERMAJORMINOR%%/pqSignalAdaptorTreeWidget.h include/paraview-%%VERMAJORMINOR%%/pqSignalAdaptors.h -include/paraview-%%VERMAJORMINOR%%/pqSiloPanel.h include/paraview-%%VERMAJORMINOR%%/pqSimpleServerStartup.h include/paraview-%%VERMAJORMINOR%%/pqSourceComboBox.h include/paraview-%%VERMAJORMINOR%%/pqSourcesMenuReaction.h @@ -827,9 +816,6 @@ include/paraview-%%VERMAJORMINOR%%/pqSpreadSheetViewModel.h include/paraview-%%VERMAJORMINOR%%/pqSpreadSheetViewSelectionModel.h include/paraview-%%VERMAJORMINOR%%/pqSpreadSheetViewWidget.h include/paraview-%%VERMAJORMINOR%%/pqSpreadSheetVisibilityBehavior.h -include/paraview-%%VERMAJORMINOR%%/pqStackedChartOptionsEditor.h -include/paraview-%%VERMAJORMINOR%%/pqStackedChartOptionsHandler.h -include/paraview-%%VERMAJORMINOR%%/pqStackedChartViewContextMenuHandler.h include/paraview-%%VERMAJORMINOR%%/pqStandardColorButton.h include/paraview-%%VERMAJORMINOR%%/pqStandardColorLinkAdaptor.h include/paraview-%%VERMAJORMINOR%%/pqStandardServerManagerModelInterface.h @@ -847,6 +833,7 @@ include/paraview-%%VERMAJORMINOR%%/pqTimeKeeper.h include/paraview-%%VERMAJORMINOR%%/pqTimerLogDisplay.h include/paraview-%%VERMAJORMINOR%%/pqTimerLogReaction.h include/paraview-%%VERMAJORMINOR%%/pqToolTipTrapper.h +include/paraview-%%VERMAJORMINOR%%/pqTraceReaction.h include/paraview-%%VERMAJORMINOR%%/pqTreeLayoutStrategyInterface.h include/paraview-%%VERMAJORMINOR%%/pqTreeView.h include/paraview-%%VERMAJORMINOR%%/pqTreeViewSelectionHelper.h @@ -861,9 +848,11 @@ include/paraview-%%VERMAJORMINOR%%/pqUndoRedoBehavior.h include/paraview-%%VERMAJORMINOR%%/pqUndoRedoReaction.h include/paraview-%%VERMAJORMINOR%%/pqUndoStack.h include/paraview-%%VERMAJORMINOR%%/pqUndoStackBuilder.h +include/paraview-%%VERMAJORMINOR%%/pqUpdateProxyDefinitionsBehavior.h include/paraview-%%VERMAJORMINOR%%/pqVCRController.h include/paraview-%%VERMAJORMINOR%%/pqVCRToolbar.h include/paraview-%%VERMAJORMINOR%%/pqVariableType.h +include/paraview-%%VERMAJORMINOR%%/pqVerifyRequiredPluginBehavior.h include/paraview-%%VERMAJORMINOR%%/pqView.h include/paraview-%%VERMAJORMINOR%%/pqViewContextMenuHandler.h include/paraview-%%VERMAJORMINOR%%/pqViewContextMenuManager.h @@ -894,15 +883,18 @@ include/paraview-%%VERMAJORMINOR%%/verdict_mangle.h include/paraview-%%VERMAJORMINOR%%/vtk3DS.h include/paraview-%%VERMAJORMINOR%%/vtk3DSImporter.h include/paraview-%%VERMAJORMINOR%%/vtk3DWidget.h +include/paraview-%%VERMAJORMINOR%%/vtk3DWidgetRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkABI.h include/paraview-%%VERMAJORMINOR%%/vtkAMRBox.h include/paraview-%%VERMAJORMINOR%%/vtkAMRDualClip.h include/paraview-%%VERMAJORMINOR%%/vtkAMRDualContour.h include/paraview-%%VERMAJORMINOR%%/vtkAMRDualGridHelper.h +include/paraview-%%VERMAJORMINOR%%/vtkASCIITextCodec.h include/paraview-%%VERMAJORMINOR%%/vtkAVSucdReader.h include/paraview-%%VERMAJORMINOR%%/vtkAbstractArray.h include/paraview-%%VERMAJORMINOR%%/vtkAbstractCellLocator.h include/paraview-%%VERMAJORMINOR%%/vtkAbstractContextBufferId.h +include/paraview-%%VERMAJORMINOR%%/vtkAbstractContextItem.h include/paraview-%%VERMAJORMINOR%%/vtkAbstractInterpolatedVelocityField.h include/paraview-%%VERMAJORMINOR%%/vtkAbstractIterator.h include/paraview-%%VERMAJORMINOR%%/vtkAbstractIterator.txx @@ -932,6 +924,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkAffineRepresentation2D.h include/paraview-%%VERMAJORMINOR%%/vtkAffineWidget.h include/paraview-%%VERMAJORMINOR%%/vtkAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkAlgorithmOutput.h +include/paraview-%%VERMAJORMINOR%%/vtkAllToNRedistributeCompositePolyData.h include/paraview-%%VERMAJORMINOR%%/vtkAllToNRedistributePolyData.h include/paraview-%%VERMAJORMINOR%%/vtkAmoebaMinimizer.h include/paraview-%%VERMAJORMINOR%%/vtkAngleRepresentation.h @@ -959,6 +952,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkApproximatingSubdivisionFilter.h include/paraview-%%VERMAJORMINOR%%/vtkArcParallelEdgeStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkArcPlotter.h include/paraview-%%VERMAJORMINOR%%/vtkArcSource.h +include/paraview-%%VERMAJORMINOR%%/vtkAreaContourSpectrumFilter.h include/paraview-%%VERMAJORMINOR%%/vtkAreaLayout.h include/paraview-%%VERMAJORMINOR%%/vtkAreaLayoutStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkAreaPicker.h @@ -999,12 +993,15 @@ include/paraview-%%VERMAJORMINOR%%/vtkAttributeDataToTableFilter.h include/paraview-%%VERMAJORMINOR%%/vtkAttributesErrorMetric.h include/paraview-%%VERMAJORMINOR%%/vtkAxes.h include/paraview-%%VERMAJORMINOR%%/vtkAxesActor.h +include/paraview-%%VERMAJORMINOR%%/vtkAxesTransformRepresentation.h +include/paraview-%%VERMAJORMINOR%%/vtkAxesTransformWidget.h include/paraview-%%VERMAJORMINOR%%/vtkAxis.h include/paraview-%%VERMAJORMINOR%%/vtkAxisActor.h include/paraview-%%VERMAJORMINOR%%/vtkAxisActor2D.h include/paraview-%%VERMAJORMINOR%%/vtkBMPReader.h include/paraview-%%VERMAJORMINOR%%/vtkBMPWriter.h include/paraview-%%VERMAJORMINOR%%/vtkBSPCuts.h +include/paraview-%%VERMAJORMINOR%%/vtkBSPCutsGenerator.h include/paraview-%%VERMAJORMINOR%%/vtkBSPIntersections.h include/paraview-%%VERMAJORMINOR%%/vtkBYUReader.h include/paraview-%%VERMAJORMINOR%%/vtkBYUWriter.h @@ -1017,6 +1014,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkBase64InputStream.h include/paraview-%%VERMAJORMINOR%%/vtkBase64OutputStream.h include/paraview-%%VERMAJORMINOR%%/vtkBase64Utilities.h include/paraview-%%VERMAJORMINOR%%/vtkBezierContourLineInterpolator.h +include/paraview-%%VERMAJORMINOR%%/vtkBiDimensionalRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkBiDimensionalRepresentation2D.h include/paraview-%%VERMAJORMINOR%%/vtkBiDimensionalWidget.h include/paraview-%%VERMAJORMINOR%%/vtkBiQuadraticQuad.h @@ -1045,6 +1043,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkBoxRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkBoxWidget.h include/paraview-%%VERMAJORMINOR%%/vtkBoxWidget2.h include/paraview-%%VERMAJORMINOR%%/vtkBranchExtentTranslator.h +include/paraview-%%VERMAJORMINOR%%/vtkBreakPoint.h include/paraview-%%VERMAJORMINOR%%/vtkBrownianPoints.h include/paraview-%%VERMAJORMINOR%%/vtkBrush.h include/paraview-%%VERMAJORMINOR%%/vtkButterflySubdivisionFilter.h @@ -1071,7 +1070,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkCaptionRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkCaptionWidget.h include/paraview-%%VERMAJORMINOR%%/vtkCardinalSpline.h include/paraview-%%VERMAJORMINOR%%/vtkCastToConcrete.h -include/paraview-%%VERMAJORMINOR%%/vtkCaveRenderManager.h +include/paraview-%%VERMAJORMINOR%%/vtkCaveSynchronizedRenderers.h include/paraview-%%VERMAJORMINOR%%/vtkCell.h include/paraview-%%VERMAJORMINOR%%/vtkCell3D.h include/paraview-%%VERMAJORMINOR%%/vtkCellArray.h @@ -1085,6 +1084,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkCellLinks.h include/paraview-%%VERMAJORMINOR%%/vtkCellLocator.h include/paraview-%%VERMAJORMINOR%%/vtkCellLocatorInterpolatedVelocityField.h include/paraview-%%VERMAJORMINOR%%/vtkCellPicker.h +include/paraview-%%VERMAJORMINOR%%/vtkCellQuality.h include/paraview-%%VERMAJORMINOR%%/vtkCellType.h include/paraview-%%VERMAJORMINOR%%/vtkCellTypes.h include/paraview-%%VERMAJORMINOR%%/vtkCenteredSliderRepresentation.h @@ -1093,8 +1093,11 @@ include/paraview-%%VERMAJORMINOR%%/vtkChacoGraphReader.h include/paraview-%%VERMAJORMINOR%%/vtkChacoReader.h include/paraview-%%VERMAJORMINOR%%/vtkCharArray.h include/paraview-%%VERMAJORMINOR%%/vtkChart.h +include/paraview-%%VERMAJORMINOR%%/vtkChartHistogram2D.h include/paraview-%%VERMAJORMINOR%%/vtkChartLegend.h include/paraview-%%VERMAJORMINOR%%/vtkChartParallelCoordinates.h +include/paraview-%%VERMAJORMINOR%%/vtkChartPie.h +include/paraview-%%VERMAJORMINOR%%/vtkChartRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkChartXY.h include/paraview-%%VERMAJORMINOR%%/vtkCheckerboardRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkCheckerboardWidget.h @@ -1105,12 +1108,15 @@ include/paraview-%%VERMAJORMINOR%%/vtkCleanPolyData.h include/paraview-%%VERMAJORMINOR%%/vtkCleanUnstructuredGrid.h include/paraview-%%VERMAJORMINOR%%/vtkClearZPass.h include/paraview-%%VERMAJORMINOR%%/vtkClientConnection.h +include/paraview-%%VERMAJORMINOR%%/vtkClientServerCompositePass.h include/paraview-%%VERMAJORMINOR%%/vtkClientServerConfigure.h include/paraview-%%VERMAJORMINOR%%/vtkClientServerID.h include/paraview-%%VERMAJORMINOR%%/vtkClientServerInterpreter.h include/paraview-%%VERMAJORMINOR%%/vtkClientServerMoveData.h include/paraview-%%VERMAJORMINOR%%/vtkClientServerStream.h +include/paraview-%%VERMAJORMINOR%%/vtkClientServerSynchronizedRenderers.h include/paraview-%%VERMAJORMINOR%%/vtkClientSocket.h +include/paraview-%%VERMAJORMINOR%%/vtkClipClosedSurface.h include/paraview-%%VERMAJORMINOR%%/vtkClipConvexPolyData.h include/paraview-%%VERMAJORMINOR%%/vtkClipDataSet.h include/paraview-%%VERMAJORMINOR%%/vtkClipHyperOctree.h @@ -1129,9 +1135,11 @@ include/paraview-%%VERMAJORMINOR%%/vtkCollectTable.h include/paraview-%%VERMAJORMINOR%%/vtkCollection.h include/paraview-%%VERMAJORMINOR%%/vtkCollectionIterator.h include/paraview-%%VERMAJORMINOR%%/vtkColor.h +include/paraview-%%VERMAJORMINOR%%/vtkColorLegend.h include/paraview-%%VERMAJORMINOR%%/vtkColorMaterialHelper.h include/paraview-%%VERMAJORMINOR%%/vtkColorSeries.h include/paraview-%%VERMAJORMINOR%%/vtkColorTransferFunction.h +include/paraview-%%VERMAJORMINOR%%/vtkColorTransferFunctionItem.h include/paraview-%%VERMAJORMINOR%%/vtkCommand.h include/paraview-%%VERMAJORMINOR%%/vtkCommandOptions.h include/paraview-%%VERMAJORMINOR%%/vtkCommandOptionsXMLParser.h @@ -1147,15 +1155,20 @@ include/paraview-%%VERMAJORMINOR%%/vtkCompositeDataGeometryFilter.h include/paraview-%%VERMAJORMINOR%%/vtkCompositeDataIterator.h include/paraview-%%VERMAJORMINOR%%/vtkCompositeDataPipeline.h include/paraview-%%VERMAJORMINOR%%/vtkCompositeDataProbeFilter.h +include/paraview-%%VERMAJORMINOR%%/vtkCompositeDataReader.h include/paraview-%%VERMAJORMINOR%%/vtkCompositeDataSet.h include/paraview-%%VERMAJORMINOR%%/vtkCompositeDataSetAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkCompositeDataToUnstructuredGridFilter.h +include/paraview-%%VERMAJORMINOR%%/vtkCompositeDataWriter.h include/paraview-%%VERMAJORMINOR%%/vtkCompositePainter.h include/paraview-%%VERMAJORMINOR%%/vtkCompositePolyDataMapper.h include/paraview-%%VERMAJORMINOR%%/vtkCompositePolyDataMapper2.h include/paraview-%%VERMAJORMINOR%%/vtkCompositeRGBAPass.h include/paraview-%%VERMAJORMINOR%%/vtkCompositeRenderManager.h +include/paraview-%%VERMAJORMINOR%%/vtkCompositeRepresentation.h +include/paraview-%%VERMAJORMINOR%%/vtkCompositeTransferFunctionItem.h include/paraview-%%VERMAJORMINOR%%/vtkCompositeZPass.h +include/paraview-%%VERMAJORMINOR%%/vtkCompositedSynchronizedRenderers.h include/paraview-%%VERMAJORMINOR%%/vtkCompositer.h include/paraview-%%VERMAJORMINOR%%/vtkCompressCompositer.h include/paraview-%%VERMAJORMINOR%%/vtkComputeHistogram2DOutliers.h @@ -1173,10 +1186,14 @@ include/paraview-%%VERMAJORMINOR%%/vtkContainer.h include/paraview-%%VERMAJORMINOR%%/vtkContext2D.h include/paraview-%%VERMAJORMINOR%%/vtkContextActor.h include/paraview-%%VERMAJORMINOR%%/vtkContextBufferId.h +include/paraview-%%VERMAJORMINOR%%/vtkContextClip.h include/paraview-%%VERMAJORMINOR%%/vtkContextDevice2D.h include/paraview-%%VERMAJORMINOR%%/vtkContextItem.h include/paraview-%%VERMAJORMINOR%%/vtkContextMapper2D.h +include/paraview-%%VERMAJORMINOR%%/vtkContextMouseEvent.h +include/paraview-%%VERMAJORMINOR%%/vtkContextNamedOptions.h include/paraview-%%VERMAJORMINOR%%/vtkContextScene.h +include/paraview-%%VERMAJORMINOR%%/vtkContextTransform.h include/paraview-%%VERMAJORMINOR%%/vtkContextView.h include/paraview-%%VERMAJORMINOR%%/vtkContingencyStatistics.h include/paraview-%%VERMAJORMINOR%%/vtkContinuousValueWidget.h @@ -1187,6 +1204,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkContourLineInterpolator.h include/paraview-%%VERMAJORMINOR%%/vtkContourRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkContourValues.h include/paraview-%%VERMAJORMINOR%%/vtkContourWidget.h +include/paraview-%%VERMAJORMINOR%%/vtkControlPointsItem.h include/paraview-%%VERMAJORMINOR%%/vtkConvertSelection.h include/paraview-%%VERMAJORMINOR%%/vtkConvertSelectionDomain.h include/paraview-%%VERMAJORMINOR%%/vtkConvexPointSet.h @@ -1197,6 +1215,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkCosmicTreeLayoutStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkCriticalSection.h include/paraview-%%VERMAJORMINOR%%/vtkCubeAxesActor.h include/paraview-%%VERMAJORMINOR%%/vtkCubeAxesActor2D.h +include/paraview-%%VERMAJORMINOR%%/vtkCubeAxesRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkCubeSource.h include/paraview-%%VERMAJORMINOR%%/vtkCubicLine.h include/paraview-%%VERMAJORMINOR%%/vtkCuller.h @@ -1211,6 +1230,8 @@ include/paraview-%%VERMAJORMINOR%%/vtkCylinderSource.h include/paraview-%%VERMAJORMINOR%%/vtkCylindricalTransform.h include/paraview-%%VERMAJORMINOR%%/vtkDEMReader.h include/paraview-%%VERMAJORMINOR%%/vtkDICOMImageReader.h +include/paraview-%%VERMAJORMINOR%%/vtkDIMACSGraphReader.h +include/paraview-%%VERMAJORMINOR%%/vtkDIMACSGraphWriter.h include/paraview-%%VERMAJORMINOR%%/vtkDSPFilterDefinition.h include/paraview-%%VERMAJORMINOR%%/vtkDSPFilterGroup.h include/paraview-%%VERMAJORMINOR%%/vtkDashedStreamLine.h @@ -1222,6 +1243,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkDataArrayTemplate.h include/paraview-%%VERMAJORMINOR%%/vtkDataArrayTemplate.txx include/paraview-%%VERMAJORMINOR%%/vtkDataArrayTemplateImplicit.txx include/paraview-%%VERMAJORMINOR%%/vtkDataCompressor.h +include/paraview-%%VERMAJORMINOR%%/vtkDataLabelRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkDataObject.h include/paraview-%%VERMAJORMINOR%%/vtkDataObjectAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkDataObjectCollection.h @@ -1257,6 +1279,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkDataSetTriangleFilter.h include/paraview-%%VERMAJORMINOR%%/vtkDataSetWriter.h include/paraview-%%VERMAJORMINOR%%/vtkDataTransferHelper.h include/paraview-%%VERMAJORMINOR%%/vtkDataWriter.h +include/paraview-%%VERMAJORMINOR%%/vtkDatabaseToTableReader.h include/paraview-%%VERMAJORMINOR%%/vtkDebugLeaks.h include/paraview-%%VERMAJORMINOR%%/vtkDebugLeaksManager.h include/paraview-%%VERMAJORMINOR%%/vtkDecimatePolylineFilter.h @@ -1274,8 +1297,6 @@ include/paraview-%%VERMAJORMINOR%%/vtkDensifyPolyData.h include/paraview-%%VERMAJORMINOR%%/vtkDepthPeelingPass.h include/paraview-%%VERMAJORMINOR%%/vtkDepthSortPolyData.h include/paraview-%%VERMAJORMINOR%%/vtkDescriptiveStatistics.h -include/paraview-%%VERMAJORMINOR%%/vtkDesktopDeliveryClient.h -include/paraview-%%VERMAJORMINOR%%/vtkDesktopDeliveryServer.h include/paraview-%%VERMAJORMINOR%%/vtkDiagonalMatrixSource.h include/paraview-%%VERMAJORMINOR%%/vtkDicer.h include/paraview-%%VERMAJORMINOR%%/vtkDijkstraGraphGeodesicPath.h @@ -1292,6 +1313,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkDiskSource.h include/paraview-%%VERMAJORMINOR%%/vtkDisplayListPainter.h include/paraview-%%VERMAJORMINOR%%/vtkDistanceRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkDistanceRepresentation2D.h +include/paraview-%%VERMAJORMINOR%%/vtkDistanceRepresentation3D.h include/paraview-%%VERMAJORMINOR%%/vtkDistanceToCamera.h include/paraview-%%VERMAJORMINOR%%/vtkDistanceWidget.h include/paraview-%%VERMAJORMINOR%%/vtkDistributedDataFilter.h @@ -1320,16 +1342,11 @@ include/paraview-%%VERMAJORMINOR%%/vtkEllipticalButtonSource.h include/paraview-%%VERMAJORMINOR%%/vtkEmptyCell.h include/paraview-%%VERMAJORMINOR%%/vtkEmptyRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkEnSight6BinaryReader.h -include/paraview-%%VERMAJORMINOR%%/vtkEnSight6BinaryReader2.h include/paraview-%%VERMAJORMINOR%%/vtkEnSight6Reader.h -include/paraview-%%VERMAJORMINOR%%/vtkEnSight6Reader2.h include/paraview-%%VERMAJORMINOR%%/vtkEnSightGoldBinaryReader.h -include/paraview-%%VERMAJORMINOR%%/vtkEnSightGoldBinaryReader2.h include/paraview-%%VERMAJORMINOR%%/vtkEnSightGoldReader.h -include/paraview-%%VERMAJORMINOR%%/vtkEnSightGoldReader2.h include/paraview-%%VERMAJORMINOR%%/vtkEnSightMasterServerReader.h include/paraview-%%VERMAJORMINOR%%/vtkEnSightReader.h -include/paraview-%%VERMAJORMINOR%%/vtkEnSightReader2.h include/paraview-%%VERMAJORMINOR%%/vtkEnSightWriter.h include/paraview-%%VERMAJORMINOR%%/vtkEncodedGradientEstimator.h include/paraview-%%VERMAJORMINOR%%/vtkEncodedGradientShader.h @@ -1340,6 +1357,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkEvent.h include/paraview-%%VERMAJORMINOR%%/vtkEventForwarderCommand.h include/paraview-%%VERMAJORMINOR%%/vtkEventQtSlotConnect.h include/paraview-%%VERMAJORMINOR%%/vtkExecutionScheduler.h +include/paraview-%%VERMAJORMINOR%%/vtkExecutionSchedulerManager.h include/paraview-%%VERMAJORMINOR%%/vtkExecutive.h include/paraview-%%VERMAJORMINOR%%/vtkExecutiveCollection.h include/paraview-%%VERMAJORMINOR%%/vtkExodusFileSeriesReader.h @@ -1401,6 +1419,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkFeatureEdges.h include/paraview-%%VERMAJORMINOR%%/vtkFieldData.h include/paraview-%%VERMAJORMINOR%%/vtkFieldDataToAttributeDataFilter.h include/paraview-%%VERMAJORMINOR%%/vtkFileOutputWindow.h +include/paraview-%%VERMAJORMINOR%%/vtkFileSequenceParser.h include/paraview-%%VERMAJORMINOR%%/vtkFileSeriesReader.h include/paraview-%%VERMAJORMINOR%%/vtkFileSeriesWriter.h include/paraview-%%VERMAJORMINOR%%/vtkFillHolesFilter.h @@ -1426,6 +1445,8 @@ include/paraview-%%VERMAJORMINOR%%/vtkFollower.h include/paraview-%%VERMAJORMINOR%%/vtkForceDirectedLayoutStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkFrameBufferObject.h include/paraview-%%VERMAJORMINOR%%/vtkFreeTypeLabelRenderStrategy.h +include/paraview-%%VERMAJORMINOR%%/vtkFreeTypeStringToImage.h +include/paraview-%%VERMAJORMINOR%%/vtkFreeTypeTools.h include/paraview-%%VERMAJORMINOR%%/vtkFreeTypeUtilities.h include/paraview-%%VERMAJORMINOR%%/vtkFrustumCoverageCuller.h include/paraview-%%VERMAJORMINOR%%/vtkFrustumSource.h @@ -1433,7 +1454,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkFunctionParser.h include/paraview-%%VERMAJORMINOR%%/vtkFunctionSet.h include/paraview-%%VERMAJORMINOR%%/vtkGAMBITReader.h include/paraview-%%VERMAJORMINOR%%/vtkGESignaReader.h -%%GL2PS%%include/paraview-%%VERMAJORMINOR%%/vtkGL2PSExporter.h +include/paraview-%%VERMAJORMINOR%%/vtkGL2PSExporter.h include/paraview-%%VERMAJORMINOR%%/vtkGLSLShader.h include/paraview-%%VERMAJORMINOR%%/vtkGLSLShaderDeviceAdapter.h include/paraview-%%VERMAJORMINOR%%/vtkGLSLShaderDeviceAdapter2.h @@ -1465,12 +1486,12 @@ include/paraview-%%VERMAJORMINOR%%/vtkGenericDataSetAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkGenericDataSetTessellator.h include/paraview-%%VERMAJORMINOR%%/vtkGenericEdgeTable.h include/paraview-%%VERMAJORMINOR%%/vtkGenericEnSightReader.h -include/paraview-%%VERMAJORMINOR%%/vtkGenericEnSightReader2.h include/paraview-%%VERMAJORMINOR%%/vtkGenericFilteringInstantiator.h include/paraview-%%VERMAJORMINOR%%/vtkGenericGeometryFilter.h include/paraview-%%VERMAJORMINOR%%/vtkGenericGlyph3DFilter.h include/paraview-%%VERMAJORMINOR%%/vtkGenericInterpolatedVelocityField.h include/paraview-%%VERMAJORMINOR%%/vtkGenericMovieWriter.h +include/paraview-%%VERMAJORMINOR%%/vtkGenericOpenGLRenderWindow.h include/paraview-%%VERMAJORMINOR%%/vtkGenericOutlineFilter.h include/paraview-%%VERMAJORMINOR%%/vtkGenericPointIterator.h include/paraview-%%VERMAJORMINOR%%/vtkGenericProbeFilter.h @@ -1509,11 +1530,15 @@ include/paraview-%%VERMAJORMINOR%%/vtkGeoView2D.h include/paraview-%%VERMAJORMINOR%%/vtkGeodesicPath.h include/paraview-%%VERMAJORMINOR%%/vtkGeometricErrorMetric.h include/paraview-%%VERMAJORMINOR%%/vtkGeometryFilter.h +include/paraview-%%VERMAJORMINOR%%/vtkGeometryRepresentation.h +include/paraview-%%VERMAJORMINOR%%/vtkGeometryRepresentationWithFaces.h include/paraview-%%VERMAJORMINOR%%/vtkGeovisInstantiator.h include/paraview-%%VERMAJORMINOR%%/vtkGlobFileNames.h include/paraview-%%VERMAJORMINOR%%/vtkGlobeSource.h include/paraview-%%VERMAJORMINOR%%/vtkGlyph2D.h include/paraview-%%VERMAJORMINOR%%/vtkGlyph3D.h +include/paraview-%%VERMAJORMINOR%%/vtkGlyph3DMapper.h +include/paraview-%%VERMAJORMINOR%%/vtkGlyph3DRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkGlyphSource2D.h include/paraview-%%VERMAJORMINOR%%/vtkGradientFilter.h include/paraview-%%VERMAJORMINOR%%/vtkGraph.h @@ -1596,10 +1621,11 @@ include/paraview-%%VERMAJORMINOR%%/vtkIOStreamFwd.h include/paraview-%%VERMAJORMINOR%%/vtkISIReader.h include/paraview-%%VERMAJORMINOR%%/vtkIVExporter.h include/paraview-%%VERMAJORMINOR%%/vtkIVWriter.h +include/paraview-%%VERMAJORMINOR%%/vtkIceTCompositePass.h include/paraview-%%VERMAJORMINOR%%/vtkIceTConstants.h include/paraview-%%VERMAJORMINOR%%/vtkIceTContext.h -include/paraview-%%VERMAJORMINOR%%/vtkIceTRenderManager.h include/paraview-%%VERMAJORMINOR%%/vtkIceTRenderer.h +include/paraview-%%VERMAJORMINOR%%/vtkIceTSynchronizedRenderers.h include/paraview-%%VERMAJORMINOR%%/vtkIcicleView.h include/paraview-%%VERMAJORMINOR%%/vtkIconGlyphFilter.h include/paraview-%%VERMAJORMINOR%%/vtkIdFilter.h @@ -1701,6 +1727,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkImagePlaneWidget.h include/paraview-%%VERMAJORMINOR%%/vtkImageProcessingPass.h include/paraview-%%VERMAJORMINOR%%/vtkImageProgressIterator.h include/paraview-%%VERMAJORMINOR%%/vtkImageProgressIterator.txx +include/paraview-%%VERMAJORMINOR%%/vtkImageProjection.h include/paraview-%%VERMAJORMINOR%%/vtkImageQuantizeRGBToIndex.h include/paraview-%%VERMAJORMINOR%%/vtkImageRFFT.h include/paraview-%%VERMAJORMINOR%%/vtkImageRGBToHSI.h @@ -1720,15 +1747,21 @@ include/paraview-%%VERMAJORMINOR%%/vtkImageShiftScale.h include/paraview-%%VERMAJORMINOR%%/vtkImageShrink3D.h include/paraview-%%VERMAJORMINOR%%/vtkImageSinusoidSource.h include/paraview-%%VERMAJORMINOR%%/vtkImageSkeleton2D.h +include/paraview-%%VERMAJORMINOR%%/vtkImageSliceDataDeliveryFilter.h include/paraview-%%VERMAJORMINOR%%/vtkImageSliceMapper.h +include/paraview-%%VERMAJORMINOR%%/vtkImageSliceRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkImageSobel2D.h include/paraview-%%VERMAJORMINOR%%/vtkImageSobel3D.h include/paraview-%%VERMAJORMINOR%%/vtkImageSource.h include/paraview-%%VERMAJORMINOR%%/vtkImageSpatialAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkImageSpatialFilter.h include/paraview-%%VERMAJORMINOR%%/vtkImageStencil.h +include/paraview-%%VERMAJORMINOR%%/vtkImageStencilAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkImageStencilData.h +include/paraview-%%VERMAJORMINOR%%/vtkImageStencilIterator.h +include/paraview-%%VERMAJORMINOR%%/vtkImageStencilIterator.txx include/paraview-%%VERMAJORMINOR%%/vtkImageStencilSource.h +include/paraview-%%VERMAJORMINOR%%/vtkImageStencilToImage.h include/paraview-%%VERMAJORMINOR%%/vtkImageThreshold.h include/paraview-%%VERMAJORMINOR%%/vtkImageToImageFilter.h include/paraview-%%VERMAJORMINOR%%/vtkImageToImageStencil.h @@ -1740,6 +1773,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkImageTwoInputFilter.h include/paraview-%%VERMAJORMINOR%%/vtkImageVariance3D.h include/paraview-%%VERMAJORMINOR%%/vtkImageViewer.h include/paraview-%%VERMAJORMINOR%%/vtkImageViewer2.h +include/paraview-%%VERMAJORMINOR%%/vtkImageVolumeRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkImageWeightedSum.h include/paraview-%%VERMAJORMINOR%%/vtkImageWrapPad.h include/paraview-%%VERMAJORMINOR%%/vtkImageWriter.h @@ -1822,6 +1856,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkInterpolateDataSetAttributes.h include/paraview-%%VERMAJORMINOR%%/vtkInterpolatedVelocityField.h include/paraview-%%VERMAJORMINOR%%/vtkInterpolatingSubdivisionFilter.h include/paraview-%%VERMAJORMINOR%%/vtkIntersectFragments.h +include/paraview-%%VERMAJORMINOR%%/vtkIsoVolume.h include/paraview-%%VERMAJORMINOR%%/vtkIterativeClosestPointTransform.h include/paraview-%%VERMAJORMINOR%%/vtkJPEGReader.h include/paraview-%%VERMAJORMINOR%%/vtkJPEGWriter.h @@ -1853,6 +1888,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkLabeledDataMapper.h include/paraview-%%VERMAJORMINOR%%/vtkLabeledTreeMapDataMapper.h include/paraview-%%VERMAJORMINOR%%/vtkLandmarkTransform.h include/paraview-%%VERMAJORMINOR%%/vtkLargeInteger.h +include/paraview-%%VERMAJORMINOR%%/vtkLassoStencilSource.h include/paraview-%%VERMAJORMINOR%%/vtkLeaderActor2D.h include/paraview-%%VERMAJORMINOR%%/vtkLegendBoxActor.h include/paraview-%%VERMAJORMINOR%%/vtkLegendScaleActor.h @@ -1887,6 +1923,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkLogoWidget.h include/paraview-%%VERMAJORMINOR%%/vtkLongArray.h include/paraview-%%VERMAJORMINOR%%/vtkLongLongArray.h include/paraview-%%VERMAJORMINOR%%/vtkLookupTable.h +include/paraview-%%VERMAJORMINOR%%/vtkLookupTableItem.h include/paraview-%%VERMAJORMINOR%%/vtkLookupTableWithEnabling.h include/paraview-%%VERMAJORMINOR%%/vtkLoopSubdivisionFilter.h include/paraview-%%VERMAJORMINOR%%/vtkMCubesReader.h @@ -1896,6 +1933,12 @@ include/paraview-%%VERMAJORMINOR%%/vtkMINC.h include/paraview-%%VERMAJORMINOR%%/vtkMINCImageAttributes.h include/paraview-%%VERMAJORMINOR%%/vtkMINCImageReader.h include/paraview-%%VERMAJORMINOR%%/vtkMINCImageWriter.h +include/paraview-%%VERMAJORMINOR%%/vtkMNIObjectReader.h +include/paraview-%%VERMAJORMINOR%%/vtkMNIObjectWriter.h +include/paraview-%%VERMAJORMINOR%%/vtkMNITagPointReader.h +include/paraview-%%VERMAJORMINOR%%/vtkMNITagPointWriter.h +include/paraview-%%VERMAJORMINOR%%/vtkMNITransformReader.h +include/paraview-%%VERMAJORMINOR%%/vtkMNITransformWriter.h include/paraview-%%VERMAJORMINOR%%/vtkMPASReader.h include/paraview-%%VERMAJORMINOR%%/vtkMPICompositeManager.h include/paraview-%%VERMAJORMINOR%%/vtkMPIImageReader.h @@ -1910,6 +1953,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkMapperCollection.h include/paraview-%%VERMAJORMINOR%%/vtkMarchingContourFilter.h include/paraview-%%VERMAJORMINOR%%/vtkMarchingCubes.h include/paraview-%%VERMAJORMINOR%%/vtkMarchingSquares.h +include/paraview-%%VERMAJORMINOR%%/vtkMarkSelectedRows.h include/paraview-%%VERMAJORMINOR%%/vtkMaskFields.h include/paraview-%%VERMAJORMINOR%%/vtkMaskPoints.h include/paraview-%%VERMAJORMINOR%%/vtkMaskPolyData.h @@ -1930,8 +1974,10 @@ include/paraview-%%VERMAJORMINOR%%/vtkMath.h include/paraview-%%VERMAJORMINOR%%/vtkMatricizeArray.h include/paraview-%%VERMAJORMINOR%%/vtkMatrix3x3.h include/paraview-%%VERMAJORMINOR%%/vtkMatrix4x4.h +include/paraview-%%VERMAJORMINOR%%/vtkMatrixMathFilter.h include/paraview-%%VERMAJORMINOR%%/vtkMatrixToHomogeneousTransform.h include/paraview-%%VERMAJORMINOR%%/vtkMatrixToLinearTransform.h +include/paraview-%%VERMAJORMINOR%%/vtkMeanValueCoordinatesInterpolator.h include/paraview-%%VERMAJORMINOR%%/vtkMedicalImageProperties.h include/paraview-%%VERMAJORMINOR%%/vtkMedicalImageReader2.h include/paraview-%%VERMAJORMINOR%%/vtkMemberFunctionCommand.h @@ -1976,6 +2022,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkNetCDFPOPReader.h include/paraview-%%VERMAJORMINOR%%/vtkNetCDFReader.h include/paraview-%%VERMAJORMINOR%%/vtkNetworkHierarchy.h include/paraview-%%VERMAJORMINOR%%/vtkNetworkImageSource.h +include/paraview-%%VERMAJORMINOR%%/vtkNew.h include/paraview-%%VERMAJORMINOR%%/vtkNonLinearCell.h include/paraview-%%VERMAJORMINOR%%/vtkNonMergingPointLocator.h include/paraview-%%VERMAJORMINOR%%/vtkNormalizeMatrixVectors.h @@ -1998,6 +2045,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkOnePieceExtentTranslator.h include/paraview-%%VERMAJORMINOR%%/vtkOpaquePass.h include/paraview-%%VERMAJORMINOR%%/vtkOpenFOAMReader.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGL.h +include/paraview-%%VERMAJORMINOR%%/vtkOpenGL2ContextDevice2D.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLActor.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLCamera.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLClipPlanesPainter.h @@ -2008,6 +2056,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkOpenGLDisplayListPainter.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLExtensionManager.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLFreeTypeTextMapper.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLGPUVolumeRayCastMapper.h +include/paraview-%%VERMAJORMINOR%%/vtkOpenGLGlyph3DMapper.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLHAVSVolumeMapper.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLHardwareSupport.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLImageActor.h @@ -2017,6 +2066,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkOpenGLLightingPainter.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLPainterDeviceAdapter.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLPolyDataMapper.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLPolyDataMapper2D.h +include/paraview-%%VERMAJORMINOR%%/vtkOpenGLProjectedAAHexahedraMapper.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLProjectedTetrahedraMapper.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLProperty.h include/paraview-%%VERMAJORMINOR%%/vtkOpenGLRayCastImageDisplayHelper.h @@ -2039,6 +2089,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkOutEdgeIterator.h include/paraview-%%VERMAJORMINOR%%/vtkOutlineCornerFilter.h include/paraview-%%VERMAJORMINOR%%/vtkOutlineCornerSource.h include/paraview-%%VERMAJORMINOR%%/vtkOutlineFilter.h +include/paraview-%%VERMAJORMINOR%%/vtkOutlineRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkOutlineSource.h include/paraview-%%VERMAJORMINOR%%/vtkOutputStream.h include/paraview-%%VERMAJORMINOR%%/vtkOutputWindow.h @@ -2061,14 +2112,16 @@ include/paraview-%%VERMAJORMINOR%%/vtkPDBReader.h include/paraview-%%VERMAJORMINOR%%/vtkPDataSetReader.h include/paraview-%%VERMAJORMINOR%%/vtkPDataSetWriter.h include/paraview-%%VERMAJORMINOR%%/vtkPDescriptiveStatistics.h -include/paraview-%%VERMAJORMINOR%%/vtkPEnSightGoldBinaryReader2.h -include/paraview-%%VERMAJORMINOR%%/vtkPEnSightGoldReader2.h -include/paraview-%%VERMAJORMINOR%%/vtkPEnSightReader2.h +include/paraview-%%VERMAJORMINOR%%/vtkPEnSightGoldBinaryReader.h +include/paraview-%%VERMAJORMINOR%%/vtkPEnSightGoldReader.h +include/paraview-%%VERMAJORMINOR%%/vtkPEnSightReader.h include/paraview-%%VERMAJORMINOR%%/vtkPExodusIIReader.h include/paraview-%%VERMAJORMINOR%%/vtkPExodusReader.h include/paraview-%%VERMAJORMINOR%%/vtkPExtractArraysOverTime.h include/paraview-%%VERMAJORMINOR%%/vtkPExtractHistogram.h include/paraview-%%VERMAJORMINOR%%/vtkPExtractHistogram2D.h +include/paraview-%%VERMAJORMINOR%%/vtkPGenericEnSightReader.h +include/paraview-%%VERMAJORMINOR%%/vtkPHardwareSelector.h include/paraview-%%VERMAJORMINOR%%/vtkPImageWriter.h include/paraview-%%VERMAJORMINOR%%/vtkPKMeansStatistics.h include/paraview-%%VERMAJORMINOR%%/vtkPKdTree.h @@ -2086,6 +2139,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkPNrrdReader.h include/paraview-%%VERMAJORMINOR%%/vtkPOPReader.h include/paraview-%%VERMAJORMINOR%%/vtkPOVExporter.h include/paraview-%%VERMAJORMINOR%%/vtkPOpenFOAMReader.h +include/paraview-%%VERMAJORMINOR%%/vtkPOrderStatistics.h include/paraview-%%VERMAJORMINOR%%/vtkPOutlineCornerFilter.h include/paraview-%%VERMAJORMINOR%%/vtkPOutlineFilter.h include/paraview-%%VERMAJORMINOR%%/vtkPPCAStatistics.h @@ -2103,6 +2157,8 @@ include/paraview-%%VERMAJORMINOR%%/vtkPSciVizPCAStats.h include/paraview-%%VERMAJORMINOR%%/vtkPSphereSource.h include/paraview-%%VERMAJORMINOR%%/vtkPStreamTracer.h include/paraview-%%VERMAJORMINOR%%/vtkPTableToStructuredGrid.h +include/paraview-%%VERMAJORMINOR%%/vtkPV2DRenderView.h +include/paraview-%%VERMAJORMINOR%%/vtkPVAMRDualClip.h include/paraview-%%VERMAJORMINOR%%/vtkPVAlgorithmPortsInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVAnimationScene.h include/paraview-%%VERMAJORMINOR%%/vtkPVArrayCalculator.h @@ -2114,21 +2170,28 @@ include/paraview-%%VERMAJORMINOR%%/vtkPVBatchOptions.h include/paraview-%%VERMAJORMINOR%%/vtkPVCacheKeeper.h include/paraview-%%VERMAJORMINOR%%/vtkPVCacheKeeperPipeline.h include/paraview-%%VERMAJORMINOR%%/vtkPVCacheSizeInformation.h +include/paraview-%%VERMAJORMINOR%%/vtkPVCenterAxesActor.h include/paraview-%%VERMAJORMINOR%%/vtkPVClassNameInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVClientServerIdCollectionInformation.h -include/paraview-%%VERMAJORMINOR%%/vtkPVClientServerRenderManager.h +include/paraview-%%VERMAJORMINOR%%/vtkPVClientServerSynchronizedRenderers.h +include/paraview-%%VERMAJORMINOR%%/vtkPVClipClosedSurface.h include/paraview-%%VERMAJORMINOR%%/vtkPVClipDataSet.h include/paraview-%%VERMAJORMINOR%%/vtkPVCompositeDataInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVCompositeDataInformationIterator.h +include/paraview-%%VERMAJORMINOR%%/vtkPVCompositeDataPipeline.h +include/paraview-%%VERMAJORMINOR%%/vtkPVCompositeRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkPVConfig.h include/paraview-%%VERMAJORMINOR%%/vtkPVConnectivityFilter.h +include/paraview-%%VERMAJORMINOR%%/vtkPVContextView.h +include/paraview-%%VERMAJORMINOR%%/vtkPVContourFilter.h include/paraview-%%VERMAJORMINOR%%/vtkPVCreateProcessModule.h include/paraview-%%VERMAJORMINOR%%/vtkPVDReader.h include/paraview-%%VERMAJORMINOR%%/vtkPVDataInformation.h +include/paraview-%%VERMAJORMINOR%%/vtkPVDataRepresentation.h +include/paraview-%%VERMAJORMINOR%%/vtkPVDataRepresentationPipeline.h include/paraview-%%VERMAJORMINOR%%/vtkPVDataSetAttributesInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVDataSizeInformation.h -include/paraview-%%VERMAJORMINOR%%/vtkPVDesktopDeliveryClient.h -include/paraview-%%VERMAJORMINOR%%/vtkPVDesktopDeliveryServer.h +include/paraview-%%VERMAJORMINOR%%/vtkPVDefaultPass.h include/paraview-%%VERMAJORMINOR%%/vtkPVDisplayInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVEnSightMasterServerReader.h include/paraview-%%VERMAJORMINOR%%/vtkPVEnSightMasterServerReader2.h @@ -2141,6 +2204,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkPVExtractVOI.h include/paraview-%%VERMAJORMINOR%%/vtkPVFileInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVFileInformationHelper.h include/paraview-%%VERMAJORMINOR%%/vtkPVFiltersConfig.h +include/paraview-%%VERMAJORMINOR%%/vtkPVFrustumActor.h include/paraview-%%VERMAJORMINOR%%/vtkPVGUIPluginInterface.h include/paraview-%%VERMAJORMINOR%%/vtkPVGenericAttributeInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVGenericRenderWindowInteractor.h @@ -2148,7 +2212,6 @@ include/paraview-%%VERMAJORMINOR%%/vtkPVGeometryFilter.h include/paraview-%%VERMAJORMINOR%%/vtkPVGeometryInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVGlyphFilter.h include/paraview-%%VERMAJORMINOR%%/vtkPVHardwareSelector.h -include/paraview-%%VERMAJORMINOR%%/vtkPVImageSlicer.h include/paraview-%%VERMAJORMINOR%%/vtkPVInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVInteractorStyle.h include/paraview-%%VERMAJORMINOR%%/vtkPVJoystickFly.h @@ -2156,6 +2219,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkPVJoystickFlyIn.h include/paraview-%%VERMAJORMINOR%%/vtkPVJoystickFlyOut.h include/paraview-%%VERMAJORMINOR%%/vtkPVLODActor.h include/paraview-%%VERMAJORMINOR%%/vtkPVLODVolume.h +include/paraview-%%VERMAJORMINOR%%/vtkPVLastSelectionInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVLinearExtrusionFilter.h include/paraview-%%VERMAJORMINOR%%/vtkPVMPICommunicator.h include/paraview-%%VERMAJORMINOR%%/vtkPVMain.h @@ -2164,15 +2228,21 @@ include/paraview-%%VERMAJORMINOR%%/vtkPVNullSource.h include/paraview-%%VERMAJORMINOR%%/vtkPVOpenGLExtensionsInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVOptions.h include/paraview-%%VERMAJORMINOR%%/vtkPVOptionsXMLParser.h +include/paraview-%%VERMAJORMINOR%%/vtkPVParallelCoordinatesRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkPVPaths.h include/paraview-%%VERMAJORMINOR%%/vtkPVPlugin.h include/paraview-%%VERMAJORMINOR%%/vtkPVPluginInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVPluginLoader.h +include/paraview-%%VERMAJORMINOR%%/vtkPVPostFilter.h +include/paraview-%%VERMAJORMINOR%%/vtkPVPostFilterExecutive.h include/paraview-%%VERMAJORMINOR%%/vtkPVProcessModuleBatchHelper.h include/paraview-%%VERMAJORMINOR%%/vtkPVProgressHandler.h include/paraview-%%VERMAJORMINOR%%/vtkPVPythonModule.h include/paraview-%%VERMAJORMINOR%%/vtkPVPythonPluginInterface.h +include/paraview-%%VERMAJORMINOR%%/vtkPVRecoverGeometryWireframe.h +include/paraview-%%VERMAJORMINOR%%/vtkPVRenderView.h include/paraview-%%VERMAJORMINOR%%/vtkPVRenderViewProxy.h +include/paraview-%%VERMAJORMINOR%%/vtkPVRepresentedDataInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVSILInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVScalarBarActor.h include/paraview-%%VERMAJORMINOR%%/vtkPVSelectionInformation.h @@ -2189,6 +2259,8 @@ include/paraview-%%VERMAJORMINOR%%/vtkPVServerSelectTimeSet.h include/paraview-%%VERMAJORMINOR%%/vtkPVServerSocket.h include/paraview-%%VERMAJORMINOR%%/vtkPVServerTimeSteps.h include/paraview-%%VERMAJORMINOR%%/vtkPVStringArrayHelper.h +include/paraview-%%VERMAJORMINOR%%/vtkPVSynchronizedRenderWindows.h +include/paraview-%%VERMAJORMINOR%%/vtkPVSynchronizedRenderer.h include/paraview-%%VERMAJORMINOR%%/vtkPVTemporalDataInformation.h include/paraview-%%VERMAJORMINOR%%/vtkPVTestUtilities.h include/paraview-%%VERMAJORMINOR%%/vtkPVTextSource.h @@ -2199,9 +2271,13 @@ include/paraview-%%VERMAJORMINOR%%/vtkPVTrackballPan.h include/paraview-%%VERMAJORMINOR%%/vtkPVTrackballRoll.h include/paraview-%%VERMAJORMINOR%%/vtkPVTrackballRotate.h include/paraview-%%VERMAJORMINOR%%/vtkPVTrackballZoom.h +include/paraview-%%VERMAJORMINOR%%/vtkPVTrivialExtentTranslator.h +include/paraview-%%VERMAJORMINOR%%/vtkPVTrivialProducer.h include/paraview-%%VERMAJORMINOR%%/vtkPVUpdateSuppressor.h +include/paraview-%%VERMAJORMINOR%%/vtkPVView.h include/paraview-%%VERMAJORMINOR%%/vtkPVXMLElement.h include/paraview-%%VERMAJORMINOR%%/vtkPVXMLParser.h +include/paraview-%%VERMAJORMINOR%%/vtkPVXYChartView.h include/paraview-%%VERMAJORMINOR%%/vtkPainter.h include/paraview-%%VERMAJORMINOR%%/vtkPainterDeviceAdapter.h include/paraview-%%VERMAJORMINOR%%/vtkPainterPolyDataMapper.h @@ -2236,6 +2312,9 @@ include/paraview-%%VERMAJORMINOR%%/vtkParametricSuperEllipsoid.h include/paraview-%%VERMAJORMINOR%%/vtkParametricSuperToroid.h include/paraview-%%VERMAJORMINOR%%/vtkParametricTorus.h include/paraview-%%VERMAJORMINOR%%/vtkParse.h +include/paraview-%%VERMAJORMINOR%%/vtkParseMain.h +include/paraview-%%VERMAJORMINOR%%/vtkParsePreprocess.h +include/paraview-%%VERMAJORMINOR%%/vtkParseType.h include/paraview-%%VERMAJORMINOR%%/vtkParticleReader.h include/paraview-%%VERMAJORMINOR%%/vtkPassArrays.h include/paraview-%%VERMAJORMINOR%%/vtkPassInputTypeAlgorithm.h @@ -2253,8 +2332,10 @@ include/paraview-%%VERMAJORMINOR%%/vtkPicker.h include/paraview-%%VERMAJORMINOR%%/vtkPieChartActor.h include/paraview-%%VERMAJORMINOR%%/vtkPieceRequestFilter.h include/paraview-%%VERMAJORMINOR%%/vtkPieceScalars.h +include/paraview-%%VERMAJORMINOR%%/vtkPiecewiseControlPointsItem.h include/paraview-%%VERMAJORMINOR%%/vtkPiecewiseFunction.h include/paraview-%%VERMAJORMINOR%%/vtkPiecewiseFunctionAlgorithm.h +include/paraview-%%VERMAJORMINOR%%/vtkPiecewiseFunctionItem.h include/paraview-%%VERMAJORMINOR%%/vtkPiecewiseFunctionShiftScale.h include/paraview-%%VERMAJORMINOR%%/vtkPipelineSize.h include/paraview-%%VERMAJORMINOR%%/vtkPixel.h @@ -2272,9 +2353,12 @@ include/paraview-%%VERMAJORMINOR%%/vtkPlot.h include/paraview-%%VERMAJORMINOR%%/vtkPlotBar.h include/paraview-%%VERMAJORMINOR%%/vtkPlotEdges.h include/paraview-%%VERMAJORMINOR%%/vtkPlotGrid.h +include/paraview-%%VERMAJORMINOR%%/vtkPlotHistogram2D.h include/paraview-%%VERMAJORMINOR%%/vtkPlotLine.h include/paraview-%%VERMAJORMINOR%%/vtkPlotParallelCoordinates.h +include/paraview-%%VERMAJORMINOR%%/vtkPlotPie.h include/paraview-%%VERMAJORMINOR%%/vtkPlotPoints.h +include/paraview-%%VERMAJORMINOR%%/vtkPlotStacked.h include/paraview-%%VERMAJORMINOR%%/vtkPointData.h include/paraview-%%VERMAJORMINOR%%/vtkPointDataToCellData.h include/paraview-%%VERMAJORMINOR%%/vtkPointHandleRepresentation2D.h @@ -2313,6 +2397,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkPolyDataSourceWidget.h include/paraview-%%VERMAJORMINOR%%/vtkPolyDataStreamer.h include/paraview-%%VERMAJORMINOR%%/vtkPolyDataToImageStencil.h include/paraview-%%VERMAJORMINOR%%/vtkPolyDataToPolyDataFilter.h +include/paraview-%%VERMAJORMINOR%%/vtkPolyDataToReebGraphFilter.h include/paraview-%%VERMAJORMINOR%%/vtkPolyDataWriter.h include/paraview-%%VERMAJORMINOR%%/vtkPolyLine.h include/paraview-%%VERMAJORMINOR%%/vtkPolyLineToRectilinearGridFilter.h @@ -2322,17 +2407,21 @@ include/paraview-%%VERMAJORMINOR%%/vtkPolygonalHandleRepresentation3D.h include/paraview-%%VERMAJORMINOR%%/vtkPolygonalSurfaceContourLineInterpolator.h include/paraview-%%VERMAJORMINOR%%/vtkPolygonalSurfacePointPlacer.h include/paraview-%%VERMAJORMINOR%%/vtkPolygonsPainter.h +include/paraview-%%VERMAJORMINOR%%/vtkPolyhedron.h include/paraview-%%VERMAJORMINOR%%/vtkPolynomialSolversUnivariate.h include/paraview-%%VERMAJORMINOR%%/vtkPostScriptWriter.h include/paraview-%%VERMAJORMINOR%%/vtkPrimitivePainter.h include/paraview-%%VERMAJORMINOR%%/vtkPriorityHelper.h include/paraview-%%VERMAJORMINOR%%/vtkPriorityQueue.h +include/paraview-%%VERMAJORMINOR%%/vtkProStarReader.h include/paraview-%%VERMAJORMINOR%%/vtkProbeFilter.h +include/paraview-%%VERMAJORMINOR%%/vtkProbePolyhedron.h include/paraview-%%VERMAJORMINOR%%/vtkProbeSelectedLocations.h include/paraview-%%VERMAJORMINOR%%/vtkProcess.h include/paraview-%%VERMAJORMINOR%%/vtkProcessGroup.h include/paraview-%%VERMAJORMINOR%%/vtkProcessIdScalars.h include/paraview-%%VERMAJORMINOR%%/vtkProcessModule.h +include/paraview-%%VERMAJORMINOR%%/vtkProcessModuleAutoMPI.h include/paraview-%%VERMAJORMINOR%%/vtkProcessModuleConnection.h include/paraview-%%VERMAJORMINOR%%/vtkProcessModuleConnectionManager.h include/paraview-%%VERMAJORMINOR%%/vtkProcessModuleConnectionManagerInternals.h @@ -2344,6 +2433,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkProgrammableDataObjectSource.h include/paraview-%%VERMAJORMINOR%%/vtkProgrammableFilter.h include/paraview-%%VERMAJORMINOR%%/vtkProgrammableGlyphFilter.h include/paraview-%%VERMAJORMINOR%%/vtkProgrammableSource.h +include/paraview-%%VERMAJORMINOR%%/vtkProjectedAAHexahedraMapper.h include/paraview-%%VERMAJORMINOR%%/vtkProjectedTerrainPath.h include/paraview-%%VERMAJORMINOR%%/vtkProjectedTetrahedraMapper.h include/paraview-%%VERMAJORMINOR%%/vtkProjectedTexture.h @@ -2363,102 +2453,13 @@ include/paraview-%%VERMAJORMINOR%%/vtkQImageToImageSource.h include/paraview-%%VERMAJORMINOR%%/vtkQtAbstractModelAdapter.h include/paraview-%%VERMAJORMINOR%%/vtkQtAnnotationLayersModelAdapter.h include/paraview-%%VERMAJORMINOR%%/vtkQtAnnotationView.h -include/paraview-%%VERMAJORMINOR%%/vtkQtBarChart.h -include/paraview-%%VERMAJORMINOR%%/vtkQtBarChartOptions.h -include/paraview-%%VERMAJORMINOR%%/vtkQtBarChartView.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartArea.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartAxis.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartAxisCornerDomain.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartAxisDomain.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartAxisDomainPriority.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartAxisLayer.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartAxisModel.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartAxisOptions.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartBar.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartBarLocator.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartBasicSeriesOptionsModel.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartBasicStyleManager.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartBrushGenerator.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartColorGenerator.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartColorStyleGenerator.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartColors.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartContentsArea.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartContentsSpace.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartExport.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartGraphicsItemTypes.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartGridLayer.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartHelpFormatter.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartIndexRangeList.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartInteractor.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartInteractorSetup.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartKeyboardFunction.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartKeyboardHistory.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartKeyboardPan.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartKeyboardZoom.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartLayer.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartLayerDomain.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartLegend.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartLegendManager.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartLegendModel.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartMouseBox.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartMouseFunction.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartMousePan.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartMouseSelection.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartMouseSelectionHandler.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartMouseZoom.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartNamedSeriesOptionsModel.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartPenGenerator.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartQuad.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartRepresentation.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartScene.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesColors.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesDomain.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesDomainGroup.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesHueRange.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesLayer.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesModel.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesModelCollection.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesModelRange.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesOptions.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesOptionsModel.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesOptionsModelCollection.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesSelection.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesSelectionHandler.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartSeriesSelectionModel.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartShape.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartShapeLocator.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartStyleAxesCorner.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartStyleBoolean.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartStyleBrush.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartStyleManager.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartStyleMarker.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartStylePen.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartStyleRegistry.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartStyleSeriesColors.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartStyleSize.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartTableSeriesModel.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartTitle.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartView.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartWidget.h -include/paraview-%%VERMAJORMINOR%%/vtkQtChartZoomHistory.h include/paraview-%%VERMAJORMINOR%%/vtkQtConnection.h include/paraview-%%VERMAJORMINOR%%/vtkQtInitialization.h include/paraview-%%VERMAJORMINOR%%/vtkQtLabelRenderStrategy.h -include/paraview-%%VERMAJORMINOR%%/vtkQtLineChart.h -include/paraview-%%VERMAJORMINOR%%/vtkQtLineChartOptions.h -include/paraview-%%VERMAJORMINOR%%/vtkQtLineChartView.h include/paraview-%%VERMAJORMINOR%%/vtkQtListView.h -include/paraview-%%VERMAJORMINOR%%/vtkQtPointMarker.h -include/paraview-%%VERMAJORMINOR%%/vtkQtPolylineItem.h include/paraview-%%VERMAJORMINOR%%/vtkQtRecordView.h include/paraview-%%VERMAJORMINOR%%/vtkQtRichTextView.h -include/paraview-%%VERMAJORMINOR%%/vtkQtSeriesFilterLineEdit.h -include/paraview-%%VERMAJORMINOR%%/vtkQtStackedChart.h -include/paraview-%%VERMAJORMINOR%%/vtkQtStackedChartOptions.h -include/paraview-%%VERMAJORMINOR%%/vtkQtStackedChartView.h -include/paraview-%%VERMAJORMINOR%%/vtkQtStatisticalBoxChart.h -include/paraview-%%VERMAJORMINOR%%/vtkQtStatisticalBoxChartOptions.h -include/paraview-%%VERMAJORMINOR%%/vtkQtStatisticalBoxChartView.h +include/paraview-%%VERMAJORMINOR%%/vtkQtStringToImage.h include/paraview-%%VERMAJORMINOR%%/vtkQtTableModelAdapter.h include/paraview-%%VERMAJORMINOR%%/vtkQtTableRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkQtTableView.h @@ -2495,6 +2496,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkRIBExporter.h include/paraview-%%VERMAJORMINOR%%/vtkRIBLight.h include/paraview-%%VERMAJORMINOR%%/vtkRIBProperty.h include/paraview-%%VERMAJORMINOR%%/vtkRISReader.h +include/paraview-%%VERMAJORMINOR%%/vtkROIStencilSource.h include/paraview-%%VERMAJORMINOR%%/vtkRTAnalyticSource.h include/paraview-%%VERMAJORMINOR%%/vtkRTXMLPolyDataReader.h include/paraview-%%VERMAJORMINOR%%/vtkRandomAttributeGenerator.h @@ -2523,6 +2525,11 @@ include/paraview-%%VERMAJORMINOR%%/vtkRecursiveDividingCubes.h include/paraview-%%VERMAJORMINOR%%/vtkRecursiveSphereDirectionEncoder.h include/paraview-%%VERMAJORMINOR%%/vtkRedistributePolyData.h include/paraview-%%VERMAJORMINOR%%/vtkReductionFilter.h +include/paraview-%%VERMAJORMINOR%%/vtkReebGraph.h +include/paraview-%%VERMAJORMINOR%%/vtkReebGraphSimplificationFilter.h +include/paraview-%%VERMAJORMINOR%%/vtkReebGraphSimplificationMetric.h +include/paraview-%%VERMAJORMINOR%%/vtkReebGraphSurfaceSkeletonFilter.h +include/paraview-%%VERMAJORMINOR%%/vtkReebGraphVolumeSkeletonFilter.h include/paraview-%%VERMAJORMINOR%%/vtkReferenceCount.h include/paraview-%%VERMAJORMINOR%%/vtkReflectionFilter.h include/paraview-%%VERMAJORMINOR%%/vtkRegressionTestImage.h @@ -2535,6 +2542,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkRenderPass.h include/paraview-%%VERMAJORMINOR%%/vtkRenderPassCollection.h include/paraview-%%VERMAJORMINOR%%/vtkRenderState.h include/paraview-%%VERMAJORMINOR%%/vtkRenderView.h +include/paraview-%%VERMAJORMINOR%%/vtkRenderViewBase.h include/paraview-%%VERMAJORMINOR%%/vtkRenderWindow.h include/paraview-%%VERMAJORMINOR%%/vtkRenderWindowCollection.h include/paraview-%%VERMAJORMINOR%%/vtkRenderWindowInteractor.h @@ -2578,10 +2586,6 @@ include/paraview-%%VERMAJORMINOR%%/vtkSMArrayListInformationHelper.h include/paraview-%%VERMAJORMINOR%%/vtkSMArrayRangeDomain.h include/paraview-%%VERMAJORMINOR%%/vtkSMArraySelectionDomain.h include/paraview-%%VERMAJORMINOR%%/vtkSMArraySelectionInformationHelper.h -include/paraview-%%VERMAJORMINOR%%/vtkSMAxesRepresentationProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMBarChartViewProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMBlockDeliveryRepresentationProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMBlockDeliveryStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkSMBooleanDomain.h include/paraview-%%VERMAJORMINOR%%/vtkSMBooleanKeyFrameProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMBoundsDomain.h @@ -2595,17 +2599,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkSMCameraKeyFrameProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMCameraLink.h include/paraview-%%VERMAJORMINOR%%/vtkSMCameraManipulatorProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMCameraProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMCaveRenderModuleProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMCaveRenderViewProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMChartNamedOptionsModelProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMChartOptionsProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMChartRepresentationProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMChartViewProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMChartingArraysInformationHelper.h -include/paraview-%%VERMAJORMINOR%%/vtkSMClientDeliveryRepresentationProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMClientDeliveryStrategyProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMClientServerRenderSyncManagerHelper.h -include/paraview-%%VERMAJORMINOR%%/vtkSMClientServerRenderViewProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMComparativeAnimationCueProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMComparativeViewProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMCompositeKeyFrameProxy.h @@ -2616,9 +2610,6 @@ include/paraview-%%VERMAJORMINOR%%/vtkSMConnectionCleanerProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMContextArraysInformationHelper.h include/paraview-%%VERMAJORMINOR%%/vtkSMContextNamedOptionsProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMContextViewProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMCubeAxesRepresentationProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMDataLabelRepresentationProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMDataRepresentationProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMDataSourceProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMDataTypeDomain.h include/paraview-%%VERMAJORMINOR%%/vtkSMDeserializer.h @@ -2641,14 +2632,9 @@ include/paraview-%%VERMAJORMINOR%%/vtkSMFixedTypeDomain.h include/paraview-%%VERMAJORMINOR%%/vtkSMGlobalPropertiesLinkUndoElement.h include/paraview-%%VERMAJORMINOR%%/vtkSMGlobalPropertiesManager.h include/paraview-%%VERMAJORMINOR%%/vtkSMHardwareSelector.h -include/paraview-%%VERMAJORMINOR%%/vtkSMIceTCompositeViewProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMIceTDesktopRenderViewProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMIceTMultiDisplayRenderViewProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMIdBasedProxyLocator.h include/paraview-%%VERMAJORMINOR%%/vtkSMIdTypeArrayInformationHelper.h include/paraview-%%VERMAJORMINOR%%/vtkSMIdTypeVectorProperty.h -include/paraview-%%VERMAJORMINOR%%/vtkSMImageDataParallelStrategy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMImageSliceRepresentationProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMImageTextureProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMImplicitPlaneProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMImplicitPlaneRepresentationProxy.h @@ -2661,13 +2647,10 @@ include/paraview-%%VERMAJORMINOR%%/vtkSMIntVectorProperty.h include/paraview-%%VERMAJORMINOR%%/vtkSMInteractionUndoStackBuilder.h include/paraview-%%VERMAJORMINOR%%/vtkSMKeyFrameAnimationCueManipulatorProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMKeyFrameProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMLineChartViewProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMLinearAnimationCueManipulatorProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMLink.h include/paraview-%%VERMAJORMINOR%%/vtkSMLookupTableProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMMaterialLoaderProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMMultiDisplayProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMMultiProcessRenderView.h include/paraview-%%VERMAJORMINOR%%/vtkSMNamedPropertyIterator.h include/paraview-%%VERMAJORMINOR%%/vtkSMNetworkImageSourceProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMNewWidgetRepresentationProxy.h @@ -2676,16 +2659,15 @@ include/paraview-%%VERMAJORMINOR%%/vtkSMNumberOfComponentsDomain.h include/paraview-%%VERMAJORMINOR%%/vtkSMNumberOfGroupsDomain.h include/paraview-%%VERMAJORMINOR%%/vtkSMObject.h include/paraview-%%VERMAJORMINOR%%/vtkSMOrderedPropertyIterator.h -include/paraview-%%VERMAJORMINOR%%/vtkSMOutlineRepresentationProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMOutputPort.h include/paraview-%%VERMAJORMINOR%%/vtkSMPQStateLoader.h include/paraview-%%VERMAJORMINOR%%/vtkSMPSWriterProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMPVLookupTableProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMPVRepresentationProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMPWriterProxy.h +include/paraview-%%VERMAJORMINOR%%/vtkSMParallelCoordinatesRepresentationProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMPluginManager.h include/paraview-%%VERMAJORMINOR%%/vtkSMPluginProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMPropRepresentationProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMProperty.h include/paraview-%%VERMAJORMINOR%%/vtkSMPropertyAdaptor.h include/paraview-%%VERMAJORMINOR%%/vtkSMPropertyHelper.h @@ -2716,12 +2698,9 @@ include/paraview-%%VERMAJORMINOR%%/vtkSMPythonTraceObserver.h include/paraview-%%VERMAJORMINOR%%/vtkSMRampKeyFrameProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMReaderFactory.h include/paraview-%%VERMAJORMINOR%%/vtkSMRenderViewExporterProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMRenderViewHelper.h include/paraview-%%VERMAJORMINOR%%/vtkSMRenderViewProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMRepresentationAnimationHelperProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMRepresentationProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMRepresentationStrategy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMRepresentationStrategyVector.h include/paraview-%%VERMAJORMINOR%%/vtkSMSILDomain.h include/paraview-%%VERMAJORMINOR%%/vtkSMSILInformationHelper.h include/paraview-%%VERMAJORMINOR%%/vtkSMSILModel.h @@ -2739,8 +2718,6 @@ include/paraview-%%VERMAJORMINOR%%/vtkSMServerSideAnimationPlayer.h include/paraview-%%VERMAJORMINOR%%/vtkSMSimpleDoubleInformationHelper.h include/paraview-%%VERMAJORMINOR%%/vtkSMSimpleIdTypeInformationHelper.h include/paraview-%%VERMAJORMINOR%%/vtkSMSimpleIntInformationHelper.h -include/paraview-%%VERMAJORMINOR%%/vtkSMSimpleParallelStrategy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMSimpleStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkSMSimpleStringInformationHelper.h include/paraview-%%VERMAJORMINOR%%/vtkSMSinusoidKeyFrameProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMSourceProxy.h @@ -2753,7 +2730,6 @@ include/paraview-%%VERMAJORMINOR%%/vtkSMStringListDomain.h include/paraview-%%VERMAJORMINOR%%/vtkSMStringListRangeDomain.h include/paraview-%%VERMAJORMINOR%%/vtkSMStringVectorProperty.h include/paraview-%%VERMAJORMINOR%%/vtkSMSubPropertyIterator.h -include/paraview-%%VERMAJORMINOR%%/vtkSMSurfaceRepresentationProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMTesting.h include/paraview-%%VERMAJORMINOR%%/vtkSMTextSourceRepresentationProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMTextWidgetRepresentationProxy.h @@ -2767,13 +2743,9 @@ include/paraview-%%VERMAJORMINOR%%/vtkSMUndoElement.h include/paraview-%%VERMAJORMINOR%%/vtkSMUndoRedoStateLoader.h include/paraview-%%VERMAJORMINOR%%/vtkSMUndoStack.h include/paraview-%%VERMAJORMINOR%%/vtkSMUndoStackBuilder.h -include/paraview-%%VERMAJORMINOR%%/vtkSMUniformGridParallelStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkSMUniformGridVolumeRepresentationProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMUnstructuredDataParallelStrategy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMUnstructuredGridParallelStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkSMUnstructuredGridVolumeRepresentationProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMUpdateInformationUndoElement.h -include/paraview-%%VERMAJORMINOR%%/vtkSMUpdateSuppressorProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMUtilities.h include/paraview-%%VERMAJORMINOR%%/vtkSMVectorProperty.h include/paraview-%%VERMAJORMINOR%%/vtkSMViewProxy.h @@ -2782,8 +2754,6 @@ include/paraview-%%VERMAJORMINOR%%/vtkSMWriterFactory.h include/paraview-%%VERMAJORMINOR%%/vtkSMWriterProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMXMLPVAnimationWriterProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSMXMLParser.h -include/paraview-%%VERMAJORMINOR%%/vtkSMXYChartRepresentationProxy.h -include/paraview-%%VERMAJORMINOR%%/vtkSMXYChartViewProxy.h include/paraview-%%VERMAJORMINOR%%/vtkSQLDatabase.h include/paraview-%%VERMAJORMINOR%%/vtkSQLDatabaseGraphSource.h include/paraview-%%VERMAJORMINOR%%/vtkSQLDatabaseSchema.h @@ -2792,6 +2762,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkSQLGraphReader.h include/paraview-%%VERMAJORMINOR%%/vtkSQLQuery.h include/paraview-%%VERMAJORMINOR%%/vtkSQLiteDatabase.h include/paraview-%%VERMAJORMINOR%%/vtkSQLiteQuery.h +include/paraview-%%VERMAJORMINOR%%/vtkSQLiteToTableReader.h include/paraview-%%VERMAJORMINOR%%/vtkSTLReader.h include/paraview-%%VERMAJORMINOR%%/vtkSTLWriter.h include/paraview-%%VERMAJORMINOR%%/vtkSampleFunction.h @@ -2800,6 +2771,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkScalarBarRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkScalarBarWidget.h include/paraview-%%VERMAJORMINOR%%/vtkScalarTree.h include/paraview-%%VERMAJORMINOR%%/vtkScalarsToColors.h +include/paraview-%%VERMAJORMINOR%%/vtkScalarsToColorsItem.h include/paraview-%%VERMAJORMINOR%%/vtkScalarsToColorsPainter.h include/paraview-%%VERMAJORMINOR%%/vtkScaledTextActor.h include/paraview-%%VERMAJORMINOR%%/vtkScatterPlotMapper.h @@ -2816,10 +2788,11 @@ include/paraview-%%VERMAJORMINOR%%/vtkSelectVisiblePoints.h include/paraview-%%VERMAJORMINOR%%/vtkSelection.h include/paraview-%%VERMAJORMINOR%%/vtkSelectionAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkSelectionConverter.h +include/paraview-%%VERMAJORMINOR%%/vtkSelectionDeliveryFilter.h include/paraview-%%VERMAJORMINOR%%/vtkSelectionNode.h +include/paraview-%%VERMAJORMINOR%%/vtkSelectionRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkSelectionSerializer.h include/paraview-%%VERMAJORMINOR%%/vtkSelectionSource.h -include/paraview-%%VERMAJORMINOR%%/vtkSelectionStreamer.h include/paraview-%%VERMAJORMINOR%%/vtkSelfConnection.h include/paraview-%%VERMAJORMINOR%%/vtkSequenceAnimationPlayer.h include/paraview-%%VERMAJORMINOR%%/vtkSequencePass.h @@ -2833,13 +2806,13 @@ include/paraview-%%VERMAJORMINOR%%/vtkShaderCodeLibrary.h include/paraview-%%VERMAJORMINOR%%/vtkShaderDeviceAdapter.h include/paraview-%%VERMAJORMINOR%%/vtkShaderProgram.h include/paraview-%%VERMAJORMINOR%%/vtkShaderProgram2.h +include/paraview-%%VERMAJORMINOR%%/vtkShadowMapBakerPass.h include/paraview-%%VERMAJORMINOR%%/vtkShadowMapPass.h include/paraview-%%VERMAJORMINOR%%/vtkShepardMethod.h include/paraview-%%VERMAJORMINOR%%/vtkShortArray.h include/paraview-%%VERMAJORMINOR%%/vtkShrinkFilter.h include/paraview-%%VERMAJORMINOR%%/vtkShrinkPolyData.h include/paraview-%%VERMAJORMINOR%%/vtkSignedCharArray.h -include/paraview-%%VERMAJORMINOR%%/vtkSiloReader.h include/paraview-%%VERMAJORMINOR%%/vtkSimple2DLayoutStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkSimple3DCirclesStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkSimpleCellTessellator.h @@ -2856,6 +2829,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkSliderRepresentation3D.h include/paraview-%%VERMAJORMINOR%%/vtkSliderWidget.h include/paraview-%%VERMAJORMINOR%%/vtkSmartPointer.h include/paraview-%%VERMAJORMINOR%%/vtkSmartPointerBase.h +include/paraview-%%VERMAJORMINOR%%/vtkSmartVolumeMapper.h include/paraview-%%VERMAJORMINOR%%/vtkSmoothErrorMetric.h include/paraview-%%VERMAJORMINOR%%/vtkSmoothPolyDataFilter.h include/paraview-%%VERMAJORMINOR%%/vtkSobelGradientMagnitudePass.h @@ -2865,6 +2839,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkSocketCommunicator.h include/paraview-%%VERMAJORMINOR%%/vtkSocketController.h include/paraview-%%VERMAJORMINOR%%/vtkSortDataArray.h include/paraview-%%VERMAJORMINOR%%/vtkSortFileNames.h +include/paraview-%%VERMAJORMINOR%%/vtkSortedTableStreamer.h include/paraview-%%VERMAJORMINOR%%/vtkSource.h include/paraview-%%VERMAJORMINOR%%/vtkSpanTreeLayoutStrategy.h include/paraview-%%VERMAJORMINOR%%/vtkSparseArrayToTable.h @@ -2888,8 +2863,12 @@ include/paraview-%%VERMAJORMINOR%%/vtkSplineWidget.h include/paraview-%%VERMAJORMINOR%%/vtkSplineWidget2.h include/paraview-%%VERMAJORMINOR%%/vtkSplitColumnComponents.h include/paraview-%%VERMAJORMINOR%%/vtkSplitField.h +include/paraview-%%VERMAJORMINOR%%/vtkSpreadSheetRepresentation.h +include/paraview-%%VERMAJORMINOR%%/vtkSpreadSheetView.h include/paraview-%%VERMAJORMINOR%%/vtkSpyPlotBlock.h include/paraview-%%VERMAJORMINOR%%/vtkSpyPlotBlockIterator.h +include/paraview-%%VERMAJORMINOR%%/vtkSpyPlotHistoryReader.h +include/paraview-%%VERMAJORMINOR%%/vtkSpyPlotHistoryReaderPrivate.h include/paraview-%%VERMAJORMINOR%%/vtkSpyPlotIStream.h include/paraview-%%VERMAJORMINOR%%/vtkSpyPlotReader.h include/paraview-%%VERMAJORMINOR%%/vtkSpyPlotReaderMap.h @@ -2907,10 +2886,12 @@ include/paraview-%%VERMAJORMINOR%%/vtkStreamPoints.h include/paraview-%%VERMAJORMINOR%%/vtkStreamTracer.h include/paraview-%%VERMAJORMINOR%%/vtkStreamer.h include/paraview-%%VERMAJORMINOR%%/vtkStreamingDemandDrivenPipeline.h +include/paraview-%%VERMAJORMINOR%%/vtkStreamingStatistics.h include/paraview-%%VERMAJORMINOR%%/vtkStreamingTessellator.h include/paraview-%%VERMAJORMINOR%%/vtkStringArray.h include/paraview-%%VERMAJORMINOR%%/vtkStringList.h include/paraview-%%VERMAJORMINOR%%/vtkStringToCategory.h +include/paraview-%%VERMAJORMINOR%%/vtkStringToImage.h include/paraview-%%VERMAJORMINOR%%/vtkStringToNumeric.h include/paraview-%%VERMAJORMINOR%%/vtkStringToTimePoint.h include/paraview-%%VERMAJORMINOR%%/vtkStripper.h @@ -2947,6 +2928,8 @@ include/paraview-%%VERMAJORMINOR%%/vtkSurfaceLICDefaultPainter.h include/paraview-%%VERMAJORMINOR%%/vtkSurfaceLICPainter.h include/paraview-%%VERMAJORMINOR%%/vtkSurfaceReconstructionFilter.h include/paraview-%%VERMAJORMINOR%%/vtkSurfaceVectors.h +include/paraview-%%VERMAJORMINOR%%/vtkSynchronizedRenderWindows.h +include/paraview-%%VERMAJORMINOR%%/vtkSynchronizedRenderers.h include/paraview-%%VERMAJORMINOR%%/vtkSynchronizedTemplates2D.h include/paraview-%%VERMAJORMINOR%%/vtkSynchronizedTemplates3D.h include/paraview-%%VERMAJORMINOR%%/vtkSynchronizedTemplatesCutter3D.h @@ -2955,6 +2938,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkSystemIncludes.h include/paraview-%%VERMAJORMINOR%%/vtkTDxConfigure.h include/paraview-%%VERMAJORMINOR%%/vtkTDxInteractorStyle.h include/paraview-%%VERMAJORMINOR%%/vtkTDxInteractorStyleCamera.h +include/paraview-%%VERMAJORMINOR%%/vtkTDxInteractorStyleGeo.h include/paraview-%%VERMAJORMINOR%%/vtkTDxInteractorStyleSettings.h include/paraview-%%VERMAJORMINOR%%/vtkTDxMotionEventInfo.h include/paraview-%%VERMAJORMINOR%%/vtkTIFFReader.h @@ -2966,10 +2950,11 @@ include/paraview-%%VERMAJORMINOR%%/vtkTableBasedClipDataSet.h include/paraview-%%VERMAJORMINOR%%/vtkTableExtentTranslator.h include/paraview-%%VERMAJORMINOR%%/vtkTableFFT.h include/paraview-%%VERMAJORMINOR%%/vtkTableReader.h -include/paraview-%%VERMAJORMINOR%%/vtkTableStreamer.h include/paraview-%%VERMAJORMINOR%%/vtkTableToArray.h +include/paraview-%%VERMAJORMINOR%%/vtkTableToDatabaseWriter.h include/paraview-%%VERMAJORMINOR%%/vtkTableToGraph.h include/paraview-%%VERMAJORMINOR%%/vtkTableToPolyData.h +include/paraview-%%VERMAJORMINOR%%/vtkTableToSQLiteWriter.h include/paraview-%%VERMAJORMINOR%%/vtkTableToSparseArray.h include/paraview-%%VERMAJORMINOR%%/vtkTableToStructuredGrid.h include/paraview-%%VERMAJORMINOR%%/vtkTableToTreeFilter.h @@ -3003,10 +2988,13 @@ include/paraview-%%VERMAJORMINOR%%/vtkTestingObjectFactory.h include/paraview-%%VERMAJORMINOR%%/vtkTetra.h include/paraview-%%VERMAJORMINOR%%/vtkTextActor.h include/paraview-%%VERMAJORMINOR%%/vtkTextActor3D.h +include/paraview-%%VERMAJORMINOR%%/vtkTextCodec.h +include/paraview-%%VERMAJORMINOR%%/vtkTextCodecFactory.h include/paraview-%%VERMAJORMINOR%%/vtkTextMapper.h include/paraview-%%VERMAJORMINOR%%/vtkTextProperty.h include/paraview-%%VERMAJORMINOR%%/vtkTextRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkTextSource.h +include/paraview-%%VERMAJORMINOR%%/vtkTextSourceRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkTextWidget.h include/paraview-%%VERMAJORMINOR%%/vtkTexture.h include/paraview-%%VERMAJORMINOR%%/vtkTextureMapToCylinder.h @@ -3022,9 +3010,12 @@ include/paraview-%%VERMAJORMINOR%%/vtkThreadMessager.h include/paraview-%%VERMAJORMINOR%%/vtkThreadedImageAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkThreadedStreamingPipeline.h include/paraview-%%VERMAJORMINOR%%/vtkThreshold.h +include/paraview-%%VERMAJORMINOR%%/vtkThresholdGraph.h include/paraview-%%VERMAJORMINOR%%/vtkThresholdPoints.h include/paraview-%%VERMAJORMINOR%%/vtkThresholdTable.h include/paraview-%%VERMAJORMINOR%%/vtkThresholdTextureCoords.h +include/paraview-%%VERMAJORMINOR%%/vtkTileDisplayHelper.h +include/paraview-%%VERMAJORMINOR%%/vtkTilesHelper.h include/paraview-%%VERMAJORMINOR%%/vtkTimePointToString.h include/paraview-%%VERMAJORMINOR%%/vtkTimePointUtility.h include/paraview-%%VERMAJORMINOR%%/vtkTimeSourceExample.h @@ -3066,6 +3057,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkTransposeMatrix.h include/paraview-%%VERMAJORMINOR%%/vtkTree.h include/paraview-%%VERMAJORMINOR%%/vtkTreeAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkTreeAreaView.h +include/paraview-%%VERMAJORMINOR%%/vtkTreeBFSIterator.h include/paraview-%%VERMAJORMINOR%%/vtkTreeCompositer.h include/paraview-%%VERMAJORMINOR%%/vtkTreeDFSIterator.h include/paraview-%%VERMAJORMINOR%%/vtkTreeFieldAggregator.h @@ -3106,6 +3098,8 @@ include/paraview-%%VERMAJORMINOR%%/vtkTypeUInt8Array.h include/paraview-%%VERMAJORMINOR%%/vtkTypedArray.h include/paraview-%%VERMAJORMINOR%%/vtkTypedArray.txx include/paraview-%%VERMAJORMINOR%%/vtkUGFacetReader.h +include/paraview-%%VERMAJORMINOR%%/vtkUTF16TextCodec.h +include/paraview-%%VERMAJORMINOR%%/vtkUTF8TextCodec.h include/paraview-%%VERMAJORMINOR%%/vtkUncertaintyTubeFilter.h include/paraview-%%VERMAJORMINOR%%/vtkUndirectedGraph.h include/paraview-%%VERMAJORMINOR%%/vtkUndirectedGraphAlgorithm.h @@ -3123,6 +3117,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkUnsignedIntArray.h include/paraview-%%VERMAJORMINOR%%/vtkUnsignedLongArray.h include/paraview-%%VERMAJORMINOR%%/vtkUnsignedLongLongArray.h include/paraview-%%VERMAJORMINOR%%/vtkUnsignedShortArray.h +include/paraview-%%VERMAJORMINOR%%/vtkUnstructuredDataDeliveryFilter.h include/paraview-%%VERMAJORMINOR%%/vtkUnstructuredGrid.h include/paraview-%%VERMAJORMINOR%%/vtkUnstructuredGridAlgorithm.h include/paraview-%%VERMAJORMINOR%%/vtkUnstructuredGridBunykRayCastFunction.h @@ -3134,12 +3129,14 @@ include/paraview-%%VERMAJORMINOR%%/vtkUnstructuredGridPreIntegration.h include/paraview-%%VERMAJORMINOR%%/vtkUnstructuredGridReader.h include/paraview-%%VERMAJORMINOR%%/vtkUnstructuredGridSource.h include/paraview-%%VERMAJORMINOR%%/vtkUnstructuredGridToPolyDataFilter.h +include/paraview-%%VERMAJORMINOR%%/vtkUnstructuredGridToReebGraphFilter.h include/paraview-%%VERMAJORMINOR%%/vtkUnstructuredGridToUnstructuredGridFilter.h include/paraview-%%VERMAJORMINOR%%/vtkUnstructuredGridVolumeMapper.h include/paraview-%%VERMAJORMINOR%%/vtkUnstructuredGridVolumeRayCastFunction.h include/paraview-%%VERMAJORMINOR%%/vtkUnstructuredGridVolumeRayCastIterator.h include/paraview-%%VERMAJORMINOR%%/vtkUnstructuredGridVolumeRayCastMapper.h include/paraview-%%VERMAJORMINOR%%/vtkUnstructuredGridVolumeRayIntegrator.h +include/paraview-%%VERMAJORMINOR%%/vtkUnstructuredGridVolumeRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkUnstructuredGridVolumeZSweepMapper.h include/paraview-%%VERMAJORMINOR%%/vtkUnstructuredGridWriter.h include/paraview-%%VERMAJORMINOR%%/vtkUpdateSuppressorPipeline.h @@ -3177,6 +3174,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkVoidArray.h include/paraview-%%VERMAJORMINOR%%/vtkVolume.h include/paraview-%%VERMAJORMINOR%%/vtkVolume16Reader.h include/paraview-%%VERMAJORMINOR%%/vtkVolumeCollection.h +include/paraview-%%VERMAJORMINOR%%/vtkVolumeContourSpectrumFilter.h include/paraview-%%VERMAJORMINOR%%/vtkVolumeMapper.h include/paraview-%%VERMAJORMINOR%%/vtkVolumeOutlineSource.h include/paraview-%%VERMAJORMINOR%%/vtkVolumePicker.h @@ -3187,6 +3185,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkVolumeRayCastFunction.h include/paraview-%%VERMAJORMINOR%%/vtkVolumeRayCastIsosurfaceFunction.h include/paraview-%%VERMAJORMINOR%%/vtkVolumeRayCastMIPFunction.h include/paraview-%%VERMAJORMINOR%%/vtkVolumeRayCastMapper.h +include/paraview-%%VERMAJORMINOR%%/vtkVolumeRayCastSpaceLeapingImageFilter.h include/paraview-%%VERMAJORMINOR%%/vtkVolumeReader.h include/paraview-%%VERMAJORMINOR%%/vtkVolumeRenderingFactory.h include/paraview-%%VERMAJORMINOR%%/vtkVolumeRenderingInstantiator.h @@ -3246,6 +3245,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkXMLDataReader.h include/paraview-%%VERMAJORMINOR%%/vtkXMLDataSetWriter.h include/paraview-%%VERMAJORMINOR%%/vtkXMLFileOutputWindow.h include/paraview-%%VERMAJORMINOR%%/vtkXMLFileReadTester.h +include/paraview-%%VERMAJORMINOR%%/vtkXMLGenericDataObjectReader.h include/paraview-%%VERMAJORMINOR%%/vtkXMLHierarchicalBoxDataReader.h include/paraview-%%VERMAJORMINOR%%/vtkXMLHierarchicalBoxDataWriter.h include/paraview-%%VERMAJORMINOR%%/vtkXMLHierarchicalDataReader.h @@ -3301,6 +3301,7 @@ include/paraview-%%VERMAJORMINOR%%/vtkXMLWriter.h include/paraview-%%VERMAJORMINOR%%/vtkXMLWriterC.h include/paraview-%%VERMAJORMINOR%%/vtkXOpenGLRenderWindow.h include/paraview-%%VERMAJORMINOR%%/vtkXRenderWindowInteractor.h +include/paraview-%%VERMAJORMINOR%%/vtkXYChartRepresentation.h include/paraview-%%VERMAJORMINOR%%/vtkXYPlotActor.h include/paraview-%%VERMAJORMINOR%%/vtkXYPlotWidget.h include/paraview-%%VERMAJORMINOR%%/vtkXYZMolReader.h @@ -3317,6 +3318,112 @@ include/paraview-%%VERMAJORMINOR%%/vtk_png.h include/paraview-%%VERMAJORMINOR%%/vtk_tiff.h include/paraview-%%VERMAJORMINOR%%/vtk_zlib.h include/paraview-%%VERMAJORMINOR%%/vtkgl.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5ACpkg.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5ACprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5ACpublic.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Apkg.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Aprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Apublic.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5B2pkg.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5B2private.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5B2public.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Bpkg.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Bprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Bpublic.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5CSprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Cpkg.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Cprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Cpublic.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Dpkg.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Dprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Dpublic.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Edefin.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Einit.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Epkg.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Eprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Epubgen.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Epublic.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Eterm.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5FDcore.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5FDdirect.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5FDfamily.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5FDlog.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5FDmpi.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5FDmpio.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5FDmpiposix.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5FDmulti.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5FDpkg.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5FDprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5FDpublic.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5FDsec2.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5FDstdio.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5FLprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5FOprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5FSpkg.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5FSprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5FSpublic.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Fpkg.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Fprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Fpublic.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Gpkg.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Gprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Gpublic.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5HFpkg.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5HFprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5HFpublic.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5HGpkg.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5HGprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5HGpublic.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5HLpkg.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5HLprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5HLpublic.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5HPprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Ipkg.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Iprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Ipublic.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Lpkg.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Lprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Lpublic.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5MFprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5MMprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5MMpublic.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5MPpkg.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5MPprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Opkg.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Oprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Opublic.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Oshared.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Ppkg.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Pprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Ppublic.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5RCprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5RSprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Rpkg.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Rprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Rpublic.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5SLprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5SMpkg.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5SMprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5STprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Spkg.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Sprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Spublic.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5TSprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Tpkg.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Tprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Tpublic.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Vprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5WBprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Zpkg.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Zprivate.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5Zpublic.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5api_adpt.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5overflow.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5private.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5pubconf.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5public.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/H5version.h +include/paraview-%%VERMAJORMINOR%%/vtkhdf5/hdf5.h include/paraview-%%VERMAJORMINOR%%/vtklibproj4/lib_proj.h include/paraview-%%VERMAJORMINOR%%/vtklibproj4/proj_config.h include/paraview-%%VERMAJORMINOR%%/vtklibxml2/libxml/DOCBparser.h @@ -3467,14 +3574,11 @@ include/paraview-%%VERMAJORMINOR%%/vtksys/stl/utility include/paraview-%%VERMAJORMINOR%%/vtksys/stl/vector lib/paraview-%%VERMAJORMINOR%%/.plugins lib/paraview-%%VERMAJORMINOR%%/CMake/FindMySQL.cmake -lib/paraview-%%VERMAJORMINOR%%/CMake/FindPackageHandleStandardArgs.cmake -lib/paraview-%%VERMAJORMINOR%%/CMake/FindPackageHandleStandardArgs2.cmake lib/paraview-%%VERMAJORMINOR%%/CMake/FindPythonLibs.cmake lib/paraview-%%VERMAJORMINOR%%/CMake/FindTCL.cmake lib/paraview-%%VERMAJORMINOR%%/CMake/ParaViewBranding.cmake lib/paraview-%%VERMAJORMINOR%%/CMake/ParaViewBrandingCPack.cmake lib/paraview-%%VERMAJORMINOR%%/CMake/ParaViewCPackOptions.cmake.in -lib/paraview-%%VERMAJORMINOR%%/CMake/ParaViewLibraryDepends.cmake lib/paraview-%%VERMAJORMINOR%%/CMake/ParaViewMacros.cmake lib/paraview-%%VERMAJORMINOR%%/CMake/ParaViewPlugins.cmake lib/paraview-%%VERMAJORMINOR%%/CMake/ParaViewUse.cmake @@ -3528,14 +3632,17 @@ lib/paraview-%%VERMAJORMINOR%%/KWCommonConfig.cmake lib/paraview-%%VERMAJORMINOR%%/KWCommonLibraryDepends.cmake lib/paraview-%%VERMAJORMINOR%%/ParaViewConfig.cmake lib/paraview-%%VERMAJORMINOR%%/ParaViewConfigVersion.cmake -lib/paraview-%%VERMAJORMINOR%%/ParaViewLibraryDepends.cmake +lib/paraview-%%VERMAJORMINOR%%/ParaViewTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/paraview-%%VERMAJORMINOR%%/ParaViewTargets.cmake lib/paraview-%%VERMAJORMINOR%%/ParaViewUse.cmake +lib/paraview-%%VERMAJORMINOR%%/ServerManager/Resources/3d_widgets.xml lib/paraview-%%VERMAJORMINOR%%/ServerManager/Resources/filters.xml lib/paraview-%%VERMAJORMINOR%%/ServerManager/Resources/internal_writers.xml lib/paraview-%%VERMAJORMINOR%%/ServerManager/Resources/readers.xml lib/paraview-%%VERMAJORMINOR%%/ServerManager/Resources/rendering.xml lib/paraview-%%VERMAJORMINOR%%/ServerManager/Resources/sources.xml lib/paraview-%%VERMAJORMINOR%%/ServerManager/Resources/utilities.xml +lib/paraview-%%VERMAJORMINOR%%/ServerManager/Resources/views_and_representations.xml lib/paraview-%%VERMAJORMINOR%%/ServerManager/Resources/writers.xml lib/paraview-%%VERMAJORMINOR%%/UseKWCommon.cmake lib/paraview-%%VERMAJORMINOR%%/UseVTK.cmake @@ -3543,7 +3650,6 @@ lib/paraview-%%VERMAJORMINOR%%/VTKBuildSettings.cmake lib/paraview-%%VERMAJORMINOR%%/VTKConfig.cmake lib/paraview-%%VERMAJORMINOR%%/VTKConfigQt.cmake lib/paraview-%%VERMAJORMINOR%%/VTKConfigVersion.cmake -lib/paraview-%%VERMAJORMINOR%%/VTKLibraryDepends.cmake lib/paraview-%%VERMAJORMINOR%%/cmake_install.cmake lib/paraview-%%VERMAJORMINOR%%/doc/verdict/1.2.0/README lib/paraview-%%VERMAJORMINOR%%/doc/verdict/1.2.0/Verdict.doc @@ -3553,6 +3659,7 @@ lib/paraview-%%VERMAJORMINOR%%/hints lib/paraview-%%VERMAJORMINOR%%/libAnalyzeReader.so lib/paraview-%%VERMAJORMINOR%%/libAnalyzeWriter.so lib/paraview-%%VERMAJORMINOR%%/libCosmo.so +lib/paraview-%%VERMAJORMINOR%%/libCosmo.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libH5PartReader.so lib/paraview-%%VERMAJORMINOR%%/libKWCommon.so lib/paraview-%%VERMAJORMINOR%%/libMapReduceMPI.so @@ -3570,8 +3677,10 @@ lib/paraview-%%VERMAJORMINOR%%/libQVTK.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libQtTesting.so lib/paraview-%%VERMAJORMINOR%%/libSLACTools.so lib/paraview-%%VERMAJORMINOR%%/libSierraPlotTools.so +lib/paraview-%%VERMAJORMINOR%%/libStreamingView.so lib/paraview-%%VERMAJORMINOR%%/libSurfaceLIC.so lib/paraview-%%VERMAJORMINOR%%/libVPIC.so +lib/paraview-%%VERMAJORMINOR%%/libVPIC.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libXdmf.so lib/paraview-%%VERMAJORMINOR%%/libmpistubs.so lib/paraview-%%VERMAJORMINOR%%/libmpistubs.so.pv%%VERMAJORMINOR%% @@ -3581,6 +3690,7 @@ lib/paraview-%%VERMAJORMINOR%%/libpqCore.so lib/paraview-%%VERMAJORMINOR%%/libpqWidgets.so lib/paraview-%%VERMAJORMINOR%%/libvtkCharts.so lib/paraview-%%VERMAJORMINOR%%/libvtkCharts.so.pv%%VERMAJORMINOR%% +lib/paraview-%%VERMAJORMINOR%%/libvtkChartsCS.so lib/paraview-%%VERMAJORMINOR%%/libvtkClientServer.so lib/paraview-%%VERMAJORMINOR%%/libvtkCommon.so lib/paraview-%%VERMAJORMINOR%%/libvtkCommon.so.pv%%VERMAJORMINOR%% @@ -3622,11 +3732,11 @@ lib/paraview-%%VERMAJORMINOR%%/libvtkPVServerManager.so lib/paraview-%%VERMAJORMINOR%%/libvtkParallel.so lib/paraview-%%VERMAJORMINOR%%/libvtkParallel.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libvtkParallelCS.so -lib/paraview-%%VERMAJORMINOR%%/libvtkQtChart.so -lib/paraview-%%VERMAJORMINOR%%/libvtkQtChart.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libvtkRendering.so lib/paraview-%%VERMAJORMINOR%%/libvtkRendering.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libvtkRenderingCS.so +lib/paraview-%%VERMAJORMINOR%%/libvtkStreaming.so +lib/paraview-%%VERMAJORMINOR%%/libvtkStreamingCS.so lib/paraview-%%VERMAJORMINOR%%/libvtkViews.so lib/paraview-%%VERMAJORMINOR%%/libvtkViews.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libvtkViewsCS.so @@ -3644,6 +3754,8 @@ lib/paraview-%%VERMAJORMINOR%%/libvtkexoIIc.so lib/paraview-%%VERMAJORMINOR%%/libvtkexoIIc.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libvtkftgl.so lib/paraview-%%VERMAJORMINOR%%/libvtkftgl.so.pv%%VERMAJORMINOR%% +lib/paraview-%%VERMAJORMINOR%%/libvtkhdf5.so +lib/paraview-%%VERMAJORMINOR%%/libvtkhdf5.so.1.8.5 lib/paraview-%%VERMAJORMINOR%%/libvtklibxml2.so lib/paraview-%%VERMAJORMINOR%%/libvtklibxml2.so.pv%%VERMAJORMINOR%% lib/paraview-%%VERMAJORMINOR%%/libvtkmetaio.so @@ -3709,6 +3821,7 @@ lib/paraview-%%VERMAJORMINOR%%/vtkXdmfKit.cmake @dirrm include/paraview-%%VERMAJORMINOR%%/vtklibxml2/libxml @dirrm include/paraview-%%VERMAJORMINOR%%/vtklibxml2 @dirrm include/paraview-%%VERMAJORMINOR%%/vtklibproj4 +@dirrm include/paraview-%%VERMAJORMINOR%%/vtkhdf5 @dirrm include/paraview-%%VERMAJORMINOR%%/mrmpi @dirrm include/paraview-%%VERMAJORMINOR%%/internal @dirrm include/paraview-%%VERMAJORMINOR%%/alglib |