comparison OrthancServer/ServerContext.h @ 695:c59bc408fb10

parameter to disable the computation of the MD5
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 05 Feb 2014 13:58:00 +0100
parents 2d0a347e8cfc
children dd1ce9a2844c
comparison
equal deleted inserted replaced
694:72dc919a028c 695:c59bc408fb10
135 135
136 LuaContext& GetLuaContext() 136 LuaContext& GetLuaContext()
137 { 137 {
138 return lua_; 138 return lua_;
139 } 139 }
140
141 void SetStoreMD5ForAttachments(bool storeMD5);
142
143 bool IsStoreMD5ForAttachments() const
144 {
145 return accessor_.IsStoreMD5();
146 }
140 }; 147 };
141 } 148 }