initial matador ng commit

This commit is contained in:
2025-02-02 20:37:12 +01:00
parent 19de5714f4
commit ded3daceb3
378 changed files with 14913 additions and 13431 deletions
+13
View File
@@ -0,0 +1,13 @@
#include "matador/object/basic_object_info.hpp"
#include <algorithm>
namespace matador::object {
basic_object_info::basic_object_info(schema_node &node, const std::type_index type_index)
: node_(node)
, type_index_(type_index) {}
std::type_index basic_object_info::type_index() const { return type_index_; }
} // namespace matador::object