| 4 | #include <MRViewer/MRViewer.h> |
| 5 | |
| 6 | int main( int argc, char** argv ) |
| 7 | { |
| 8 | MR::Viewer::LaunchParams launchParams{ .argc = argc, .argv = argv }; |
| 9 | MR::Viewer::parseLaunchParams( launchParams ); |
| 10 | launchParams.name = "Your app name"; |
| 11 | |
| 12 | return MR::launchDefaultViewer( launchParams, MR::ViewerSetup() ); |
| 13 | } |
nothing calls this directly
no test coverage detected