query/source/core/object/basic_object_info.cpp

14 lines
344 B
C++

#include "matador/object/basic_object_info.hpp"
#include <algorithm>
namespace matador::object {
basic_object_info::basic_object_info(schema_node &node, const std::type_index type_index)
: node_(node)
, type_index_(type_index) {}
std::type_index basic_object_info::type_index() const { return type_index_; }
} // namespace matador::object