VTK  9.0.1
vtkArrayReader.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkArrayReader.h
5 
6 -------------------------------------------------------------------------
7  Copyright 2008 Sandia Corporation.
8  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
9  the U.S. Government retains certain rights in this software.
10 -------------------------------------------------------------------------
11 
12  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
13  All rights reserved.
14  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
15 
16  This software is distributed WITHOUT ANY WARRANTY; without even
17  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
18  PURPOSE. See the above copyright notice for more information.
19 
20 =========================================================================*/
21 
39 #ifndef vtkArrayReader_h
40 #define vtkArrayReader_h
41 
42 #include "vtkArrayDataAlgorithm.h"
43 #include "vtkIOCoreModule.h" // For export macro
44 
45 class VTKIOCORE_EXPORT vtkArrayReader : public vtkArrayDataAlgorithm
46 {
47 public:
48  static vtkArrayReader* New();
50  void PrintSelf(ostream& os, vtkIndent indent) override;
51 
53 
56  vtkGetStringMacro(FileName);
57  vtkSetStringMacro(FileName);
59 
61 
65  virtual void SetInputString(const vtkStdString& string);
66  virtual vtkStdString GetInputString();
68 
70 
73  vtkSetMacro(ReadFromInputString, bool);
74  vtkGetMacro(ReadFromInputString, bool);
75  vtkBooleanMacro(ReadFromInputString, bool);
77 
83  static vtkArray* Read(istream& stream);
84 
88  static vtkArray* Read(const vtkStdString& str);
89 
90 protected:
92  ~vtkArrayReader() override;
93 
95 
96  char* FileName;
99 
100 private:
101  vtkArrayReader(const vtkArrayReader&) = delete;
102  void operator=(const vtkArrayReader&) = delete;
103 };
104 
105 #endif
Wrapper around std::string to keep symbols short.
Definition: vtkStdString.h:34
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
Reads sparse and dense vtkArray data written by vtkArrayWriter.
Store vtkAlgorithm input/output information.
Abstract interface for N-dimensional arrays.
Definition: vtkArray.h:64
a simple class to control print indentation
Definition: vtkIndent.h:33
bool ReadFromInputString
Superclass for algorithms that produce vtkArrayDatas as output.
vtkStdString InputString
static vtkArrayDataAlgorithm * New()
Store zero or more vtkInformation instances.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.