comparison OrthancServer/ServerContext.h @ 1198:1169528a9a5f db-changes

refactoring
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 23 Oct 2014 13:52:01 +0200
parents 6b9b02a16e99
children 5bd4c9f85b4c
comparison
equal deleted inserted replaced
1197:61b71ccac362 1198:1169528a9a5f
40 #include "ServerIndex.h" 40 #include "ServerIndex.h"
41 #include "ParsedDicomFile.h" 41 #include "ParsedDicomFile.h"
42 #include "DicomProtocol/ReusableDicomUserConnection.h" 42 #include "DicomProtocol/ReusableDicomUserConnection.h"
43 #include "Scheduler/ServerScheduler.h" 43 #include "Scheduler/ServerScheduler.h"
44 #include "DicomInstanceToStore.h" 44 #include "DicomInstanceToStore.h"
45 #include "ServerIndexChange.h"
45 46
46 #include <boost/filesystem.hpp> 47 #include <boost/filesystem.hpp>
47 48
48 namespace Orthanc 49 namespace Orthanc
49 { 50 {
201 202
202 bool DeleteResource(Json::Value& target, 203 bool DeleteResource(Json::Value& target,
203 const std::string& uuid, 204 const std::string& uuid,
204 ResourceType expectedType); 205 ResourceType expectedType);
205 206
206 void SignalChange(ChangeType changeType, 207 void SignalChange(const ServerIndexChange& change);
207 ResourceType resourceType,
208 const std::string& publicId);
209 }; 208 };
210 } 209 }