VTK  9.6.20260204
vtkGESignaReader.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
24
25#ifndef vtkGESignaReader_h
26#define vtkGESignaReader_h
27
28#include "vtkIOImageModule.h" // For export macro
30
31VTK_ABI_NAMESPACE_BEGIN
32class VTKIOIMAGE_EXPORT vtkGESignaReader : public vtkMedicalImageReader2
33{
34public:
37 void PrintSelf(ostream& os, vtkIndent indent) override;
38
43 int CanReadFile(VTK_FILEPATH const char* fname) override;
44
48 const char* GetFileExtensions() override { return ".MR .CT"; }
49
53 const char* GetDescriptiveName() override { return "GESigna"; }
54
55protected:
56 vtkGESignaReader() = default;
57 ~vtkGESignaReader() override = default;
58
59 void ExecuteInformation() override;
61
62private:
63 vtkGESignaReader(const vtkGESignaReader&) = delete;
64 void operator=(const vtkGESignaReader&) = delete;
65};
66VTK_ABI_NAMESPACE_END
67#endif
general representation of visualization data
void ExecuteDataWithInformation(vtkDataObject *out, vtkInformation *outInfo) override
This is a convenience method that is implemented in many subclasses instead of RequestData.
static vtkGESignaReader * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int CanReadFile(const char *fname) override
Is the given file a GESigna file?
vtkGESignaReader()=default
~vtkGESignaReader() override=default
const char * GetDescriptiveName() override
A descriptive name for this format.
const char * GetFileExtensions() override
Valid extentsions.
void ExecuteInformation() override
virtual int CanReadFile(const char *fname)
Return non zero if the reader can read the given file name.
a simple class to control print indentation
Definition vtkIndent.h:108
Store vtkAlgorithm input/output information.
#define VTK_FILEPATH