renamed collection resolver producer related classes

This commit is contained in:
2026-05-18 09:03:24 +02:00
parent bf99642af4
commit 820b5432b2
16 changed files with 74 additions and 75 deletions
@@ -1,20 +0,0 @@
#include "matador/sql/internal/collection_resolver_producer.hpp"
namespace matador::sql {
const std::type_index& collection_resolver_producer::root_type() const {
return root_type_;
}
const std::type_index& collection_resolver_producer::type() const {
return type_;
}
const std::string& collection_resolver_producer::collection_name() const {
return collection_name_;
}
collection_resolver_producer::collection_resolver_producer(const std::type_index& root_type,
const std::type_index& type,
std::string collection_name)
: root_type_(root_type), type_(type), collection_name_(std::move(collection_name)) {}
} // namespace matador::sql
@@ -0,0 +1,20 @@
#include "matador/sql/internal/joined_collection_resolver_producer.hpp"
namespace matador::sql {
const std::type_index& joined_collection_resolver_producer::root_type() const {
return root_type_;
}
const std::type_index& joined_collection_resolver_producer::type() const {
return type_;
}
const std::string& joined_collection_resolver_producer::join_column_name() const {
return join_column_name_;
}
joined_collection_resolver_producer::joined_collection_resolver_producer(const std::type_index& root_type,
const std::type_index& type,
std::string join_column_name)
: root_type_(root_type), type_(type), join_column_name_(std::move(join_column_name)) {}
} // namespace matador::sql