comparison OrthancFramework/Sources/FileStorage/FilesystemStorage.h @ 4273:0034f855c023

tuning log categories from command-line, and binary compat with orthanc framework 1.7.2
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 03 Nov 2020 12:24:50 +0100
parents 2007ab69ac16
children b30a8de92ad9
comparison
equal deleted inserted replaced
4272:1661544ea94d 4273:0034f855c023
53 53
54 boost::filesystem::path GetPath(const std::string& uuid) const; 54 boost::filesystem::path GetPath(const std::string& uuid) const;
55 55
56 void Setup(const std::string& root); 56 void Setup(const std::string& root);
57 57
58 #if ORTHANC_BUILDING_FRAMEWORK_LIBRARY == 1
59 // Alias for binary compatibility with Orthanc Framework 1.7.2 => don't use it anymore
60 explicit FilesystemStorage(std::string root);
61 #endif
62
58 public: 63 public:
59 explicit FilesystemStorage(const std::string& root) : 64 explicit FilesystemStorage(const std::string& root) :
60 fsyncOnWrite_(false) 65 fsyncOnWrite_(false)
61 { 66 {
62 Setup(root); 67 Setup(root);