All public logs

From KitwarePublic
Jump to navigationJump to search

Combined display of all available logs of KitwarePublic. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 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...")