VTK  9.2.6
vtkCesiumPointCloudWriter.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkCesiumPointCloudWriter.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
20
21#ifndef vtkCesiumPointCloudWriter_h
22#define vtkCesiumPointCloudWriter_h
23
24#include "vtkIOCesium3DTilesModule.h" // For export macro
25#include "vtkIdList.h"
26#include "vtkWriter.h"
27
28class VTKIOCESIUM3DTILES_EXPORT vtkCesiumPointCloudWriter : public vtkWriter
29{
30public:
33 void PrintSelf(ostream& os, vtkIndent indent) override;
34
36
39 vtkSetStringMacro(FileName);
40 vtkGetStringMacro(FileName);
42
44
47 vtkSetObjectMacro(PointIds, vtkIdList);
48 vtkGetObjectMacro(PointIds, vtkIdList);
50
51protected:
54
55 void WriteData() override;
56 int FillInputPortInformation(int port, vtkInformation* info) override;
57
58 char* FileName;
60
61private:
63 void operator=(const vtkCesiumPointCloudWriter&) = delete;
64};
65
66#endif
67// VTK-HeaderTest-Exclude: vtkCesiumPointCloudWriter.h
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
static vtkCesiumPointCloudWriter * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkCesiumPointCloudWriter() override
void WriteData() override
list of point or cell ids
Definition vtkIdList.h:34
a simple class to control print indentation
Definition vtkIndent.h:40
Store vtkAlgorithm input/output information.