aboutsummaryrefslogtreecommitdiff
path: root/zenstore/gc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'zenstore/gc.cpp')
-rw-r--r--zenstore/gc.cpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/zenstore/gc.cpp b/zenstore/gc.cpp
new file mode 100644
index 000000000..bfb8f015e
--- /dev/null
+++ b/zenstore/gc.cpp
@@ -0,0 +1,26 @@
+// Copyright Epic Games, Inc. All Rights Reserved.
+
+#include <zenstore/gc.h>
+
+namespace zen {
+
+CasGc::CasGc(CasStore& Store) : m_CasStore(Store)
+{
+}
+
+CasGc::~CasGc()
+{
+}
+
+void
+CasGc::CollectGarbage()
+{
+}
+
+void
+CasGc::OnNewReferences(std::span<IoHash> Hashes)
+{
+ ZEN_UNUSED(Hashes);
+}
+
+} // namespace zen