Mercurial > hg > orthanc
comparison OrthancServer/ServerIndex.h @ 82:9eb40cad7935
fixes
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 24 Sep 2012 14:05:19 +0200 |
parents | a70bb32802ae |
children | fe180eae201d |
comparison
equal
deleted
inserted
replaced
81:0ec5e2e327b1 | 82:9eb40cad7935 |
---|---|
43 StoreStatus_AlreadyStored, | 43 StoreStatus_AlreadyStored, |
44 StoreStatus_Failure | 44 StoreStatus_Failure |
45 }; | 45 }; |
46 | 46 |
47 | 47 |
48 enum ResourceType | |
49 { | |
50 ResourceType_Patient = 1, | |
51 ResourceType_Study = 2, | |
52 ResourceType_Series = 3, | |
53 ResourceType_Instance = 4, | |
54 ResourceType_File = 5 | |
55 }; | |
56 | |
57 | |
48 namespace Internals | 58 namespace Internals |
49 { | 59 { |
50 class SignalDeletedLevelFunction; | 60 class SignalDeletedLevelFunction; |
51 } | 61 } |
52 | 62 |
187 | 197 |
188 bool GetChanges(Json::Value& target, | 198 bool GetChanges(Json::Value& target, |
189 int64_t since, | 199 int64_t since, |
190 const std::string& filter, | 200 const std::string& filter, |
191 unsigned int maxResults); | 201 unsigned int maxResults); |
202 | |
203 /*bool GetAllInstances(std::list<std::string>& instancesUuid, | |
204 const std::string& uuid, | |
205 bool clear = true);*/ | |
192 }; | 206 }; |
193 } | 207 } |