From 6c13779bc7a653bfb00afa54f01ba49feaf64611 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Thu, 15 Feb 2024 19:53:16 -0600 Subject: [PATCH] policy_cache.hpp --- src/policy_cache.hpp | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/policy_cache.hpp b/src/policy_cache.hpp index f4491fab..d57a63aa 100644 --- a/src/policy_cache.hpp +++ b/src/policy_cache.hpp @@ -27,11 +27,21 @@ class PolicyCache { +public: + typedef std::unordered_map Map; + public: PolicyCache(); public: - insert + nonstd::optional + insert(std::string const &key_, + std::string &val_) + { + + } + + void erase(const char *fusepath); void cleanup(const int prob = 1); void clear(void);