From abf387bf1931faafede4fcb2564eaa771c1b571c Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Sun, 19 Oct 2025 22:45:10 -0500 Subject: [PATCH] checkpoint --- src/config_dummy.hpp | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/config_dummy.hpp diff --git a/src/config_dummy.hpp b/src/config_dummy.hpp new file mode 100644 index 00000000..67bdafe2 --- /dev/null +++ b/src/config_dummy.hpp @@ -0,0 +1,24 @@ +#pragma once + +#include "tofrom_string.hpp" + +class CfgDummy : public ToFromString +{ +public: + CfgDummy() + { + display = false; + } + + std::string + to_string() const + { + return {}; + } + + int + from_string(const std::string_view) + { + return 0; + } +};