VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkArrayReader.h 00005 00006 ------------------------------------------------------------------------- 00007 Copyright 2008 Sandia Corporation. 00008 Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, 00009 the U.S. Government retains certain rights in this software. 00010 ------------------------------------------------------------------------- 00011 00012 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00013 All rights reserved. 00014 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00015 00016 This software is distributed WITHOUT ANY WARRANTY; without even 00017 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00018 PURPOSE. See the above copyright notice for more information. 00019 00020 =========================================================================*/ 00021 00041 #ifndef __vtkArrayReader_h 00042 #define __vtkArrayReader_h 00043 00044 #include "vtkIOCoreModule.h" // For export macro 00045 #include "vtkArrayDataAlgorithm.h" 00046 00047 class VTKIOCORE_EXPORT vtkArrayReader : 00048 public vtkArrayDataAlgorithm 00049 { 00050 public: 00051 static vtkArrayReader* New(); 00052 vtkTypeMacro(vtkArrayReader, vtkArrayDataAlgorithm); 00053 void PrintSelf(ostream& os, vtkIndent indent); 00054 00056 00057 vtkGetStringMacro(FileName); 00058 vtkSetStringMacro(FileName); 00060 00062 00065 virtual void SetInputString(const vtkStdString& string); 00066 virtual vtkStdString GetInputString(); 00068 00070 00072 vtkSetMacro(ReadFromInputString, bool); 00073 vtkGetMacro(ReadFromInputString, bool); 00074 vtkBooleanMacro(ReadFromInputString, bool); 00076 00079 static vtkArray* Read(istream& stream); 00080 00082 static vtkArray* Read(vtkStdString str); 00083 00084 protected: 00085 vtkArrayReader(); 00086 ~vtkArrayReader(); 00087 00088 int RequestData( 00089 vtkInformation*, 00090 vtkInformationVector**, 00091 vtkInformationVector*); 00092 00093 char* FileName; 00094 vtkStdString InputString; 00095 bool ReadFromInputString; 00096 00097 private: 00098 vtkArrayReader(const vtkArrayReader&); // Not implemented 00099 void operator=(const vtkArrayReader&); // Not implemented 00100 }; 00101 00102 #endif 00103