From f77a94af6fd5be8526426fd92035865fe8558f22 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Tue, 3 Feb 2026 13:23:38 -0500 Subject: [PATCH] xo-reader2 stack: misc qol improvements + improve reader2 utest --- include/xo/expression2/Constant.hpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 include/xo/expression2/Constant.hpp diff --git a/include/xo/expression2/Constant.hpp b/include/xo/expression2/Constant.hpp new file mode 100644 index 00000000..29e6694f --- /dev/null +++ b/include/xo/expression2/Constant.hpp @@ -0,0 +1,13 @@ +/** @file Constant.hpp + * + * @author Roland Conybeare, Feb 2026 + **/ + +#pragma once + +#include "DConstant.hpp" +#include "detail/IExpression_DConstant.hpp" +#include "detail/IGCObject_DConstant.hpp" +#include "detail/IPrintable_DConstant.hpp" + +/* end Constant.hpp */