Mercurial > hg > orthanc
diff 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 |
line wrap: on
line diff
--- a/OrthancServer/ServerIndex.h Mon Sep 24 10:33:41 2012 +0200 +++ b/OrthancServer/ServerIndex.h Mon Sep 24 14:05:19 2012 +0200 @@ -45,6 +45,16 @@ }; + enum ResourceType + { + ResourceType_Patient = 1, + ResourceType_Study = 2, + ResourceType_Series = 3, + ResourceType_Instance = 4, + ResourceType_File = 5 + }; + + namespace Internals { class SignalDeletedLevelFunction; @@ -189,5 +199,9 @@ int64_t since, const std::string& filter, unsigned int maxResults); + + /*bool GetAllInstances(std::list<std::string>& instancesUuid, + const std::string& uuid, + bool clear = true);*/ }; }