comparison OrthancStone/Sources/Toolbox/GenericToolbox.h @ 1591:5887a4f8594b

moving platform-specific files out of the "OrthancStone" folder
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 23 Oct 2020 13:15:03 +0200
parents 244ad1e4e76a
children 4fb8fdf03314
comparison
equal deleted inserted replaced
1590:7b963bccafef 1591:5887a4f8594b
302 uint8_t& alpha, 302 uint8_t& alpha,
303 const std::string& text) 303 const std::string& text)
304 { 304 {
305 return GetRgbaValuesFromString(red, green, blue, alpha, text.c_str()); 305 return GetRgbaValuesFromString(red, green, blue, alpha, text.c_str());
306 } 306 }
307
308
309 /**
310 This method could have been called StripSpacesAndChangeToLower but we might want to
311 add some UUID validation to the argument
312 */
313 void NormalizeUuid(std::string& uuid);
307 } 314 }
308 } 315 }