Skip to content
Snippets Groups Projects
Commit 12e73bc1 authored by Francois Keith's avatar Francois Keith
Browse files

Add the command line 'remove', alias of 'rm'.

Again, for homogeneization purposes.
parent a6de9a19
No related branches found
No related tags found
No related merge requests found
......@@ -346,6 +346,12 @@ namespace dynamicgraph
&stack_t::pushByTaskName, \
docCommandVoid1("Push the named task.", \
"string (task name)"))); \
addCommand("remove", \
makeCommandVoid1(*this, \
(void (EntityClassName::*)(const std::string&)) \
&stack_t::removeByTaskName, \
docCommandVoid1("Remove the named task.", \
"string (task name)"))); \
addCommand("rm", \
makeCommandVoid1(*this, \
(void (EntityClassName::*)(const std::string&)) \
......
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