From 2da4054e4d3c099a00f55e2426484c48190f4c22 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Tue, 3 Feb 2026 13:43:00 -0500 Subject: [PATCH] xo-reader2 stack: convenience #includes + parsing examples --- include/xo/object2/Float.hpp | 12 ++++++++++++ include/xo/object2/String.hpp | 12 ++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 include/xo/object2/Float.hpp create mode 100644 include/xo/object2/String.hpp diff --git a/include/xo/object2/Float.hpp b/include/xo/object2/Float.hpp new file mode 100644 index 0000000..94751ec --- /dev/null +++ b/include/xo/object2/Float.hpp @@ -0,0 +1,12 @@ +/** @file Float.hpp + * + * @author Roland Conybeare, Feb 2026 + **/ + +#pragma once + +#include "DFloat.hpp" +#include "number/IGCObject_DFloat.hpp" +#include "number/IPrintable_DFloat.hpp" + +/* end Float.hpp */ diff --git a/include/xo/object2/String.hpp b/include/xo/object2/String.hpp new file mode 100644 index 0000000..b2e6d09 --- /dev/null +++ b/include/xo/object2/String.hpp @@ -0,0 +1,12 @@ +/** @file String.hpp + * + * @author Roland Conybeare, Feb 22026 + **/ + +#pragma once + +#include "DString.hpp" +#include "string/IGCObject_DString.hpp" +#include "string/IPrintable_DString.hpp" + +/* end String.hpp */