collection_resolver progress

This commit is contained in:
Sascha Kühl
2026-01-26 16:20:16 +01:00
parent 046c1d8ed2
commit 1cf39d0ef1
2 changed files with 13 additions and 12 deletions
@@ -11,9 +11,9 @@ namespace matador::object {
template<typename Type>
class collection_resolver : public abstract_type_resolver {
public:
collection_resolver() : abstract_type_resolver(typeid(std::vector<object_ptr<Type>>)) {}
collection_resolver() : abstract_type_resolver(typeid(std::vector<Type>)) {}
virtual std::vector<object_ptr<Type>> resolve(const utils::identifier& id) = 0;
virtual std::vector<Type> resolve(const utils::identifier& id) = 0;
};
}
#endif //MATADOR_COLLECTION_RESOLVER_HPP