From c77cd4255a74cee42d7391a1ef66b1be40d7b3b2 Mon Sep 17 00:00:00 2001 From: Relintai Date: Sat, 5 Feb 2022 16:52:24 +0100 Subject: [PATCH] FileCache now inherits from Object. --- core/file_cache.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/core/file_cache.h b/core/file_cache.h index 4c29e81..bf11c8c 100644 --- a/core/file_cache.h +++ b/core/file_cache.h @@ -8,7 +8,12 @@ #include #include "core/threading/rw_lock.h" -class FileCache { +#include "core/object.h" + + +class FileCache : Object { + RCPP_OBJECT(FileCache, Object); + public: String wwwroot; int cache_invalidation_time;