| 78 | } |
| 79 | |
| 80 | static std::string pathAsString( const SceneInterface &m ) |
| 81 | { |
| 82 | SceneInterface::Path p; |
| 83 | m.path( p ); |
| 84 | std::string str; |
| 85 | SceneInterface::pathToString( p, str ); |
| 86 | return str; |
| 87 | } |
| 88 | |
| 89 | static SceneInterfacePtr nonConstScene( SceneInterface &m, list l, SceneInterface::MissingBehaviour b ) |
| 90 | { |
nothing calls this directly
no test coverage detected