summaryrefslogtreecommitdiffstats
path: root/filedistribution/src/vespa/filedistribution/manager/filedb.h
diff options
context:
space:
mode:
Diffstat (limited to 'filedistribution/src/vespa/filedistribution/manager/filedb.h')
-rw-r--r--filedistribution/src/vespa/filedistribution/manager/filedb.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/filedistribution/src/vespa/filedistribution/manager/filedb.h b/filedistribution/src/vespa/filedistribution/manager/filedb.h
index d5031fff8f1..195f1a65ffc 100644
--- a/filedistribution/src/vespa/filedistribution/manager/filedb.h
+++ b/filedistribution/src/vespa/filedistribution/manager/filedb.h
@@ -8,9 +8,9 @@
namespace filedistribution {
class FileDB {
- boost::filesystem::path _dbPath;
+ Path _dbPath;
public:
- FileDB(boost::filesystem::path dbPath);
+ FileDB(Path dbPath);
DirectoryGuard::UP getGuard() { return std::make_unique<DirectoryGuard>(_dbPath); }
/**
*
@@ -19,7 +19,7 @@ public:
* @param name The name the file shall have.
* @return true if it was added, false if it was already present.
*/
- bool add(const DirectoryGuard & directoryGuard, boost::filesystem::path original, const std::string& name);
+ bool add(const DirectoryGuard & directoryGuard, Path original, const std::string& name);
};
} //namespace filedistribution