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

ENH: Added public ::GetInput() accessors to Input/OutputProcessXMLParameter

parent 5eeb4c12
No related branches found
No related tags found
No related merge requests found
......@@ -42,6 +42,9 @@ public:
QtWidgetInputProcessXMLParameter(InputProcessXMLParameter*, QtWidgetModel*);
virtual ~QtWidgetInputProcessXMLParameter();
inline const QLineEdit* GetInput() const;
inline QLineEdit* GetInput();
protected slots:
void SetFileName( const QString& value );
void SelectFile();
......@@ -63,6 +66,22 @@ private:
};
inline
const QLineEdit*
QtWidgetInputProcessXMLParameter
::GetInput() const
{
return m_Input;
}
inline
QLineEdit*
QtWidgetInputProcessXMLParameter
::GetInput()
{
return m_Input;
}
}
}
......
......@@ -42,6 +42,9 @@ public:
QtWidgetOutputProcessXMLParameter(OutputProcessXMLParameter*, QtWidgetModel*);
virtual ~QtWidgetOutputProcessXMLParameter();
inline const QLineEdit* GetInput() const;
inline QLineEdit* GetInput();
public slots:
void SetFileName( const QString& value );
......@@ -65,6 +68,22 @@ private:
};
inline
const QLineEdit*
QtWidgetOutputProcessXMLParameter
::GetInput() const
{
return m_Input;
}
inline
QLineEdit*
QtWidgetOutputProcessXMLParameter
::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