has one progress

This commit is contained in:
2026-05-15 15:22:59 +02:00
parent 22f6f71412
commit 57703dfb67
44 changed files with 288 additions and 121 deletions
@@ -0,0 +1,16 @@
#include "matador/object/abstract_collection_resolver.hpp"
namespace matador::object {
const std::type_index& abstract_joined_resolver::root_type() const {
return root_type_;
}
const std::string& abstract_joined_resolver::collection_name() const {
return collection_name_;
}
abstract_joined_resolver::abstract_joined_resolver(const std::type_index& root_type, const std::type_index& type, std::string collection_name)
: abstract_type_resolver(type)
, root_type_(root_type)
, collection_name_(std::move(collection_name)) {}
} // namespace matador::object