aboutsummaryrefslogtreecommitdiff
path: root/oop2eindopdr/CacheManager.h
diff options
context:
space:
mode:
Diffstat (limited to 'oop2eindopdr/CacheManager.h')
-rw-r--r--oop2eindopdr/CacheManager.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/oop2eindopdr/CacheManager.h b/oop2eindopdr/CacheManager.h
index 7b740ec..e441b1b 100644
--- a/oop2eindopdr/CacheManager.h
+++ b/oop2eindopdr/CacheManager.h
@@ -31,8 +31,10 @@ public:
/** @brief get fstream for file in cache or create file */
virtual std::fstream* cache_get(const char* filename);
+ virtual std::fstream* cache_get(std::string filename);
/** @brief check if file exists in cache */
virtual bool cache_exists(const char* filename);
+ virtual bool cache_exists(std::string filename);
/** @brief currently opened cache update unix timestamp */
uint64_t age;