comparison Core/SystemToolbox.h @ 2920:ad0e7def3338

Toolbox::SubstituteVariables and SystemToolbox::GetEnvironmentVariables
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 07 Nov 2018 11:13:30 +0100
parents 9d277f8ad698
children 4a38d7d4f0e0
comparison
equal deleted inserted replaced
2919:2ca9cd064b15 2920:ad0e7def3338
41 # error The namespace SystemToolbox cannot be used in sandboxed environments 41 # error The namespace SystemToolbox cannot be used in sandboxed environments
42 #endif 42 #endif
43 43
44 #include "Enumerations.h" 44 #include "Enumerations.h"
45 45
46 #include <map>
46 #include <vector> 47 #include <vector>
47 #include <string> 48 #include <string>
48 #include <stdint.h> 49 #include <stdint.h>
49 50
50 namespace Orthanc 51 namespace Orthanc
100 bool utc); 101 bool utc);
101 102
102 unsigned int GetHardwareConcurrency(); 103 unsigned int GetHardwareConcurrency();
103 104
104 MimeType AutodetectMimeType(const std::string& path); 105 MimeType AutodetectMimeType(const std::string& path);
106
107 void GetEnvironmentVariables(std::map<std::string, std::string>& env);
105 } 108 }
106 } 109 }