Mercurial > hg > orthanc
diff OrthancFramework/Sources/RestApi/RestApiGetCall.h @ 4203:4d42408da117
improving const-correctness in ParsedDicomFile
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 17 Sep 2020 15:01:31 +0200 |
parents | bf7b9edf6b81 |
children | a01b1c9cbef4 |
line wrap: on
line diff
--- a/OrthancFramework/Sources/RestApi/RestApiGetCall.h Thu Sep 17 08:35:11 2020 +0200 +++ b/OrthancFramework/Sources/RestApi/RestApiGetCall.h Thu Sep 17 15:01:31 2020 +0200 @@ -61,6 +61,6 @@ return getArguments_.find(name) != getArguments_.end(); } - virtual bool ParseJsonRequest(Json::Value& result) const; + virtual bool ParseJsonRequest(Json::Value& result) const ORTHANC_OVERRIDE; }; }