aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/local-binary-cache-store.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstore/local-binary-cache-store.hh')
-rw-r--r--src/libstore/local-binary-cache-store.hh31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/libstore/local-binary-cache-store.hh b/src/libstore/local-binary-cache-store.hh
deleted file mode 100644
index 0303ebe73..000000000
--- a/src/libstore/local-binary-cache-store.hh
+++ /dev/null
@@ -1,31 +0,0 @@
-#pragma once
-
-#include "binary-cache-store.hh"
-
-namespace nix {
-
-class LocalBinaryCacheStore : public BinaryCacheStore
-{
-private:
-
- Path binaryCacheDir;
-
-public:
-
- LocalBinaryCacheStore(std::shared_ptr<Store> localStore,
- const Path & secretKeyFile, const Path & publicKeyFile,
- const Path & binaryCacheDir);
-
- void init() override;
-
-protected:
-
- bool fileExists(const std::string & path) override;
-
- void upsertFile(const std::string & path, const std::string & data) override;
-
- std::string getFile(const std::string & path) override;
-
-};
-
-}