comparison OrthancServer/ServerContext.cpp @ 810:401a9633e492

configuration into a namespace
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 07 May 2014 16:47:56 +0200
parents d466b3606aca
children a811bdf8b8eb
comparison
equal deleted inserted replaced
809:8ce2f69436ca 810:401a9633e492
66 accessor_(storage_), 66 accessor_(storage_),
67 compressionEnabled_(false), 67 compressionEnabled_(false),
68 provider_(*this), 68 provider_(*this),
69 dicomCache_(provider_, DICOM_CACHE_SIZE) 69 dicomCache_(provider_, DICOM_CACHE_SIZE)
70 { 70 {
71 scu_.SetLocalApplicationEntityTitle(GetGlobalStringParameter("DicomAet", "ORTHANC")); 71 scu_.SetLocalApplicationEntityTitle(Configuration::GetGlobalStringParameter("DicomAet", "ORTHANC"));
72 //scu_.SetMillisecondsBeforeClose(1); // The connection is always released 72 //scu_.SetMillisecondsBeforeClose(1); // The connection is always released
73 73
74 lua_.Execute(Orthanc::EmbeddedResources::LUA_TOOLBOX); 74 lua_.Execute(Orthanc::EmbeddedResources::LUA_TOOLBOX);
75 } 75 }
76 76