Mercurial > hg > orthanc
changeset 4314:0a4347203a7e
hiding some symbols using boos
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 12 Nov 2020 11:40:44 +0100 |
parents | 91554aecff9a |
children | e62bd014ae5c |
files | OrthancFramework/Sources/HttpServer/FilesystemHttpSender.h OrthancFramework/Sources/JobsEngine/JobInfo.h |
diffstat | 2 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/OrthancFramework/Sources/HttpServer/FilesystemHttpSender.h Mon Nov 09 16:09:05 2020 +0100 +++ b/OrthancFramework/Sources/HttpServer/FilesystemHttpSender.h Thu Nov 12 11:40:44 2020 +0100 @@ -37,12 +37,12 @@ std::string chunk_; size_t chunkSize_; - void Initialize(const boost::filesystem::path& path); + void Initialize(const boost::filesystem::path& path) ORTHANC_LOCAL; public: explicit FilesystemHttpSender(const std::string& path); - explicit FilesystemHttpSender(const boost::filesystem::path& path); + explicit FilesystemHttpSender(const boost::filesystem::path& path) ORTHANC_LOCAL; FilesystemHttpSender(const std::string& path, MimeType contentType);
--- a/OrthancFramework/Sources/JobsEngine/JobInfo.h Mon Nov 09 16:09:05 2020 +0100 +++ b/OrthancFramework/Sources/JobsEngine/JobInfo.h Thu Nov 12 11:40:44 2020 +0100 @@ -49,7 +49,7 @@ const JobStatus& status, const boost::posix_time::ptime& creationTime, const boost::posix_time::ptime& lastStateChangeTime, - const boost::posix_time::time_duration& runtime); + const boost::posix_time::time_duration& runtime) ORTHANC_LOCAL; JobInfo();