From 1bb16134adf6e9f77a463267d9679c27c1a6089d Mon Sep 17 00:00:00 2001 From: Relintai Date: Fri, 4 Feb 2022 20:18:52 +0100 Subject: [PATCH] Made the routing getter and setter virtual. --- core/http/web_node.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/http/web_node.h b/core/http/web_node.h index 9385060..5cae2d4 100644 --- a/core/http/web_node.h +++ b/core/http/web_node.h @@ -29,8 +29,8 @@ public: Settings *get_settings(); void set_settings(Settings *settings); - bool get_routing_enabled(); - void set_routing_enabled(const bool value); + virtual bool get_routing_enabled(); + virtual void set_routing_enabled(const bool value); #ifdef DATABASES_ENABLED Database *get_database();