comparison OrthancFramework/Sources/RestApi/RestApiGetCall.h @ 4834:bec432ee1094

download of numpy arrays from the REST API
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 26 Nov 2021 19:03:32 +0100
parents 7053502fbf97
children 43e613a7756b
comparison
equal deleted inserted replaced
4833:970092a67897 4834:bec432ee1094
59 59
60 bool HasArgument(const std::string& name) const 60 bool HasArgument(const std::string& name) const
61 { 61 {
62 return getArguments_.find(name) != getArguments_.end(); 62 return getArguments_.find(name) != getArguments_.end();
63 } 63 }
64
65 bool GetBooleanArgument(const std::string& name,
66 bool defaultValue) const;
64 67
65 virtual bool ParseJsonRequest(Json::Value& result) const ORTHANC_OVERRIDE; 68 virtual bool ParseJsonRequest(Json::Value& result) const ORTHANC_OVERRIDE;
66 }; 69 };
67 } 70 }