From b97957ec53c610da6813dcd7f11eccbeee2a2465 Mon Sep 17 00:00:00 2001 From: Nathan Date: Sat, 7 Feb 2026 12:49:47 -0600 Subject: [PATCH] use extratools --- include/utils/Objects/Object.h | 3 +++ modules/Archimedes-Modules/Ollama/Ollama.h | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/include/utils/Objects/Object.h b/include/utils/Objects/Object.h index dbd0cce..9eb779f 100644 --- a/include/utils/Objects/Object.h +++ b/include/utils/Objects/Object.h @@ -3,6 +3,8 @@ #include "pch.hpp" +#include "extratools.h" + namespace Archimedes { class Object { @@ -12,6 +14,7 @@ namespace Archimedes { ~Object() {}; private: + }; } diff --git a/modules/Archimedes-Modules/Ollama/Ollama.h b/modules/Archimedes-Modules/Ollama/Ollama.h index 55d1f51..314ddbb 100644 --- a/modules/Archimedes-Modules/Ollama/Ollama.h +++ b/modules/Archimedes-Modules/Ollama/Ollama.h @@ -1,6 +1,6 @@ #include "Archimedes.h" -#include "utils/extratools.h" +#include "extratools.h" class Ollama : public Archimedes::Module {