diff Resources/DcmtkTools/dummy.cpp @ 3952:4f09a6a2b369 c-get

LSB compilation of getscu command-line tool from DCMTK for integration tests
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 20 May 2020 08:41:54 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Resources/DcmtkTools/dummy.cpp	Wed May 20 08:41:54 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)
+{
+}