Mercurial > hg > orthanc
comparison 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 |
comparison
equal
deleted
inserted
replaced
4043:6c6239aec462 | 4044:d25f4c0fa160 |
---|---|
1 #include <string> | |
2 | |
3 struct OrthancLinesIterator; | |
4 | |
5 OrthancLinesIterator* OrthancLinesIterator_Create(const std::string& content) | |
6 { | |
7 return NULL; | |
8 } | |
9 | |
10 bool OrthancLinesIterator_GetLine(std::string& target, | |
11 const OrthancLinesIterator* iterator) | |
12 { | |
13 return false; | |
14 } | |
15 | |
16 void OrthancLinesIterator_Next(OrthancLinesIterator* iterator) | |
17 { | |
18 } | |
19 | |
20 void OrthancLinesIterator_Free(OrthancLinesIterator* iterator) | |
21 { | |
22 } |