20 lines
763 B
C++
20 lines
763 B
C++
#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
|