comparison OrthancServer/OrthancInitialization.cpp @ 430:f746592d8301

unit testing
author jodogne
date Wed, 08 May 2013 15:16:13 +0200
parents 09b3c6265a94
children 28ba73274919
comparison
equal deleted inserted replaced
429:09b3c6265a94 430:f746592d8301
284 const std::string& relativePath) 284 const std::string& relativePath)
285 { 285 {
286 boost::filesystem::path base(baseDirectory); 286 boost::filesystem::path base(baseDirectory);
287 boost::filesystem::path relative(relativePath); 287 boost::filesystem::path relative(relativePath);
288 288
289 return (base / relative).string();
290
291 /** 289 /**
292 The following lines should be equivalent to this one: 290 The following lines should be equivalent to this one:
293 291
294 return (base / relative).string(); 292 return (base / relative).string();
295 293