Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Antoine Belvire
otb
Commits
57d2857e
Commit
57d2857e
authored
15 years ago
by
Jordi Inglada
Browse files
Options
Downloads
Patches
Plain Diff
ENH: GISTableToGISTableFilter
parent
8eed1f8f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Code/Common/otbGISTableToGISTableFilter.h
+23
-23
23 additions, 23 deletions
Code/Common/otbGISTableToGISTableFilter.h
with
23 additions
and
23 deletions
Code/Common/otbGISTableToGISTableFilter.h
+
23
−
23
View file @
57d2857e
...
...
@@ -15,32 +15,32 @@
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef __otb
VectorDataToVectorData
Filter_h
#define __otb
VectorDataToVectorData
Filter_h
#ifndef __otb
GISTableToGISTable
Filter_h
#define __otb
GISTableToGISTable
Filter_h
#include
"otb
VectorData
Source.h"
#include
"otb
GISTable
Source.h"
namespace
otb
{
/** \class
VectorDataToVectorData
Filter
* \brief Base class for filters that take an
VectorData
as input and produce an
VectorData
as output.
/** \class
GISTableToGISTable
Filter
* \brief Base class for filters that take an
GISTable
as input and produce an
GISTable
as output.
*
*
VectorDataToVectorData
Filter is the base class for all process objects that output
*
VectorData
data and require
VectorData
data as input. Specifically, this class
*
GISTableToGISTable
Filter is the base class for all process objects that output
*
GISTable
data and require
GISTable
data as input. Specifically, this class
* defines the SetInput() method for defining the input to a filter.
*
*
*
* \ingroup
VectorData
Filter
* \ingroup
GISTable
Filter
*/
template
<
class
TInput
VectorData
,
class
TOutput
VectorData
>
class
ITK_EXPORT
VectorDataToVectorData
Filter
:
public
otb
::
VectorData
Source
<
TOutput
VectorData
>
template
<
class
TInput
GISTable
,
class
TOutput
GISTable
>
class
ITK_EXPORT
GISTableToGISTable
Filter
:
public
otb
::
GISTable
Source
<
TOutput
GISTable
>
{
public:
/** Standard class typedefs. */
typedef
VectorDataToVectorData
Filter
Self
;
typedef
otb
::
VectorData
Source
<
TOutput
VectorData
>
Superclass
;
typedef
GISTableToGISTable
Filter
Self
;
typedef
otb
::
GISTable
Source
<
TOutput
GISTable
>
Superclass
;
typedef
itk
::
SmartPointer
<
Self
>
Pointer
;
typedef
itk
::
SmartPointer
<
const
Self
>
ConstPointer
;
...
...
@@ -48,31 +48,31 @@ public:
itkNewMacro
(
Self
);
/** Run-time type information (and related methods). */
itkTypeMacro
(
VectorDataToVectorDataFilter
,
VectorData
Source
);
itkTypeMacro
(
GISTableToGISTableFilter
,
GISTable
Source
);
/** Some typedefs. */
typedef
TInput
VectorData
InputVectorData
Type
;
typedef
TOutput
VectorData
OutputVectorData
Type
;
typedef
typename
TInput
VectorData
::
ConstPointer
Input
VectorData
Pointer
;
typedef
typename
TOutput
VectorData
::
Pointer
Output
VectorData
Pointer
;
typedef
TInput
GISTable
InputGISTable
Type
;
typedef
TOutput
GISTable
OutputGISTable
Type
;
typedef
typename
TInput
GISTable
::
ConstPointer
Input
GISTable
Pointer
;
typedef
typename
TOutput
GISTable
::
Pointer
Output
GISTable
Pointer
;
typedef
itk
::
DataObject
::
Pointer
DataObjectPointer
;
virtual
void
SetInput
(
const
Input
VectorData
Type
*
input
);
const
Input
VectorData
Type
*
GetInput
(
void
);
virtual
void
SetInput
(
const
Input
GISTable
Type
*
input
);
const
Input
GISTable
Type
*
GetInput
(
void
);
protected:
/** Constructor */
VectorDataToVectorData
Filter
();
GISTableToGISTable
Filter
();
/** Destructor */
virtual
~
VectorDataToVectorData
Filter
()
{};
virtual
~
GISTableToGISTable
Filter
()
{};
/**PrintSelf method */
virtual
void
PrintSelf
(
std
::
ostream
&
os
,
itk
::
Indent
indent
)
const
;
private
:
VectorDataToVectorData
Filter
(
const
Self
&
);
//purposely not implemented
GISTableToGISTable
Filter
(
const
Self
&
);
//purposely not implemented
void
operator
=
(
const
Self
&
);
//purposely not implemented
};
...
...
@@ -80,7 +80,7 @@ private:
}
// end namespace otb
#ifndef ITK_MANUAL_INSTANTIATION
#include
"otb
VectorDataToVectorData
Filter.txx"
#include
"otb
GISTableToGISTable
Filter.txx"
#endif
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment