From a1edf27e9e10e3925fd7af9dfc2a391021bba51b Mon Sep 17 00:00:00 2001 From: Hayodea Hakol Date: Sat, 4 Jan 2025 13:21:33 -0400 Subject: [PATCH] Idlework --- hcore/include/mind.h | 3 +++ main.cpp | 14 ++++++++++++++ 2 files changed, 17 insertions(+) diff --git a/hcore/include/mind.h b/hcore/include/mind.h index fe93d4c..e303d13 100644 --- a/hcore/include/mind.h +++ b/hcore/include/mind.h @@ -11,6 +11,9 @@ namespace hk { class Mind { +public: + void execute(void); + public: std::thread directorThread; std::thread simulatorThread; diff --git a/main.cpp b/main.cpp index 13bd0e6..48cd07f 100644 --- a/main.cpp +++ b/main.cpp @@ -1,8 +1,22 @@ +#include +#include #include int main(int argc, char **argv) { hk::Mind mind; + try { + std::cout <