comparison Framework/Loaders/DicomResourcesLoader.h @ 1472:474360793956

DicomResourcesLoader::Create()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 15 Jun 2020 16:26:57 +0200
parents 28c64c246312
children 121d01aa328e
comparison
equal deleted inserted replaced
1471:28c64c246312 1472:474360793956
145 145
146 146
147 class Factory : public ILoaderFactory 147 class Factory : public ILoaderFactory
148 { 148 {
149 public: 149 public:
150 virtual boost::shared_ptr<IObserver> Create(ILoadersContext::ILock& stone); 150 virtual boost::shared_ptr<IObserver> Create(ILoadersContext::ILock& stone)
151 {
152 return DicomResourcesLoader::Create(stone);
153 }
151 }; 154 };
155
156
157 static boost::shared_ptr<DicomResourcesLoader> Create(ILoadersContext::ILock& stone);
152 158
153 void ScheduleGetDicomWeb(boost::shared_ptr<LoadedDicomResources> target, 159 void ScheduleGetDicomWeb(boost::shared_ptr<LoadedDicomResources> target,
154 int priority, 160 int priority,
155 const DicomSource& source, 161 const DicomSource& source,
156 const std::string& uri, 162 const std::string& uri,