diff OrthancServer/OrthancConfiguration.h @ 3181:6fd38327e777

Fix issue #130 (Orthanc failed to start when /tmp partition was full)
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 31 Jan 2019 15:33:27 +0100
parents ab46e537f92e
children 0d248cc63ded
line wrap: on
line diff
--- a/OrthancServer/OrthancConfiguration.h	Wed Jan 30 17:50:51 2019 +0100
+++ b/OrthancServer/OrthancConfiguration.h	Thu Jan 31 15:33:27 2019 +0100
@@ -47,6 +47,7 @@
 {
   class HttpServer;
   class ServerIndex;
+  class TemporaryFile;
   
   class OrthancConfiguration : public boost::noncopyable
   {
@@ -224,5 +225,7 @@
     void SetServerIndex(ServerIndex& index);
 
     void ResetServerIndex();
+
+    TemporaryFile* CreateTemporaryFile() const;
   };
 }