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
2924724d
Commit
2924724d
authored
Dec 27, 2005
by
Will Schroeder
Browse files
STYLE:Clarify the use of virtual function
parent
185ce33c
Changes
1
Hide whitespace changes
Inline
Side-by-side
GenericFiltering/Testing/Cxx/vtkBridgeDataSet.h
View file @
2924724d
...
...
@@ -40,18 +40,19 @@ public:
// Set the dataset that will be manipulated through the adaptor interface.
// \pre ds_exists: ds!=0
void
SetDataSet
(
vtkDataSet
*
ds
);
// Description:
// Number of points composing the dataset. See NewPointIterator for more
// details.
// \post positive_result: result>=0
vtkIdType
GetNumberOfPoints
();
virtual
vtkIdType
GetNumberOfPoints
();
// Description:
// Number of cells that explicitly define the dataset. See NewCellIterator
// for more details.
// \pre valid_dim_range: (dim>=-1) && (dim<=3)
// \post positive_result: result>=0
vtkIdType
GetNumberOfCells
(
int
dim
=-
1
);
virtual
vtkIdType
GetNumberOfCells
(
int
dim
=-
1
);
// Description:
// Return -1 if the dataset is explicitly defined by cells of several
...
...
@@ -59,7 +60,7 @@ public:
// cells of a unique
// dimension, return this dimension.
// \post valid_range: (result>=-1) && (result<=3)
int
GetCellDimension
();
virtual
int
GetCellDimension
();
// Description:
// Get a list of types of cells in a dataset. The list consists of an array
...
...
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