Commit 257d10fc authored by Manuel Grizonnet's avatar Manuel Grizonnet
Browse files

ENH: remove deprecated constructor not used anymore

No related merge requests found
Showing with 1 addition and 13 deletions
+1 -13
...@@ -82,14 +82,8 @@ public: ...@@ -82,14 +82,8 @@ public:
* - Load the application using the ApplicationRegistry * - Load the application using the ApplicationRegistry
*/ */
bool Load(); bool Load();
/** \deprecated
* Load 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. */
bool Load( const std::string & exp );
/** same as Load method but set the expression before. */ /** same as Load method but set the expression before. */
bool Load(const std::vector<std::string> &vexp); bool Load(const std::vector<std::string> &vexp);
/** Launch the process, using the Execute application method /** Launch the process, using the Execute application method
......
...@@ -86,12 +86,6 @@ void CommandLineLauncher::DeleteWatcherList() ...@@ -86,12 +86,6 @@ void CommandLineLauncher::DeleteWatcherList()
m_WatcherList.clear(); m_WatcherList.clear();
} }
bool CommandLineLauncher::Load(const std::string &)
{
/*m_Expression = exp;
return this->Load(); */
return false;
}
bool CommandLineLauncher::Load(const std::vector<std::string> &vexp) bool CommandLineLauncher::Load(const std::vector<std::string> &vexp)
{ {
......
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