| 52 | namespace Assimp { |
| 53 | |
| 54 | void ExportSceneAssxml(const char* pFile, IOSystem* pIOSystem, const aiScene* pScene, const ExportProperties* /*pProperties*/) |
| 55 | { |
| 56 | DumpSceneToAssxml( |
| 57 | pFile, |
| 58 | "\0", // command(s) |
| 59 | pIOSystem, |
| 60 | pScene, |
| 61 | false); // shortened? |
| 62 | } |
| 63 | |
| 64 | } // end of namespace Assimp |
| 65 |
nothing calls this directly
no test coverage detected