Skip to content
Snippets Groups Projects
Commit 640fa048 authored by Emmanuel Christophe's avatar Emmanuel Christophe
Browse files

avec des const pour les Get*()

parent 6049cb61
Branches
Tags
No related merge requests found
......@@ -71,10 +71,10 @@ class ITK_EXPORT SimpleRcsPanSharpeningFusionImageFilter :
itkSetMacro( Radius, RadiusType);
virtual void SetPanInput( const TPanImageType * image);
const TPanImageType * GetPanInput(void);
const TPanImageType * GetPanInput(void) const;
virtual void SetXsInput( const TXsImageType * path);
const TXsImageType * GetXsInput(void);
const TXsImageType * GetXsInput(void) const;
protected:
......
......@@ -63,7 +63,7 @@ namespace otb
const TPanImageType *
SimpleRcsPanSharpeningFusionImageFilter
<TPanImageType, TXsImageType, TOutputImageType>
::GetPanInput(void)
::GetPanInput(void) const
{
if (this->GetNumberOfInputs() < 2)
{
......@@ -92,7 +92,7 @@ namespace otb
const TXsImageType *
SimpleRcsPanSharpeningFusionImageFilter
<TPanImageType, TXsImageType, TOutputImageType>
::GetXsInput(void)
::GetXsInput(void) const
{
if (this->GetNumberOfInputs() < 1)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment