From f3e224e234ef55d4c92009a662050a4615b49e32 Mon Sep 17 00:00:00 2001 From: Matthew McCormick Date: Sat, 23 Nov 2024 22:11:02 -0500 Subject: [PATCH] build(cxx): add missing mesh dependency includes --- include/itkMeshToWasmMeshFilter.h | 3 ++- include/itkOutputMesh.h | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/include/itkMeshToWasmMeshFilter.h b/include/itkMeshToWasmMeshFilter.h index f0d20d726..1f59ece53 100644 --- a/include/itkMeshToWasmMeshFilter.h +++ b/include/itkMeshToWasmMeshFilter.h @@ -20,13 +20,14 @@ #include "itkProcessObject.h" #include "itkWasmMesh.h" +#include "itkMeshJSON.h" namespace itk { /** *\class MeshToWasmMeshFilter * \brief Convert an Mesh to an WasmMesh object. - * + * * \ingroup WebAssemblyInterface */ template diff --git a/include/itkOutputMesh.h b/include/itkOutputMesh.h index 36523d0fd..371a8b8f0 100644 --- a/include/itkOutputMesh.h +++ b/include/itkOutputMesh.h @@ -20,6 +20,7 @@ #include "itkPipeline.h" #include "itkMeshConvertPixelTraits.h" +#include "itkMesh.h" #ifndef ITK_WASM_NO_MEMORY_IO #include "itkWasmExports.h" @@ -39,9 +40,9 @@ namespace wasm * \brief Output mesh for an itk::wasm::Pipeline * * This mesh is written to the filesystem or memory when it goes out of scope. - * + * * Call `GetMesh()` to get the TMesh * to use an input to a pipeline. - * + * * \ingroup WebAssemblyInterface */ template