Skip to content
Snippets Groups Projects
Commit f0857041 authored by Stéphane Albert's avatar Stéphane Albert
Browse files

BUG: MANTIS-1085; Added ::GetInput() method to...

BUG: MANTIS-1085; Added ::GetInput() method to otb::QtWidgetOutputFilenameParameter, otb::QtWidgetOutputImageParameter and otb::QtWidgetOutputVectorDataParameter.
parent 48ef0501
No related branches found
No related tags found
No related merge requests found
......@@ -42,6 +42,9 @@ public:
QtWidgetOutputFilenameParameter(OutputFilenameParameter*, QtWidgetModel*);
virtual ~QtWidgetOutputFilenameParameter();
inline const QLineEdit* GetInput() const;
inline QLineEdit* GetInput();
protected slots:
void SetFileName( const QString& value );
void SelectFile();
......@@ -63,6 +66,23 @@ private:
};
inline
const QLineEdit*
QtWidgetOutputFilenameParameter
::GetInput() const
{
return m_Input;
}
inline
QLineEdit*
QtWidgetOutputFilenameParameter
::GetInput()
{
return m_Input;
}
}
}
......
......@@ -42,6 +42,9 @@ public:
QtWidgetOutputImageParameter(OutputImageParameter*, QtWidgetModel*);
virtual ~QtWidgetOutputImageParameter();
inline const QLineEdit* GetInput() const;
inline QLineEdit* GetInput();
/** Get the PixelType*/
//itkGetMacro(PixelType, int);
......@@ -72,6 +75,22 @@ private:
};
inline
const QLineEdit*
QtWidgetOutputImageParameter
::GetInput() const
{
return m_Input;
}
inline
QLineEdit*
QtWidgetOutputImageParameter
::GetInput()
{
return m_Input;
}
}
}
......
......@@ -42,6 +42,9 @@ public:
QtWidgetOutputVectorDataParameter(OutputVectorDataParameter*, QtWidgetModel*);
virtual ~QtWidgetOutputVectorDataParameter();
inline const QLineEdit* GetInput() const;
inline QLineEdit* GetInput();
/** Get the PixelType*/
//itkGetMacro(PixelType, int);
......@@ -69,6 +72,23 @@ private:
};
inline
const QLineEdit*
QtWidgetOutputVectorDataParameter
::GetInput() const
{
return m_Input;
}
inline
QLineEdit*
QtWidgetOutputVectorDataParameter
::GetInput()
{
return m_Input;
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment