xo-reflect: + comment

This commit is contained in:
Roland Conybeare 2024-06-18 17:17:09 -04:00
commit ef41f9b280
2 changed files with 3 additions and 0 deletions

View file

@ -197,6 +197,8 @@ namespace xo {
/** lookup type by canonical name **/ /** lookup type by canonical name **/
static TypeDescr lookup_by_name(const std::string & canonical_name); static TypeDescr lookup_by_name(const std::string & canonical_name);
/** print table of reflected types to os **/
static void print_reflected_types(std::ostream & os); static void print_reflected_types(std::ostream & os);
TypeId id() const { return id_; } TypeId id() const { return id_; }

View file

@ -4,6 +4,7 @@
#include "TaggedPtr.hpp" #include "TaggedPtr.hpp"
#include "TypeDescrExtra.hpp" #include "TypeDescrExtra.hpp"
#include "atomic/AtomicTdx.hpp" #include "atomic/AtomicTdx.hpp"
#include "function/FunctionTdx.hpp"
#include "xo/indentlog/scope.hpp" #include "xo/indentlog/scope.hpp"
namespace xo { namespace xo {