xo-reader2: + IPrintable+DExpectSymbolSsm

This commit is contained in:
Roland Conybeare 2026-01-20 01:07:21 -05:00
commit 8d7244a214
7 changed files with 139 additions and 0 deletions

View file

@ -20,6 +20,7 @@ set(SELF_SRCS
DExpectSymbolSsm.cpp
ISyntaxStateMachine_DExpectSymbolSsm.cpp
IPrintable_DExpectSymbolSsm.cpp
reader2_register_facets.cpp
reader2_register_types.cpp

View file

@ -103,6 +103,16 @@ namespace xo {
sym,
this->get_expect_str());
}
bool
DExpectSymbolSsm::pretty(const ppindentinfo & ppii) const
{
return ppii.pps()->pretty_struct
(ppii,
"DExpectSymbolSsm"
//refrtag("member", member_)
);
}
} /*namespace scm*/
} /*namespace xo*/

View file

@ -0,0 +1,28 @@
/** @file IPrintable_DExpectSymbolSsm.cpp
*
* Generated automagically from ingredients:
* 1. code generator:
* [/Users/roland/proj/xo-umbrella2/xo-facet/codegen/genfacet]
* arguments:
* --input [idl/IPrintable_DExpectSymbolSsm.json5]
* 2. jinja2 template for abstract facet .hpp file:
* [iface_facet_any.hpp.j2]
* 3. idl for facet methods
* [idl/IPrintable_DExpectSymbolSsm.json5]
**/
#include "ssm/IPrintable_DExpectSymbolSsm.hpp"
namespace xo {
namespace scm {
auto
IPrintable_DExpectSymbolSsm::pretty(const DExpectSymbolSsm & self, const ppindentinfo & ppii) -> bool
{
return self.pretty(ppii);
}
} /*namespace scm*/
} /*namespace xo*/
/* end IPrintable_DExpectSymbolSsm.cpp */