| 39 | } |
| 40 | |
| 41 | void postParseCommandLine() override |
| 42 | { |
| 43 | /* load default scene if none specified */ |
| 44 | if (scene_empty_post_parse()) { |
| 45 | FileName file = FileName::executableFolder() + FileName("models/cornell_box.ecs"); |
| 46 | parseCommandLine(new ParseStream(new LineCommentFilter(file, "#")), file.path()); |
| 47 | } |
| 48 | } |
| 49 | }; |
| 50 | |
| 51 | std::unique_ptr<Tutorial> tutorial {}; |
nothing calls this directly
no test coverage detected