comparison OrthancServer/OrthancConfiguration.cpp @ 3536:8be5451f6820

removed unused code
author Alain Mazy <alain@mazy.be>
date Sun, 06 Oct 2019 09:54:30 +0200
parents 41365091a41e
children 94f4a18a79cc
comparison
equal deleted inserted replaced
3535:41365091a41e 3536:8be5451f6820
654 654
655 return hasUser; 655 return hasUser;
656 } 656 }
657 657
658 658
659 bool OrthancConfiguration::IsExecuteLuaEnabled() const
660 {
661 return GetBooleanParameter("ExecuteLuaEnabled", false);
662 }
663
664 std::string OrthancConfiguration::InterpretStringParameterAsPath( 659 std::string OrthancConfiguration::InterpretStringParameterAsPath(
665 const std::string& parameter) const 660 const std::string& parameter) const
666 { 661 {
667 return SystemToolbox::InterpretRelativePath(defaultDirectory_.string(), parameter); 662 return SystemToolbox::InterpretRelativePath(defaultDirectory_.string(), parameter);
668 } 663 }