Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
VTK
VTK
Commits
1e7e9e41
Commit
1e7e9e41
authored
Jun 09, 1994
by
Will Schroeder
Browse files
Initial revision
parent
5bcfd968
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/StrPtsC.hh
0 → 100644
View file @
1e7e9e41
/*=========================================================================
Program: Visualization Library
Module: StrPtsC.hh
Language: C++
Date: $Date$
Version: $Revision$
Description:
---------------------------------------------------------------------------
This file is part of the Visualization Library. No part of this file
or its contents may be copied, reproduced or altered in any way
without the express written consent of the authors.
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 1993, 1994
=========================================================================*/
#ifndef __vlStructuredPointsCollection_hh
#define __vlStructuredPointsCollection_hh
#include "StrPts.hh"
class
vlStructuredPointsCollectionElement
{
public:
vlStructuredPoints
*
Item
;
vlStructuredPointsCollectionElement
*
Next
;
};
class
vlStructuredPointsCollection
:
public
vlObject
{
public:
vlStructuredPointsCollection
();
void
PrintSelf
(
ostream
&
os
,
vlIndent
indent
);
char
*
GetClassName
()
{
return
"vlStructuredPointsCollection"
;};
void
AddItem
(
vlStructuredPoints
*
);
void
RemoveItem
(
vlStructuredPoints
*
);
int
IsItemPresent
(
vlStructuredPoints
*
);
int
GetNumberOfItems
();
vlStructuredPoints
*
GetItem
(
int
num
);
private:
int
NumberOfItems
;
vlStructuredPointsCollectionElement
*
Top
;
vlStructuredPointsCollectionElement
*
Bottom
;
};
#endif
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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