comparison OrthancServer/ServerContext.cpp @ 656:08eca5d86aad

fixes to cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 04 Nov 2013 11:19:31 +0100
parents 63f707278fc8
children 2d0a347e8cfc
comparison
equal deleted inserted replaced
655:93adc693cc60 656:08eca5d86aad
59 ServerContext::ServerContext(const boost::filesystem::path& storagePath, 59 ServerContext::ServerContext(const boost::filesystem::path& storagePath,
60 const boost::filesystem::path& indexPath) : 60 const boost::filesystem::path& indexPath) :
61 storage_(storagePath.string()), 61 storage_(storagePath.string()),
62 index_(*this, indexPath.string()), 62 index_(*this, indexPath.string()),
63 accessor_(storage_), 63 accessor_(storage_),
64 compressionEnabled_(false),
64 provider_(*this), 65 provider_(*this),
65 dicomCache_(provider_, DICOM_CACHE_SIZE) 66 dicomCache_(provider_, DICOM_CACHE_SIZE)
66 { 67 {
67 lua_.Execute(Orthanc::EmbeddedResources::LUA_TOOLBOX); 68 lua_.Execute(Orthanc::EmbeddedResources::LUA_TOOLBOX);
68 } 69 }