comac_desk_app/ThirdpartyLibs/Libs/windows-x86_64/vtk/include/vtkGraphReader.h

84 lines
2.3 KiB
C
Raw Permalink Normal View History

2024-11-21 11:50:43 +08:00
/*=========================================================================
Program: Visualization Toolkit
Module: vtkGraphReader.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/**
* @class vtkGraphReader
* @brief read vtkGraph data file
*
* vtkGraphReader is a source object that reads ASCII or binary
* vtkGraph data files in vtk format. (see text for format details).
* The output of this reader is a single vtkGraph data object.
* The superclass of this class, vtkDataReader, provides many methods for
* controlling the reading of the data file, see vtkDataReader for more
* information.
* @warning
* Binary files written on one system may not be readable on other systems.
* @sa
* vtkGraph vtkDataReader vtkGraphWriter
*/
#ifndef vtkGraphReader_h
#define vtkGraphReader_h
#include "vtkDataReader.h"
#include "vtkIOLegacyModule.h" // For export macro
class vtkGraph;
class VTKIOLEGACY_EXPORT vtkGraphReader : public vtkDataReader
{
public:
static vtkGraphReader* New();
vtkTypeMacro(vtkGraphReader, vtkDataReader);
void PrintSelf(ostream& os, vtkIndent indent) override;
///@{
/**
* Get the output of this reader.
*/
vtkGraph* GetOutput();
vtkGraph* GetOutput(int idx);
///@}
/**
* Actual reading happens here
*/
int ReadMeshSimple(VTK_FILEPATH const std::string& fname, vtkDataObject* output) override;
protected:
vtkGraphReader();
~vtkGraphReader() override;
enum GraphType
{
UnknownGraph,
DirectedGraph,
UndirectedGraph,
Molecule
};
vtkDataObject* CreateOutput(vtkDataObject* currentOutput) override;
// Read beginning of file to determine whether the graph is directed.
virtual int ReadGraphType(const char* fname, GraphType& type);
int FillOutputPortInformation(int, vtkInformation*) override;
private:
vtkGraphReader(const vtkGraphReader&) = delete;
void operator=(const vtkGraphReader&) = delete;
};
#endif