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

doc compatibility

parent df1adbe3
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,15 @@
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);
{
BLEProthesisInterface iface{dlr};
......
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