comparison Core/TemporaryFile.cpp @ 2512:4dcafa8d6633

SystemToolbox::GenerateUuid moved to Toolbox::GenerateUuid
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 28 Mar 2018 15:20:50 +0200
parents 878b59270859
children 4e43e67f8ecf
comparison
equal deleted inserted replaced
2511:8a0d3044ef53 2512:4dcafa8d6633
50 #else 50 #else
51 #error Support your platform here 51 #error Support your platform here
52 #endif 52 #endif
53 53
54 // We use UUID to create unique path to temporary files 54 // We use UUID to create unique path to temporary files
55 std::string filename = "Orthanc-" + Orthanc::SystemToolbox::GenerateUuid(); 55 std::string filename = "Orthanc-" + Orthanc::Toolbox::GenerateUuid();
56 56
57 if (extension != NULL) 57 if (extension != NULL)
58 { 58 {
59 filename.append(extension); 59 filename.append(extension);
60 } 60 }