Commit d44840c0 authored by Guillaume Pasero's avatar Guillaume Pasero
Browse files

REFAC: remove deprecated function in WrapperCommandLineLauncher

No related merge requests found
Showing with 0 additions and 13 deletions
+0 -13
...@@ -118,12 +118,6 @@ protected: ...@@ -118,12 +118,6 @@ protected:
/** Constructor */ /** Constructor */
CommandLineLauncher(); CommandLineLauncher();
/** \deprecated
* Constructor with exp argument is deprecated because class
* CommandLineLauncher does not have expression attribute anymore. Use instead the
* default constructor. It is included for backwards compatibility. */
CommandLineLauncher(const char * exp);
/** Destructor */ /** Destructor */
~CommandLineLauncher() ITK_OVERRIDE; ~CommandLineLauncher() ITK_OVERRIDE;
......
...@@ -67,13 +67,6 @@ CommandLineLauncher::CommandLineLauncher() : ...@@ -67,13 +67,6 @@ CommandLineLauncher::CommandLineLauncher() :
m_AddProcessCommand->SetCallbackFunction(this, &CommandLineLauncher::LinkWatchers); m_AddProcessCommand->SetCallbackFunction(this, &CommandLineLauncher::LinkWatchers);
} }
CommandLineLauncher::CommandLineLauncher(const char *) /*:
m_Expression(exp)*/
{
m_Application = ITK_NULLPTR;
m_Parser = CommandLineParser::New();
}
CommandLineLauncher::~CommandLineLauncher() CommandLineLauncher::~CommandLineLauncher()
{ {
this->DeleteWatcherList(); this->DeleteWatcherList();
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment