Mercurial > hg > orthanc
diff OrthancFramework/Resources/DcmtkTools/dummy.cpp @ 4044:d25f4c0fa160 framework
splitting code into OrthancFramework and OrthancServer
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 10 Jun 2020 20:30:34 +0200 |
parents | Resources/DcmtkTools/dummy.cpp@4f09a6a2b369 |
children | 50cb0fb99e34 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/OrthancFramework/Resources/DcmtkTools/dummy.cpp Wed Jun 10 20:30:34 2020 +0200 @@ -0,0 +1,22 @@ +#include <string> + +struct OrthancLinesIterator; + +OrthancLinesIterator* OrthancLinesIterator_Create(const std::string& content) +{ + return NULL; +} + +bool OrthancLinesIterator_GetLine(std::string& target, + const OrthancLinesIterator* iterator) +{ + return false; +} + +void OrthancLinesIterator_Next(OrthancLinesIterator* iterator) +{ +} + +void OrthancLinesIterator_Free(OrthancLinesIterator* iterator) +{ +}