Skip to content
Snippets Groups Projects
Commit df1adbe3 authored by Mirko Wächter's avatar Mirko Wächter
Browse files

made prosthesis example compatible with doc generation

parent 0922c0ed
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,16 @@
#include <thread>
int main(int argc, char* argv[])
{
for (int i = 0; i < argc; ++i)
{
if (std::string(argv[i]) == "-h" ||
std::string(argv[i]) == "--print-options") // needed for ArmarX Doc generation
{
// TODO: print help
return 0;
}
}
QCoreApplication a(argc, argv);
try
{
......
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