| 764 | |
| 765 | #if !STEP_READSTREAM_SUPPORTED |
| 766 | std::filesystem::path getStepTemporaryDirectory() |
| 767 | { |
| 768 | const auto path = std::filesystem::temp_directory_path() / "MeshLib_MeshLoadStep"; |
| 769 | std::error_code ec; |
| 770 | if ( !std::filesystem::exists( path, ec ) ) |
| 771 | std::filesystem::create_directory( path, ec ); |
| 772 | return path; |
| 773 | } |
| 774 | |
| 775 | std::mutex cOpenCascadeTempFileMutex = {}; |
| 776 | #endif |
no outgoing calls
no test coverage detected