Commit 04ab5c71 authored by Manuel Grizonnet's avatar Manuel Grizonnet
Browse files

ENH: mark ancillary methods as deprecated

No related merge requests found
Showing with 8 additions and 1 deletion
+8 -1
......@@ -81,7 +81,10 @@ public:
*/
bool Load();
/** same as Load method but set the expression before. */
/** \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. */
......@@ -116,6 +119,10 @@ protected:
/** Constructor */
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 */
......
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