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
Main Repositories
otb
Commits
2151aac1
Commit
2151aac1
authored
7 years ago
by
Jordi Inglada
Browse files
Options
Downloads
Patches
Plain Diff
COMP: use c++14 override and delete instead of ITK macros
parent
6df7aaf1
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Modules/Radiometry/Simulation/include/otbSailModel.h
+8
-8
8 additions, 8 deletions
Modules/Radiometry/Simulation/include/otbSailModel.h
with
8 additions
and
8 deletions
Modules/Radiometry/Simulation/include/otbSailModel.h
+
8
−
8
View file @
2151aac1
...
...
@@ -64,10 +64,10 @@ public:
/** Set Inputs */
void
SetReflectance
(
const
SpectralResponseType
*
object
)
ITK_OVERRIDE
;
void
SetReflectance
(
const
SpectralResponseType
*
object
)
override
;
SpectralResponseType
*
GetReflectance
();
void
SetTransmittance
(
const
SpectralResponseType
*
object
)
ITK_OVERRIDE
;
void
SetTransmittance
(
const
SpectralResponseType
*
object
)
override
;
SpectralResponseType
*
GetTransmittance
();
/** Set parameters */
...
...
@@ -110,7 +110,7 @@ public:
void
UseExternalSoilDB
(
std
::
shared_ptr
<
SoilDataBase
>
SoilDB
,
size_t
SoilIndex
);
/** GenerateData */
void
GenerateData
()
ITK_OVERRIDE
;
void
GenerateData
()
override
;
/** Get Output */
virtual
SpectralResponseType
*
GetViewingReflectance
();
...
...
@@ -127,11 +127,11 @@ protected:
/** Constructor */
SailModel
();
/** Destructor */
~
SailModel
()
ITK_OVERRIDE
;
~
SailModel
()
override
;
/** PrintSelf method */
void
PrintSelf
(
std
::
ostream
&
os
,
itk
::
Indent
indent
)
const
ITK_OVERRIDE
;
void
PrintSelf
(
std
::
ostream
&
os
,
itk
::
Indent
indent
)
const
override
;
DataObjectPointer
MakeOutput
(
DataObjectPointerArraySizeType
)
ITK_OVERRIDE
;
DataObjectPointer
MakeOutput
(
DataObjectPointerArraySizeType
)
override
;
using
Superclass
::
MakeOutput
;
/** Compute Leaf Angle Distribution */
...
...
@@ -146,8 +146,8 @@ protected:
void
Volscatt
(
const
double
tts
,
const
double
tto
,
const
double
psi
,
const
double
ttl
,
VectorType
&
result
)
const
;
private:
SailModel
(
const
Self
&
)
;
//purposely not implemented
void
operator
=
(
const
Self
&
)
;
//purposely not implemen
te
d
SailModel
(
const
Self
&
)
=
delete
;
void
operator
=
(
const
Self
&
)
=
dele
te
;
double
m_LAI
;
//leaf area index
double
m_Angl
;
//average leaf angle
...
...
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