xo-reader2 stack: convenience #includes + parsing examples

This commit is contained in:
Roland Conybeare 2026-02-03 13:43:00 -05:00
commit 2da4054e4d
2 changed files with 24 additions and 0 deletions

View file

@ -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 */

View file

@ -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 */