comparison Framework/Oracle/GenericOracleRunner.h @ 1127:3308ef083297 broker

fix
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 05 Nov 2019 19:01:57 +0100
parents a8bf81756839
children c3d4adf8bc70
comparison
equal deleted inserted replaced
1126:a8c3908ecba9 1127:3308ef083297
46 #if ORTHANC_ENABLE_DCMTK == 1 46 #if ORTHANC_ENABLE_DCMTK == 1
47 boost::shared_ptr<ParsedDicomFileCache> dicomCache_; 47 boost::shared_ptr<ParsedDicomFileCache> dicomCache_;
48 #endif 48 #endif
49 49
50 public: 50 public:
51 GenericOracleRunner() 51 GenericOracleRunner() :
52 : rootDirectory_(".") 52 rootDirectory_(".")
53 #if ORTHANC_ENABLE_DCMTK == 1
54 , dicomCache_(NULL)
55 #endif
56 { 53 {
57 } 54 }
58 55
59 void SetOrthanc(const Orthanc::WebServiceParameters& orthanc) 56 void SetOrthanc(const Orthanc::WebServiceParameters& orthanc)
60 { 57 {