comparison OrthancServer/DatabaseWrapper.h @ 1252:ee43f0d611a8

testing
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 07 Jan 2015 17:41:41 +0100
parents 32fcc5dc7562
children b4acdb37e43b
comparison
equal deleted inserted replaced
1251:ac877a0fcf52 1252:ee43f0d611a8
211 const char* GetErrorMessage() const 211 const char* GetErrorMessage() const
212 { 212 {
213 return db_.GetErrorMessage(); 213 return db_.GetErrorMessage();
214 } 214 }
215 215
216 void GetChildren(std::list<std::string>& childrenPublicIds, 216 virtual void GetChildren(std::list<std::string>& childrenPublicIds,
217 int64_t id); 217 int64_t id);
218 218
219 int64_t GetTableRecordCount(const std::string& table); 219 virtual int64_t GetTableRecordCount(const std::string& table);
220 220
221 bool GetParentPublicId(std::string& result, 221 virtual bool GetParentPublicId(std::string& result,
222 int64_t id); 222 int64_t id);
223 223
224 }; 224 };
225 } 225 }