VTK/Examples/Cxx/IO/GenericDataObjectReader: Revision history

From KitwarePublic
Jump to navigationJump to search

There is no edit history for this page.

This page does not exist. The deletion, protection, and move log for the page are provided below for reference.

  • 02:11, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/IO/GenericDataObjectReader (content was: "==GenericDataObjectReader.cxx== <source lang="cpp"> #include <vtkGenericDataObjectReader.h> #include <vtkStructuredGrid.h> #include <vtkSmartPointer.h> #include <vtkPolyData.h> #include <string> int main ( int argc, char *argv[] ) { // Ensure a filename was specified if(argc != 2) { std::cerr << "Usage: " << argv[0] << " InputFilename" << endl; return EXIT_FAILURE; } // Get the filename from the command line std::string inputFilename = argv[1]; // G...")