Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Christian Butz
VTK
Commits
c6be0306
Commit
c6be0306
authored
Jun 16, 2011
by
Marcus D. Hanwell
Committed by
Kitware Robot
Jun 16, 2011
Browse files
Merge topic 'include-fixes'
400133e0
BUG: Fixed a few small include issues.
parents
0667b2d8
400133e0
Changes
2
Hide whitespace changes
Inline
Side-by-side
IO/vtkFacetWriter.cxx
View file @
c6be0306
...
...
@@ -20,7 +20,6 @@
#include
"vtkCellType.h"
#include
"vtkCellArray.h"
#include
"vtkGarbageCollector.h"
#include
"vtkAppendFilter.h"
#include
"vtkPointData.h"
#include
"vtkCellData.h"
#include
"vtkInformationVector.h"
...
...
@@ -95,7 +94,7 @@ int vtkFacetWriter::RequestData(
for
(
cc
=
0
;
cc
<
len
;
cc
++
)
{
vtkInformation
*
inInfo
=
inputVector
[
0
]
->
GetInformationObject
(
cc
);
vtkPolyData
*
input
=
vtkPolyData
*
input
=
vtkPolyData
::
SafeDownCast
(
inInfo
->
Get
(
vtkDataObject
::
DATA_OBJECT
()));
if
(
!
this
->
WriteDataToStream
(
this
->
OutputStream
,
input
)
)
{
...
...
@@ -316,7 +315,7 @@ void vtkFacetWriter::PrintSelf(ostream& os, vtkIndent indent)
{
this
->
Superclass
::
PrintSelf
(
os
,
indent
);
os
<<
indent
<<
"File Name: "
os
<<
indent
<<
"File Name: "
<<
(
this
->
FileName
?
this
->
FileName
:
"(none)"
)
<<
"
\n
"
;
}
IO/vtkSimplePointsWriter.h
View file @
c6be0306
...
...
@@ -22,7 +22,7 @@
#ifndef __vtkSimplePointsWriter_h
#define __vtkSimplePointsWriter_h
#include
<
vtkDataSetWriter.h
>
#include
"
vtkDataSetWriter.h
"
class
VTK_IO_EXPORT
vtkSimplePointsWriter
:
public
vtkDataSetWriter
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment