has one progress
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user