Mercurial > hg > orthanc
diff Core/Uuid.h @ 82:9eb40cad7935
fixes
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 24 Sep 2012 14:05:19 +0200 |
parents | c996319e90bc |
children | fe180eae201d |
line wrap: on
line diff
--- a/Core/Uuid.h Mon Sep 24 10:33:41 2012 +0200 +++ b/Core/Uuid.h Mon Sep 24 14:05:19 2012 +0200 @@ -38,5 +38,21 @@ std::string GenerateUuid(); bool IsUuid(const std::string& str); + + class TemporaryFile + { + private: + std::string path_; + + public: + TemporaryFile(); + + ~TemporaryFile(); + + const std::string& GetPath() const + { + return path_; + } + }; } }