comparison OrthancServer/DatabaseWrapper.h @ 1236:21d84e3acc0d

clean
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 05 Dec 2014 14:53:30 +0100
parents 9b4977e3c19d
children 0f3716b88af7
comparison
equal deleted inserted replaced
1235:9b4977e3c19d 1236:21d84e3acc0d
118 void ListAvailableMetadata(std::list<MetadataType>& target, 118 void ListAvailableMetadata(std::list<MetadataType>& target,
119 int64_t id); 119 int64_t id);
120 120
121 std::string GetMetadata(int64_t id, 121 std::string GetMetadata(int64_t id,
122 MetadataType type, 122 MetadataType type,
123 const std::string& defaultValue = ""); 123 const std::string& defaultValue);
124 124
125 bool GetMetadataAsInteger(int& result, 125 bool GetMetadataAsInteger(int& result,
126 int64_t id, 126 int64_t id,
127 MetadataType type); 127 MetadataType type);
128 128
177 const std::string& remoteModality, 177 const std::string& remoteModality,
178 const std::string& patientId, 178 const std::string& patientId,
179 const std::string& studyInstanceUid, 179 const std::string& studyInstanceUid,
180 const std::string& seriesInstanceUid, 180 const std::string& seriesInstanceUid,
181 const std::string& sopInstanceUid, 181 const std::string& sopInstanceUid,
182 const boost::posix_time::ptime& date = 182 const boost::posix_time::ptime& date);
183 boost::posix_time::second_clock::local_time());
184 183
185 void GetExportedResources(Json::Value& target, 184 void GetExportedResources(Json::Value& target,
186 int64_t since, 185 int64_t since,
187 unsigned int maxResults); 186 unsigned int maxResults);
188 187