Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/CinemaAlgorithm/CinemaAlgorithm.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@

// Pass input type information key
#include <vtkInformationKey.h>

#include <iostream>

vtkInformationKeyMacro(CinemaAlgorithm, SAME_DATA_TYPE_AS_INPUT_PORT, Integer);

// Constructor / Destructor
Expand Down Expand Up @@ -171,7 +174,7 @@ int CinemaAlgorithm::ProcessRequest(vtkInformation *request,
return this->RequestData(request, inputVector, outputVector);
}

request->Print(cout);
request->Print(std::cout);

return 0;
};
1 change: 1 addition & 0 deletions src/CinemaWriter/vtk.module
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ PRIVATE_DEPENDS
VTK::CommonCore
VTK::CommonSystem
VTK::hdf5
VTK::IOImage